blob: 8250266fa69bf6e6e060f4e79c2a637957b66cd7 [file] [log] [blame]
Damien Millera664e872000-04-16 11:52:47 +10001/*
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.
Damien Millera664e872000-04-16 11:52:47 +100012 *
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 Millera664e872000-04-16 11:52:47 +100026
Ben Lindstrom226cfa02001-01-22 05:34:40 +000027#include <openssl/bn.h>
28#include <openssl/evp.h>
29
Damien Millera664e872000-04-16 11:52:47 +100030#include "xmalloc.h"
31#include "buffer.h"
32#include "bufaux.h"
33#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "log.h"
Damien Millera664e872000-04-16 11:52:47 +100035#include "key.h"
36
37#define INTBLOB_LEN 20
38#define SIGBLOB_LEN (2*INTBLOB_LEN)
39
Damien Millera664e872000-04-16 11:52:47 +100040int
Damien Millerf58b58c2003-11-17 21:18:23 +110041ssh_dss_sign(const Key *key, u_char **sigp, u_int *lenp,
42 const u_char *data, u_int datalen)
Damien Millera664e872000-04-16 11:52:47 +100043{
Damien Millera664e872000-04-16 11:52:47 +100044 DSA_SIG *sig;
Ben Lindstrom80cb27d2002-03-05 01:33:36 +000045 const EVP_MD *evp_md = EVP_sha1();
Damien Millera664e872000-04-16 11:52:47 +100046 EVP_MD_CTX md;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000047 u_char digest[EVP_MAX_MD_SIZE], sigblob[SIGBLOB_LEN];
Ben Lindstromc66d4362001-06-09 01:36:21 +000048 u_int rlen, slen, len, dlen;
Damien Millera664e872000-04-16 11:52:47 +100049 Buffer b;
50
51 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +110052 error("ssh_dss_sign: no DSA key");
Damien Millera664e872000-04-16 11:52:47 +100053 return -1;
54 }
Damien Millera664e872000-04-16 11:52:47 +100055 EVP_DigestInit(&md, evp_md);
Damien Millereba71ba2000-04-29 23:57:08 +100056 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +110057 EVP_DigestFinal(&md, digest, &dlen);
Damien Millera664e872000-04-16 11:52:47 +100058
Ben Lindstrom226cfa02001-01-22 05:34:40 +000059 sig = DSA_do_sign(digest, dlen, key->dsa);
Damien Millerc516e922002-02-05 11:53:43 +110060 memset(digest, 'd', sizeof(digest));
Ben Lindstromc66d4362001-06-09 01:36:21 +000061
Ben Lindstromc66d4362001-06-09 01:36:21 +000062 if (sig == NULL) {
63 error("ssh_dss_sign: sign failed");
64 return -1;
65 }
Damien Millera664e872000-04-16 11:52:47 +100066
67 rlen = BN_num_bytes(sig->r);
68 slen = BN_num_bytes(sig->s);
69 if (rlen > INTBLOB_LEN || slen > INTBLOB_LEN) {
Ben Lindstrom5c385522002-06-23 21:23:20 +000070 error("bad sig size %u %u", rlen, slen);
Damien Millera664e872000-04-16 11:52:47 +100071 DSA_SIG_free(sig);
72 return -1;
73 }
Damien Millera664e872000-04-16 11:52:47 +100074 memset(sigblob, 0, SIGBLOB_LEN);
75 BN_bn2bin(sig->r, sigblob+ SIGBLOB_LEN - INTBLOB_LEN - rlen);
76 BN_bn2bin(sig->s, sigblob+ SIGBLOB_LEN - slen);
77 DSA_SIG_free(sig);
78
Damien Miller30c3d422000-05-09 11:02:59 +100079 if (datafellows & SSH_BUG_SIGBLOB) {
Damien Millera664e872000-04-16 11:52:47 +100080 if (lenp != NULL)
81 *lenp = SIGBLOB_LEN;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000082 if (sigp != NULL) {
83 *sigp = xmalloc(SIGBLOB_LEN);
84 memcpy(*sigp, sigblob, SIGBLOB_LEN);
85 }
Damien Millera664e872000-04-16 11:52:47 +100086 } else {
87 /* ietf-drafts */
88 buffer_init(&b);
Damien Miller0bc1bd82000-11-13 22:57:25 +110089 buffer_put_cstring(&b, "ssh-dss");
Damien Millera664e872000-04-16 11:52:47 +100090 buffer_put_string(&b, sigblob, SIGBLOB_LEN);
91 len = buffer_len(&b);
Damien Millera664e872000-04-16 11:52:47 +100092 if (lenp != NULL)
93 *lenp = len;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000094 if (sigp != NULL) {
95 *sigp = xmalloc(len);
96 memcpy(*sigp, buffer_ptr(&b), len);
97 }
98 buffer_free(&b);
Damien Millera664e872000-04-16 11:52:47 +100099 }
100 return 0;
101}
102int
Damien Millerf58b58c2003-11-17 21:18:23 +1100103ssh_dss_verify(const Key *key, const u_char *signature, u_int signaturelen,
104 const u_char *data, u_int datalen)
Damien Millera664e872000-04-16 11:52:47 +1000105{
Damien Millera664e872000-04-16 11:52:47 +1000106 DSA_SIG *sig;
Ben Lindstrom80cb27d2002-03-05 01:33:36 +0000107 const EVP_MD *evp_md = EVP_sha1();
Damien Millera664e872000-04-16 11:52:47 +1000108 EVP_MD_CTX md;
Damien Millerc516e922002-02-05 11:53:43 +1100109 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000110 u_int len, dlen;
Ben Lindstromc66d4362001-06-09 01:36:21 +0000111 int rlen, ret;
112 Buffer b;
Damien Millera664e872000-04-16 11:52:47 +1000113
114 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100115 error("ssh_dss_verify: no DSA key");
Damien Millera664e872000-04-16 11:52:47 +1000116 return -1;
117 }
118
Damien Millera664e872000-04-16 11:52:47 +1000119 /* fetch signature */
Damien Miller30c3d422000-05-09 11:02:59 +1000120 if (datafellows & SSH_BUG_SIGBLOB) {
Damien Millerf58b58c2003-11-17 21:18:23 +1100121 sigblob = xmalloc(signaturelen);
122 memcpy(sigblob, signature, signaturelen);
Damien Millera664e872000-04-16 11:52:47 +1000123 len = signaturelen;
124 } else {
125 /* ietf-drafts */
Damien Miller6536c7d2000-06-22 21:32:31 +1000126 char *ktype;
Damien Millera664e872000-04-16 11:52:47 +1000127 buffer_init(&b);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000128 buffer_append(&b, signature, signaturelen);
Damien Millera664e872000-04-16 11:52:47 +1000129 ktype = buffer_get_string(&b, NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100130 if (strcmp("ssh-dss", ktype) != 0) {
131 error("ssh_dss_verify: cannot handle type %s", ktype);
Damien Miller6536c7d2000-06-22 21:32:31 +1000132 buffer_free(&b);
Damien Miller36e603d2001-11-12 11:03:35 +1100133 xfree(ktype);
Damien Miller6536c7d2000-06-22 21:32:31 +1000134 return -1;
135 }
Damien Miller36e603d2001-11-12 11:03:35 +1100136 xfree(ktype);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000137 sigblob = buffer_get_string(&b, &len);
Damien Millera664e872000-04-16 11:52:47 +1000138 rlen = buffer_len(&b);
Damien Miller36e603d2001-11-12 11:03:35 +1100139 buffer_free(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000140 if (rlen != 0) {
Damien Miller36e603d2001-11-12 11:03:35 +1100141 error("ssh_dss_verify: "
142 "remaining bytes in signature %d", rlen);
143 xfree(sigblob);
Damien Miller6536c7d2000-06-22 21:32:31 +1000144 return -1;
145 }
Damien Millera664e872000-04-16 11:52:47 +1000146 }
147
148 if (len != SIGBLOB_LEN) {
Ben Lindstrom5c385522002-06-23 21:23:20 +0000149 fatal("bad sigbloblen %u != SIGBLOB_LEN", len);
Damien Millera664e872000-04-16 11:52:47 +1000150 }
151
152 /* parse signature */
Damien Millerda755162002-01-22 23:09:22 +1100153 if ((sig = DSA_SIG_new()) == NULL)
154 fatal("ssh_dss_verify: DSA_SIG_new failed");
155 if ((sig->r = BN_new()) == NULL)
156 fatal("ssh_dss_verify: BN_new failed");
157 if ((sig->s = BN_new()) == NULL)
158 fatal("ssh_dss_verify: BN_new failed");
Damien Millera664e872000-04-16 11:52:47 +1000159 BN_bin2bn(sigblob, INTBLOB_LEN, sig->r);
160 BN_bin2bn(sigblob+ INTBLOB_LEN, INTBLOB_LEN, sig->s);
Damien Miller30c3d422000-05-09 11:02:59 +1000161
Damien Millerf58b58c2003-11-17 21:18:23 +1100162 /* clean up */
163 memset(sigblob, 0, len);
164 xfree(sigblob);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000165
Damien Millereba71ba2000-04-29 23:57:08 +1000166 /* sha1 the data */
Damien Millera664e872000-04-16 11:52:47 +1000167 EVP_DigestInit(&md, evp_md);
Damien Millereba71ba2000-04-29 23:57:08 +1000168 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +1100169 EVP_DigestFinal(&md, digest, &dlen);
Damien Millera664e872000-04-16 11:52:47 +1000170
Damien Miller0bc1bd82000-11-13 22:57:25 +1100171 ret = DSA_do_verify(digest, dlen, sig, key->dsa);
Damien Millerc516e922002-02-05 11:53:43 +1100172 memset(digest, 'd', sizeof(digest));
Damien Millera664e872000-04-16 11:52:47 +1000173
Damien Millera664e872000-04-16 11:52:47 +1000174 DSA_SIG_free(sig);
175
Ben Lindstromc66d4362001-06-09 01:36:21 +0000176 debug("ssh_dss_verify: signature %s",
177 ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
Damien Millera664e872000-04-16 11:52:47 +1000178 return ret;
179}