djm@openbsd.org | 9ce86c9 | 2015-01-28 22:36:00 +0000 | [diff] [blame^] | 1 | /* $OpenBSD: auth-rsa.c,v 1.90 2015/01/28 22:36:00 djm Exp $ */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 2 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 5 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 6 | * 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 Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 9 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 10 | * 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 Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 15 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 16 | |
| 17 | #include "includes.h" |
Damien Miller | f17883e | 2006-03-15 11:45:54 +1100 | [diff] [blame] | 18 | |
Damien Miller | 76c0480 | 2015-01-13 19:38:18 +1100 | [diff] [blame] | 19 | #ifdef WITH_SSH1 |
| 20 | |
Damien Miller | f17883e | 2006-03-15 11:45:54 +1100 | [diff] [blame] | 21 | #include <sys/types.h> |
| 22 | #include <sys/stat.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 23 | |
| 24 | #include <openssl/rsa.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 25 | |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 26 | #include <pwd.h> |
Damien Miller | a7a73ee | 2006-08-05 11:37:59 +1000 | [diff] [blame] | 27 | #include <stdio.h> |
Damien Miller | ded319c | 2006-09-01 15:38:36 +1000 | [diff] [blame] | 28 | #include <stdarg.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 29 | #include <string.h> |
Damien Miller | 9f2abc4 | 2006-07-10 20:53:08 +1000 | [diff] [blame] | 30 | |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 31 | #include "xmalloc.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 32 | #include "rsa.h" |
| 33 | #include "packet.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 34 | #include "ssh1.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 35 | #include "uidswap.h" |
| 36 | #include "match.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 37 | #include "buffer.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 38 | #include "pathnames.h" |
| 39 | #include "log.h" |
Damien Miller | 7acefbb | 2014-07-18 14:11:24 +1000 | [diff] [blame] | 40 | #include "misc.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 41 | #include "servconf.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 42 | #include "key.h" |
Damien Miller | 4e270b0 | 2010-04-16 15:56:21 +1000 | [diff] [blame] | 43 | #include "auth-options.h" |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 44 | #include "hostfile.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 45 | #include "auth.h" |
| 46 | #ifdef GSSAPI |
| 47 | #include "ssh-gss.h" |
| 48 | #endif |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 49 | #include "monitor_wrap.h" |
Ben Lindstrom | 03f3932 | 2002-04-02 20:43:11 +0000 | [diff] [blame] | 50 | #include "ssh.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 51 | |
Damien Miller | 4a1c7aa | 2014-02-04 11:03:36 +1100 | [diff] [blame] | 52 | #include "digest.h" |
| 53 | |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 54 | /* import */ |
| 55 | extern ServerOptions options; |
| 56 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 57 | /* |
| 58 | * Session identifier that is used to bind key exchange and authentication |
| 59 | * responses to a particular session. |
| 60 | */ |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 61 | extern u_char session_id[16]; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 62 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 63 | /* |
| 64 | * The .ssh/authorized_keys file contains public keys, one per line, in the |
| 65 | * following format: |
| 66 | * options bits e n comment |
| 67 | * where bits, e and n are decimal numbers, |
| 68 | * and comment is any string of characters up to newline. The maximum |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 69 | * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 70 | * description of the options. |
| 71 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 72 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 73 | BIGNUM * |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 74 | auth_rsa_generate_challenge(Key *key) |
| 75 | { |
| 76 | BIGNUM *challenge; |
| 77 | BN_CTX *ctx; |
| 78 | |
| 79 | if ((challenge = BN_new()) == NULL) |
| 80 | fatal("auth_rsa_generate_challenge: BN_new() failed"); |
| 81 | /* Generate a random challenge. */ |
Darren Tucker | 0bc8557 | 2006-11-07 23:14:41 +1100 | [diff] [blame] | 82 | if (BN_rand(challenge, 256, 0, 0) == 0) |
| 83 | fatal("auth_rsa_generate_challenge: BN_rand failed"); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 84 | if ((ctx = BN_CTX_new()) == NULL) |
Darren Tucker | 0bc8557 | 2006-11-07 23:14:41 +1100 | [diff] [blame] | 85 | fatal("auth_rsa_generate_challenge: BN_CTX_new failed"); |
| 86 | if (BN_mod(challenge, challenge, key->rsa->n, ctx) == 0) |
| 87 | fatal("auth_rsa_generate_challenge: BN_mod failed"); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 88 | BN_CTX_free(ctx); |
| 89 | |
| 90 | return challenge; |
| 91 | } |
| 92 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 93 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 94 | auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16]) |
| 95 | { |
| 96 | u_char buf[32], mdbuf[16]; |
Damien Miller | 4a1c7aa | 2014-02-04 11:03:36 +1100 | [diff] [blame] | 97 | struct ssh_digest_ctx *md; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 98 | int len; |
| 99 | |
Ben Lindstrom | e1f9e32 | 2002-03-27 17:38:43 +0000 | [diff] [blame] | 100 | /* don't allow short keys */ |
Ben Lindstrom | 03f3932 | 2002-04-02 20:43:11 +0000 | [diff] [blame] | 101 | if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) { |
Damien Miller | 4a1c7aa | 2014-02-04 11:03:36 +1100 | [diff] [blame] | 102 | error("%s: RSA modulus too small: %d < minimum %d bits", |
| 103 | __func__, |
Ben Lindstrom | 2779d28 | 2002-06-11 15:47:42 +0000 | [diff] [blame] | 104 | BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE); |
Ben Lindstrom | e1f9e32 | 2002-03-27 17:38:43 +0000 | [diff] [blame] | 105 | return (0); |
| 106 | } |
| 107 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 108 | /* The response is MD5 of decrypted challenge plus session id. */ |
| 109 | len = BN_num_bytes(challenge); |
| 110 | if (len <= 0 || len > 32) |
Damien Miller | 4a1c7aa | 2014-02-04 11:03:36 +1100 | [diff] [blame] | 111 | fatal("%s: bad challenge length %d", __func__, len); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 112 | memset(buf, 0, 32); |
| 113 | BN_bn2bin(challenge, buf + 32 - len); |
Damien Miller | 4a1c7aa | 2014-02-04 11:03:36 +1100 | [diff] [blame] | 114 | if ((md = ssh_digest_start(SSH_DIGEST_MD5)) == NULL || |
| 115 | ssh_digest_update(md, buf, 32) < 0 || |
| 116 | ssh_digest_update(md, session_id, 16) < 0 || |
| 117 | ssh_digest_final(md, mdbuf, sizeof(mdbuf)) < 0) |
| 118 | fatal("%s: md5 failed", __func__); |
| 119 | ssh_digest_free(md); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 120 | |
| 121 | /* Verify that the response is the original challenge. */ |
Damien Miller | ea1651c | 2010-07-16 13:58:37 +1000 | [diff] [blame] | 122 | if (timingsafe_bcmp(response, mdbuf, 16) != 0) { |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 123 | /* Wrong answer. */ |
| 124 | return (0); |
| 125 | } |
| 126 | /* Correct answer. */ |
| 127 | return (1); |
| 128 | } |
| 129 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 130 | /* |
| 131 | * Performs the RSA authentication challenge-response dialog with the client, |
| 132 | * and returns true (non-zero) if the client gave the correct answer to |
| 133 | * our challenge; returns zero if the client gives a wrong answer. |
| 134 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 135 | |
| 136 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 137 | auth_rsa_challenge_dialog(Key *key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 138 | { |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 139 | BIGNUM *challenge, *encrypted_challenge; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 140 | u_char response[16]; |
| 141 | int i, success; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 142 | |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 143 | if ((encrypted_challenge = BN_new()) == NULL) |
| 144 | fatal("auth_rsa_challenge_dialog: BN_new() failed"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 145 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 146 | challenge = PRIVSEP(auth_rsa_generate_challenge(key)); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 147 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 148 | /* Encrypt the challenge with the public key. */ |
Damien Miller | 8668706 | 2014-07-02 15:28:02 +1000 | [diff] [blame] | 149 | if (rsa_public_encrypt(encrypted_challenge, challenge, key->rsa) != 0) |
| 150 | fatal("%s: rsa_public_encrypt failed", __func__); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 151 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 152 | /* Send the encrypted challenge to the client. */ |
| 153 | packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE); |
| 154 | packet_put_bignum(encrypted_challenge); |
| 155 | packet_send(); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 156 | BN_clear_free(encrypted_challenge); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 157 | packet_write_wait(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 158 | |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 159 | /* Wait for a response. */ |
Damien Miller | dff5099 | 2002-01-22 23:16:32 +1100 | [diff] [blame] | 160 | packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 161 | for (i = 0; i < 16; i++) |
Damien Miller | 8ba29fe | 2006-03-26 14:25:19 +1100 | [diff] [blame] | 162 | response[i] = (u_char)packet_get_char(); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 163 | packet_check_eom(); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 164 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 165 | success = PRIVSEP(auth_rsa_verify_response(key, challenge, response)); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 166 | BN_clear_free(challenge); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 167 | return (success); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 168 | } |
| 169 | |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 170 | static int |
| 171 | rsa_key_allowed_in_file(struct passwd *pw, char *file, |
| 172 | const BIGNUM *client_n, Key **rkey) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 173 | { |
Darren Tucker | 0acca37 | 2013-06-02 07:41:51 +1000 | [diff] [blame] | 174 | char *fp, line[SSH_MAX_PUBKEY_BYTES]; |
Damien Miller | ce98654 | 2013-07-18 16:12:44 +1000 | [diff] [blame] | 175 | int allowed = 0, bits; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 176 | FILE *f; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 177 | u_long linenum = 0; |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 178 | Key *key; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 179 | |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 180 | debug("trying public RSA key file %s", file); |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 181 | if ((f = auth_openkeyfile(file, pw, options.strict_modes)) == NULL) |
| 182 | return 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 183 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 184 | /* |
| 185 | * Go though the accepted keys, looking for the current key. If |
| 186 | * found, perform a challenge-response dialog to verify that the |
| 187 | * user really has the corresponding private key. |
| 188 | */ |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 189 | key = key_new(KEY_RSA1); |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 190 | while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 191 | char *cp; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 192 | char *key_options; |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 193 | int keybits; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 194 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 195 | /* Skip leading whitespace, empty and comment lines. */ |
| 196 | for (cp = line; *cp == ' ' || *cp == '\t'; cp++) |
| 197 | ; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 198 | if (!*cp || *cp == '\n' || *cp == '#') |
| 199 | continue; |
| 200 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 201 | /* |
| 202 | * Check if there are options for this key, and if so, |
| 203 | * save their starting address and skip the option part |
| 204 | * for now. If there are no options, set the starting |
| 205 | * address to NULL. |
| 206 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 207 | if (*cp < '0' || *cp > '9') { |
| 208 | int quoted = 0; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 209 | key_options = cp; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 210 | for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { |
| 211 | if (*cp == '\\' && cp[1] == '"') |
| 212 | cp++; /* Skip both */ |
| 213 | else if (*cp == '"') |
| 214 | quoted = !quoted; |
| 215 | } |
| 216 | } else |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 217 | key_options = NULL; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 218 | |
| 219 | /* Parse the key from the line. */ |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 220 | if (hostfile_read_key(&cp, &bits, key) == 0) { |
Ben Lindstrom | f96704d | 2001-06-25 04:17:12 +0000 | [diff] [blame] | 221 | debug("%.100s, line %lu: non ssh1 key syntax", |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 222 | file, linenum); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 223 | continue; |
| 224 | } |
| 225 | /* cp now points to the comment part. */ |
| 226 | |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 227 | /* |
| 228 | * Check if the we have found the desired key (identified |
| 229 | * by its modulus). |
| 230 | */ |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 231 | if (BN_cmp(key->rsa->n, client_n) != 0) |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 232 | continue; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 233 | |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 234 | /* check the real bits */ |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 235 | keybits = BN_num_bits(key->rsa->n); |
Damien Miller | ce98654 | 2013-07-18 16:12:44 +1000 | [diff] [blame] | 236 | if (keybits < 0 || bits != keybits) |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 237 | logit("Warning: %s, line %lu: keysize mismatch: " |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 238 | "actual %d vs. announced %d.", |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 239 | file, linenum, BN_num_bits(key->rsa->n), bits); |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 240 | |
djm@openbsd.org | 9ce86c9 | 2015-01-28 22:36:00 +0000 | [diff] [blame^] | 241 | if ((fp = sshkey_fingerprint(key, options.fingerprint_hash, |
| 242 | SSH_FP_DEFAULT)) == NULL) |
| 243 | continue; |
Darren Tucker | 0acca37 | 2013-06-02 07:41:51 +1000 | [diff] [blame] | 244 | debug("matching key found: file %s, line %lu %s %s", |
| 245 | file, linenum, key_type(key), fp); |
| 246 | free(fp); |
| 247 | |
Darren Tucker | adab6f1 | 2010-12-05 09:01:47 +1100 | [diff] [blame] | 248 | /* Never accept a revoked key */ |
| 249 | if (auth_key_is_revoked(key)) |
| 250 | break; |
| 251 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 252 | /* We have found the desired key. */ |
Ben Lindstrom | 1492029 | 2000-11-21 21:24:55 +0000 | [diff] [blame] | 253 | /* |
| 254 | * If our options do not allow this key to be used, |
| 255 | * do not send challenge. |
| 256 | */ |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 257 | if (!auth_parse_options(pw, key_options, file, linenum)) |
Ben Lindstrom | 1492029 | 2000-11-21 21:24:55 +0000 | [diff] [blame] | 258 | continue; |
Damien Miller | 3b90382 | 2010-05-21 14:56:25 +1000 | [diff] [blame] | 259 | if (key_is_cert_authority) |
| 260 | continue; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 261 | /* break out, this key is allowed */ |
| 262 | allowed = 1; |
Damien Miller | 50a41ed | 2000-10-16 12:14:42 +1100 | [diff] [blame] | 263 | break; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 264 | } |
| 265 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 266 | /* Close the file. */ |
| 267 | fclose(f); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 268 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 269 | /* return key if allowed */ |
| 270 | if (allowed && rkey != NULL) |
| 271 | *rkey = key; |
| 272 | else |
| 273 | key_free(key); |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 274 | |
| 275 | return allowed; |
| 276 | } |
| 277 | |
| 278 | /* |
| 279 | * check if there's user key matching client_n, |
| 280 | * return key if login is allowed, NULL otherwise |
| 281 | */ |
| 282 | |
| 283 | int |
| 284 | auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) |
| 285 | { |
| 286 | char *file; |
| 287 | u_int i, allowed = 0; |
| 288 | |
| 289 | temporarily_use_uid(pw); |
| 290 | |
| 291 | for (i = 0; !allowed && i < options.num_authkeys_files; i++) { |
Damien Miller | 09d3e12 | 2012-10-31 08:58:58 +1100 | [diff] [blame] | 292 | if (strcasecmp(options.authorized_keys_files[i], "none") == 0) |
| 293 | continue; |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 294 | file = expand_authorized_keys( |
| 295 | options.authorized_keys_files[i], pw); |
| 296 | allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey); |
Darren Tucker | a627d42 | 2013-06-02 07:31:17 +1000 | [diff] [blame] | 297 | free(file); |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | restore_uid(); |
| 301 | |
| 302 | return allowed; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | /* |
| 306 | * Performs the RSA authentication dialog with the client. This returns |
| 307 | * 0 if the client could not be authenticated, and 1 if authentication was |
| 308 | * successful. This may exit if there is a serious protocol violation. |
| 309 | */ |
| 310 | int |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 311 | auth_rsa(Authctxt *authctxt, BIGNUM *client_n) |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 312 | { |
| 313 | Key *key; |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 314 | struct passwd *pw = authctxt->pw; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 315 | |
| 316 | /* no user given */ |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 317 | if (!authctxt->valid) |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 318 | return 0; |
| 319 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 320 | if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) { |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 321 | auth_clear_options(); |
| 322 | return (0); |
| 323 | } |
| 324 | |
| 325 | /* Perform the challenge-response dialog for this key. */ |
| 326 | if (!auth_rsa_challenge_dialog(key)) { |
| 327 | /* Wrong response. */ |
| 328 | verbose("Wrong response to RSA authentication challenge."); |
| 329 | packet_send_debug("Wrong response to RSA authentication challenge."); |
| 330 | /* |
| 331 | * Break out of the loop. Otherwise we might send |
| 332 | * another challenge and break the protocol. |
| 333 | */ |
| 334 | key_free(key); |
| 335 | return (0); |
| 336 | } |
| 337 | /* |
| 338 | * Correct response. The client has been successfully |
| 339 | * authenticated. Note that we have not yet processed the |
| 340 | * options; this will be reset if the options cause the |
| 341 | * authentication to be rejected. |
| 342 | */ |
Damien Miller | 20bdcd7 | 2013-07-18 16:10:09 +1000 | [diff] [blame] | 343 | pubkey_auth_info(authctxt, key, NULL); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 344 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 345 | packet_send_debug("RSA authentication accepted."); |
| 346 | return (1); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 347 | } |
Damien Miller | 76c0480 | 2015-01-13 19:38:18 +1100 | [diff] [blame] | 348 | |
| 349 | #endif /* WITH_SSH1 */ |