1997-11-18 15:06:00 +01:00
|
|
|
/* sig-check.c - Check a signature
|
2000-07-14 19:34:53 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +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-12-23 13:41:40 +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>
|
1999-10-26 14:14:37 +02:00
|
|
|
|
|
|
|
#include <gcrypt.h>
|
1997-11-18 15:06:00 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "keydb.h"
|
1997-11-24 23:24:04 +01:00
|
|
|
#include "main.h"
|
1998-05-29 13:53:54 +02:00
|
|
|
#include "status.h"
|
1998-06-25 12:19:08 +02:00
|
|
|
#include "i18n.h"
|
2000-07-14 19:34:53 +02:00
|
|
|
#include "options.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-06-15 17:41:04 +02:00
|
|
|
struct cmp_help_context_s {
|
|
|
|
PKT_signature *sig;
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD md;
|
1998-06-15 17:41:04 +02:00
|
|
|
};
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
static int do_signature_check( PKT_signature *sig, GCRY_MD_HD digest,
|
2000-07-14 19:34:53 +02:00
|
|
|
u32 *r_expiredate, int *r_expired );
|
1998-06-29 14:30:57 +02:00
|
|
|
static int do_check( PKT_public_key *pk, PKT_signature *sig,
|
2000-07-14 19:34:53 +02:00
|
|
|
GCRY_MD_HD digest, int *r_expired );
|
|
|
|
|
1998-02-16 21:05:02 +01:00
|
|
|
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
/****************
|
|
|
|
* Emulate our old PK interface here - sometime in the future we might
|
|
|
|
* change the internal design to directly fit to libgcrypt.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
pk_verify( int algo, MPI hash, MPI *data, MPI *pkey,
|
|
|
|
int (*cmp)(void *, MPI), void *opaque )
|
|
|
|
{
|
|
|
|
GCRY_SEXP s_sig, s_hash, s_pkey;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* forget about cmp and opaque - we never used it */
|
|
|
|
|
|
|
|
/* make a sexp from pkey */
|
|
|
|
if( algo == GCRY_PK_DSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_pkey, NULL,
|
|
|
|
"(public-key(dsa(p%m)(q%m)(g%m)(y%m)))",
|
|
|
|
pkey[0], pkey[1], pkey[2], pkey[3] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_ELG || algo == GCRY_PK_ELG_E ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_pkey, NULL,
|
2000-07-28 18:19:07 +02:00
|
|
|
"(public-key(elg(p%m)(g%m)(y%m)))",
|
2000-07-25 17:38:12 +02:00
|
|
|
pkey[0], pkey[1], pkey[2] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_RSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_pkey, NULL,
|
|
|
|
"(public-key(rsa(n%m)(e%m)))",
|
|
|
|
pkey[0], pkey[1] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_PUBKEY_ALGO;
|
1999-11-13 17:43:23 +01:00
|
|
|
|
2000-07-25 17:38:12 +02:00
|
|
|
if ( rc )
|
|
|
|
BUG ();
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
/* put hash into a S-Exp s_hash */
|
2000-07-25 17:38:12 +02:00
|
|
|
if ( gcry_sexp_build( &s_hash, NULL, "%m", hash ) )
|
|
|
|
BUG ();
|
1999-11-13 17:43:23 +01:00
|
|
|
|
|
|
|
/* put data into a S-Exp s_sig */
|
|
|
|
if( algo == GCRY_PK_DSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_sig, NULL,
|
|
|
|
"(sig-val(dsa(r%m)(s%m)))", data[0], data[1] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_ELG || algo == GCRY_PK_ELG_E ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_sig, NULL,
|
|
|
|
"(sig-val(elg(r%m)(s%m)))", data[0], data[1] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_RSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_sig, NULL,
|
|
|
|
"(sig-val(rsa(s%m)))", data[0] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
BUG();
|
|
|
|
|
2000-07-25 17:38:12 +02:00
|
|
|
if ( rc )
|
|
|
|
BUG ();
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
|
|
|
|
rc = gcry_pk_verify( s_sig, s_hash, s_pkey );
|
|
|
|
gcry_sexp_release( s_sig );
|
|
|
|
gcry_sexp_release( s_hash );
|
|
|
|
gcry_sexp_release( s_pkey );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
/****************
|
1998-04-25 10:08:35 +02:00
|
|
|
* Check the signature which is contained in SIG.
|
1999-10-26 14:14:37 +02:00
|
|
|
* The GCRY_MD_HD 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
|
1999-10-26 14:14:37 +02:00
|
|
|
signature_check( PKT_signature *sig, GCRY_MD_HD digest )
|
1999-07-02 11:50:57 +02:00
|
|
|
{
|
|
|
|
u32 dummy;
|
2000-07-14 19:34:53 +02:00
|
|
|
int dum2;
|
|
|
|
return do_signature_check( sig, digest, &dummy, &dum2 );
|
1999-07-02 11:50:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-07-14 19:34:53 +02:00
|
|
|
do_signature_check( PKT_signature *sig, GCRY_MD_HD digest,
|
|
|
|
u32 *r_expiredate, int *r_expired )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
2000-01-24 12:55:49 +01:00
|
|
|
PKT_public_key *pk = gcry_xcalloc( 1, sizeof *pk );
|
1998-01-31 22:24:36 +01:00
|
|
|
int rc=0;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
*r_expiredate = 0;
|
1998-06-29 14:30:57 +02:00
|
|
|
if( get_pubkey( pk, sig->keyid ) )
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_NO_PUBKEY;
|
1999-07-02 11:50:57 +02:00
|
|
|
else {
|
2000-07-14 19:34:53 +02:00
|
|
|
*r_expiredate = pk->expiredate;
|
|
|
|
rc = do_check( pk, sig, digest, r_expired );
|
1999-07-02 11:50:57 +02:00
|
|
|
}
|
1998-02-16 21:05:02 +01:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
free_public_key( pk );
|
1999-02-26 17:59:48 +01:00
|
|
|
|
1999-05-20 14:11:41 +02:00
|
|
|
if( !rc && sig->sig_class < 2 && is_status_enabled() ) {
|
1999-03-02 10:41:49 +01:00
|
|
|
/* This signature id works best with DLP algorithms because
|
|
|
|
* they use a random parameter for every signature. Instead of
|
|
|
|
* this sig-id we could have also used the hash of the document
|
|
|
|
* and the timestamp, but the drawback of this is, that it is
|
|
|
|
* not possible to sign more than one identical document within
|
|
|
|
* one second. Some remote bacth processing applications might
|
|
|
|
* like this feature here */
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD md;
|
1999-03-02 10:41:49 +01:00
|
|
|
u32 a = sig->timestamp;
|
1999-02-26 17:59:48 +01:00
|
|
|
int i, nsig = pubkey_get_nsig( sig->pubkey_algo );
|
1999-03-08 20:50:18 +01:00
|
|
|
byte *p, *buffer;
|
1999-02-26 17:59:48 +01:00
|
|
|
|
1999-12-31 12:44:29 +01:00
|
|
|
if( !(md = gcry_md_open( GCRY_MD_RMD160, 0)) )
|
1999-10-26 14:14:37 +02:00
|
|
|
BUG();
|
|
|
|
gcry_md_putc( digest, sig->pubkey_algo );
|
|
|
|
gcry_md_putc( digest, sig->digest_algo );
|
|
|
|
gcry_md_putc( digest, (a >> 24) & 0xff );
|
|
|
|
gcry_md_putc( digest, (a >> 16) & 0xff );
|
|
|
|
gcry_md_putc( digest, (a >> 8) & 0xff );
|
|
|
|
gcry_md_putc( digest, a & 0xff );
|
1999-02-26 17:59:48 +01:00
|
|
|
for(i=0; i < nsig; i++ ) {
|
2000-01-24 12:55:49 +01:00
|
|
|
size_t n = gcry_mpi_get_nbits( sig->data[i]);
|
1999-02-26 17:59:48 +01:00
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( md, n>>8);
|
|
|
|
gcry_md_putc( md, n );
|
2000-01-24 12:55:49 +01:00
|
|
|
if( gcry_mpi_aprint( GCRYMPI_FMT_USG, &p, &n, sig->data[i] ) )
|
|
|
|
BUG();
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( md, p, n );
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(p);
|
1999-02-26 17:59:48 +01:00
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_final( md );
|
|
|
|
p = make_radix64_string( gcry_md_read( md, 0 ), 20 );
|
2000-01-24 12:55:49 +01:00
|
|
|
buffer = gcry_xmalloc( strlen(p) + 60 );
|
1999-05-22 22:54:54 +02:00
|
|
|
sprintf( buffer, "%s %s %lu",
|
|
|
|
p, strtimestamp( sig->timestamp ), (ulong)sig->timestamp );
|
1999-03-08 20:50:18 +01:00
|
|
|
write_status_text( STATUS_SIG_ID, buffer );
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(buffer);
|
|
|
|
gcry_free(p);
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close(md);
|
1999-02-26 17:59:48 +01:00
|
|
|
}
|
|
|
|
|
1998-02-16 21:05:02 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-06-15 17:41:04 +02:00
|
|
|
/****************
|
|
|
|
* This function gets called by pubkey_verify() if the algorithm needs it.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
cmp_help( void *opaque, MPI result )
|
|
|
|
{
|
|
|
|
#if 0 /* we do not use this anymore */
|
|
|
|
int rc=0, i, j, c, old_enc;
|
|
|
|
byte *dp;
|
|
|
|
const byte *asn;
|
|
|
|
size_t mdlen, asnlen;
|
|
|
|
struct cmp_help_context_s *ctx = opaque;
|
|
|
|
PKT_signature *sig = ctx->sig;
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD digest = ctx->md;
|
1998-06-15 17:41:04 +02: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 )
|
|
|
|
break;
|
|
|
|
else if( j == 19 && c == 0 ) {
|
|
|
|
old_enc++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( old_enc ) {
|
|
|
|
log_error("old encoding scheme is not supported\n");
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_GENERAL;
|
1998-06-15 17:41:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( (rc=check_digest_algo(sig->digest_algo)) )
|
|
|
|
return rc; /* unsupported algo */
|
|
|
|
asn = md_asn_oid( sig->digest_algo, &asnlen, &mdlen );
|
|
|
|
|
|
|
|
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) )
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_BAD_PUBKEY; /* ASN is wrong */
|
1998-06-15 17:41:04 +02:00
|
|
|
for(i++; (c=mpi_getbyte(result, i)) != -1; i++ )
|
|
|
|
if( c != 0xff )
|
|
|
|
break;
|
|
|
|
i++;
|
|
|
|
if( c != sig->digest_algo || mpi_getbyte(result, i) ) {
|
|
|
|
/* Padding or leading bytes in signature is wrong */
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_BAD_PUBKEY;
|
1998-06-15 17:41:04 +02:00
|
|
|
}
|
|
|
|
if( mpi_getbyte(result, mdlen-1) != sig->digest_start[0]
|
|
|
|
|| mpi_getbyte(result, mdlen-2) != sig->digest_start[1] ) {
|
|
|
|
/* Wrong key used to check the signature */
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_BAD_PUBKEY;
|
1998-06-15 17:41:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dp = md_read( digest, sig->digest_algo );
|
|
|
|
for(i=mdlen-1; i >= 0; i--, dp++ ) {
|
|
|
|
if( mpi_getbyte( result, i ) != *dp )
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_BAD_SIGN;
|
1998-06-15 17:41:04 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-02-16 21:05:02 +01:00
|
|
|
static int
|
2000-07-14 19:34:53 +02:00
|
|
|
do_check( PKT_public_key *pk, PKT_signature *sig, GCRY_MD_HD digest,
|
|
|
|
int *r_expired )
|
1998-02-16 21:05:02 +01:00
|
|
|
{
|
|
|
|
MPI result = NULL;
|
|
|
|
int rc=0;
|
1998-06-15 17:41:04 +02:00
|
|
|
struct cmp_help_context_s ctx;
|
1998-06-25 12:19:08 +02:00
|
|
|
u32 cur_time;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
*r_expired = 0;
|
1999-11-13 17:43:23 +01:00
|
|
|
if( pk->version == 4 && pk->pubkey_algo == GCRY_PK_ELG_E ) {
|
1998-09-28 21:25:31 +02:00
|
|
|
log_info(_("this is a PGP generated "
|
2000-07-14 19:34:53 +02:00
|
|
|
"ElGamal key which is NOT secure for signatures!\n"));
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_PUBKEY_ALGO;
|
1998-05-04 20:49:26 +02:00
|
|
|
}
|
1998-03-19 16:27:29 +01:00
|
|
|
|
1999-01-12 11:20:24 +01:00
|
|
|
if( pk->timestamp > sig->timestamp ) {
|
|
|
|
ulong d = pk->timestamp - sig->timestamp;
|
|
|
|
log_info( d==1
|
|
|
|
? _("public key is %lu second newer than the signature\n")
|
|
|
|
: _("public key is %lu seconds newer than the signature\n"),
|
|
|
|
d );
|
2000-07-14 19:34:53 +02:00
|
|
|
if( !opt.ignore_time_conflict )
|
|
|
|
return GPGERR_TIME_CONFLICT; /* pubkey newer than signature */
|
1999-01-12 11:20:24 +01:00
|
|
|
}
|
1998-03-19 16:27:29 +01:00
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
cur_time = make_timestamp();
|
1998-06-29 14:30:57 +02:00
|
|
|
if( pk->timestamp > cur_time ) {
|
1999-01-09 16:06:59 +01:00
|
|
|
ulong d = pk->timestamp - cur_time;
|
1999-01-12 11:20:24 +01:00
|
|
|
log_info( d==1 ? _("key has been created %lu second "
|
|
|
|
"in future (time warp or clock problem)\n")
|
|
|
|
: _("key has been created %lu seconds "
|
|
|
|
"in future (time warp or clock problem)\n"), d );
|
2000-07-14 19:34:53 +02:00
|
|
|
if( !opt.ignore_time_conflict )
|
|
|
|
return GPGERR_TIME_CONFLICT;
|
1998-06-25 12:19:08 +02:00
|
|
|
}
|
|
|
|
|
1998-10-16 18:00:17 +02:00
|
|
|
if( pk->expiredate && pk->expiredate < cur_time ) {
|
1998-11-10 13:59:59 +01:00
|
|
|
log_info(_("NOTE: signature key expired %s\n"),
|
1998-10-16 18:00:17 +02:00
|
|
|
asctimestamp( pk->expiredate ) );
|
1998-06-25 12:19:08 +02:00
|
|
|
write_status(STATUS_SIGEXPIRED);
|
2000-07-14 19:34:53 +02:00
|
|
|
*r_expired = 1;
|
1998-06-25 12:19:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
if( (rc=openpgp_md_test_algo(sig->digest_algo)) )
|
1998-06-15 17:41:04 +02:00
|
|
|
return rc;
|
1999-11-13 17:43:23 +01:00
|
|
|
if( (rc=openpgp_pk_test_algo(sig->pubkey_algo, 0)) )
|
1998-06-15 17:41:04 +02:00
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* make sure the digest algo is enabled (in case of a detached signature)*/
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_enable( digest, sig->digest_algo );
|
1998-06-15 17:41:04 +02:00
|
|
|
|
|
|
|
/* complete the digest */
|
|
|
|
if( sig->version >= 4 )
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( digest, sig->version );
|
|
|
|
gcry_md_putc( digest, sig->sig_class );
|
1998-06-15 17:41:04 +02:00
|
|
|
if( sig->version < 4 ) {
|
|
|
|
u32 a = sig->timestamp;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( digest, (a >> 24) & 0xff );
|
|
|
|
gcry_md_putc( digest, (a >> 16) & 0xff );
|
|
|
|
gcry_md_putc( digest, (a >> 8) & 0xff );
|
|
|
|
gcry_md_putc( digest, a & 0xff );
|
1998-03-09 22:44:06 +01:00
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
else {
|
1998-06-15 17:41:04 +02:00
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( digest, sig->pubkey_algo );
|
|
|
|
gcry_md_putc( digest, sig->digest_algo );
|
1998-06-15 17:41:04 +02:00
|
|
|
if( sig->hashed_data ) {
|
|
|
|
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( digest, sig->hashed_data, n+2 );
|
1998-06-15 17:41:04 +02:00
|
|
|
n += 6;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n = 6;
|
|
|
|
/* 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;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( digest, buf, 6 );
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_final( digest );
|
1998-06-15 17:41:04 +02:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
result = encode_md_value( pk->pubkey_algo, digest, sig->digest_algo,
|
2000-07-14 19:34:53 +02:00
|
|
|
gcry_mpi_get_nbits(pk->pkey[0]), 0);
|
1998-06-15 17:41:04 +02:00
|
|
|
ctx.sig = sig;
|
|
|
|
ctx.md = digest;
|
1999-11-13 17:43:23 +01:00
|
|
|
rc = pk_verify( pk->pubkey_algo, result, sig->data, pk->pkey,
|
1998-06-15 17:41:04 +02:00
|
|
|
cmp_help, &ctx );
|
1999-12-08 22:03:03 +01:00
|
|
|
mpi_release( result );
|
2000-07-14 19:34:53 +02:00
|
|
|
if( (opt.emulate_bugs & EMUBUG_MDENCODE)
|
|
|
|
&& rc == GPGERR_BAD_SIGN && is_ELGAMAL(pk->pubkey_algo) ) {
|
|
|
|
/* In this case we try again because old GnuPG versions didn't encode
|
|
|
|
* the hash right. There is no problem with DSA however */
|
|
|
|
result = encode_md_value( pk->pubkey_algo, digest, sig->digest_algo,
|
|
|
|
gcry_mpi_get_nbits(pk->pkey[0]), (sig->version < 5) );
|
|
|
|
ctx.sig = sig;
|
|
|
|
ctx.md = digest;
|
|
|
|
rc = pk_verify( pk->pubkey_algo, result, sig->data, pk->pkey,
|
|
|
|
cmp_help, &ctx );
|
|
|
|
}
|
|
|
|
|
1998-12-14 21:22:42 +01:00
|
|
|
if( !rc && sig->flags.unknown_critical ) {
|
|
|
|
log_info(_("assuming bad signature due to an unknown critical bit\n"));
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_BAD_SIGN;
|
1998-12-14 21:22:42 +01:00
|
|
|
}
|
1998-10-01 09:23:00 +02:00
|
|
|
sig->flags.checked = 1;
|
|
|
|
sig->flags.valid = !rc;
|
1998-06-15 17:41:04 +02:00
|
|
|
|
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
|
1999-10-26 14:14:37 +02:00
|
|
|
hash_uid_node( KBNODE unode, GCRY_MD_HD md, PKT_signature *sig )
|
1998-04-25 10:08:35 +02:00
|
|
|
{
|
|
|
|
PKT_user_id *uid = unode->pkt->pkt.user_id;
|
|
|
|
|
|
|
|
assert( unode->pkt->pkttype == PKT_USER_ID );
|
2000-07-14 19:34:53 +02:00
|
|
|
if( uid->photo ) {
|
|
|
|
if( sig->version >=4 ) {
|
|
|
|
byte buf[5];
|
|
|
|
buf[0] = 0xd1; /* packet of type 17 */
|
|
|
|
buf[1] = uid->photolen >> 24; /* always use 4 length bytes */
|
|
|
|
buf[2] = uid->photolen >> 16;
|
|
|
|
buf[3] = uid->photolen >> 8;
|
|
|
|
buf[4] = uid->photolen;
|
|
|
|
gcry_md_write( md, buf, 5 );
|
|
|
|
}
|
|
|
|
gcry_md_write( md, uid->photo, uid->photolen );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
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;
|
|
|
|
gcry_md_write( md, buf, 5 );
|
|
|
|
}
|
|
|
|
gcry_md_write( md, uid->name, uid->len );
|
1998-04-25 10:08:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-12-19 12:41:47 +01:00
|
|
|
/****************
|
1998-04-14 19:51:16 +02:00
|
|
|
* check the signature pointed to by NODE. This is a key signature.
|
1998-06-29 14:30:57 +02:00
|
|
|
* If the function detects a self-signature, it uses the PK from
|
1998-07-15 20:05:01 +02:00
|
|
|
* ROOT and does not read any public key.
|
1997-12-19 12:41:47 +01:00
|
|
|
*/
|
|
|
|
int
|
1998-01-16 22:15:24 +01:00
|
|
|
check_key_signature( KBNODE root, KBNODE node, int *is_selfsig )
|
1999-07-02 11:50:57 +02:00
|
|
|
{
|
|
|
|
u32 dummy;
|
2000-07-14 19:34:53 +02:00
|
|
|
int dum2;
|
|
|
|
return check_key_signature2(root, node, is_selfsig, &dummy, &dum2 );
|
1999-07-02 11:50:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-07-14 19:34:53 +02:00
|
|
|
check_key_signature2( KBNODE root, KBNODE node, int *is_selfsig,
|
|
|
|
u32 *r_expiredate, int *r_expired )
|
1997-12-19 12:41:47 +01:00
|
|
|
{
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD md;
|
1998-06-29 14:30:57 +02:00
|
|
|
PKT_public_key *pk;
|
1997-12-20 18:23:29 +01:00
|
|
|
PKT_signature *sig;
|
|
|
|
int algo;
|
|
|
|
int rc;
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
if( is_selfsig )
|
|
|
|
*is_selfsig = 0;
|
2000-07-14 19:34:53 +02:00
|
|
|
*r_expiredate = 0;
|
|
|
|
*r_expired = 0;
|
1997-12-19 12:41:47 +01:00
|
|
|
assert( node->pkt->pkttype == PKT_SIGNATURE );
|
1998-06-29 14:30:57 +02:00
|
|
|
assert( root->pkt->pkttype == PKT_PUBLIC_KEY );
|
1997-12-19 12:41:47 +01:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
pk = root->pkt->pkt.public_key;
|
1997-12-20 18:23:29 +01:00
|
|
|
sig = node->pkt->pkt.signature;
|
1998-04-25 10:08:35 +02:00
|
|
|
algo = sig->digest_algo;
|
1999-07-01 12:53:35 +02:00
|
|
|
|
2000-09-18 16:35:34 +02:00
|
|
|
#if 0
|
|
|
|
if( sig->flags.checked ) {
|
1999-07-01 12:53:35 +02:00
|
|
|
log_debug("check_key_signature: already checked: %s\n",
|
|
|
|
sig->flags.valid? "good":"bad" );
|
2000-09-18 16:35:34 +02:00
|
|
|
if ( sig->flags.valid )
|
|
|
|
return 0; /* shortcut already checked signatures */
|
|
|
|
/* FIXME: We should also do this with bad signatures but here we
|
|
|
|
* have to distinguish between several reasons; e.g. for a missing
|
|
|
|
* public key. the key may now be available.
|
|
|
|
* For now we simply don't shortcut bad signatures
|
|
|
|
*/
|
|
|
|
}
|
1999-07-12 18:49:22 +02:00
|
|
|
#endif
|
1999-07-01 12:53:35 +02:00
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
if( (rc=openpgp_md_test_algo(algo)) )
|
1997-12-20 18:23:29 +01:00
|
|
|
return rc;
|
|
|
|
|
1998-02-18 14:58:46 +01:00
|
|
|
if( sig->sig_class == 0x20 ) {
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(md = gcry_md_open( algo, 0 )) )
|
|
|
|
BUG();
|
1998-06-29 14:30:57 +02:00
|
|
|
hash_public_key( md, pk );
|
2000-07-14 19:34:53 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close(md);
|
1997-12-20 18:23:29 +01:00
|
|
|
}
|
1998-11-03 20:38:58 +01:00
|
|
|
else if( sig->sig_class == 0x28 ) { /* subkey revocation */
|
|
|
|
KBNODE snode = find_prev_kbnode( root, node, PKT_PUBLIC_SUBKEY );
|
|
|
|
|
|
|
|
if( snode ) {
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(md = gcry_md_open( algo, 0 )) )
|
|
|
|
BUG();
|
1998-11-03 20:38:58 +01:00
|
|
|
hash_public_key( md, pk );
|
|
|
|
hash_public_key( md, snode->pkt->pkt.public_key );
|
2000-07-14 19:34:53 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close(md);
|
1998-11-03 20:38:58 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
log_error("no subkey for subkey revocation packet\n");
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_SIG_CLASS;
|
1998-11-03 20:38:58 +01:00
|
|
|
}
|
|
|
|
}
|
1998-04-02 12:30:03 +02:00
|
|
|
else if( sig->sig_class == 0x18 ) {
|
1998-06-29 14:30:57 +02:00
|
|
|
KBNODE snode = find_prev_kbnode( root, node, PKT_PUBLIC_SUBKEY );
|
1998-04-02 12:30:03 +02:00
|
|
|
|
|
|
|
if( snode ) {
|
1998-11-03 20:38:58 +01:00
|
|
|
if( is_selfsig ) { /* does this make sense????? */
|
|
|
|
u32 keyid[2]; /* it should always be a selfsig */
|
1998-05-29 13:53:54 +02:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
keyid_from_pk( pk, keyid );
|
1998-05-29 13:53:54 +02:00
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] )
|
|
|
|
*is_selfsig = 1;
|
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(md = gcry_md_open( algo, 0 )) )
|
|
|
|
BUG();
|
1998-06-29 14:30:57 +02:00
|
|
|
hash_public_key( md, pk );
|
|
|
|
hash_public_key( md, snode->pkt->pkt.public_key );
|
2000-07-14 19:34:53 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired );
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close(md);
|
1998-04-02 12:30:03 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
log_error("no subkey for key signature packet\n");
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_SIG_CLASS;
|
1998-04-02 12:30:03 +02:00
|
|
|
}
|
|
|
|
}
|
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 );
|
1998-02-18 14:58:46 +01:00
|
|
|
|
|
|
|
if( unode ) {
|
|
|
|
u32 keyid[2];
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
keyid_from_pk( pk, keyid );
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(md = gcry_md_open( algo, 0 )) )
|
|
|
|
BUG();
|
1998-06-29 14:30:57 +02:00
|
|
|
hash_public_key( md, pk );
|
1998-04-25 10:08:35 +02:00
|
|
|
hash_uid_node( unode, md, sig );
|
1998-02-18 14:58:46 +01:00
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] ) {
|
|
|
|
if( is_selfsig )
|
|
|
|
*is_selfsig = 1;
|
2000-07-14 19:34:53 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rc = do_signature_check( sig, md, r_expiredate, r_expired );
|
1998-02-18 14:58:46 +01:00
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close(md);
|
1998-02-18 14:58:46 +01:00
|
|
|
}
|
|
|
|
else {
|
1999-09-01 15:40:07 +02:00
|
|
|
log_error("no user ID for key signature packet\n");
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_SIG_CLASS;
|
1998-02-18 14:58:46 +01:00
|
|
|
}
|
1997-12-20 18:23:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
1997-12-19 12:41:47 +01:00
|
|
|
}
|
|
|
|
|
1997-12-09 13:46:23 +01:00
|
|
|
|