1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-09 23:39:51 +02:00
gnupg/g10/sig-check.c

370 lines
9.6 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* sig-check.c - Check a signature
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* GNUPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* 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.
*
1998-02-24 19:50:46 +01:00
* GNUPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* 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
1998-02-16 21:05:02 +01:00
static int do_check( PKT_public_cert *pkc, PKT_signature *sig,
MD_HANDLE digest );
1997-11-18 15:06:00 +01:00
/****************
1998-04-25 10:08:35 +02:00
* Check the signature which is contained in SIG.
1997-11-18 15:06:00 +01:00
* The md5handle should be currently open, so that this function
1998-04-25 10:08:35 +02:00
* is able to append some data, before finalizing the digest.
1997-11-18 15:06:00 +01:00
*/
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 );
1998-01-31 22:24:36 +01:00
int rc=0;
1997-11-18 15:06:00 +01:00
1998-02-16 21:05:02 +01:00
if( get_pubkey( pkc, sig->keyid ) )
1997-11-18 15:06:00 +01:00
rc = G10ERR_NO_PUBKEY;
1998-02-16 21:05:02 +01:00
else
rc = do_check( pkc, sig, digest );
free_public_cert( pkc );
return rc;
}
static int
do_check( PKT_public_cert *pkc, PKT_signature *sig, MD_HANDLE digest )
{
MPI result = NULL;
int rc=0;
1997-11-18 15:06:00 +01:00
1998-05-04 20:49:26 +02:00
if( pkc->version == 4 && pkc->pubkey_algo == PUBKEY_ALGO_ELGAMAL_E ) {
log_info("this is a PGP generated "
1998-04-08 21:49:02 +02:00
"ElGamal key which is NOT secure for signatures!\n");
1998-05-04 20:49:26 +02:00
return G10ERR_PUBKEY_ALGO;
}
1998-03-19 16:27:29 +01:00
if( pkc->timestamp > sig->timestamp )
return G10ERR_TIME_CONFLICT; /* pubkey newer that signature */
1998-05-04 20:49:26 +02:00
if( is_ELGAMAL(pkc->pubkey_algo) ) {
1998-03-09 22:44:06 +01:00
if( (rc=check_digest_algo(sig->digest_algo)) )
1997-11-24 23:24:04 +01:00
goto leave;
1998-02-27 18:51:28 +01:00
/* make sure the digest algo is enabled (in case of a detached
* signature */
1998-03-09 22:44:06 +01:00
md_enable( digest, sig->digest_algo );
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 );
1998-05-04 20:49:26 +02:00
result = encode_md_value( digest, sig->digest_algo,
mpi_get_nbits(pkc->d.elg.p));
if( DBG_CIPHER )
log_mpidump("calc sig frame (elg): ", result);
1998-04-08 21:49:02 +02:00
if( !elg_verify( sig->d.elg.a, sig->d.elg.b, result, &pkc->d.elg ) )
1997-11-24 23:24:04 +01:00
rc = G10ERR_BAD_SIGN;
1997-11-18 15:06:00 +01:00
}
1998-03-09 22:44:06 +01:00
else if( pkc->pubkey_algo == PUBKEY_ALGO_DSA ) {
if( (rc=check_digest_algo(sig->digest_algo)) )
goto leave;
/* make sure the digest algo is enabled (in case of a detached
* signature */
md_enable( digest, sig->digest_algo );
/* complete the digest */
if( sig->version >= 4 )
md_putc( digest, sig->version );
md_putc( digest, sig->sig_class );
if( sig->version < 4 ) {
u32 a = sig->timestamp;
md_putc( digest, (a >> 24) & 0xff );
md_putc( digest, (a >> 16) & 0xff );
md_putc( digest, (a >> 8) & 0xff );
md_putc( digest, a & 0xff );
}
else {
byte buf[6];
size_t n;
md_putc( digest, sig->pubkey_algo );
md_putc( digest, sig->digest_algo );
if( sig->hashed_data ) {
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
md_write( digest, sig->hashed_data, n+2 );
1998-03-19 16:27:29 +01:00
n += 6;
1998-03-09 22:44:06 +01:00
}
else
1998-03-19 16:27:29 +01:00
n = 6;
1998-03-09 22:44:06 +01:00
/* add some magic */
buf[0] = sig->version;
buf[1] = 0xff;
buf[2] = n >> 24;
buf[3] = n >> 16;
buf[4] = n >> 8;
buf[5] = n;
md_write( digest, buf, 6 );
}
md_final( digest );
1998-05-13 19:53:36 +02:00
1998-03-19 16:27:29 +01:00
result = mpi_alloc( (md_digest_length(sig->digest_algo)
+BYTES_PER_MPI_LIMB-1) / BYTES_PER_MPI_LIMB );
1998-04-08 21:49:02 +02:00
mpi_set_buffer( result, md_read(digest, sig->digest_algo),
1998-03-19 16:27:29 +01:00
md_digest_length(sig->digest_algo), 0 );
1998-04-08 21:49:02 +02:00
if( DBG_CIPHER )
log_mpidump("calc sig frame: ", result);
if( !dsa_verify( sig->d.dsa.r, sig->d.dsa.s, result, &pkc->d.dsa ) )
1998-03-09 22:44:06 +01:00
rc = G10ERR_BAD_SIGN;
}
1997-11-26 23:02:28 +01:00
#ifdef HAVE_RSA_CIPHER
1998-05-04 20:49:26 +02:00
else if( pkc->pubkey_algo == PUBKEY_ALGO_RSA
|| pkc->pubkey_algo == PUBKEY_ALGO_RSA_S ) {
1998-01-31 22:24:36 +01:00
int i, j, c, old_enc;
byte *dp;
1998-02-12 15:39:08 +01:00
const byte *asn;
size_t mdlen, asnlen;
1997-11-18 15:06:00 +01:00
1997-11-24 23:24:04 +01:00
result = mpi_alloc(40);
1998-04-08 21:49:02 +02:00
rsa_public( result, sig->d.rsa.rsa_integer, &pkc->d.rsa );
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
}
1998-03-09 22:44:06 +01:00
if( (rc=check_digest_algo(sig->digest_algo)) )
1998-02-12 15:39:08 +01:00
goto leave; /* unsupported algo */
1998-03-09 22:44:06 +01:00
md_enable( digest, sig->digest_algo );
asn = md_asn_oid( sig->digest_algo, &asnlen, &mdlen );
1997-11-24 23:24:04 +01:00
1998-02-12 15:39:08 +01:00
for(i=mdlen,j=asnlen-1; (c=mpi_getbyte(result, i)) != -1 && j >= 0;
i++, j-- )
if( asn[j] != c )
break;
if( j != -1 || mpi_getbyte(result, i) ) { /* ASN is wrong */
rc = G10ERR_BAD_PUBKEY;
goto leave;
}
for(i++; (c=mpi_getbyte(result, i)) != -1; i++ )
if( c != 0xff )
break;
i++;
1998-03-09 22:44:06 +01:00
if( c != sig->digest_algo || mpi_getbyte(result, i) ) {
1998-02-12 15:39:08 +01:00
/* Padding or leading bytes in signature is wrong */
rc = G10ERR_BAD_PUBKEY;
goto leave;
}
1998-04-08 21:49:02 +02:00
if( mpi_getbyte(result, mdlen-1) != sig->digest_start[0]
|| mpi_getbyte(result, mdlen-2) != sig->digest_start[1] ) {
1998-02-12 15:39:08 +01:00
/* Wrong key used to check the signature */
rc = G10ERR_BAD_PUBKEY;
goto leave;
1997-11-18 15:06:00 +01:00
}
1998-02-12 15:39:08 +01:00
/* complete the digest */
md_putc( digest, sig->sig_class );
{ u32 a = sig->timestamp;
md_putc( digest, (a >> 24) & 0xff );
md_putc( digest, (a >> 16) & 0xff );
md_putc( digest, (a >> 8) & 0xff );
md_putc( digest, a & 0xff );
}
md_final( digest );
1998-03-09 22:44:06 +01:00
dp = md_read( digest, sig->digest_algo );
1998-02-12 15:39:08 +01:00
for(i=mdlen-1; i >= 0; i--, dp++ ) {
if( mpi_getbyte( result, i ) != *dp ) {
rc = G10ERR_BAD_SIGN;
1997-11-24 23:24:04 +01:00
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:
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
1998-04-25 10:08:35 +02:00
static void
hash_uid_node( KBNODE unode, MD_HANDLE md, PKT_signature *sig )
{
PKT_user_id *uid = unode->pkt->pkt.user_id;
assert( unode->pkt->pkttype == PKT_USER_ID );
if( sig->version >=4 ) {
byte buf[5];
buf[0] = 0xb4; /* indicates a userid packet */
buf[1] = uid->len >> 24; /* always use 4 length bytes */
buf[2] = uid->len >> 16;
buf[3] = uid->len >> 8;
buf[4] = uid->len;
md_write( md, buf, 5 );
}
md_write( md, uid->name, uid->len );
}
/****************
1998-04-14 19:51:16 +02:00
* check the signature pointed to by NODE. This is a key signature.
1998-03-09 22:44:06 +01:00
* If the function detects a self-signature, it uses the PKC from
1998-04-14 19:51:16 +02:00
* NODE and does not read any public key.
*/
int
1998-01-16 22:15:24 +01:00
check_key_signature( KBNODE root, KBNODE node, int *is_selfsig )
{
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;
assert( node->pkt->pkttype == PKT_SIGNATURE );
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;
1998-04-25 10:08:35 +02:00
algo = sig->digest_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;
if( sig->sig_class == 0x20 ) {
1997-12-20 18:23:29 +01:00
md = md_open( algo, 0 );
hash_public_cert( md, pkc );
1998-02-16 21:05:02 +01:00
rc = do_check( pkc, sig, md );
1997-12-20 18:23:29 +01:00
md_close(md);
}
1998-04-02 12:30:03 +02:00
else if( sig->sig_class == 0x18 ) {
KBNODE snode = find_prev_kbnode( root, node, PKT_PUBKEY_SUBCERT );
if( snode ) {
md = md_open( algo, 0 );
hash_public_cert( md, pkc );
hash_public_cert( md, snode->pkt->pkt.public_cert );
rc = do_check( pkc, sig, md );
md_close(md);
}
else {
log_error("no subkey for key signature packet\n");
rc = G10ERR_SIG_CLASS;
}
}
1998-04-25 10:08:35 +02:00
else if( sig->sig_class >= 0x14 && sig->sig_class <= 0x17 ) {
/* a gnupg extension: calculate the signature over all
* preceding userids */
KBNODE unode = find_prev_kbnode( root, node, PKT_USER_ID );
u32 keyid[2];
int any = 0;
keyid_from_pkc( pkc, keyid );
md = md_open( algo, 0 );
hash_public_cert( md, pkc );
for( unode=root->next; unode && unode != node; unode = unode->next ) {
if( unode->pkt->pkttype == PKT_USER_ID ) {
hash_uid_node( unode, md, sig );
any++;
}
}
if( any ) {
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] ) {
if( is_selfsig )
*is_selfsig = 1;
rc = do_check( pkc, sig, md );
}
else
rc = signature_check( sig, md );
}
else {
log_error("no user id for key signature packet\n");
rc = G10ERR_SIG_CLASS;
}
md_close(md);
}
1997-12-20 18:23:29 +01:00
else {
1998-04-02 12:30:03 +02:00
KBNODE unode = find_prev_kbnode( root, node, PKT_USER_ID );
if( unode ) {
u32 keyid[2];
keyid_from_pkc( pkc, keyid );
md = md_open( algo, 0 );
1998-05-13 19:53:36 +02:00
md_start_debug(md, "check");
hash_public_cert( md, pkc );
1998-04-25 10:08:35 +02:00
hash_uid_node( unode, md, sig );
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] ) {
if( is_selfsig )
*is_selfsig = 1;
rc = do_check( pkc, sig, md );
}
else
rc = signature_check( sig, md );
md_close(md);
}
else {
log_error("no user id for key signature packet\n");
rc = G10ERR_SIG_CLASS;
}
1997-12-20 18:23:29 +01:00
}
return rc;
}
1997-12-09 13:46:23 +01:00