blob: 65f9bf757ffaf670651ac455c979b99292321381 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * auth-rsa.c
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Mon Mar 27 01:46:52 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * RSA-based authentication. This code determines whether to admit a login
13 * based on RSA authentication. This file also contains functions to check
14 * validity of the host key.
Damien Miller4af51302000-04-16 11:18:38 +100015 *
Damien Miller95def091999-11-25 00:26:21 +110016 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#include "includes.h"
Damien Miller37023962000-07-11 17:31:38 +100019RCSID("$OpenBSD: auth-rsa.c,v 1.27 2000/07/07 03:55:03 todd Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
21#include "rsa.h"
22#include "packet.h"
23#include "xmalloc.h"
24#include "ssh.h"
25#include "mpaux.h"
26#include "uidswap.h"
Damien Miller450a7a12000-03-26 13:04:51 +100027#include "match.h"
Damien Miller6d7b2cd1999-11-12 15:19:27 +110028#include "servconf.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100029#include "auth-options.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030
31#include <openssl/rsa.h>
32#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033
Damien Miller5428f641999-11-25 11:54:57 +110034/*
35 * Session identifier that is used to bind key exchange and authentication
36 * responses to a particular session.
37 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038extern unsigned char session_id[16];
39
Damien Miller5428f641999-11-25 11:54:57 +110040/*
41 * The .ssh/authorized_keys file contains public keys, one per line, in the
42 * following format:
43 * options bits e n comment
44 * where bits, e and n are decimal numbers,
45 * and comment is any string of characters up to newline. The maximum
46 * length of a line is 8000 characters. See the documentation for a
47 * description of the options.
48 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Damien Miller5428f641999-11-25 11:54:57 +110050/*
51 * Performs the RSA authentication challenge-response dialog with the client,
52 * and returns true (non-zero) if the client gave the correct answer to
53 * our challenge; returns zero if the client gives a wrong answer.
54 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
56int
Damien Miller450a7a12000-03-26 13:04:51 +100057auth_rsa_challenge_dialog(RSA *pk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058{
Damien Miller98c7ad62000-03-09 21:27:49 +110059 BIGNUM *challenge, *encrypted_challenge;
Damien Miller98c7ad62000-03-09 21:27:49 +110060 BN_CTX *ctx;
Damien Miller95def091999-11-25 00:26:21 +110061 unsigned char buf[32], mdbuf[16], response[16];
62 MD5_CTX md;
63 unsigned int i;
64 int plen, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065
Damien Miller95def091999-11-25 00:26:21 +110066 encrypted_challenge = BN_new();
67 challenge = BN_new();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller95def091999-11-25 00:26:21 +110069 /* Generate a random challenge. */
70 BN_rand(challenge, 256, 0, 0);
Damien Miller98c7ad62000-03-09 21:27:49 +110071 ctx = BN_CTX_new();
Damien Miller450a7a12000-03-26 13:04:51 +100072 BN_mod(challenge, challenge, pk->n, ctx);
Damien Miller98c7ad62000-03-09 21:27:49 +110073 BN_CTX_free(ctx);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller95def091999-11-25 00:26:21 +110075 /* Encrypt the challenge with the public key. */
76 rsa_public_encrypt(encrypted_challenge, challenge, pk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Miller95def091999-11-25 00:26:21 +110078 /* Send the encrypted challenge to the client. */
79 packet_start(SSH_SMSG_AUTH_RSA_CHALLENGE);
80 packet_put_bignum(encrypted_challenge);
81 packet_send();
Damien Miller98c7ad62000-03-09 21:27:49 +110082 BN_clear_free(encrypted_challenge);
Damien Miller95def091999-11-25 00:26:21 +110083 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller98c7ad62000-03-09 21:27:49 +110085 /* Wait for a response. */
86 packet_read_expect(&plen, SSH_CMSG_AUTH_RSA_RESPONSE);
87 packet_integrity_check(plen, 16, SSH_CMSG_AUTH_RSA_RESPONSE);
88 for (i = 0; i < 16; i++)
89 response[i] = packet_get_char();
90
Damien Miller95def091999-11-25 00:26:21 +110091 /* The response is MD5 of decrypted challenge plus session id. */
92 len = BN_num_bytes(challenge);
93 if (len <= 0 || len > 32)
94 fatal("auth_rsa_challenge_dialog: bad challenge length %d", len);
95 memset(buf, 0, 32);
96 BN_bn2bin(challenge, buf + 32 - len);
97 MD5_Init(&md);
98 MD5_Update(&md, buf, 32);
99 MD5_Update(&md, session_id, 16);
100 MD5_Final(mdbuf, &md);
Damien Miller95def091999-11-25 00:26:21 +1100101 BN_clear_free(challenge);
Damien Miller95def091999-11-25 00:26:21 +1100102
103 /* Verify that the response is the original challenge. */
104 if (memcmp(response, mdbuf, 16) != 0) {
105 /* Wrong answer. */
106 return 0;
107 }
108 /* Correct answer. */
109 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110}
111
Damien Miller5428f641999-11-25 11:54:57 +1100112/*
113 * Performs the RSA authentication dialog with the client. This returns
114 * 0 if the client could not be authenticated, and 1 if authentication was
115 * successful. This may exit if there is a serious protocol violation.
116 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
118int
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100119auth_rsa(struct passwd *pw, BIGNUM *client_n)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120{
Damien Miller95def091999-11-25 00:26:21 +1100121 extern ServerOptions options;
122 char line[8192], file[1024];
123 int authenticated;
124 unsigned int bits;
125 FILE *f;
126 unsigned long linenum = 0;
127 struct stat st;
Damien Miller450a7a12000-03-26 13:04:51 +1000128 RSA *pk;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129
Damien Miller95def091999-11-25 00:26:21 +1100130 /* Temporarily use the user's uid. */
131 temporarily_use_uid(pw->pw_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller95def091999-11-25 00:26:21 +1100133 /* The authorized keys. */
134 snprintf(file, sizeof file, "%.500s/%.100s", pw->pw_dir,
135 SSH_USER_PERMITTED_KEYS);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Damien Miller95def091999-11-25 00:26:21 +1100137 /* Fail quietly if file does not exist */
138 if (stat(file, &st) < 0) {
139 /* Restore the privileged uid. */
140 restore_uid();
141 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142 }
Damien Miller95def091999-11-25 00:26:21 +1100143 /* Open the file containing the authorized keys. */
144 f = fopen(file, "r");
145 if (!f) {
146 /* Restore the privileged uid. */
147 restore_uid();
148 packet_send_debug("Could not open %.900s for reading.", file);
149 packet_send_debug("If your home is on an NFS volume, it may need to be world-readable.");
150 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151 }
Damien Miller95def091999-11-25 00:26:21 +1100152 if (options.strict_modes) {
153 int fail = 0;
154 char buf[1024];
155 /* Check open file in order to avoid open/stat races */
156 if (fstat(fileno(f), &st) < 0 ||
157 (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
158 (st.st_mode & 022) != 0) {
159 snprintf(buf, sizeof buf, "RSA authentication refused for %.100s: "
160 "bad ownership or modes for '%s'.", pw->pw_name, file);
161 fail = 1;
162 } else {
163 /* Check path to SSH_USER_PERMITTED_KEYS */
164 int i;
165 static const char *check[] = {
166 "", SSH_USER_DIR, NULL
167 };
168 for (i = 0; check[i]; i++) {
169 snprintf(line, sizeof line, "%.500s/%.100s", pw->pw_dir, check[i]);
170 if (stat(line, &st) < 0 ||
171 (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
172 (st.st_mode & 022) != 0) {
173 snprintf(buf, sizeof buf, "RSA authentication refused for %.100s: "
174 "bad ownership or modes for '%s'.", pw->pw_name, line);
175 fail = 1;
176 break;
177 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179 }
Damien Miller95def091999-11-25 00:26:21 +1100180 if (fail) {
Damien Millereba71ba2000-04-29 23:57:08 +1000181 fclose(f);
Damien Miller37023962000-07-11 17:31:38 +1000182 log("%s",buf);
183 packet_send_debug("%s",buf);
Damien Miller95def091999-11-25 00:26:21 +1100184 restore_uid();
185 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186 }
Damien Miller95def091999-11-25 00:26:21 +1100187 }
188 /* Flag indicating whether authentication has succeeded. */
189 authenticated = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Damien Miller450a7a12000-03-26 13:04:51 +1000191 pk = RSA_new();
192 pk->e = BN_new();
193 pk->n = BN_new();
Damien Miller95def091999-11-25 00:26:21 +1100194
Damien Miller5428f641999-11-25 11:54:57 +1100195 /*
196 * Go though the accepted keys, looking for the current key. If
197 * found, perform a challenge-response dialog to verify that the
198 * user really has the corresponding private key.
199 */
Damien Miller95def091999-11-25 00:26:21 +1100200 while (fgets(line, sizeof(line), f)) {
201 char *cp;
202 char *options;
203
204 linenum++;
205
Damien Miller5428f641999-11-25 11:54:57 +1100206 /* Skip leading whitespace, empty and comment lines. */
207 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
208 ;
Damien Miller95def091999-11-25 00:26:21 +1100209 if (!*cp || *cp == '\n' || *cp == '#')
210 continue;
211
Damien Miller5428f641999-11-25 11:54:57 +1100212 /*
213 * Check if there are options for this key, and if so,
214 * save their starting address and skip the option part
215 * for now. If there are no options, set the starting
216 * address to NULL.
217 */
Damien Miller95def091999-11-25 00:26:21 +1100218 if (*cp < '0' || *cp > '9') {
219 int quoted = 0;
220 options = cp;
221 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
222 if (*cp == '\\' && cp[1] == '"')
223 cp++; /* Skip both */
224 else if (*cp == '"')
225 quoted = !quoted;
226 }
227 } else
228 options = NULL;
229
230 /* Parse the key from the line. */
Damien Miller450a7a12000-03-26 13:04:51 +1000231 if (!auth_rsa_read_key(&cp, &bits, pk->e, pk->n)) {
Damien Miller95def091999-11-25 00:26:21 +1100232 debug("%.100s, line %lu: bad key syntax",
233 SSH_USER_PERMITTED_KEYS, linenum);
234 packet_send_debug("%.100s, line %lu: bad key syntax",
Damien Miller4af51302000-04-16 11:18:38 +1000235 SSH_USER_PERMITTED_KEYS, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100236 continue;
237 }
238 /* cp now points to the comment part. */
239
Damien Miller95def091999-11-25 00:26:21 +1100240 /* Check if the we have found the desired key (identified by its modulus). */
Damien Miller450a7a12000-03-26 13:04:51 +1000241 if (BN_cmp(pk->n, client_n) != 0)
Damien Miller5428f641999-11-25 11:54:57 +1100242 continue;
Damien Miller95def091999-11-25 00:26:21 +1100243
Damien Milleraae6c611999-12-06 11:47:28 +1100244 /* check the real bits */
Damien Miller450a7a12000-03-26 13:04:51 +1000245 if (bits != BN_num_bits(pk->n))
Damien Milleraae6c611999-12-06 11:47:28 +1100246 log("Warning: %s, line %ld: keysize mismatch: "
247 "actual %d vs. announced %d.",
Damien Miller450a7a12000-03-26 13:04:51 +1000248 file, linenum, BN_num_bits(pk->n), bits);
Damien Milleraae6c611999-12-06 11:47:28 +1100249
Damien Miller95def091999-11-25 00:26:21 +1100250 /* We have found the desired key. */
251
252 /* Perform the challenge-response dialog for this key. */
Damien Miller450a7a12000-03-26 13:04:51 +1000253 if (!auth_rsa_challenge_dialog(pk)) {
Damien Miller95def091999-11-25 00:26:21 +1100254 /* Wrong response. */
255 verbose("Wrong response to RSA authentication challenge.");
256 packet_send_debug("Wrong response to RSA authentication challenge.");
257 continue;
258 }
Damien Miller5428f641999-11-25 11:54:57 +1100259 /*
260 * Correct response. The client has been successfully
261 * authenticated. Note that we have not yet processed the
262 * options; this will be reset if the options cause the
263 * authentication to be rejected.
Damien Miller5428f641999-11-25 11:54:57 +1100264 * Break out of the loop if authentication was successful;
265 * otherwise continue searching.
266 */
Damien Millerf6d9e222000-06-18 14:50:44 +1000267 authenticated = auth_parse_options(pw, options, linenum);
Damien Miller95def091999-11-25 00:26:21 +1100268 if (authenticated)
269 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270 }
271
Damien Miller95def091999-11-25 00:26:21 +1100272 /* Restore the privileged uid. */
273 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller95def091999-11-25 00:26:21 +1100275 /* Close the file. */
276 fclose(f);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277
Damien Miller450a7a12000-03-26 13:04:51 +1000278 RSA_free(pk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279
Damien Miller95def091999-11-25 00:26:21 +1100280 if (authenticated)
281 packet_send_debug("RSA authentication accepted.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
Damien Miller95def091999-11-25 00:26:21 +1100283 /* Return authentication result. */
284 return authenticated;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285}