blob: 448f704f62f8d3d3b58b6258fb06c9026a0e97b0 [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: ssh-dss.c,v 1.23 2006/08/03 03:34:42 deraadt Exp $ */
Damien Millera664e872000-04-16 11:52:47 +10002/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
Damien Millera664e872000-04-16 11:52:47 +100013 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
Damien Millera664e872000-04-16 11:52:47 +100027
Damien Millerd7834352006-08-05 12:39:39 +100028#include <sys/types.h>
29
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include <openssl/bn.h>
31#include <openssl/evp.h>
32
Damien Millere3476ed2006-07-24 14:13:33 +100033#include <string.h>
34
Damien Millera664e872000-04-16 11:52:47 +100035#include "xmalloc.h"
36#include "buffer.h"
Damien Millera664e872000-04-16 11:52:47 +100037#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000038#include "log.h"
Damien Millera664e872000-04-16 11:52:47 +100039#include "key.h"
40
41#define INTBLOB_LEN 20
42#define SIGBLOB_LEN (2*INTBLOB_LEN)
43
Damien Millera664e872000-04-16 11:52:47 +100044int
Damien Millerf58b58c2003-11-17 21:18:23 +110045ssh_dss_sign(const Key *key, u_char **sigp, u_int *lenp,
46 const 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;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000051 u_char 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) {
Ben Lindstrom5c385522002-06-23 21:23:20 +000074 error("bad sig size %u %u", rlen, slen);
Damien Millera664e872000-04-16 11:52:47 +100075 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 if (lenp != NULL)
85 *lenp = SIGBLOB_LEN;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000086 if (sigp != NULL) {
87 *sigp = xmalloc(SIGBLOB_LEN);
88 memcpy(*sigp, sigblob, SIGBLOB_LEN);
89 }
Damien Millera664e872000-04-16 11:52:47 +100090 } 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);
Damien Millera664e872000-04-16 11:52:47 +100096 if (lenp != NULL)
97 *lenp = len;
Ben Lindstrom2bf759c2002-07-07 22:13:31 +000098 if (sigp != NULL) {
99 *sigp = xmalloc(len);
100 memcpy(*sigp, buffer_ptr(&b), len);
101 }
102 buffer_free(&b);
Damien Millera664e872000-04-16 11:52:47 +1000103 }
104 return 0;
105}
106int
Damien Millerf58b58c2003-11-17 21:18:23 +1100107ssh_dss_verify(const Key *key, const u_char *signature, u_int signaturelen,
108 const u_char *data, u_int datalen)
Damien Millera664e872000-04-16 11:52:47 +1000109{
Damien Millera664e872000-04-16 11:52:47 +1000110 DSA_SIG *sig;
Ben Lindstrom80cb27d2002-03-05 01:33:36 +0000111 const EVP_MD *evp_md = EVP_sha1();
Damien Millera664e872000-04-16 11:52:47 +1000112 EVP_MD_CTX md;
Damien Millerc516e922002-02-05 11:53:43 +1100113 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000114 u_int len, dlen;
Ben Lindstromc66d4362001-06-09 01:36:21 +0000115 int rlen, ret;
116 Buffer b;
Damien Millera664e872000-04-16 11:52:47 +1000117
118 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100119 error("ssh_dss_verify: no DSA key");
Damien Millera664e872000-04-16 11:52:47 +1000120 return -1;
121 }
122
Damien Millera664e872000-04-16 11:52:47 +1000123 /* fetch signature */
Damien Miller30c3d422000-05-09 11:02:59 +1000124 if (datafellows & SSH_BUG_SIGBLOB) {
Damien Millerf58b58c2003-11-17 21:18:23 +1100125 sigblob = xmalloc(signaturelen);
126 memcpy(sigblob, signature, signaturelen);
Damien Millera664e872000-04-16 11:52:47 +1000127 len = signaturelen;
128 } else {
129 /* ietf-drafts */
Damien Miller6536c7d2000-06-22 21:32:31 +1000130 char *ktype;
Damien Millera664e872000-04-16 11:52:47 +1000131 buffer_init(&b);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000132 buffer_append(&b, signature, signaturelen);
Damien Millera664e872000-04-16 11:52:47 +1000133 ktype = buffer_get_string(&b, NULL);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100134 if (strcmp("ssh-dss", ktype) != 0) {
135 error("ssh_dss_verify: cannot handle type %s", ktype);
Damien Miller6536c7d2000-06-22 21:32:31 +1000136 buffer_free(&b);
Damien Miller36e603d2001-11-12 11:03:35 +1100137 xfree(ktype);
Damien Miller6536c7d2000-06-22 21:32:31 +1000138 return -1;
139 }
Damien Miller36e603d2001-11-12 11:03:35 +1100140 xfree(ktype);
Ben Lindstrom9e0ddd42001-09-18 05:41:19 +0000141 sigblob = buffer_get_string(&b, &len);
Damien Millera664e872000-04-16 11:52:47 +1000142 rlen = buffer_len(&b);
Damien Miller36e603d2001-11-12 11:03:35 +1100143 buffer_free(&b);
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000144 if (rlen != 0) {
Damien Miller36e603d2001-11-12 11:03:35 +1100145 error("ssh_dss_verify: "
146 "remaining bytes in signature %d", rlen);
147 xfree(sigblob);
Damien Miller6536c7d2000-06-22 21:32:31 +1000148 return -1;
149 }
Damien Millera664e872000-04-16 11:52:47 +1000150 }
151
152 if (len != SIGBLOB_LEN) {
Ben Lindstrom5c385522002-06-23 21:23:20 +0000153 fatal("bad sigbloblen %u != SIGBLOB_LEN", len);
Damien Millera664e872000-04-16 11:52:47 +1000154 }
155
156 /* parse signature */
Damien Millerda755162002-01-22 23:09:22 +1100157 if ((sig = DSA_SIG_new()) == NULL)
158 fatal("ssh_dss_verify: DSA_SIG_new failed");
159 if ((sig->r = BN_new()) == NULL)
160 fatal("ssh_dss_verify: BN_new failed");
161 if ((sig->s = BN_new()) == NULL)
162 fatal("ssh_dss_verify: BN_new failed");
Damien Millera664e872000-04-16 11:52:47 +1000163 BN_bin2bn(sigblob, INTBLOB_LEN, sig->r);
164 BN_bin2bn(sigblob+ INTBLOB_LEN, INTBLOB_LEN, sig->s);
Damien Miller30c3d422000-05-09 11:02:59 +1000165
Damien Millerf58b58c2003-11-17 21:18:23 +1100166 /* clean up */
167 memset(sigblob, 0, len);
168 xfree(sigblob);
Kevin Stevesef4eea92001-02-05 12:42:17 +0000169
Damien Millereba71ba2000-04-29 23:57:08 +1000170 /* sha1 the data */
Damien Millera664e872000-04-16 11:52:47 +1000171 EVP_DigestInit(&md, evp_md);
Damien Millereba71ba2000-04-29 23:57:08 +1000172 EVP_DigestUpdate(&md, data, datalen);
Damien Millerc516e922002-02-05 11:53:43 +1100173 EVP_DigestFinal(&md, digest, &dlen);
Damien Millera664e872000-04-16 11:52:47 +1000174
Damien Miller0bc1bd82000-11-13 22:57:25 +1100175 ret = DSA_do_verify(digest, dlen, sig, key->dsa);
Damien Millerc516e922002-02-05 11:53:43 +1100176 memset(digest, 'd', sizeof(digest));
Damien Millera664e872000-04-16 11:52:47 +1000177
Damien Millera664e872000-04-16 11:52:47 +1000178 DSA_SIG_free(sig);
179
Ben Lindstromc66d4362001-06-09 01:36:21 +0000180 debug("ssh_dss_verify: signature %s",
181 ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
Damien Millera664e872000-04-16 11:52:47 +1000182 return ret;
183}