2013-12-29 07:47:50 +01:00
|
|
|
/* $OpenBSD: ssh-dss.c,v 1.29 2013/12/27 22:30:17 djm Exp $ */
|
2000-04-16 03:52:47 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2001-01-22 06:34:40 +01:00
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/evp.h>
|
2000-04-16 03:52:47 +02:00
|
|
|
|
2006-09-01 07:38:36 +02:00
|
|
|
#include <stdarg.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-04-16 03:52:47 +02:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "compat.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "log.h"
|
2000-04-16 03:52:47 +02:00
|
|
|
#include "key.h"
|
|
|
|
|
|
|
|
#define INTBLOB_LEN 20
|
|
|
|
#define SIGBLOB_LEN (2*INTBLOB_LEN)
|
|
|
|
|
|
|
|
int
|
2003-11-17 11:18:23 +01:00
|
|
|
ssh_dss_sign(const Key *key, u_char **sigp, u_int *lenp,
|
|
|
|
const u_char *data, u_int datalen)
|
2000-04-16 03:52:47 +02:00
|
|
|
{
|
|
|
|
DSA_SIG *sig;
|
2002-03-05 02:33:36 +01:00
|
|
|
const EVP_MD *evp_md = EVP_sha1();
|
2000-04-16 03:52:47 +02:00
|
|
|
EVP_MD_CTX md;
|
2002-07-08 00:13:31 +02:00
|
|
|
u_char digest[EVP_MAX_MD_SIZE], sigblob[SIGBLOB_LEN];
|
2001-06-09 03:36:21 +02:00
|
|
|
u_int rlen, slen, len, dlen;
|
2000-04-16 03:52:47 +02:00
|
|
|
Buffer b;
|
|
|
|
|
2013-12-29 07:47:50 +01:00
|
|
|
if (key == NULL || key_type_plain(key->type) != KEY_DSA ||
|
|
|
|
key->dsa == NULL) {
|
|
|
|
error("%s: no DSA key", __func__);
|
2000-04-16 03:52:47 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2013-12-29 07:47:50 +01:00
|
|
|
|
2000-04-16 03:52:47 +02:00
|
|
|
EVP_DigestInit(&md, evp_md);
|
2000-04-29 15:57:08 +02:00
|
|
|
EVP_DigestUpdate(&md, data, datalen);
|
2002-02-05 01:53:43 +01:00
|
|
|
EVP_DigestFinal(&md, digest, &dlen);
|
2000-04-16 03:52:47 +02:00
|
|
|
|
2001-01-22 06:34:40 +01:00
|
|
|
sig = DSA_do_sign(digest, dlen, key->dsa);
|
2002-02-05 01:53:43 +01:00
|
|
|
memset(digest, 'd', sizeof(digest));
|
2001-06-09 03:36:21 +02:00
|
|
|
|
|
|
|
if (sig == NULL) {
|
|
|
|
error("ssh_dss_sign: sign failed");
|
|
|
|
return -1;
|
|
|
|
}
|
2000-04-16 03:52:47 +02:00
|
|
|
|
|
|
|
rlen = BN_num_bytes(sig->r);
|
|
|
|
slen = BN_num_bytes(sig->s);
|
|
|
|
if (rlen > INTBLOB_LEN || slen > INTBLOB_LEN) {
|
2002-06-23 23:23:20 +02:00
|
|
|
error("bad sig size %u %u", rlen, slen);
|
2000-04-16 03:52:47 +02:00
|
|
|
DSA_SIG_free(sig);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memset(sigblob, 0, SIGBLOB_LEN);
|
|
|
|
BN_bn2bin(sig->r, sigblob+ SIGBLOB_LEN - INTBLOB_LEN - rlen);
|
|
|
|
BN_bn2bin(sig->s, sigblob+ SIGBLOB_LEN - slen);
|
|
|
|
DSA_SIG_free(sig);
|
|
|
|
|
2000-05-09 03:02:59 +02:00
|
|
|
if (datafellows & SSH_BUG_SIGBLOB) {
|
2000-04-16 03:52:47 +02:00
|
|
|
if (lenp != NULL)
|
|
|
|
*lenp = SIGBLOB_LEN;
|
2002-07-08 00:13:31 +02:00
|
|
|
if (sigp != NULL) {
|
|
|
|
*sigp = xmalloc(SIGBLOB_LEN);
|
|
|
|
memcpy(*sigp, sigblob, SIGBLOB_LEN);
|
|
|
|
}
|
2000-04-16 03:52:47 +02:00
|
|
|
} else {
|
|
|
|
/* ietf-drafts */
|
|
|
|
buffer_init(&b);
|
2000-11-13 12:57:25 +01:00
|
|
|
buffer_put_cstring(&b, "ssh-dss");
|
2000-04-16 03:52:47 +02:00
|
|
|
buffer_put_string(&b, sigblob, SIGBLOB_LEN);
|
|
|
|
len = buffer_len(&b);
|
|
|
|
if (lenp != NULL)
|
|
|
|
*lenp = len;
|
2002-07-08 00:13:31 +02:00
|
|
|
if (sigp != NULL) {
|
|
|
|
*sigp = xmalloc(len);
|
|
|
|
memcpy(*sigp, buffer_ptr(&b), len);
|
|
|
|
}
|
|
|
|
buffer_free(&b);
|
2000-04-16 03:52:47 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int
|
2003-11-17 11:18:23 +01:00
|
|
|
ssh_dss_verify(const Key *key, const u_char *signature, u_int signaturelen,
|
|
|
|
const u_char *data, u_int datalen)
|
2000-04-16 03:52:47 +02:00
|
|
|
{
|
|
|
|
DSA_SIG *sig;
|
2002-03-05 02:33:36 +01:00
|
|
|
const EVP_MD *evp_md = EVP_sha1();
|
2000-04-16 03:52:47 +02:00
|
|
|
EVP_MD_CTX md;
|
2002-02-05 01:53:43 +01:00
|
|
|
u_char digest[EVP_MAX_MD_SIZE], *sigblob;
|
2000-12-22 02:43:59 +01:00
|
|
|
u_int len, dlen;
|
2001-06-09 03:36:21 +02:00
|
|
|
int rlen, ret;
|
|
|
|
Buffer b;
|
2000-04-16 03:52:47 +02:00
|
|
|
|
2013-12-29 07:47:50 +01:00
|
|
|
if (key == NULL || key_type_plain(key->type) != KEY_DSA ||
|
|
|
|
key->dsa == NULL) {
|
|
|
|
error("%s: no DSA key", __func__);
|
2000-04-16 03:52:47 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fetch signature */
|
2000-05-09 03:02:59 +02:00
|
|
|
if (datafellows & SSH_BUG_SIGBLOB) {
|
2003-11-17 11:18:23 +01:00
|
|
|
sigblob = xmalloc(signaturelen);
|
|
|
|
memcpy(sigblob, signature, signaturelen);
|
2000-04-16 03:52:47 +02:00
|
|
|
len = signaturelen;
|
|
|
|
} else {
|
|
|
|
/* ietf-drafts */
|
2000-06-22 13:32:31 +02:00
|
|
|
char *ktype;
|
2000-04-16 03:52:47 +02:00
|
|
|
buffer_init(&b);
|
2001-09-18 07:41:19 +02:00
|
|
|
buffer_append(&b, signature, signaturelen);
|
2010-08-31 14:36:39 +02:00
|
|
|
ktype = buffer_get_cstring(&b, NULL);
|
2000-11-13 12:57:25 +01:00
|
|
|
if (strcmp("ssh-dss", ktype) != 0) {
|
2013-12-29 07:47:50 +01:00
|
|
|
error("%s: cannot handle type %s", __func__, ktype);
|
2000-06-22 13:32:31 +02:00
|
|
|
buffer_free(&b);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(ktype);
|
2000-06-22 13:32:31 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2013-06-01 23:31:17 +02:00
|
|
|
free(ktype);
|
2001-09-18 07:41:19 +02:00
|
|
|
sigblob = buffer_get_string(&b, &len);
|
2000-04-16 03:52:47 +02:00
|
|
|
rlen = buffer_len(&b);
|
2001-11-12 01:03:35 +01:00
|
|
|
buffer_free(&b);
|
2001-12-06 19:00:18 +01:00
|
|
|
if (rlen != 0) {
|
2013-12-29 07:47:50 +01:00
|
|
|
error("%s: remaining bytes in signature %d",
|
|
|
|
__func__, rlen);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(sigblob);
|
2000-06-22 13:32:31 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2000-04-16 03:52:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (len != SIGBLOB_LEN) {
|
2002-06-23 23:23:20 +02:00
|
|
|
fatal("bad sigbloblen %u != SIGBLOB_LEN", len);
|
2000-04-16 03:52:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* parse signature */
|
2002-01-22 13:09:22 +01:00
|
|
|
if ((sig = DSA_SIG_new()) == NULL)
|
2013-12-29 07:47:50 +01:00
|
|
|
fatal("%s: DSA_SIG_new failed", __func__);
|
2002-01-22 13:09:22 +01:00
|
|
|
if ((sig->r = BN_new()) == NULL)
|
2013-12-29 07:47:50 +01:00
|
|
|
fatal("%s: BN_new failed", __func__);
|
2002-01-22 13:09:22 +01:00
|
|
|
if ((sig->s = BN_new()) == NULL)
|
|
|
|
fatal("ssh_dss_verify: BN_new failed");
|
2006-11-07 13:14:41 +01:00
|
|
|
if ((BN_bin2bn(sigblob, INTBLOB_LEN, sig->r) == NULL) ||
|
|
|
|
(BN_bin2bn(sigblob+ INTBLOB_LEN, INTBLOB_LEN, sig->s) == NULL))
|
2013-12-29 07:47:50 +01:00
|
|
|
fatal("%s: BN_bin2bn failed", __func__);
|
2000-05-09 03:02:59 +02:00
|
|
|
|
2003-11-17 11:18:23 +01:00
|
|
|
/* clean up */
|
|
|
|
memset(sigblob, 0, len);
|
2013-06-01 23:31:17 +02:00
|
|
|
free(sigblob);
|
2001-02-05 13:42:17 +01:00
|
|
|
|
2000-04-29 15:57:08 +02:00
|
|
|
/* sha1 the data */
|
2000-04-16 03:52:47 +02:00
|
|
|
EVP_DigestInit(&md, evp_md);
|
2000-04-29 15:57:08 +02:00
|
|
|
EVP_DigestUpdate(&md, data, datalen);
|
2002-02-05 01:53:43 +01:00
|
|
|
EVP_DigestFinal(&md, digest, &dlen);
|
2000-04-16 03:52:47 +02:00
|
|
|
|
2000-11-13 12:57:25 +01:00
|
|
|
ret = DSA_do_verify(digest, dlen, sig, key->dsa);
|
2002-02-05 01:53:43 +01:00
|
|
|
memset(digest, 'd', sizeof(digest));
|
2000-04-16 03:52:47 +02:00
|
|
|
|
|
|
|
DSA_SIG_free(sig);
|
|
|
|
|
2013-12-29 07:47:50 +01:00
|
|
|
debug("%s: signature %s", __func__,
|
2001-06-09 03:36:21 +02:00
|
|
|
ret == 1 ? "correct" : ret == 0 ? "incorrect" : "error");
|
2000-04-16 03:52:47 +02:00
|
|
|
return ret;
|
|
|
|
}
|