]> andersk Git - openssh.git/blame - auth-rsa.c
- jakob@cvs.openbsd.org 2001/12/18 10:05:15
[openssh.git] / auth-rsa.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5260325f 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.
6ae2364d 8 *
bcbf86ec 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".
5260325f 14 */
8efc0c15 15
16#include "includes.h"
2975f58d 17RCSID("$OpenBSD: auth-rsa.c,v 1.45 2001/11/29 22:08:48 markus Exp $");
42f11eb2 18
19#include <openssl/rsa.h>
20#include <openssl/md5.h>
8efc0c15 21
22#include "rsa.h"
23#include "packet.h"
24#include "xmalloc.h"
42f11eb2 25#include "ssh1.h"
8efc0c15 26#include "mpaux.h"
27#include "uidswap.h"
4fe2af09 28#include "match.h"
38c295d6 29#include "auth-options.h"
42f11eb2 30#include "pathnames.h"
31#include "log.h"
32#include "servconf.h"
33#include "auth.h"
94ec8c6b 34
35/* import */
36extern ServerOptions options;
37
aa3378df 38/*
39 * Session identifier that is used to bind key exchange and authentication
40 * responses to a particular session.
41 */
1e3b8b07 42extern u_char session_id[16];
8efc0c15 43
aa3378df 44/*
45 * The .ssh/authorized_keys file contains public keys, one per line, in the
46 * following format:
47 * options bits e n comment
48 * where bits, e and n are decimal numbers,
49 * and comment is any string of characters up to newline. The maximum
50 * length of a line is 8000 characters. See the documentation for a
51 * description of the options.
52 */
8efc0c15 53
aa3378df 54/*
55 * Performs the RSA authentication challenge-response dialog with the client,
56 * and returns true (non-zero) if the client gave the correct answer to
57 * our challenge; returns zero if the client gives a wrong answer.
58 */
8efc0c15 59
60int
4fe2af09 61auth_rsa_challenge_dialog(RSA *pk)
8efc0c15 62{
c8d54615 63 BIGNUM *challenge, *encrypted_challenge;
c8d54615 64 BN_CTX *ctx;
1e3b8b07 65 u_char buf[32], mdbuf[16], response[16];
5260325f 66 MD5_CTX md;
1e3b8b07 67 u_int i;
5260325f 68 int plen, len;
69
70 encrypted_challenge = BN_new();
71 challenge = BN_new();
5260325f 72
73 /* Generate a random challenge. */
74 BN_rand(challenge, 256, 0, 0);
c8d54615 75 ctx = BN_CTX_new();
4fe2af09 76 BN_mod(challenge, challenge, pk->n, ctx);
c8d54615 77 BN_CTX_free(ctx);
5260325f 78
5260325f 79 /* Encrypt the challenge with the public key. */
80 rsa_public_encrypt(encrypted_challenge, challenge, pk);
5260325f 81
82 /* Send the encrypted challenge to the client. */
83 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
84 packet_put_bignum(encrypted_challenge);
85 packet_send();
c8d54615 86 BN_clear_free(encrypted_challenge);
5260325f 87 packet_write_wait();
88
c8d54615 89 /* Wait for a response. */
90 packet_read_expect(&plen, SSH_CMSG_AUTH_RSA_RESPONSE);
91 packet_integrity_check(plen, 16, SSH_CMSG_AUTH_RSA_RESPONSE);
92 for (i = 0; i < 16; i++)
93 response[i] = packet_get_char();
94
5260325f 95 /* The response is MD5 of decrypted challenge plus session id. */
96 len = BN_num_bytes(challenge);
97 if (len <= 0 || len > 32)
98 fatal("auth_rsa_challenge_dialog: bad challenge length %d", len);
99 memset(buf, 0, 32);
100 BN_bn2bin(challenge, buf + 32 - len);
101 MD5_Init(&md);
102 MD5_Update(&md, buf, 32);
103 MD5_Update(&md, session_id, 16);
104 MD5_Final(mdbuf, &md);
5260325f 105 BN_clear_free(challenge);
5260325f 106
107 /* Verify that the response is the original challenge. */
108 if (memcmp(response, mdbuf, 16) != 0) {
109 /* Wrong answer. */
110 return 0;
111 }
112 /* Correct answer. */
113 return 1;
8efc0c15 114}
115
aa3378df 116/*
117 * Performs the RSA authentication dialog with the client. This returns
118 * 0 if the client could not be authenticated, and 1 if authentication was
119 * successful. This may exit if there is a serious protocol violation.
120 */
8efc0c15 121
122int
6fa724bc 123auth_rsa(struct passwd *pw, BIGNUM *client_n)
8efc0c15 124{
c8445989 125 char line[8192], *file;
5260325f 126 int authenticated;
1e3b8b07 127 u_int bits;
5260325f 128 FILE *f;
1e3b8b07 129 u_long linenum = 0;
5260325f 130 struct stat st;
4fe2af09 131 RSA *pk;
5260325f 132
94ec8c6b 133 /* no user given */
134 if (pw == NULL)
135 return 0;
136
5260325f 137 /* Temporarily use the user's uid. */
63bd8c36 138 temporarily_use_uid(pw);
5260325f 139
140 /* The authorized keys. */
c8445989 141 file = authorized_keys_file(pw);
142 debug("trying public RSA key file %s", file);
5260325f 143
144 /* Fail quietly if file does not exist */
145 if (stat(file, &st) < 0) {
146 /* Restore the privileged uid. */
147 restore_uid();
c8445989 148 xfree(file);
5260325f 149 return 0;
8efc0c15 150 }
5260325f 151 /* Open the file containing the authorized keys. */
152 f = fopen(file, "r");
153 if (!f) {
154 /* Restore the privileged uid. */
155 restore_uid();
156 packet_send_debug("Could not open %.900s for reading.", file);
157 packet_send_debug("If your home is on an NFS volume, it may need to be world-readable.");
c8445989 158 xfree(file);
5260325f 159 return 0;
8efc0c15 160 }
c8445989 161 if (options.strict_modes &&
6978866a 162 secure_filename(f, file, pw, line, sizeof(line)) != 0) {
c8445989 163 xfree(file);
164 fclose(f);
165 log("Authentication refused: %s", line);
166 packet_send_debug("Authentication refused: %s", line);
167 restore_uid();
168 return 0;
5260325f 169 }
170 /* Flag indicating whether authentication has succeeded. */
171 authenticated = 0;
172
4fe2af09 173 pk = RSA_new();
174 pk->e = BN_new();
175 pk->n = BN_new();
5260325f 176
aa3378df 177 /*
178 * Go though the accepted keys, looking for the current key. If
179 * found, perform a challenge-response dialog to verify that the
180 * user really has the corresponding private key.
181 */
5260325f 182 while (fgets(line, sizeof(line), f)) {
183 char *cp;
184 char *options;
185
186 linenum++;
187
aa3378df 188 /* Skip leading whitespace, empty and comment lines. */
189 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
190 ;
5260325f 191 if (!*cp || *cp == '\n' || *cp == '#')
192 continue;
193
aa3378df 194 /*
195 * Check if there are options for this key, and if so,
196 * save their starting address and skip the option part
197 * for now. If there are no options, set the starting
198 * address to NULL.
199 */
5260325f 200 if (*cp < '0' || *cp > '9') {
201 int quoted = 0;
202 options = cp;
203 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
204 if (*cp == '\\' && cp[1] == '"')
205 cp++; /* Skip both */
206 else if (*cp == '"')
207 quoted = !quoted;
8efc0c15 208 }
5260325f 209 } else
210 options = NULL;
211
212 /* Parse the key from the line. */
4fe2af09 213 if (!auth_rsa_read_key(&cp, &bits, pk->e, pk->n)) {
96a7b0cc 214 debug("%.100s, line %lu: non ssh1 key syntax",
42f11eb2 215 file, linenum);
5260325f 216 continue;
8efc0c15 217 }
5260325f 218 /* cp now points to the comment part. */
219
5260325f 220 /* Check if the we have found the desired key (identified by its modulus). */
4fe2af09 221 if (BN_cmp(pk->n, client_n) != 0)
aa3378df 222 continue;
5260325f 223
57112b5a 224 /* check the real bits */
4fe2af09 225 if (bits != BN_num_bits(pk->n))
1bdee08c 226 log("Warning: %s, line %lu: keysize mismatch: "
57112b5a 227 "actual %d vs. announced %d.",
4fe2af09 228 file, linenum, BN_num_bits(pk->n), bits);
57112b5a 229
5260325f 230 /* We have found the desired key. */
d343d900 231 /*
232 * If our options do not allow this key to be used,
233 * do not send challenge.
234 */
42f11eb2 235 if (!auth_parse_options(pw, options, file, linenum))
d343d900 236 continue;
5260325f 237
238 /* Perform the challenge-response dialog for this key. */
4fe2af09 239 if (!auth_rsa_challenge_dialog(pk)) {
5260325f 240 /* Wrong response. */
241 verbose("Wrong response to RSA authentication challenge.");
242 packet_send_debug("Wrong response to RSA authentication challenge.");
2975f58d 243 /*
244 * Break out of the loop. Otherwise we might send
245 * another challenge and break the protocol.
246 */
247 break;
8efc0c15 248 }
aa3378df 249 /*
250 * Correct response. The client has been successfully
251 * authenticated. Note that we have not yet processed the
252 * options; this will be reset if the options cause the
253 * authentication to be rejected.
aa3378df 254 * Break out of the loop if authentication was successful;
255 * otherwise continue searching.
256 */
33de75a3 257 authenticated = 1;
258 break;
8efc0c15 259 }
260
5260325f 261 /* Restore the privileged uid. */
262 restore_uid();
8efc0c15 263
5260325f 264 /* Close the file. */
c8445989 265 xfree(file);
5260325f 266 fclose(f);
8efc0c15 267
4fe2af09 268 RSA_free(pk);
8efc0c15 269
5260325f 270 if (authenticated)
271 packet_send_debug("RSA authentication accepted.");
94ec8c6b 272 else
273 auth_clear_options();
8efc0c15 274
5260325f 275 /* Return authentication result. */
276 return authenticated;
8efc0c15 277}
This page took 1.538119 seconds and 5 git commands to generate.