blob: 899daae3b78944427004ff951df33a44cd8cdb1d [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * 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 Miller4af51302000-04-16 11:18:38 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * 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 Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#include "includes.h"
Ben Lindstromf96704d2001-06-25 04:17:12 +000017RCSID("$OpenBSD: auth-rsa.c,v 1.42 2001/06/22 21:55:48 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018
19#include <openssl/rsa.h>
20#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Ben Lindstrom226cfa02001-01-22 05:34:40 +000022#include "rsa.h"
23#include "packet.h"
24#include "xmalloc.h"
25#include "ssh1.h"
26#include "mpaux.h"
27#include "uidswap.h"
28#include "match.h"
29#include "auth-options.h"
30#include "pathnames.h"
31#include "log.h"
32#include "servconf.h"
33#include "auth.h"
Damien Miller874d77b2000-10-14 16:23:11 +110034
35/* import */
36extern ServerOptions options;
37
Damien Miller5428f641999-11-25 11:54:57 +110038/*
39 * Session identifier that is used to bind key exchange and authentication
40 * responses to a particular session.
41 */
Ben Lindstrom46c16222000-12-22 01:43:59 +000042extern u_char session_id[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Damien Miller5428f641999-11-25 11:54:57 +110044/*
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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller5428f641999-11-25 11:54:57 +110054/*
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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
60int
Damien Miller450a7a12000-03-26 13:04:51 +100061auth_rsa_challenge_dialog(RSA *pk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062{
Damien Miller98c7ad62000-03-09 21:27:49 +110063 BIGNUM *challenge, *encrypted_challenge;
Damien Miller98c7ad62000-03-09 21:27:49 +110064 BN_CTX *ctx;
Ben Lindstrom46c16222000-12-22 01:43:59 +000065 u_char buf[32], mdbuf[16], response[16];
Damien Miller95def091999-11-25 00:26:21 +110066 MD5_CTX md;
Ben Lindstrom46c16222000-12-22 01:43:59 +000067 u_int i;
Damien Miller95def091999-11-25 00:26:21 +110068 int plen, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Miller95def091999-11-25 00:26:21 +110070 encrypted_challenge = BN_new();
71 challenge = BN_new();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072
Damien Miller95def091999-11-25 00:26:21 +110073 /* Generate a random challenge. */
74 BN_rand(challenge, 256, 0, 0);
Damien Miller98c7ad62000-03-09 21:27:49 +110075 ctx = BN_CTX_new();
Damien Miller450a7a12000-03-26 13:04:51 +100076 BN_mod(challenge, challenge, pk->n, ctx);
Damien Miller98c7ad62000-03-09 21:27:49 +110077 BN_CTX_free(ctx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Miller95def091999-11-25 00:26:21 +110079 /* Encrypt the challenge with the public key. */
80 rsa_public_encrypt(encrypted_challenge, challenge, pk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Miller95def091999-11-25 00:26:21 +110082 /* Send the encrypted challenge to the client. */
83 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
84 packet_put_bignum(encrypted_challenge);
85 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +110086 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +110087 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
Damien Miller98c7ad62000-03-09 21:27:49 +110089 /* 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
Damien Miller95def091999-11-25 00:26:21 +110095 /* 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);
Damien Miller95def091999-11-25 00:26:21 +1100105 BN_clear_free(challenge);
Damien Miller95def091999-11-25 00:26:21 +1100106
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;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114}
115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
122int
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100123auth_rsa(struct passwd *pw, BIGNUM *client_n)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124{
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000125 char line[8192], *file;
Damien Miller95def091999-11-25 00:26:21 +1100126 int authenticated;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000127 u_int bits;
Damien Miller95def091999-11-25 00:26:21 +1100128 FILE *f;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000129 u_long linenum = 0;
Damien Miller95def091999-11-25 00:26:21 +1100130 struct stat st;
Damien Miller450a7a12000-03-26 13:04:51 +1000131 RSA *pk;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller874d77b2000-10-14 16:23:11 +1100133 /* no user given */
134 if (pw == NULL)
135 return 0;
136
Damien Miller95def091999-11-25 00:26:21 +1100137 /* Temporarily use the user's uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000138 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller95def091999-11-25 00:26:21 +1100140 /* The authorized keys. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000141 file = authorized_keys_file(pw);
142 debug("trying public RSA key file %s", file);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Damien Miller95def091999-11-25 00:26:21 +1100144 /* Fail quietly if file does not exist */
145 if (stat(file, &st) < 0) {
146 /* Restore the privileged uid. */
147 restore_uid();
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000148 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100149 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000150 }
Damien Miller95def091999-11-25 00:26:21 +1100151 /* 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.");
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000158 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100159 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160 }
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000161 if (options.strict_modes &&
162 secure_filename(f, file, pw->pw_uid, line, sizeof(line)) != 0) {
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;
Damien Miller95def091999-11-25 00:26:21 +1100169 }
170 /* Flag indicating whether authentication has succeeded. */
171 authenticated = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Damien Miller450a7a12000-03-26 13:04:51 +1000173 pk = RSA_new();
174 pk->e = BN_new();
175 pk->n = BN_new();
Damien Miller95def091999-11-25 00:26:21 +1100176
Damien Miller5428f641999-11-25 11:54:57 +1100177 /*
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 */
Damien Miller95def091999-11-25 00:26:21 +1100182 while (fgets(line, sizeof(line), f)) {
183 char *cp;
184 char *options;
185
186 linenum++;
187
Damien Miller5428f641999-11-25 11:54:57 +1100188 /* Skip leading whitespace, empty and comment lines. */
189 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
190 ;
Damien Miller95def091999-11-25 00:26:21 +1100191 if (!*cp || *cp == '\n' || *cp == '#')
192 continue;
193
Damien Miller5428f641999-11-25 11:54:57 +1100194 /*
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 */
Damien Miller95def091999-11-25 00:26:21 +1100200 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;
208 }
209 } else
210 options = NULL;
211
212 /* Parse the key from the line. */
Damien Miller450a7a12000-03-26 13:04:51 +1000213 if (!auth_rsa_read_key(&cp, &bits, pk->e, pk->n)) {
Ben Lindstromf96704d2001-06-25 04:17:12 +0000214 debug("%.100s, line %lu: non ssh1 key syntax",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000215 file, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100216 continue;
217 }
218 /* cp now points to the comment part. */
219
Damien Miller95def091999-11-25 00:26:21 +1100220 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller450a7a12000-03-26 13:04:51 +1000221 if (BN_cmp(pk->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100222 continue;
Damien Miller95def091999-11-25 00:26:21 +1100223
Damien Milleraae6c611999-12-06 11:47:28 +1100224 /* check the real bits */
Damien Miller450a7a12000-03-26 13:04:51 +1000225 if (bits != BN_num_bits(pk->n))
Damien Milleraae6c611999-12-06 11:47:28 +1100226 log("Warning: %s, line %ld: keysize mismatch: "
227 "actual %d vs. announced %d.",
Damien Miller450a7a12000-03-26 13:04:51 +1000228 file, linenum, BN_num_bits(pk->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100229
Damien Miller95def091999-11-25 00:26:21 +1100230 /* We have found the desired key. */
Ben Lindstrom14920292000-11-21 21:24:55 +0000231 /*
232 * If our options do not allow this key to be used,
233 * do not send challenge.
234 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000235 if (!auth_parse_options(pw, options, file, linenum))
Ben Lindstrom14920292000-11-21 21:24:55 +0000236 continue;
Damien Miller95def091999-11-25 00:26:21 +1100237
238 /* Perform the challenge-response dialog for this key. */
Damien Miller450a7a12000-03-26 13:04:51 +1000239 if (!auth_rsa_challenge_dialog(pk)) {
Damien Miller95def091999-11-25 00:26:21 +1100240 /* Wrong response. */
241 verbose("Wrong response to RSA authentication challenge.");
242 packet_send_debug("Wrong response to RSA authentication challenge.");
243 continue;
244 }
Damien Miller5428f641999-11-25 11:54:57 +1100245 /*
246 * Correct response. The client has been successfully
247 * authenticated. Note that we have not yet processed the
248 * options; this will be reset if the options cause the
249 * authentication to be rejected.
Damien Miller5428f641999-11-25 11:54:57 +1100250 * Break out of the loop if authentication was successful;
251 * otherwise continue searching.
252 */
Damien Miller50a41ed2000-10-16 12:14:42 +1100253 authenticated = 1;
254 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255 }
256
Damien Miller95def091999-11-25 00:26:21 +1100257 /* Restore the privileged uid. */
258 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259
Damien Miller95def091999-11-25 00:26:21 +1100260 /* Close the file. */
Ben Lindstrombfb3a0e2001-06-05 20:25:05 +0000261 xfree(file);
Damien Miller95def091999-11-25 00:26:21 +1100262 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263
Damien Miller450a7a12000-03-26 13:04:51 +1000264 RSA_free(pk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265
Damien Miller95def091999-11-25 00:26:21 +1100266 if (authenticated)
267 packet_send_debug("RSA authentication accepted.");
Damien Miller874d77b2000-10-14 16:23:11 +1100268 else
269 auth_clear_options();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Damien Miller95def091999-11-25 00:26:21 +1100271 /* Return authentication result. */
272 return authenticated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273}