]> andersk Git - openssh.git/blame - ssh-dss.c
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / ssh-dss.c
CommitLineData
e516451d 1/* $OpenBSD: ssh-dss.c,v 1.24 2006/11/06 21:25:28 markus Exp $ */
4f8c6159 2/*
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.
4f8c6159 13 *
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"
42f11eb2 27
31652869 28#include <sys/types.h>
29
42f11eb2 30#include <openssl/bn.h>
31#include <openssl/evp.h>
4f8c6159 32
24436b92 33#include <stdarg.h>
00146caa 34#include <string.h>
35
4f8c6159 36#include "xmalloc.h"
37#include "buffer.h"
4f8c6159 38#include "compat.h"
42f11eb2 39#include "log.h"
4f8c6159 40#include "key.h"
41
42#define INTBLOB_LEN 20
43#define SIGBLOB_LEN (2*INTBLOB_LEN)
44
4f8c6159 45int
b6c7b7b7 46ssh_dss_sign(const Key *key, u_char **sigp, u_int *lenp,
47 const u_char *data, u_int datalen)
4f8c6159 48{
4f8c6159 49 DSA_SIG *sig;
714954dc 50 const EVP_MD *evp_md = EVP_sha1();
4f8c6159 51 EVP_MD_CTX md;
eb9f2fab 52 u_char digest[EVP_MAX_MD_SIZE], sigblob[SIGBLOB_LEN];
d87596b0 53 u_int rlen, slen, len, dlen;
4f8c6159 54 Buffer b;
55
56 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
fa08c86b 57 error("ssh_dss_sign: no DSA key");
4f8c6159 58 return -1;
59 }
4f8c6159 60 EVP_DigestInit(&md, evp_md);
a306f2dd 61 EVP_DigestUpdate(&md, data, datalen);
087dea86 62 EVP_DigestFinal(&md, digest, &dlen);
4f8c6159 63
42f11eb2 64 sig = DSA_do_sign(digest, dlen, key->dsa);
087dea86 65 memset(digest, 'd', sizeof(digest));
d87596b0 66
d87596b0 67 if (sig == NULL) {
68 error("ssh_dss_sign: sign failed");
69 return -1;
70 }
4f8c6159 71
72 rlen = BN_num_bytes(sig->r);
73 slen = BN_num_bytes(sig->s);
74 if (rlen > INTBLOB_LEN || slen > INTBLOB_LEN) {
d6133f43 75 error("bad sig size %u %u", rlen, slen);
4f8c6159 76 DSA_SIG_free(sig);
77 return -1;
78 }
4f8c6159 79 memset(sigblob, 0, SIGBLOB_LEN);
80 BN_bn2bin(sig->r, sigblob+ SIGBLOB_LEN - INTBLOB_LEN - rlen);
81 BN_bn2bin(sig->s, sigblob+ SIGBLOB_LEN - slen);
82 DSA_SIG_free(sig);
83
d0c832f3 84 if (datafellows & SSH_BUG_SIGBLOB) {
4f8c6159 85 if (lenp != NULL)
86 *lenp = SIGBLOB_LEN;
eb9f2fab 87 if (sigp != NULL) {
88 *sigp = xmalloc(SIGBLOB_LEN);
89 memcpy(*sigp, sigblob, SIGBLOB_LEN);
90 }
4f8c6159 91 } else {
92 /* ietf-drafts */
93 buffer_init(&b);
fa08c86b 94 buffer_put_cstring(&b, "ssh-dss");
4f8c6159 95 buffer_put_string(&b, sigblob, SIGBLOB_LEN);
96 len = buffer_len(&b);
4f8c6159 97 if (lenp != NULL)
98 *lenp = len;
eb9f2fab 99 if (sigp != NULL) {
100 *sigp = xmalloc(len);
101 memcpy(*sigp, buffer_ptr(&b), len);
102 }
103 buffer_free(&b);
4f8c6159 104 }
105 return 0;
106}
107int
b6c7b7b7 108ssh_dss_verify(const Key *key, const u_char *signature, u_int signaturelen,
109 const u_char *data, u_int datalen)
4f8c6159 110{
4f8c6159 111 DSA_SIG *sig;
714954dc 112 const EVP_MD *evp_md = EVP_sha1();
4f8c6159 113 EVP_MD_CTX md;
087dea86 114 u_char digest[EVP_MAX_MD_SIZE], *sigblob;
1e3b8b07 115 u_int len, dlen;
d87596b0 116 int rlen, ret;
117 Buffer b;
4f8c6159 118
119 if (key == NULL || key->type != KEY_DSA || key->dsa == NULL) {
fa08c86b 120 error("ssh_dss_verify: no DSA key");
4f8c6159 121 return -1;
122 }
123
4f8c6159 124 /* fetch signature */
d0c832f3 125 if (datafellows & SSH_BUG_SIGBLOB) {
b6c7b7b7 126 sigblob = xmalloc(signaturelen);
127 memcpy(sigblob, signature, signaturelen);
4f8c6159 128 len = signaturelen;
129 } else {
130 /* ietf-drafts */
74fc9186 131 char *ktype;
4f8c6159 132 buffer_init(&b);
cf54363d 133 buffer_append(&b, signature, signaturelen);
4f8c6159 134 ktype = buffer_get_string(&b, NULL);
fa08c86b 135 if (strcmp("ssh-dss", ktype) != 0) {
136 error("ssh_dss_verify: cannot handle type %s", ktype);
74fc9186 137 buffer_free(&b);
abc4e9a7 138 xfree(ktype);
74fc9186 139 return -1;
140 }
abc4e9a7 141 xfree(ktype);
cf54363d 142 sigblob = buffer_get_string(&b, &len);
4f8c6159 143 rlen = buffer_len(&b);
abc4e9a7 144 buffer_free(&b);
6aacefa7 145 if (rlen != 0) {
abc4e9a7 146 error("ssh_dss_verify: "
147 "remaining bytes in signature %d", rlen);
148 xfree(sigblob);
74fc9186 149 return -1;
150 }
4f8c6159 151 }
152
153 if (len != SIGBLOB_LEN) {
d6133f43 154 fatal("bad sigbloblen %u != SIGBLOB_LEN", len);
4f8c6159 155 }
156
157 /* parse signature */
b775c6f2 158 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");
e516451d 164 if ((BN_bin2bn(sigblob, INTBLOB_LEN, sig->r) == NULL) ||
165 (BN_bin2bn(sigblob+ INTBLOB_LEN, INTBLOB_LEN, sig->s) == NULL))
166 fatal("ssh_dss_verify: BN_bin2bn failed");
d0c832f3 167
b6c7b7b7 168 /* clean up */
169 memset(sigblob, 0, len);
170 xfree(sigblob);
2b87da3b 171
a306f2dd 172 /* sha1 the data */
4f8c6159 173 EVP_DigestInit(&md, evp_md);
a306f2dd 174 EVP_DigestUpdate(&md, data, datalen);
087dea86 175 EVP_DigestFinal(&md, digest, &dlen);
4f8c6159 176
fa08c86b 177 ret = DSA_do_verify(digest, dlen, sig, key->dsa);
087dea86 178 memset(digest, 'd', sizeof(digest));
4f8c6159 179
4f8c6159 180 DSA_SIG_free(sig);
181
d87596b0 182 debug("ssh_dss_verify: signature %s",
183 ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
4f8c6159 184 return ret;
185}
This page took 0.292804 seconds and 5 git commands to generate.