blob: db8e5e359f506bb4c173827ce015d77d32641ff7 [file] [log] [blame]
Damien Miller0bc1bd82000-11-13 22:57:25 +11001/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
Damien Miller8c1d2e32003-06-18 20:29:01 +100026RCSID("$OpenBSD: ssh-rsa.c,v 1.29 2003/06/16 08:22:35 markus Exp $");
Damien Miller0bc1bd82000-11-13 22:57:25 +110027
28#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110029#include <openssl/err.h>
30
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "xmalloc.h"
32#include "log.h"
33#include "buffer.h"
34#include "bufaux.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110035#include "key.h"
Ben Lindstrom60a43812001-03-29 00:32:56 +000036#include "compat.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000037#include "ssh.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110038
Ben Lindstrom93576d92002-12-23 02:06:19 +000039static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int, RSA *);
Ben Lindstrom0deb5d92002-08-20 18:40:03 +000040
Damien Miller0bc1bd82000-11-13 22:57:25 +110041/* RSASSA-PKCS1-v1_5 (PKCS #1 v2.0 signature) with SHA1 */
42int
Ben Lindstrom5c385522002-06-23 21:23:20 +000043ssh_rsa_sign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom90fd8142002-02-26 18:09:42 +000044 u_char *data, u_int datalen)
Damien Miller0bc1bd82000-11-13 22:57:25 +110045{
Ben Lindstrom425fb022001-03-29 00:31:20 +000046 const EVP_MD *evp_md;
Damien Miller0bc1bd82000-11-13 22:57:25 +110047 EVP_MD_CTX md;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000048 u_char digest[EVP_MAX_MD_SIZE], *sig;
Ben Lindstrom46c16222000-12-22 01:43:59 +000049 u_int slen, dlen, len;
Ben Lindstrom425fb022001-03-29 00:31:20 +000050 int ok, nid;
Damien Miller0bc1bd82000-11-13 22:57:25 +110051 Buffer b;
52
53 if (key == NULL || key->type != KEY_RSA || key->rsa == NULL) {
54 error("ssh_rsa_sign: no RSA key");
55 return -1;
56 }
Ben Lindstrom60a43812001-03-29 00:32:56 +000057 nid = (datafellows & SSH_BUG_RSASIGMD5) ? NID_md5 : NID_sha1;
Ben Lindstrom425fb022001-03-29 00:31:20 +000058 if ((evp_md = EVP_get_digestbynid(nid)) == NULL) {
59 error("ssh_rsa_sign: EVP_get_digestbynid %d failed", nid);
60 return -1;
61 }
Damien Miller0bc1bd82000-11-13 22:57:25 +110062 EVP_DigestInit(&md, evp_md);
63 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +110064 EVP_DigestFinal(&md, digest, &dlen);
Damien Miller0bc1bd82000-11-13 22:57:25 +110065
Ben Lindstrom425fb022001-03-29 00:31:20 +000066 slen = RSA_size(key->rsa);
67 sig = xmalloc(slen);
68
69 ok = RSA_sign(nid, digest, dlen, sig, &len, key->rsa);
Damien Millerc516e922002-02-05 11:53:43 +110070 memset(digest, 'd', sizeof(digest));
Damien Miller0bc1bd82000-11-13 22:57:25 +110071
72 if (ok != 1) {
73 int ecode = ERR_get_error();
Ben Lindstrom5c385522002-06-23 21:23:20 +000074 error("ssh_rsa_sign: RSA_sign failed: %s",
75 ERR_error_string(ecode, NULL));
Damien Miller0bc1bd82000-11-13 22:57:25 +110076 xfree(sig);
77 return -1;
78 }
79 if (len < slen) {
Ben Lindstrom0e50d842002-08-20 18:39:14 +000080 u_int diff = slen - len;
Ben Lindstrom5c385522002-06-23 21:23:20 +000081 debug("slen %u > len %u", slen, len);
Damien Miller0bc1bd82000-11-13 22:57:25 +110082 memmove(sig + diff, sig, len);
83 memset(sig, 0, diff);
84 } else if (len > slen) {
Ben Lindstrom5c385522002-06-23 21:23:20 +000085 error("ssh_rsa_sign: slen %u slen2 %u", slen, len);
Damien Miller0bc1bd82000-11-13 22:57:25 +110086 xfree(sig);
87 return -1;
88 }
89 /* encode signature */
90 buffer_init(&b);
91 buffer_put_cstring(&b, "ssh-rsa");
92 buffer_put_string(&b, sig, slen);
93 len = buffer_len(&b);
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000094 if (lenp != NULL)
95 *lenp = len;
96 if (sigp != NULL) {
97 *sigp = xmalloc(len);
98 memcpy(*sigp, buffer_ptr(&b), len);
99 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100100 buffer_free(&b);
101 memset(sig, 's', slen);
102 xfree(sig);
103
Damien Miller0bc1bd82000-11-13 22:57:25 +1100104 return 0;
105}
106
107int
Ben Lindstrom5c385522002-06-23 21:23:20 +0000108ssh_rsa_verify(Key *key, u_char *signature, u_int signaturelen,
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000109 u_char *data, u_int datalen)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100110{
111 Buffer b;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000112 const EVP_MD *evp_md;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100113 EVP_MD_CTX md;
114 char *ktype;
Damien Millerc516e922002-02-05 11:53:43 +1100115 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
Ben Lindstromceae9d12002-06-06 20:55:04 +0000116 u_int len, dlen, modlen;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000117 int rlen, ret, nid;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100118
119 if (key == NULL || key->type != KEY_RSA || key->rsa == NULL) {
120 error("ssh_rsa_verify: no RSA key");
121 return -1;
122 }
Ben Lindstrom03f39322002-04-02 20:43:11 +0000123 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +0000124 error("ssh_rsa_verify: RSA modulus too small: %d < minimum %d bits",
125 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000126 return -1;
127 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100128 buffer_init(&b);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000129 buffer_append(&b, signature, signaturelen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100130 ktype = buffer_get_string(&b, NULL);
131 if (strcmp("ssh-rsa", ktype) != 0) {
132 error("ssh_rsa_verify: cannot handle type %s", ktype);
133 buffer_free(&b);
134 xfree(ktype);
135 return -1;
136 }
137 xfree(ktype);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000138 sigblob = buffer_get_string(&b, &len);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100139 rlen = buffer_len(&b);
140 buffer_free(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000141 if (rlen != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100142 error("ssh_rsa_verify: remaining bytes in signature %d", rlen);
Damien Miller36e603d2001-11-12 11:03:35 +1100143 xfree(sigblob);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100144 return -1;
145 }
Ben Lindstromceae9d12002-06-06 20:55:04 +0000146 /* RSA_verify expects a signature of RSA_size */
147 modlen = RSA_size(key->rsa);
148 if (len > modlen) {
Ben Lindstrom5c385522002-06-23 21:23:20 +0000149 error("ssh_rsa_verify: len %u > modlen %u", len, modlen);
Ben Lindstromceae9d12002-06-06 20:55:04 +0000150 xfree(sigblob);
151 return -1;
152 } else if (len < modlen) {
Ben Lindstrom0e50d842002-08-20 18:39:14 +0000153 u_int diff = modlen - len;
Ben Lindstrom5c385522002-06-23 21:23:20 +0000154 debug("ssh_rsa_verify: add padding: modlen %u > len %u",
Ben Lindstromceae9d12002-06-06 20:55:04 +0000155 modlen, len);
156 sigblob = xrealloc(sigblob, modlen);
157 memmove(sigblob + diff, sigblob, len);
158 memset(sigblob, 0, diff);
159 len = modlen;
160 }
Ben Lindstrom60a43812001-03-29 00:32:56 +0000161 nid = (datafellows & SSH_BUG_RSASIGMD5) ? NID_md5 : NID_sha1;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000162 if ((evp_md = EVP_get_digestbynid(nid)) == NULL) {
Ben Lindstrom425fb022001-03-29 00:31:20 +0000163 error("ssh_rsa_verify: EVP_get_digestbynid %d failed", nid);
Damien Miller36e603d2001-11-12 11:03:35 +1100164 xfree(sigblob);
Ben Lindstrom425fb022001-03-29 00:31:20 +0000165 return -1;
166 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100167 EVP_DigestInit(&md, evp_md);
168 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +1100169 EVP_DigestFinal(&md, digest, &dlen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100170
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000171 ret = openssh_RSA_verify(nid, digest, dlen, sigblob, len, key->rsa);
Damien Millerc516e922002-02-05 11:53:43 +1100172 memset(digest, 'd', sizeof(digest));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100173 memset(sigblob, 's', len);
174 xfree(sigblob);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100175 debug("ssh_rsa_verify: signature %scorrect", (ret==0) ? "in" : "");
176 return ret;
177}
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000178
179/*
180 * See:
181 * http://www.rsasecurity.com/rsalabs/pkcs/pkcs-1/
182 * ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1.asn
183 */
184/*
185 * id-sha1 OBJECT IDENTIFIER ::= { iso(1) identified-organization(3)
186 * oiw(14) secsig(3) algorithms(2) 26 }
187 */
188static const u_char id_sha1[] = {
189 0x30, 0x21, /* type Sequence, length 0x21 (33) */
190 0x30, 0x09, /* type Sequence, length 0x09 */
191 0x06, 0x05, /* type OID, length 0x05 */
192 0x2b, 0x0e, 0x03, 0x02, 0x1a, /* id-sha1 OID */
193 0x05, 0x00, /* NULL */
194 0x04, 0x14 /* Octet string, length 0x14 (20), followed by sha1 hash */
195};
196/*
197 * id-md5 OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
198 * rsadsi(113549) digestAlgorithm(2) 5 }
199 */
200static const u_char id_md5[] = {
201 0x30, 0x20, /* type Sequence, length 0x20 (32) */
202 0x30, 0x0c, /* type Sequence, length 0x09 */
203 0x06, 0x08, /* type OID, length 0x05 */
204 0x2a, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, /* id-md5 */
205 0x05, 0x00, /* NULL */
206 0x04, 0x10 /* Octet string, length 0x10 (16), followed by md5 hash */
207};
208
209static int
210openssh_RSA_verify(int type, u_char *hash, u_int hashlen,
211 u_char *sigbuf, u_int siglen, RSA *rsa)
212{
Damien Millerf7c23912002-09-04 16:39:48 +1000213 u_int ret, rsasize, oidlen = 0, hlen = 0;
214 int len;
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000215 const u_char *oid = NULL;
216 u_char *decrypted = NULL;
217
218 ret = 0;
219 switch (type) {
220 case NID_sha1:
221 oid = id_sha1;
222 oidlen = sizeof(id_sha1);
223 hlen = 20;
224 break;
225 case NID_md5:
226 oid = id_md5;
227 oidlen = sizeof(id_md5);
228 hlen = 16;
229 break;
230 default:
231 goto done;
232 break;
233 }
234 if (hashlen != hlen) {
235 error("bad hashlen");
236 goto done;
237 }
238 rsasize = RSA_size(rsa);
239 if (siglen == 0 || siglen > rsasize) {
240 error("bad siglen");
241 goto done;
242 }
243 decrypted = xmalloc(rsasize);
244 if ((len = RSA_public_decrypt(siglen, sigbuf, decrypted, rsa,
245 RSA_PKCS1_PADDING)) < 0) {
246 error("RSA_public_decrypt failed: %s",
247 ERR_error_string(ERR_get_error(), NULL));
248 goto done;
249 }
Damien Miller8c1d2e32003-06-18 20:29:01 +1000250 if (len < hlen + oidlen) {
251 error("bad decrypted len: %d < %d + %d", len, hlen, oidlen);
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000252 goto done;
253 }
254 if (memcmp(decrypted, oid, oidlen) != 0) {
255 error("oid mismatch");
256 goto done;
257 }
258 if (memcmp(decrypted + oidlen, hash, hlen) != 0) {
259 error("hash mismatch");
260 goto done;
261 }
262 ret = 1;
263done:
264 if (decrypted)
265 xfree(decrypted);
266 return ret;
267}