blob: 02403f550afc22388d6cc9e7f9d3aa31a5128849 [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"
Ben Lindstrom80cb27d2002-03-05 01:33:36 +000026RCSID("$OpenBSD: ssh-dss.c,v 1.14 2002/02/28 15:46:33 markus Exp $");
Damien Millera664e872000-04-16 11:52:47 +100027
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include <openssl/bn.h>
29#include <openssl/evp.h>
30
Damien Millera664e872000-04-16 11:52:47 +100031#include "xmalloc.h"
32#include "buffer.h"
33#include "bufaux.h"
34#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "log.h"
Damien Millera664e872000-04-16 11:52:47 +100036#include "key.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000037#include "ssh-dss.h"
Damien Millera664e872000-04-16 11:52:47 +100038
39#define INTBLOB_LEN 20
40#define SIGBLOB_LEN (2*INTBLOB_LEN)
41
Damien Millera664e872000-04-16 11:52:47 +100042int
Damien Miller0bc1bd82000-11-13 22:57:25 +110043ssh_dss_sign(
Damien Millera664e872000-04-16 11:52:47 +100044 Key *key,
Ben Lindstrom90fd8142002-02-26 18:09:42 +000045 u_char **sigp, u_int *lenp,
46 u_char *data, u_int datalen)
Damien Millera664e872000-04-16 11:52:47 +100047{
Damien Millera664e872000-04-16 11:52:47 +100048 DSA_SIG *sig;
Ben Lindstrom80cb27d2002-03-05 01:33:36 +000049 const EVP_MD *evp_md = EVP_sha1();
Damien Millera664e872000-04-16 11:52:47 +100050 EVP_MD_CTX md;
Damien Millerc516e922002-02-05 11:53:43 +110051 u_char *ret, digest[EVP_MAX_MD_SIZE], sigblob[SIGBLOB_LEN];
Ben Lindstromc66d4362001-06-09 01:36:21 +000052 u_int rlen, slen, len, dlen;
Damien Millera664e872000-04-16 11:52:47 +100053 Buffer b;
54
55 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +110056 error("ssh_dss_sign: no DSA key");
Damien Millera664e872000-04-16 11:52:47 +100057 return -1;
58 }
Damien Millera664e872000-04-16 11:52:47 +100059 EVP_DigestInit(&md, evp_md);
Damien Millereba71ba2000-04-29 23:57:08 +100060 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +110061 EVP_DigestFinal(&md, digest, &dlen);
Damien Millera664e872000-04-16 11:52:47 +100062
Ben Lindstrom226cfa02001-01-22 05:34:40 +000063 sig = DSA_do_sign(digest, dlen, key->dsa);
Damien Millerc516e922002-02-05 11:53:43 +110064 memset(digest, 'd', sizeof(digest));
Ben Lindstromc66d4362001-06-09 01:36:21 +000065
Ben Lindstromc66d4362001-06-09 01:36:21 +000066 if (sig == NULL) {
67 error("ssh_dss_sign: sign failed");
68 return -1;
69 }
Damien Millera664e872000-04-16 11:52:47 +100070
71 rlen = BN_num_bytes(sig->r);
72 slen = BN_num_bytes(sig->s);
73 if (rlen > INTBLOB_LEN || slen > INTBLOB_LEN) {
74 error("bad sig size %d %d", rlen, slen);
75 DSA_SIG_free(sig);
76 return -1;
77 }
Damien Millera664e872000-04-16 11:52:47 +100078 memset(sigblob, 0, SIGBLOB_LEN);
79 BN_bn2bin(sig->r, sigblob+ SIGBLOB_LEN - INTBLOB_LEN - rlen);
80 BN_bn2bin(sig->s, sigblob+ SIGBLOB_LEN - slen);
81 DSA_SIG_free(sig);
82
Damien Miller30c3d422000-05-09 11:02:59 +100083 if (datafellows & SSH_BUG_SIGBLOB) {
Damien Millera664e872000-04-16 11:52:47 +100084 ret = xmalloc(SIGBLOB_LEN);
85 memcpy(ret, sigblob, SIGBLOB_LEN);
86 if (lenp != NULL)
87 *lenp = SIGBLOB_LEN;
88 if (sigp != NULL)
89 *sigp = ret;
90 } else {
91 /* ietf-drafts */
92 buffer_init(&b);
Damien Miller0bc1bd82000-11-13 22:57:25 +110093 buffer_put_cstring(&b, "ssh-dss");
Damien Millera664e872000-04-16 11:52:47 +100094 buffer_put_string(&b, sigblob, SIGBLOB_LEN);
95 len = buffer_len(&b);
96 ret = xmalloc(len);
97 memcpy(ret, buffer_ptr(&b), len);
98 buffer_free(&b);
99 if (lenp != NULL)
100 *lenp = len;
101 if (sigp != NULL)
102 *sigp = ret;
103 }
104 return 0;
105}
106int
Damien Miller0bc1bd82000-11-13 22:57:25 +1100107ssh_dss_verify(
Damien Millera664e872000-04-16 11:52:47 +1000108 Key *key,
Ben Lindstrom90fd8142002-02-26 18:09:42 +0000109 u_char *signature, u_int signaturelen,
110 u_char *data, u_int datalen)
Damien Millera664e872000-04-16 11:52:47 +1000111{
Damien Millera664e872000-04-16 11:52:47 +1000112 DSA_SIG *sig;
Ben Lindstrom80cb27d2002-03-05 01:33:36 +0000113 const EVP_MD *evp_md = EVP_sha1();
Damien Millera664e872000-04-16 11:52:47 +1000114 EVP_MD_CTX md;
Damien Millerc516e922002-02-05 11:53:43 +1100115 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000116 u_int len, dlen;
Ben Lindstromc66d4362001-06-09 01:36:21 +0000117 int rlen, ret;
118 Buffer b;
Damien Millera664e872000-04-16 11:52:47 +1000119
120 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100121 error("ssh_dss_verify: no DSA key");
Damien Millera664e872000-04-16 11:52:47 +1000122 return -1;
123 }
124
Damien Millera664e872000-04-16 11:52:47 +1000125 /* fetch signature */
Damien Miller30c3d422000-05-09 11:02:59 +1000126 if (datafellows & SSH_BUG_SIGBLOB) {
Damien Millera664e872000-04-16 11:52:47 +1000127 sigblob = signature;
128 len = signaturelen;
129 } else {
130 /* ietf-drafts */
Damien Miller6536c7d2000-06-22 21:32:31 +1000131 char *ktype;
Damien Millera664e872000-04-16 11:52:47 +1000132 buffer_init(&b);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000133 buffer_append(&b, signature, signaturelen);
Damien Millera664e872000-04-16 11:52:47 +1000134 ktype = buffer_get_string(&b, NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100135 if (strcmp("ssh-dss", ktype) != 0) {
136 error("ssh_dss_verify: cannot handle type %s", ktype);
Damien Miller6536c7d2000-06-22 21:32:31 +1000137 buffer_free(&b);
Damien Miller36e603d2001-11-12 11:03:35 +1100138 xfree(ktype);
Damien Miller6536c7d2000-06-22 21:32:31 +1000139 return -1;
140 }
Damien Miller36e603d2001-11-12 11:03:35 +1100141 xfree(ktype);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000142 sigblob = buffer_get_string(&b, &len);
Damien Millera664e872000-04-16 11:52:47 +1000143 rlen = buffer_len(&b);
Damien Miller36e603d2001-11-12 11:03:35 +1100144 buffer_free(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000145 if (rlen != 0) {
Damien Miller36e603d2001-11-12 11:03:35 +1100146 error("ssh_dss_verify: "
147 "remaining bytes in signature %d", rlen);
148 xfree(sigblob);
Damien Miller6536c7d2000-06-22 21:32:31 +1000149 return -1;
150 }
Damien Millera664e872000-04-16 11:52:47 +1000151 }
152
153 if (len != SIGBLOB_LEN) {
154 fatal("bad sigbloblen %d != SIGBLOB_LEN", len);
155 }
156
157 /* parse signature */
Damien Millerda755162002-01-22 23:09:22 +1100158 if ((sig = DSA_SIG_new()) == NULL)
159 fatal("ssh_dss_verify: DSA_SIG_new failed");
160 if ((sig->r = BN_new()) == NULL)
161 fatal("ssh_dss_verify: BN_new failed");
162 if ((sig->s = BN_new()) == NULL)
163 fatal("ssh_dss_verify: BN_new failed");
Damien Millera664e872000-04-16 11:52:47 +1000164 BN_bin2bn(sigblob, INTBLOB_LEN, sig->r);
165 BN_bin2bn(sigblob+ INTBLOB_LEN, INTBLOB_LEN, sig->s);
Damien Miller30c3d422000-05-09 11:02:59 +1000166
167 if (!(datafellows & SSH_BUG_SIGBLOB)) {
Damien Millera664e872000-04-16 11:52:47 +1000168 memset(sigblob, 0, len);
169 xfree(sigblob);
170 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000171
Damien Millereba71ba2000-04-29 23:57:08 +1000172 /* sha1 the data */
Damien Millera664e872000-04-16 11:52:47 +1000173 EVP_DigestInit(&md, evp_md);
Damien Millereba71ba2000-04-29 23:57:08 +1000174 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +1100175 EVP_DigestFinal(&md, digest, &dlen);
Damien Millera664e872000-04-16 11:52:47 +1000176
Damien Miller0bc1bd82000-11-13 22:57:25 +1100177 ret = DSA_do_verify(digest, dlen, sig, key->dsa);
Damien Millerc516e922002-02-05 11:53:43 +1100178 memset(digest, 'd', sizeof(digest));
Damien Millera664e872000-04-16 11:52:47 +1000179
Damien Millera664e872000-04-16 11:52:47 +1000180 DSA_SIG_free(sig);
181
Ben Lindstromc66d4362001-06-09 01:36:21 +0000182 debug("ssh_dss_verify: signature %s",
183 ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
Damien Millera664e872000-04-16 11:52:47 +1000184 return ret;
185}