blob: c7f5ed0b3a8aed4c0b67e9a710d690163e7ef9c0 [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"
Ben Lindstromc51b9242002-07-07 22:10:15 +000026RCSID("$OpenBSD: ssh-rsa.c,v 1.22 2002/07/04 04:15:33 deraadt 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 Lindstrom31ca54a2001-02-09 02:11:24 +000036#include "ssh-rsa.h"
Ben Lindstrom60a43812001-03-29 00:32:56 +000037#include "compat.h"
Ben Lindstrom03f39322002-04-02 20:43:11 +000038#include "ssh.h"
Damien Miller0bc1bd82000-11-13 22:57:25 +110039
Damien Miller0bc1bd82000-11-13 22:57:25 +110040/* RSASSA-PKCS1-v1_5 (PKCS #1 v2.0 signature) with SHA1 */
41int
Ben Lindstrom5c385522002-06-23 21:23:20 +000042ssh_rsa_sign(Key *key, u_char **sigp, u_int *lenp,
Ben Lindstrom90fd8142002-02-26 18:09:42 +000043 u_char *data, u_int datalen)
Damien Miller0bc1bd82000-11-13 22:57:25 +110044{
Ben Lindstrom425fb022001-03-29 00:31:20 +000045 const EVP_MD *evp_md;
Damien Miller0bc1bd82000-11-13 22:57:25 +110046 EVP_MD_CTX md;
Damien Millerc516e922002-02-05 11:53:43 +110047 u_char digest[EVP_MAX_MD_SIZE], *sig, *ret;
Ben Lindstrom46c16222000-12-22 01:43:59 +000048 u_int slen, dlen, len;
Ben Lindstrom425fb022001-03-29 00:31:20 +000049 int ok, nid;
Damien Miller0bc1bd82000-11-13 22:57:25 +110050 Buffer b;
51
52 if (key == NULL || key->type != KEY_RSA || key->rsa == NULL) {
53 error("ssh_rsa_sign: no RSA key");
54 return -1;
55 }
Ben Lindstrom60a43812001-03-29 00:32:56 +000056 nid = (datafellows & SSH_BUG_RSASIGMD5) ? NID_md5 : NID_sha1;
Ben Lindstrom425fb022001-03-29 00:31:20 +000057 if ((evp_md = EVP_get_digestbynid(nid)) == NULL) {
58 error("ssh_rsa_sign: EVP_get_digestbynid %d failed", nid);
59 return -1;
60 }
Damien Miller0bc1bd82000-11-13 22:57:25 +110061 EVP_DigestInit(&md, evp_md);
62 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +110063 EVP_DigestFinal(&md, digest, &dlen);
Damien Miller0bc1bd82000-11-13 22:57:25 +110064
Ben Lindstrom425fb022001-03-29 00:31:20 +000065 slen = RSA_size(key->rsa);
66 sig = xmalloc(slen);
67
68 ok = RSA_sign(nid, digest, dlen, sig, &len, key->rsa);
Damien Millerc516e922002-02-05 11:53:43 +110069 memset(digest, 'd', sizeof(digest));
Damien Miller0bc1bd82000-11-13 22:57:25 +110070
71 if (ok != 1) {
72 int ecode = ERR_get_error();
Ben Lindstrom5c385522002-06-23 21:23:20 +000073 error("ssh_rsa_sign: RSA_sign failed: %s",
74 ERR_error_string(ecode, NULL));
Damien Miller0bc1bd82000-11-13 22:57:25 +110075 xfree(sig);
76 return -1;
77 }
78 if (len < slen) {
79 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);
Damien Miller0bc1bd82000-11-13 22:57:25 +110085 xfree(sig);
86 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);
93 ret = xmalloc(len);
94 memcpy(ret, buffer_ptr(&b), len);
95 buffer_free(&b);
96 memset(sig, 's', slen);
97 xfree(sig);
98
99 if (lenp != NULL)
100 *lenp = len;
101 if (sigp != NULL)
102 *sigp = ret;
Ben Lindstromc51b9242002-07-07 22:10:15 +0000103 else
104 xfree(ret);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100105 return 0;
106}
107
108int
Ben Lindstrom5c385522002-06-23 21:23:20 +0000109ssh_rsa_verify(Key *key, u_char *signature, u_int signaturelen,
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000110 u_char *data, u_int datalen)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100111{
112 Buffer b;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000113 const EVP_MD *evp_md;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100114 EVP_MD_CTX md;
115 char *ktype;
Damien Millerc516e922002-02-05 11:53:43 +1100116 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
Ben Lindstromceae9d12002-06-06 20:55:04 +0000117 u_int len, dlen, modlen;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000118 int rlen, ret, nid;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100119
120 if (key == NULL || key->type != KEY_RSA || key->rsa == NULL) {
121 error("ssh_rsa_verify: no RSA key");
122 return -1;
123 }
Ben Lindstrom03f39322002-04-02 20:43:11 +0000124 if (BN_num_bits(key->rsa->n) < SSH_RSA_MINIMUM_MODULUS_SIZE) {
Ben Lindstrom2779d282002-06-11 15:47:42 +0000125 error("ssh_rsa_verify: RSA modulus too small: %d < minimum %d bits",
126 BN_num_bits(key->rsa->n), SSH_RSA_MINIMUM_MODULUS_SIZE);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000127 return -1;
128 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100129 buffer_init(&b);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000130 buffer_append(&b, signature, signaturelen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100131 ktype = buffer_get_string(&b, NULL);
132 if (strcmp("ssh-rsa", ktype) != 0) {
133 error("ssh_rsa_verify: cannot handle type %s", ktype);
134 buffer_free(&b);
135 xfree(ktype);
136 return -1;
137 }
138 xfree(ktype);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000139 sigblob = buffer_get_string(&b, &len);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100140 rlen = buffer_len(&b);
141 buffer_free(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000142 if (rlen != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100143 error("ssh_rsa_verify: remaining bytes in signature %d", rlen);
Damien Miller36e603d2001-11-12 11:03:35 +1100144 xfree(sigblob);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100145 return -1;
146 }
Ben Lindstromceae9d12002-06-06 20:55:04 +0000147 /* RSA_verify expects a signature of RSA_size */
148 modlen = RSA_size(key->rsa);
149 if (len > modlen) {
Ben Lindstrom5c385522002-06-23 21:23:20 +0000150 error("ssh_rsa_verify: len %u > modlen %u", len, modlen);
Ben Lindstromceae9d12002-06-06 20:55:04 +0000151 xfree(sigblob);
152 return -1;
153 } else if (len < modlen) {
154 int diff = modlen - len;
Ben Lindstrom5c385522002-06-23 21:23:20 +0000155 debug("ssh_rsa_verify: add padding: modlen %u > len %u",
Ben Lindstromceae9d12002-06-06 20:55:04 +0000156 modlen, len);
157 sigblob = xrealloc(sigblob, modlen);
158 memmove(sigblob + diff, sigblob, len);
159 memset(sigblob, 0, diff);
160 len = modlen;
161 }
Ben Lindstrom60a43812001-03-29 00:32:56 +0000162 nid = (datafellows & SSH_BUG_RSASIGMD5) ? NID_md5 : NID_sha1;
Ben Lindstrom425fb022001-03-29 00:31:20 +0000163 if ((evp_md = EVP_get_digestbynid(nid)) == NULL) {
Ben Lindstrom425fb022001-03-29 00:31:20 +0000164 error("ssh_rsa_verify: EVP_get_digestbynid %d failed", nid);
Damien Miller36e603d2001-11-12 11:03:35 +1100165 xfree(sigblob);
Ben Lindstrom425fb022001-03-29 00:31:20 +0000166 return -1;
167 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100168 EVP_DigestInit(&md, evp_md);
169 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +1100170 EVP_DigestFinal(&md, digest, &dlen);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100171
Ben Lindstrom425fb022001-03-29 00:31:20 +0000172 ret = RSA_verify(nid, digest, dlen, sigblob, len, key->rsa);
Damien Millerc516e922002-02-05 11:53:43 +1100173 memset(digest, 'd', sizeof(digest));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100174 memset(sigblob, 's', len);
175 xfree(sigblob);
176 if (ret == 0) {
177 int ecode = ERR_get_error();
Ben Lindstrom5c385522002-06-23 21:23:20 +0000178 error("ssh_rsa_verify: RSA_verify failed: %s",
179 ERR_error_string(ecode, NULL));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100180 }
181 debug("ssh_rsa_verify: signature %scorrect", (ret==0) ? "in" : "");
182 return ret;
183}