blob: e9f4ede26a77589d0acd8c5238edf106cf76a28b [file] [log] [blame]
Damien Miller7acefbb2014-07-18 14:11:24 +10001/* $OpenBSD: auth-rsa.c,v 1.88 2014/07/15 15:54:14 millert 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>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023
Damien Miller9f2abc42006-07-10 20:53:08 +100024#include <pwd.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100025#include <stdio.h>
Damien Millerded319c2006-09-01 15:38:36 +100026#include <stdarg.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 "pathnames.h"
37#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100038#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000039#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"
Damien Miller874d77b2000-10-14 16:23:11 +110049
Damien Miller4a1c7aa2014-02-04 11:03:36 +110050#include "digest.h"
51
Damien Miller874d77b2000-10-14 16:23:11 +110052/* import */
53extern ServerOptions options;
54
Damien Miller5428f641999-11-25 11:54:57 +110055/*
56 * Session identifier that is used to bind key exchange and authentication
57 * responses to a particular session.
58 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000059extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller5428f641999-11-25 11:54:57 +110061/*
62 * The .ssh/authorized_keys file contains public keys, one per line, in the
63 * following format:
64 * options bits e n comment
65 * where bits, e and n are decimal numbers,
66 * and comment is any string of characters up to newline. The maximum
Darren Tucker22cc7412004-12-06 22:47:41 +110067 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a
Damien Miller5428f641999-11-25 11:54:57 +110068 * description of the options.
69 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000071BIGNUM *
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000072auth_rsa_generate_challenge(Key *key)
73{
74 BIGNUM *challenge;
75 BN_CTX *ctx;
76
77 if ((challenge = BN_new()) == NULL)
78 fatal("auth_rsa_generate_challenge: BN_new() failed");
79 /* Generate a random challenge. */
Darren Tucker0bc85572006-11-07 23:14:41 +110080 if (BN_rand(challenge, 256, 0, 0) == 0)
81 fatal("auth_rsa_generate_challenge: BN_rand failed");
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000082 if ((ctx = BN_CTX_new()) == NULL)
Darren Tucker0bc85572006-11-07 23:14:41 +110083 fatal("auth_rsa_generate_challenge: BN_CTX_new failed");
84 if (BN_mod(challenge, challenge, key->rsa->n, ctx) == 0)
85 fatal("auth_rsa_generate_challenge: BN_mod failed");
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000086 BN_CTX_free(ctx);
87
88 return challenge;
89}
90
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000091int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000092auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16])
93{
94 u_char buf[32], mdbuf[16];
Damien Miller4a1c7aa2014-02-04 11:03:36 +110095 struct ssh_digest_ctx *md;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +000096 int len;
97
Ben Lindstrome1f9e322002-03-27 17:38:43 +000098 /* don't allow short keys */
Ben Lindstrom03f39322002-04-02 20:43:11 +000099 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Damien Miller4a1c7aa2014-02-04 11:03:36 +1100100 error("%s: RSA modulus too small: %d < minimum %d bits",
101 __func__,
Ben Lindstrom2779d282002-06-11 15:47:42 +0000102 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrome1f9e322002-03-27 17:38:43 +0000103 return (0);
104 }
105
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000106 /* The response is MD5 of decrypted challenge plus session id. */
107 len = BN_num_bytes(challenge);
108 if (len <= 0 || len > 32)
Damien Miller4a1c7aa2014-02-04 11:03:36 +1100109 fatal("%s: bad challenge length %d", __func__, len);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000110 memset(buf, 0, 32);
111 BN_bn2bin(challenge, buf + 32 - len);
Damien Miller4a1c7aa2014-02-04 11:03:36 +1100112 if ((md = ssh_digest_start(SSH_DIGEST_MD5)) == NULL ||
113 ssh_digest_update(md, buf, 32) < 0 ||
114 ssh_digest_update(md, session_id, 16) < 0 ||
115 ssh_digest_final(md, mdbuf, sizeof(mdbuf)) < 0)
116 fatal("%s: md5 failed", __func__);
117 ssh_digest_free(md);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000118
119 /* Verify that the response is the original challenge. */
Damien Millerea1651c2010-07-16 13:58:37 +1000120 if (timingsafe_bcmp(response, mdbuf, 16) != 0) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000121 /* Wrong answer. */
122 return (0);
123 }
124 /* Correct answer. */
125 return (1);
126}
127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
129 * Performs the RSA authentication challenge-response dialog with the client,
130 * and returns true (non-zero) if the client gave the correct answer to
131 * our challenge; returns zero if the client gives a wrong answer.
132 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
134int
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000135auth_rsa_challenge_dialog(Key *key)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136{
Damien Miller98c7ad62000-03-09 21:27:49 +1100137 BIGNUM *challenge, *encrypted_challenge;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000138 u_char response[16];
139 int i, success;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Millerda755162002-01-22 23:09:22 +1100141 if ((encrypted_challenge = BN_new()) == NULL)
142 fatal("auth_rsa_challenge_dialog: BN_new() failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000144 challenge = PRIVSEP(auth_rsa_generate_challenge(key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145
Damien Miller95def091999-11-25 00:26:21 +1100146 /* Encrypt the challenge with the public key. */
Damien Miller86687062014-07-02 15:28:02 +1000147 if (rsa_public_encrypt(encrypted_challenge, challenge, key->rsa) != 0)
148 fatal("%s: rsa_public_encrypt failed", __func__);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149
Damien Miller95def091999-11-25 00:26:21 +1100150 /* Send the encrypted challenge to the client. */
151 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
152 packet_put_bignum(encrypted_challenge);
153 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +1100154 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +1100155 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156
Damien Miller98c7ad62000-03-09 21:27:49 +1100157 /* Wait for a response. */
Damien Millerdff50992002-01-22 23:16:32 +1100158 packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE);
Damien Miller98c7ad62000-03-09 21:27:49 +1100159 for (i = 0; i < 16; i++)
Damien Miller8ba29fe2006-03-26 14:25:19 +1100160 response[i] = (u_char)packet_get_char();
Damien Miller48b03fc2002-01-22 23:11:40 +1100161 packet_check_eom();
Damien Miller98c7ad62000-03-09 21:27:49 +1100162
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000163 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
Damien Miller95def091999-11-25 00:26:21 +1100164 BN_clear_free(challenge);
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000165 return (success);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166}
167
Damien Millerd8478b62011-05-29 21:39:36 +1000168static int
169rsa_key_allowed_in_file(struct passwd *pw, char *file,
170 const BIGNUM *client_n, Key **rkey)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171{
Darren Tucker0acca372013-06-02 07:41:51 +1000172 char *fp, line[SSH_MAX_PUBKEY_BYTES];
Damien Millerce986542013-07-18 16:12:44 +1000173 int allowed = 0, bits;
Damien Miller95def091999-11-25 00:26:21 +1100174 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000175 u_long linenum = 0;
Damien Miller89681212001-12-21 12:52:39 +1100176 Key *key;
Damien Miller874d77b2000-10-14 16:23:11 +1100177
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000178 debug("trying public RSA key file %s", file);
Damien Millerd8478b62011-05-29 21:39:36 +1000179 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) == NULL)
180 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100181
Damien Miller5428f641999-11-25 11:54:57 +1100182 /*
183 * Go though the accepted keys, looking for the current key. If
184 * found, perform a challenge-response dialog to verify that the
185 * user really has the corresponding private key.
186 */
Damien Millerd8478b62011-05-29 21:39:36 +1000187 key = key_new(KEY_RSA1);
Darren Tucker22cc7412004-12-06 22:47:41 +1100188 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100189 char *cp;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000190 char *key_options;
Damien Millereccb9de2005-06-17 12:59:34 +1000191 int keybits;
Damien Miller95def091999-11-25 00:26:21 +1100192
Damien Miller5428f641999-11-25 11:54:57 +1100193 /* Skip leading whitespace, empty and comment lines. */
194 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
195 ;
Damien Miller95def091999-11-25 00:26:21 +1100196 if (!*cp || *cp == '\n' || *cp == '#')
197 continue;
198
Damien Miller5428f641999-11-25 11:54:57 +1100199 /*
200 * Check if there are options for this key, and if so,
201 * save their starting address and skip the option part
202 * for now. If there are no options, set the starting
203 * address to NULL.
204 */
Damien Miller95def091999-11-25 00:26:21 +1100205 if (*cp < '0' || *cp > '9') {
206 int quoted = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000207 key_options = cp;
Damien Miller95def091999-11-25 00:26:21 +1100208 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
209 if (*cp == '\\' && cp[1] == '"')
210 cp++; /* Skip both */
211 else if (*cp == '"')
212 quoted = !quoted;
213 }
214 } else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000215 key_options = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100216
217 /* Parse the key from the line. */
Damien Miller89681212001-12-21 12:52:39 +1100218 if (hostfile_read_key(&cp, &bits, key) == 0) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000219 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000220 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100221 continue;
222 }
223 /* cp now points to the comment part. */
224
Damien Millerd8478b62011-05-29 21:39:36 +1000225 /*
226 * Check if the we have found the desired key (identified
227 * by its modulus).
228 */
Damien Miller89681212001-12-21 12:52:39 +1100229 if (BN_cmp(key->rsa->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100230 continue;
Damien Miller95def091999-11-25 00:26:21 +1100231
Damien Milleraae6c611999-12-06 11:47:28 +1100232 /* check the real bits */
Damien Millereccb9de2005-06-17 12:59:34 +1000233 keybits = BN_num_bits(key->rsa->n);
Damien Millerce986542013-07-18 16:12:44 +1000234 if (keybits < 0 || bits != keybits)
Damien Miller996acd22003-04-09 20:59:48 +1000235 logit("Warning: %s, line %lu: keysize mismatch: "
Damien Milleraae6c611999-12-06 11:47:28 +1100236 "actual %d vs. announced %d.",
Damien Miller89681212001-12-21 12:52:39 +1100237 file, linenum, BN_num_bits(key->rsa->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100238
Darren Tucker0acca372013-06-02 07:41:51 +1000239 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
240 debug("matching key found: file %s, line %lu %s %s",
241 file, linenum, key_type(key), fp);
242 free(fp);
243
Darren Tuckeradab6f12010-12-05 09:01:47 +1100244 /* Never accept a revoked key */
245 if (auth_key_is_revoked(key))
246 break;
247
Damien Miller95def091999-11-25 00:26:21 +1100248 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000249 /*
250 * If our options do not allow this key to be used,
251 * do not send challenge.
252 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000253 if (!auth_parse_options(pw, key_options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000254 continue;
Damien Miller3b903822010-05-21 14:56:25 +1000255 if (key_is_cert_authority)
256 continue;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000257 /* break out, this key is allowed */
258 allowed = 1;
Damien Miller50a41ed2000-10-16 12:14:42 +1100259 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260 }
261
Damien Miller95def091999-11-25 00:26:21 +1100262 /* Close the file. */
263 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000265 /* return key if allowed */
266 if (allowed && rkey != NULL)
267 *rkey = key;
268 else
269 key_free(key);
Damien Millerd8478b62011-05-29 21:39:36 +1000270
271 return allowed;
272}
273
274/*
275 * check if there's user key matching client_n,
276 * return key if login is allowed, NULL otherwise
277 */
278
279int
280auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey)
281{
282 char *file;
283 u_int i, allowed = 0;
284
285 temporarily_use_uid(pw);
286
287 for (i = 0; !allowed && i < options.num_authkeys_files; i++) {
Damien Miller09d3e122012-10-31 08:58:58 +1100288 if (strcasecmp(options.authorized_keys_files[i], "none") == 0)
289 continue;
Damien Millerd8478b62011-05-29 21:39:36 +1000290 file = expand_authorized_keys(
291 options.authorized_keys_files[i], pw);
292 allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey);
Darren Tuckera627d422013-06-02 07:31:17 +1000293 free(file);
Damien Millerd8478b62011-05-29 21:39:36 +1000294 }
295
296 restore_uid();
297
298 return allowed;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000299}
300
301/*
302 * Performs the RSA authentication dialog with the client. This returns
303 * 0 if the client could not be authenticated, and 1 if authentication was
304 * successful. This may exit if there is a serious protocol violation.
305 */
306int
Damien Miller3e3b5142003-11-17 21:13:40 +1100307auth_rsa(Authctxt *authctxt, BIGNUM *client_n)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000308{
309 Key *key;
Damien Miller3e3b5142003-11-17 21:13:40 +1100310 struct passwd *pw = authctxt->pw;
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000311
312 /* no user given */
Damien Miller3e3b5142003-11-17 21:13:40 +1100313 if (!authctxt->valid)
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000314 return 0;
315
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000316 if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) {
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000317 auth_clear_options();
318 return (0);
319 }
320
321 /* Perform the challenge-response dialog for this key. */
322 if (!auth_rsa_challenge_dialog(key)) {
323 /* Wrong response. */
324 verbose("Wrong response to RSA authentication challenge.");
325 packet_send_debug("Wrong response to RSA authentication challenge.");
326 /*
327 * Break out of the loop. Otherwise we might send
328 * another challenge and break the protocol.
329 */
330 key_free(key);
331 return (0);
332 }
333 /*
334 * Correct response. The client has been successfully
335 * authenticated. Note that we have not yet processed the
336 * options; this will be reset if the options cause the
337 * authentication to be rejected.
338 */
Damien Miller20bdcd72013-07-18 16:10:09 +1000339 pubkey_auth_info(authctxt, key, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000340
Ben Lindstrom9c8aefe2002-03-22 01:12:58 +0000341 packet_send_debug("RSA authentication accepted.");
342 return (1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343}