Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 2 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * RSA-based authentication. This code determines whether to admit a login |
| 6 | * based on RSA authentication. This file also contains functions to check |
| 7 | * validity of the host key. |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 8 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 9 | * As far as I am concerned, the code I have written for this software |
| 10 | * can be used freely for any purpose. Any derived versions of this |
| 11 | * software must be clearly marked as such, and if the derived work is |
| 12 | * incompatible with the protocol description in the RFC file, it must be |
| 13 | * called by a name other than "ssh" or "Secure Shell". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 14 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #include "includes.h" |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 17 | RCSID("$OpenBSD: auth-rsa.c,v 1.63 2005/06/17 02:44:32 djm Exp $"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 18 | |
| 19 | #include <openssl/rsa.h> |
| 20 | #include <openssl/md5.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 21 | |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 22 | #include "rsa.h" |
| 23 | #include "packet.h" |
| 24 | #include "xmalloc.h" |
| 25 | #include "ssh1.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 26 | #include "uidswap.h" |
| 27 | #include "match.h" |
| 28 | #include "auth-options.h" |
| 29 | #include "pathnames.h" |
| 30 | #include "log.h" |
| 31 | #include "servconf.h" |
| 32 | #include "auth.h" |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 33 | #include "hostfile.h" |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 34 | #include "monitor_wrap.h" |
Ben Lindstrom | 03f3932 | 2002-04-02 20:43:11 +0000 | [diff] [blame] | 35 | #include "ssh.h" |
Darren Tucker | f0f9098 | 2004-12-11 13:39:50 +1100 | [diff] [blame] | 36 | #include "misc.h" |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 37 | |
| 38 | /* import */ |
| 39 | extern ServerOptions options; |
| 40 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 41 | /* |
| 42 | * Session identifier that is used to bind key exchange and authentication |
| 43 | * responses to a particular session. |
| 44 | */ |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 45 | extern u_char session_id[16]; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 46 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 47 | /* |
| 48 | * The .ssh/authorized_keys file contains public keys, one per line, in the |
| 49 | * following format: |
| 50 | * options bits e n comment |
| 51 | * where bits, e and n are decimal numbers, |
| 52 | * and comment is any string of characters up to newline. The maximum |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 53 | * 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] | 54 | * description of the options. |
| 55 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 56 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 57 | BIGNUM * |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 58 | auth_rsa_generate_challenge(Key *key) |
| 59 | { |
| 60 | BIGNUM *challenge; |
| 61 | BN_CTX *ctx; |
| 62 | |
| 63 | if ((challenge = BN_new()) == NULL) |
| 64 | fatal("auth_rsa_generate_challenge: BN_new() failed"); |
| 65 | /* Generate a random challenge. */ |
| 66 | BN_rand(challenge, 256, 0, 0); |
| 67 | if ((ctx = BN_CTX_new()) == NULL) |
| 68 | fatal("auth_rsa_generate_challenge: BN_CTX_new() failed"); |
| 69 | BN_mod(challenge, challenge, key->rsa->n, ctx); |
| 70 | BN_CTX_free(ctx); |
| 71 | |
| 72 | return challenge; |
| 73 | } |
| 74 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 75 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 76 | auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16]) |
| 77 | { |
| 78 | u_char buf[32], mdbuf[16]; |
| 79 | MD5_CTX md; |
| 80 | int len; |
| 81 | |
Ben Lindstrom | e1f9e32 | 2002-03-27 17:38:43 +0000 | [diff] [blame] | 82 | /* don't allow short keys */ |
Ben Lindstrom | 03f3932 | 2002-04-02 20:43:11 +0000 | [diff] [blame] | 83 | if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) { |
Ben Lindstrom | 2779d28 | 2002-06-11 15:47:42 +0000 | [diff] [blame] | 84 | error("auth_rsa_verify_response: RSA modulus too small: %d < minimum %d bits", |
| 85 | BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE); |
Ben Lindstrom | e1f9e32 | 2002-03-27 17:38:43 +0000 | [diff] [blame] | 86 | return (0); |
| 87 | } |
| 88 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 89 | /* The response is MD5 of decrypted challenge plus session id. */ |
| 90 | len = BN_num_bytes(challenge); |
| 91 | if (len <= 0 || len > 32) |
| 92 | fatal("auth_rsa_verify_response: bad challenge length %d", len); |
| 93 | memset(buf, 0, 32); |
| 94 | BN_bn2bin(challenge, buf + 32 - len); |
| 95 | MD5_Init(&md); |
| 96 | MD5_Update(&md, buf, 32); |
| 97 | MD5_Update(&md, session_id, 16); |
| 98 | MD5_Final(mdbuf, &md); |
| 99 | |
| 100 | /* Verify that the response is the original challenge. */ |
| 101 | if (memcmp(response, mdbuf, 16) != 0) { |
| 102 | /* Wrong answer. */ |
| 103 | return (0); |
| 104 | } |
| 105 | /* Correct answer. */ |
| 106 | return (1); |
| 107 | } |
| 108 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 109 | /* |
| 110 | * Performs the RSA authentication challenge-response dialog with the client, |
| 111 | * and returns true (non-zero) if the client gave the correct answer to |
| 112 | * our challenge; returns zero if the client gives a wrong answer. |
| 113 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 114 | |
| 115 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 116 | auth_rsa_challenge_dialog(Key *key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 117 | { |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 118 | BIGNUM *challenge, *encrypted_challenge; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 119 | u_char response[16]; |
| 120 | int i, success; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 121 | |
Damien Miller | da75516 | 2002-01-22 23:09:22 +1100 | [diff] [blame] | 122 | if ((encrypted_challenge = BN_new()) == NULL) |
| 123 | fatal("auth_rsa_challenge_dialog: BN_new() failed"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 124 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 125 | challenge = PRIVSEP(auth_rsa_generate_challenge(key)); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 126 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 127 | /* Encrypt the challenge with the public key. */ |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 128 | rsa_public_encrypt(encrypted_challenge, challenge, key->rsa); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 129 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 130 | /* Send the encrypted challenge to the client. */ |
| 131 | packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE); |
| 132 | packet_put_bignum(encrypted_challenge); |
| 133 | packet_send(); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 134 | BN_clear_free(encrypted_challenge); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 135 | packet_write_wait(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 136 | |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 137 | /* Wait for a response. */ |
Damien Miller | dff5099 | 2002-01-22 23:16:32 +1100 | [diff] [blame] | 138 | packet_read_expect(SSH_CMSG_AUTH_RSA_RESPONSE); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 139 | for (i = 0; i < 16; i++) |
| 140 | response[i] = packet_get_char(); |
Damien Miller | 48b03fc | 2002-01-22 23:11:40 +1100 | [diff] [blame] | 141 | packet_check_eom(); |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 142 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 143 | success = PRIVSEP(auth_rsa_verify_response(key, challenge, response)); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 144 | BN_clear_free(challenge); |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 145 | return (success); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 146 | } |
| 147 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 148 | /* |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 149 | * check if there's user key matching client_n, |
| 150 | * return key if login is allowed, NULL otherwise |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 151 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 152 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 153 | int |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 154 | auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 155 | { |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 156 | char line[SSH_MAX_PUBKEY_BYTES], *file; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 157 | int allowed = 0; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 158 | u_int bits; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 159 | FILE *f; |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 160 | u_long linenum = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 161 | struct stat st; |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 162 | Key *key; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 163 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 164 | /* Temporarily use the user's uid. */ |
Ben Lindstrom | 3fcf1a2 | 2001-04-08 18:26:59 +0000 | [diff] [blame] | 165 | temporarily_use_uid(pw); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 166 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 167 | /* The authorized keys. */ |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 168 | file = authorized_keys_file(pw); |
| 169 | debug("trying public RSA key file %s", file); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 170 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 171 | /* Fail quietly if file does not exist */ |
| 172 | if (stat(file, &st) < 0) { |
| 173 | /* Restore the privileged uid. */ |
| 174 | restore_uid(); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 175 | xfree(file); |
Ben Lindstrom | f6d367b | 2002-03-26 02:59:31 +0000 | [diff] [blame] | 176 | return (0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 177 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 178 | /* Open the file containing the authorized keys. */ |
| 179 | f = fopen(file, "r"); |
| 180 | if (!f) { |
| 181 | /* Restore the privileged uid. */ |
| 182 | restore_uid(); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 183 | xfree(file); |
Ben Lindstrom | f6d367b | 2002-03-26 02:59:31 +0000 | [diff] [blame] | 184 | return (0); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 185 | } |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 186 | if (options.strict_modes && |
Ben Lindstrom | 248c078 | 2001-07-04 03:40:39 +0000 | [diff] [blame] | 187 | secure_filename(f, file, pw, line, sizeof(line)) != 0) { |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 188 | xfree(file); |
| 189 | fclose(f); |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 190 | logit("Authentication refused: %s", line); |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 191 | restore_uid(); |
Ben Lindstrom | f6d367b | 2002-03-26 02:59:31 +0000 | [diff] [blame] | 192 | return (0); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 193 | } |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 194 | |
| 195 | /* Flag indicating whether the key is allowed. */ |
| 196 | allowed = 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 197 | |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 198 | key = key_new(KEY_RSA1); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 199 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 200 | /* |
| 201 | * Go though the accepted keys, looking for the current key. If |
| 202 | * found, perform a challenge-response dialog to verify that the |
| 203 | * user really has the corresponding private key. |
| 204 | */ |
Darren Tucker | 22cc741 | 2004-12-06 22:47:41 +1100 | [diff] [blame] | 205 | while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 206 | char *cp; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 207 | char *key_options; |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 208 | int keybits; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 209 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 210 | /* Skip leading whitespace, empty and comment lines. */ |
| 211 | for (cp = line; *cp == ' ' || *cp == '\t'; cp++) |
| 212 | ; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 213 | if (!*cp || *cp == '\n' || *cp == '#') |
| 214 | continue; |
| 215 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 216 | /* |
| 217 | * Check if there are options for this key, and if so, |
| 218 | * save their starting address and skip the option part |
| 219 | * for now. If there are no options, set the starting |
| 220 | * address to NULL. |
| 221 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 222 | if (*cp < '0' || *cp > '9') { |
| 223 | int quoted = 0; |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 224 | key_options = cp; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 225 | for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) { |
| 226 | if (*cp == '\\' && cp[1] == '"') |
| 227 | cp++; /* Skip both */ |
| 228 | else if (*cp == '"') |
| 229 | quoted = !quoted; |
| 230 | } |
| 231 | } else |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 232 | key_options = NULL; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 233 | |
| 234 | /* Parse the key from the line. */ |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 235 | if (hostfile_read_key(&cp, &bits, key) == 0) { |
Ben Lindstrom | f96704d | 2001-06-25 04:17:12 +0000 | [diff] [blame] | 236 | debug("%.100s, line %lu: non ssh1 key syntax", |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 237 | file, linenum); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 238 | continue; |
| 239 | } |
| 240 | /* cp now points to the comment part. */ |
| 241 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 242 | /* Check if the we have found the desired key (identified by its modulus). */ |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 243 | if (BN_cmp(key->rsa->n, client_n) != 0) |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 244 | continue; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 245 | |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 246 | /* check the real bits */ |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 247 | keybits = BN_num_bits(key->rsa->n); |
| 248 | if (keybits < 0 || bits != (u_int)keybits) |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 249 | logit("Warning: %s, line %lu: keysize mismatch: " |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 250 | "actual %d vs. announced %d.", |
Damien Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 251 | file, linenum, BN_num_bits(key->rsa->n), bits); |
Damien Miller | aae6c61 | 1999-12-06 11:47:28 +1100 | [diff] [blame] | 252 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 253 | /* We have found the desired key. */ |
Ben Lindstrom | 1492029 | 2000-11-21 21:24:55 +0000 | [diff] [blame] | 254 | /* |
| 255 | * If our options do not allow this key to be used, |
| 256 | * do not send challenge. |
| 257 | */ |
Darren Tucker | 3f9fdc7 | 2004-06-22 12:56:01 +1000 | [diff] [blame] | 258 | if (!auth_parse_options(pw, key_options, file, linenum)) |
Ben Lindstrom | 1492029 | 2000-11-21 21:24:55 +0000 | [diff] [blame] | 259 | continue; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 260 | |
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 | /* Restore the privileged uid. */ |
| 267 | restore_uid(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 268 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 269 | /* Close the file. */ |
Ben Lindstrom | bfb3a0e | 2001-06-05 20:25:05 +0000 | [diff] [blame] | 270 | xfree(file); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 271 | fclose(f); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 272 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 273 | /* 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 | */ |
| 286 | int |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 287 | auth_rsa(Authctxt *authctxt, BIGNUM *client_n) |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 288 | { |
| 289 | Key *key; |
| 290 | char *fp; |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 291 | struct passwd *pw = authctxt->pw; |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 292 | |
| 293 | /* no user given */ |
Damien Miller | 3e3b514 | 2003-11-17 21:13:40 +1100 | [diff] [blame] | 294 | if (!authctxt->valid) |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 295 | return 0; |
| 296 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 297 | if (!PRIVSEP(auth_rsa_key_allowed(pw, client_n, &key))) { |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 298 | 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 Miller | 8968121 | 2001-12-21 12:52:39 +1100 | [diff] [blame] | 324 | key_free(key); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 325 | |
Ben Lindstrom | 9c8aefe | 2002-03-22 01:12:58 +0000 | [diff] [blame] | 326 | packet_send_debug("RSA authentication accepted."); |
| 327 | return (1); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 328 | } |