blob: 30f96abc2a14b5f831b7f89ca1a82699fd288c12 [file] [log] [blame]
Darren Tuckera627d422013-06-02 07:31:17 +10001/* $OpenBSD: ssh-rsa.c,v 1.46 2013/05/17 00:13:14 djm Exp $ */
Damien Miller0bc1bd82000-11-13 22:57:25 +11002/*
Darren Tuckera251f802003-06-22 20:45:15 +10003 * Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org>
Damien Miller0bc1bd82000-11-13 22:57:25 +11004 *
Darren Tuckera251f802003-06-22 20:45:15 +10005 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
Damien Miller0bc1bd82000-11-13 22:57:25 +11008 *
Darren Tuckera251f802003-06-22 20:45:15 +10009 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Miller0bc1bd82000-11-13 22:57:25 +110016 */
Damien Millerd7834352006-08-05 12:39:39 +100017
Damien Miller0bc1bd82000-11-13 22:57:25 +110018#include "includes.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110019
Damien Millerd7834352006-08-05 12:39:39 +100020#include <sys/types.h>
21
Damien Miller0bc1bd82000-11-13 22:57:25 +110022#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110023#include <openssl/err.h>
24
Damien Millerded319c2006-09-01 15:38:36 +100025#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100026#include <string.h>
27
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "xmalloc.h"
29#include "log.h"
30#include "buffer.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110031#include "key.h"
Ben Lindstrom60a43812001-03-29 00:32:56 +000032#include "compat.h"
Damien Miller8a0268f2010-07-16 13:57:51 +100033#include "misc.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000034#include "ssh.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110035
Ben Lindstrom93576d92002-12-23 02:06:19 +000036static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int, RSA *);
Ben Lindstrom0deb5d92002-08-20 18:40:03 +000037
Damien Miller0bc1bd82000-11-13 22:57:25 +110038/* RSASSA-PKCS1-v1_5 (PKCS #1 v2.0 signature) with SHA1 */
39int
Damien Millerf58b58c2003-11-17 21:18:23 +110040ssh_rsa_sign(const Key *key, u_char **sigp, u_int *lenp,
41 const u_char *data, u_int datalen)
Damien Miller0bc1bd82000-11-13 22:57:25 +110042{
Ben Lindstrom425fb022001-03-29 00:31:20 +000043 const EVP_MD *evp_md;
Damien Miller0bc1bd82000-11-13 22:57:25 +110044 EVP_MD_CTX md;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000045 u_char digest[EVP_MAX_MD_SIZE], *sig;
Ben Lindstrom46c16222000-12-22 01:43:59 +000046 u_int slen, dlen, len;
Ben Lindstrom425fb022001-03-29 00:31:20 +000047 int ok, nid;
Damien Miller0bc1bd82000-11-13 22:57:25 +110048 Buffer b;
49
Damien Miller4e270b02010-04-16 15:56:21 +100050 if (key == NULL || key->rsa == NULL || (key->type != KEY_RSA &&
51 key->type != KEY_RSA_CERT && key->type != KEY_RSA_CERT_V00)) {
Damien Miller0bc1bd82000-11-13 22:57:25 +110052 error("ssh_rsa_sign: no RSA key");
53 return -1;
54 }
Ben Lindstrom60a43812001-03-29 00:32:56 +000055 nid = (datafellows & SSH_BUG_RSASIGMD5) ? NID_md5 : NID_sha1;
Ben Lindstrom425fb022001-03-29 00:31:20 +000056 if ((evp_md = EVP_get_digestbynid(nid)) == NULL) {
57 error("ssh_rsa_sign: EVP_get_digestbynid %d failed", nid);
58 return -1;
59 }
Damien Miller0bc1bd82000-11-13 22:57:25 +110060 EVP_DigestInit(&md, evp_md);
61 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +110062 EVP_DigestFinal(&md, digest, &dlen);
Damien Miller0bc1bd82000-11-13 22:57:25 +110063
Ben Lindstrom425fb022001-03-29 00:31:20 +000064 slen = RSA_size(key->rsa);
65 sig = xmalloc(slen);
66
67 ok = RSA_sign(nid, digest, dlen, sig, &len, key->rsa);
Damien Millerc516e922002-02-05 11:53:43 +110068 memset(digest, 'd', sizeof(digest));
Damien Miller0bc1bd82000-11-13 22:57:25 +110069
70 if (ok != 1) {
71 int ecode = ERR_get_error();
Damien Miller90967402006-03-26 14:07:26 +110072
Ben Lindstrom5c385522002-06-23 21:23:20 +000073 error("ssh_rsa_sign: RSA_sign failed: %s",
74 ERR_error_string(ecode, NULL));
Darren Tuckera627d422013-06-02 07:31:17 +100075 free(sig);
Damien Miller0bc1bd82000-11-13 22:57:25 +110076 return -1;
77 }
78 if (len < slen) {
Ben Lindstrom0e50d842002-08-20 18:39:14 +000079 u_int diff = slen - len;
Ben Lindstrom5c385522002-06-23 21:23:20 +000080 debug("slen %u > len %u", slen, len);
Damien Miller0bc1bd82000-11-13 22:57:25 +110081 memmove(sig + diff, sig, len);
82 memset(sig, 0, diff);
83 } else if (len > slen) {
Ben Lindstrom5c385522002-06-23 21:23:20 +000084 error("ssh_rsa_sign: slen %u slen2 %u", slen, len);
Darren Tuckera627d422013-06-02 07:31:17 +100085 free(sig);
Damien Miller0bc1bd82000-11-13 22:57:25 +110086 return -1;
87 }
88 /* encode signature */
89 buffer_init(&b);
90 buffer_put_cstring(&b, "ssh-rsa");
91 buffer_put_string(&b, sig, slen);
92 len = buffer_len(&b);
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000093 if (lenp != NULL)
94 *lenp = len;
95 if (sigp != NULL) {
96 *sigp = xmalloc(len);
97 memcpy(*sigp, buffer_ptr(&b), len);
98 }
Damien Miller0bc1bd82000-11-13 22:57:25 +110099 buffer_free(&b);
100 memset(sig, 's', slen);
Darren Tuckera627d422013-06-02 07:31:17 +1000101 free(sig);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100102
Damien Miller0bc1bd82000-11-13 22:57:25 +1100103 return 0;
104}
105
106int
Damien Millerf58b58c2003-11-17 21:18:23 +1100107ssh_rsa_verify(const Key *key, const u_char *signature, u_int signaturelen,
108 const u_char *data, u_int datalen)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100109{
110 Buffer b;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000111 const EVP_MD *evp_md;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100112 EVP_MD_CTX md;
113 char *ktype;
Damien Millerc516e922002-02-05 11:53:43 +1100114 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
Ben Lindstromceae9d12002-06-06 20:55:04 +0000115 u_int len, dlen, modlen;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000116 int rlen, ret, nid;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100117
Damien Miller4e270b02010-04-16 15:56:21 +1000118 if (key == NULL || key->rsa == NULL || (key->type != KEY_RSA &&
119 key->type != KEY_RSA_CERT && key->type != KEY_RSA_CERT_V00)) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100120 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 Millerda108ec2010-08-31 22:36:39 +1000130 ktype = buffer_get_cstring(&b, NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100131 if (strcmp("ssh-rsa", ktype) != 0) {
132 error("ssh_rsa_verify: cannot handle type %s", ktype);
133 buffer_free(&b);
Darren Tuckera627d422013-06-02 07:31:17 +1000134 free(ktype);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100135 return -1;
136 }
Darren Tuckera627d422013-06-02 07:31:17 +1000137 free(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);
Darren Tuckera627d422013-06-02 07:31:17 +1000143 free(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);
Darren Tuckera627d422013-06-02 07:31:17 +1000150 free(sigblob);
Ben Lindstromceae9d12002-06-06 20:55:04 +0000151 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);
Damien Miller36812092006-03-26 14:22:47 +1100156 sigblob = xrealloc(sigblob, 1, modlen);
Ben Lindstromceae9d12002-06-06 20:55:04 +0000157 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);
Darren Tuckera627d422013-06-02 07:31:17 +1000164 free(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);
Darren Tuckera627d422013-06-02 07:31:17 +1000174 free(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;
Damien Miller4e8285e2010-08-03 16:04:03 +1000214 int len, oidmatch, hashmatch;
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;
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000232 }
233 if (hashlen != hlen) {
234 error("bad hashlen");
235 goto done;
236 }
237 rsasize = RSA_size(rsa);
238 if (siglen == 0 || siglen > rsasize) {
239 error("bad siglen");
240 goto done;
241 }
242 decrypted = xmalloc(rsasize);
243 if ((len = RSA_public_decrypt(siglen, sigbuf, decrypted, rsa,
244 RSA_PKCS1_PADDING)) < 0) {
245 error("RSA_public_decrypt failed: %s",
246 ERR_error_string(ERR_get_error(), NULL));
247 goto done;
248 }
Damien Millereccb9de2005-06-17 12:59:34 +1000249 if (len < 0 || (u_int)len != hlen + oidlen) {
Darren Tuckera251f802003-06-22 20:45:15 +1000250 error("bad decrypted len: %d != %d + %d", len, hlen, oidlen);
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000251 goto done;
252 }
Damien Miller4e8285e2010-08-03 16:04:03 +1000253 oidmatch = timingsafe_bcmp(decrypted, oid, oidlen) == 0;
254 hashmatch = timingsafe_bcmp(decrypted + oidlen, hash, hlen) == 0;
255 if (!oidmatch) {
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000256 error("oid mismatch");
257 goto done;
258 }
Damien Miller4e8285e2010-08-03 16:04:03 +1000259 if (!hashmatch) {
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000260 error("hash mismatch");
261 goto done;
262 }
263 ret = 1;
264done:
Darren Tuckera627d422013-06-02 07:31:17 +1000265 free(decrypted);
Ben Lindstrom0deb5d92002-08-20 18:40:03 +0000266 return ret;
267}