1997-11-18 15:06:00 +01:00
|
|
|
/* sig-check.c - Check a signature
|
|
|
|
* Copyright (c) 1997 by Werner Koch (dd9jn)
|
|
|
|
*
|
|
|
|
* This file is part of G10.
|
|
|
|
*
|
|
|
|
* G10 is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* G10 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include "util.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "mpi.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
#include "cipher.h"
|
1997-11-24 23:24:04 +01:00
|
|
|
#include "main.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Check the signature which is contained in the rsa_integer.
|
|
|
|
* The md5handle should be currently open, so that this function
|
|
|
|
* is able to append some data, before getting the digest.
|
|
|
|
*/
|
|
|
|
int
|
1998-01-12 11:18:17 +01:00
|
|
|
signature_check( PKT_signature *sig, MD_HANDLE digest )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
1997-12-01 11:33:23 +01:00
|
|
|
PKT_public_cert *pkc = m_alloc_clear( sizeof *pkc );
|
1997-11-24 23:24:04 +01:00
|
|
|
MPI result = NULL;
|
1998-01-31 22:24:36 +01:00
|
|
|
int rc=0;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
if( get_pubkey( pkc, sig->keyid ) ) {
|
|
|
|
rc = G10ERR_NO_PUBKEY;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
if( pkc->pubkey_algo == PUBKEY_ALGO_ELGAMAL ) {
|
|
|
|
ELG_public_key pkey;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
if( (rc=check_digest_algo(sig->d.elg.digest_algo)) )
|
1997-11-24 23:24:04 +01:00
|
|
|
goto leave;
|
1997-12-01 11:33:23 +01:00
|
|
|
/* complete the digest */
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( digest, sig->sig_class );
|
1997-12-01 11:33:23 +01:00
|
|
|
{ u32 a = sig->timestamp;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( digest, (a >> 24) & 0xff );
|
|
|
|
md_putc( digest, (a >> 16) & 0xff );
|
|
|
|
md_putc( digest, (a >> 8) & 0xff );
|
|
|
|
md_putc( digest, a & 0xff );
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
md_final( digest );
|
1997-12-01 11:33:23 +01:00
|
|
|
result = encode_md_value( digest, mpi_get_nbits(pkc->d.elg.p));
|
1997-11-24 23:24:04 +01:00
|
|
|
pkey.p = pkc->d.elg.p;
|
|
|
|
pkey.g = pkc->d.elg.g;
|
|
|
|
pkey.y = pkc->d.elg.y;
|
|
|
|
if( !elg_verify( sig->d.elg.a, sig->d.elg.b, result, &pkey ) )
|
|
|
|
rc = G10ERR_BAD_SIGN;
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1997-11-26 23:02:28 +01:00
|
|
|
#ifdef HAVE_RSA_CIPHER
|
1997-11-24 23:24:04 +01:00
|
|
|
else if( pkc->pubkey_algo == PUBKEY_ALGO_RSA ) {
|
1998-01-31 22:24:36 +01:00
|
|
|
int i, j, c, old_enc;
|
|
|
|
byte *dp;
|
1997-11-24 23:24:04 +01:00
|
|
|
RSA_public_key pkey;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
result = mpi_alloc(40);
|
|
|
|
pkey.n = pkc->d.rsa.rsa_n;
|
|
|
|
pkey.e = pkc->d.rsa.rsa_e;
|
|
|
|
rsa_public( result, sig->d.rsa.rsa_integer, &pkey );
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
old_enc = 0;
|
|
|
|
for(i=j=0; (c=mpi_getbyte(result, i)) != -1; i++ ) {
|
|
|
|
if( !j ) {
|
|
|
|
if( !i && c != 1 )
|
|
|
|
break;
|
|
|
|
else if( i && c == 0xff )
|
|
|
|
; /* skip the padding */
|
|
|
|
else if( i && !c )
|
|
|
|
j++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if( ++j == 18 && c != 1 )
|
1997-11-18 15:06:00 +01:00
|
|
|
break;
|
1997-11-24 23:24:04 +01:00
|
|
|
else if( j == 19 && c == 0 ) {
|
|
|
|
old_enc++;
|
1997-11-24 12:04:11 +01:00
|
|
|
break;
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
1997-11-24 12:04:11 +01:00
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
if( old_enc ) {
|
|
|
|
log_error("old encoding scheme is not supported\n");
|
|
|
|
rc = G10ERR_GENERAL;
|
1997-11-24 12:04:11 +01:00
|
|
|
goto leave;
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
if( sig->d.rsa.digest_algo == DIGEST_ALGO_RMD160 ) {
|
1997-12-31 13:32:54 +01:00
|
|
|
static byte asn[15] = /* stored reverse */
|
|
|
|
{ 0x14, 0x04, 0x00, 0x05, 0x01, 0x02, 0x03, 0x24, 0x2b,
|
|
|
|
0x05, 0x06, 0x09, 0x30, 0x21, 0x30 };
|
1997-11-24 23:24:04 +01:00
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
for(i=20,j=0; (c=mpi_getbyte(result, i)) != -1 && j < 15; i++, j++ )
|
1997-11-24 23:24:04 +01:00
|
|
|
if( asn[j] != c )
|
|
|
|
break;
|
1997-12-31 13:32:54 +01:00
|
|
|
if( j != 15 || mpi_getbyte(result, i) ) { /* ASN is wrong */
|
1997-11-24 23:24:04 +01:00
|
|
|
rc = G10ERR_BAD_PUBKEY;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
for(i++; (c=mpi_getbyte(result, i)) != -1; i++ )
|
|
|
|
if( c != 0xff )
|
|
|
|
break;
|
|
|
|
i++;
|
|
|
|
if( c != DIGEST_ALGO_RMD160 || mpi_getbyte(result, i) ) {
|
|
|
|
/* Padding or leading bytes in signature is wrong */
|
|
|
|
rc = G10ERR_BAD_PUBKEY;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
if( mpi_getbyte(result, 19) != sig->d.rsa.digest_start[0]
|
|
|
|
|| mpi_getbyte(result, 18) != sig->d.rsa.digest_start[1] ) {
|
|
|
|
/* Wrong key used to check the signature */
|
|
|
|
rc = G10ERR_BAD_PUBKEY;
|
1997-11-18 15:06:00 +01:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
/* complete the digest */
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( digest, sig->sig_class );
|
1997-11-24 23:24:04 +01:00
|
|
|
{ u32 a = sig->timestamp;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( digest, (a >> 24) & 0xff );
|
|
|
|
md_putc( digest, (a >> 16) & 0xff );
|
|
|
|
md_putc( digest, (a >> 8) & 0xff );
|
|
|
|
md_putc( digest, a & 0xff );
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
md_final( digest );
|
1998-01-16 22:15:24 +01:00
|
|
|
dp = md_read( digest, DIGEST_ALGO_RMD160 );
|
1997-11-24 23:24:04 +01:00
|
|
|
for(i=19; i >= 0; i--, dp++ )
|
|
|
|
if( mpi_getbyte( result, i ) != *dp ) {
|
|
|
|
rc = G10ERR_BAD_SIGN;
|
|
|
|
goto leave;
|
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
else if( sig->d.rsa.digest_algo == DIGEST_ALGO_MD5 ) {
|
|
|
|
static byte asn[18] = /* stored reverse */
|
|
|
|
{ 0x10, 0x04, 0x00, 0x05, 0x05, 0x02, 0x0d, 0xf7, 0x86,
|
|
|
|
0x48, 0x86, 0x2a, 0x08, 0x06, 0x0c, 0x30, 0x20, 0x30 };
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
for(i=16,j=0; j < 18 && (c=mpi_getbyte(result, i)) != -1; i++, j++ )
|
|
|
|
if( asn[j] != c )
|
|
|
|
break;
|
1997-12-01 11:33:23 +01:00
|
|
|
if( j != 18 || mpi_getbyte(result, i) ) { /* ASN is wrong */
|
1997-11-24 23:24:04 +01:00
|
|
|
rc = G10ERR_BAD_PUBKEY;
|
1997-11-18 15:06:00 +01:00
|
|
|
goto leave;
|
|
|
|
}
|
1997-11-24 23:24:04 +01:00
|
|
|
for(i++; (c=mpi_getbyte(result, i)) != -1; i++ )
|
|
|
|
if( c != 0xff )
|
|
|
|
break;
|
|
|
|
i++;
|
|
|
|
if( c != DIGEST_ALGO_MD5 || mpi_getbyte(result, i) ) {
|
|
|
|
/* Padding or leading bytes in signature is wrong */
|
|
|
|
rc = G10ERR_BAD_PUBKEY;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
if( mpi_getbyte(result, 15) != sig->d.rsa.digest_start[0]
|
|
|
|
|| mpi_getbyte(result, 14) != sig->d.rsa.digest_start[1] ) {
|
|
|
|
/* Wrong key used to check the signature */
|
|
|
|
rc = G10ERR_BAD_PUBKEY;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* complete the digest */
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( digest, sig->sig_class );
|
1997-11-24 23:24:04 +01:00
|
|
|
{ u32 a = sig->timestamp;
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( digest, (a >> 24) & 0xff );
|
|
|
|
md_putc( digest, (a >> 16) & 0xff );
|
|
|
|
md_putc( digest, (a >> 8) & 0xff );
|
|
|
|
md_putc( digest, a & 0xff );
|
1997-11-24 23:24:04 +01:00
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
md_final( digest );
|
1998-01-16 22:15:24 +01:00
|
|
|
dp = md_read( digest, DIGEST_ALGO_MD5 );
|
1997-11-24 23:24:04 +01:00
|
|
|
for(i=15; i >= 0; i--, dp++ )
|
|
|
|
if( mpi_getbyte( result, i ) != *dp ) {
|
|
|
|
rc = G10ERR_BAD_SIGN;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rc = G10ERR_DIGEST_ALGO;
|
|
|
|
goto leave;
|
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1997-11-26 23:02:28 +01:00
|
|
|
#endif/*HAVE_RSA_CIPHER*/
|
1997-11-18 15:06:00 +01:00
|
|
|
else {
|
1997-12-20 18:23:29 +01:00
|
|
|
/*log_debug("signature_check: unsupported pubkey algo %d\n",
|
|
|
|
pkc->pubkey_algo );*/
|
1997-11-24 23:24:04 +01:00
|
|
|
rc = G10ERR_PUBKEY_ALGO;
|
1997-11-18 15:06:00 +01:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
leave:
|
|
|
|
if( pkc )
|
1997-12-01 11:33:23 +01:00
|
|
|
free_public_cert( pkc );
|
1997-11-24 23:24:04 +01:00
|
|
|
mpi_free( result );
|
1997-11-18 15:06:00 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
|
1997-12-19 12:41:47 +01:00
|
|
|
/****************
|
|
|
|
* check the signature pointed to by NODE. This is a key signatures
|
|
|
|
*/
|
|
|
|
int
|
1998-01-16 22:15:24 +01:00
|
|
|
check_key_signature( KBNODE root, KBNODE node, int *is_selfsig )
|
1997-12-19 12:41:47 +01:00
|
|
|
{
|
1997-12-20 18:23:29 +01:00
|
|
|
KBNODE unode;
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1997-12-20 18:23:29 +01:00
|
|
|
PKT_public_cert *pkc;
|
|
|
|
PKT_signature *sig;
|
|
|
|
int algo;
|
|
|
|
int rc;
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
if( is_selfsig )
|
|
|
|
*is_selfsig = 0;
|
1997-12-19 12:41:47 +01:00
|
|
|
assert( node->pkt->pkttype == PKT_SIGNATURE );
|
|
|
|
assert( (node->pkt->pkt.signature->sig_class&~3) == 0x10 );
|
|
|
|
assert( root->pkt->pkttype == PKT_PUBLIC_CERT );
|
|
|
|
|
1997-12-20 18:23:29 +01:00
|
|
|
pkc = root->pkt->pkt.public_cert;
|
|
|
|
sig = node->pkt->pkt.signature;
|
|
|
|
|
|
|
|
if( sig->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
|
|
|
|
algo = sig->d.elg.digest_algo;
|
|
|
|
else if(sig->pubkey_algo == PUBKEY_ALGO_RSA )
|
|
|
|
algo = sig->d.rsa.digest_algo;
|
|
|
|
else
|
|
|
|
return G10ERR_PUBKEY_ALGO;
|
1998-01-12 11:18:17 +01:00
|
|
|
if( (rc=check_digest_algo(algo)) )
|
1997-12-20 18:23:29 +01:00
|
|
|
return rc;
|
|
|
|
|
|
|
|
unode = find_kbparent( root, node );
|
1997-12-19 12:41:47 +01:00
|
|
|
|
1997-12-20 18:23:29 +01:00
|
|
|
if( unode && unode->pkt->pkttype == PKT_USER_ID ) {
|
|
|
|
PKT_user_id *uid = unode->pkt->pkt.user_id;
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
if( is_selfsig ) {
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
|
|
keyid_from_pkc( pkc, keyid );
|
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] )
|
|
|
|
*is_selfsig = 1;
|
|
|
|
}
|
1997-12-20 18:23:29 +01:00
|
|
|
md = md_open( algo, 0 );
|
|
|
|
hash_public_cert( md, pkc );
|
|
|
|
md_write( md, uid->name, uid->len );
|
|
|
|
rc = signature_check( sig, md );
|
|
|
|
md_close(md);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
log_error("no user id for key signature packet\n");
|
|
|
|
rc = G10ERR_SIG_CLASS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
1997-12-19 12:41:47 +01:00
|
|
|
}
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
|