2003-06-05 09:14:21 +02:00
|
|
|
/* sig-check.c - Check a signature
|
2006-04-19 13:26:11 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003,
|
|
|
|
* 2004, 2006 Free Software Foundation, Inc.
|
2003-06-05 09:14:21 +02:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG 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.
|
|
|
|
*
|
|
|
|
* GnuPG 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
|
2006-04-19 13:26:11 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
|
|
* USA.
|
2003-06-05 09:14:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
2003-06-18 21:56:13 +02:00
|
|
|
|
|
|
|
#include "gpg.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
#include "cipher.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "status.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
#include "options.h"
|
2003-06-18 21:56:13 +02:00
|
|
|
#include "pkglue.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Context used by the compare function. */
|
|
|
|
struct cmp_help_context_s
|
|
|
|
{
|
|
|
|
PKT_signature *sig;
|
|
|
|
gcry_md_hd_t md;
|
2003-06-05 09:14:21 +02:00
|
|
|
};
|
|
|
|
|
2003-09-23 19:48:33 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
|
|
|
|
static int do_check( PKT_public_key *pk, PKT_signature *sig,
|
|
|
|
gcry_md_hd_t digest,
|
2003-09-23 19:48:33 +02:00
|
|
|
int *r_expired, int *r_revoked, PKT_public_key *ret_pk);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* Check the signature which is contained in SIG.
|
|
|
|
* The MD_HANDLE should be currently open, so that this function
|
|
|
|
* is able to append some data, before finalizing the digest.
|
|
|
|
*/
|
|
|
|
int
|
2006-04-19 13:26:11 +02:00
|
|
|
signature_check (PKT_signature *sig, gcry_md_hd_t digest)
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2003-09-23 19:48:33 +02:00
|
|
|
return signature_check2( sig, digest, NULL, NULL, NULL, NULL );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2006-04-19 13:26:11 +02:00
|
|
|
signature_check2 (PKT_signature *sig, gcry_md_hd_t digest, u32 *r_expiredate,
|
2003-09-23 19:48:33 +02:00
|
|
|
int *r_expired, int *r_revoked, PKT_public_key *ret_pk )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
PKT_public_key *pk = xmalloc_clear( sizeof *pk );
|
2003-06-05 09:14:21 +02:00
|
|
|
int rc=0;
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if ( (rc=openpgp_md_test_algo(sig->digest_algo)) )
|
|
|
|
; /* We don't have this digest. */
|
|
|
|
else if ((rc=openpgp_pk_test_algo(sig->pubkey_algo)))
|
|
|
|
; /* We don't have this pubkey algo. */
|
|
|
|
else if (!gcry_md_is_enabled (digest,sig->digest_algo))
|
|
|
|
{
|
|
|
|
/* Sanity check that the md has a context for the hash that the
|
|
|
|
sig is expecting. This can happen if a onepass sig header does
|
|
|
|
not match the actual sig, and also if the clearsign "Hash:"
|
|
|
|
header is missing or does not match the actual sig. */
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
log_info(_("WARNING: signature digest conflict in message\n"));
|
2006-04-19 13:26:11 +02:00
|
|
|
rc=G10ERR_GENERAL;
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
else if( get_pubkey( pk, sig->keyid ) )
|
2006-04-19 13:26:11 +02:00
|
|
|
rc = G10ERR_NO_PUBKEY;
|
2003-06-05 09:14:21 +02:00
|
|
|
else if(!pk->is_valid && !pk->is_primary)
|
2006-04-19 13:26:11 +02:00
|
|
|
rc=G10ERR_BAD_PUBKEY; /* you cannot have a good sig from an
|
2003-06-05 09:14:21 +02:00
|
|
|
invalid subkey */
|
2006-04-19 13:26:11 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(r_expiredate)
|
|
|
|
*r_expiredate = pk->expiredate;
|
|
|
|
|
2003-09-23 19:48:33 +02:00
|
|
|
rc = do_check( pk, sig, digest, r_expired, r_revoked, ret_pk );
|
2006-04-19 13:26:11 +02:00
|
|
|
|
|
|
|
/* Check the backsig. This is a 0x19 signature from the
|
|
|
|
subkey on the primary key. The idea here is that it should
|
|
|
|
not be possible for someone to "steal" subkeys and claim
|
|
|
|
them as their own. The attacker couldn't actually use the
|
|
|
|
subkey, but they could try and claim ownership of any
|
|
|
|
signaures issued by it. */
|
|
|
|
if(rc==0 && !pk->is_primary && pk->backsig<2)
|
|
|
|
{
|
|
|
|
if(pk->backsig==0)
|
|
|
|
{
|
|
|
|
log_info(_("WARNING: signing subkey %s is not"
|
|
|
|
" cross-certified\n"),keystr_from_pk(pk));
|
|
|
|
log_info(_("please see %s for more information\n"),
|
|
|
|
"http://www.gnupg.org/faq/subkey-cross-certify.html");
|
|
|
|
/* --require-cross-certification makes this warning an
|
|
|
|
error. TODO: change the default to require this
|
|
|
|
after more keys have backsigs. */
|
|
|
|
if(opt.flags.require_cross_cert)
|
|
|
|
rc=G10ERR_GENERAL;
|
|
|
|
}
|
|
|
|
else if(pk->backsig==1)
|
|
|
|
{
|
|
|
|
log_info(_("WARNING: signing subkey %s has an invalid"
|
|
|
|
" cross-certification\n"),keystr_from_pk(pk));
|
|
|
|
rc=G10ERR_GENERAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
free_public_key( pk );
|
|
|
|
|
|
|
|
if( !rc && sig->sig_class < 2 && is_status_enabled() ) {
|
|
|
|
/* 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 batch processing applications might
|
|
|
|
* like this feature here */
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_hd_t md;
|
2006-04-19 13:26:11 +02:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
u32 a = sig->timestamp;
|
|
|
|
int i, nsig = pubkey_get_nsig( sig->pubkey_algo );
|
|
|
|
byte *p, *buffer;
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, GCRY_MD_RMD160, 0))
|
|
|
|
BUG ();
|
|
|
|
|
|
|
|
/* FIXME: Why the hell are we updating DIGEST here??? */
|
2003-06-18 21:56:13 +02:00
|
|
|
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 );
|
2006-04-19 13:26:11 +02:00
|
|
|
gcry_md_putc( digest, (a >> 8) & 0xff );
|
|
|
|
gcry_md_putc( digest, a & 0xff );
|
2003-06-05 09:14:21 +02:00
|
|
|
for(i=0; i < nsig; i++ ) {
|
2003-06-18 21:56:13 +02:00
|
|
|
size_t n;
|
2003-07-28 10:59:18 +02:00
|
|
|
unsigned char *tmp;
|
2003-06-18 21:56:13 +02:00
|
|
|
|
|
|
|
if (gcry_mpi_aprint (GCRYMPI_FMT_USG, &tmp, &n, sig->data[i]))
|
2006-04-19 13:26:11 +02:00
|
|
|
BUG();
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_write (md, tmp, n);
|
|
|
|
xfree (tmp);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
gcry_md_final (md);
|
|
|
|
p = make_radix64_string ( gcry_md_read( md, 0 ), 20 );
|
|
|
|
buffer = xmalloc( strlen(p) + 60 );
|
2003-06-05 09:14:21 +02:00
|
|
|
sprintf( buffer, "%s %s %lu",
|
|
|
|
p, strtimestamp( sig->timestamp ), (ulong)sig->timestamp );
|
|
|
|
write_status_text( STATUS_SIG_ID, buffer );
|
2006-04-19 13:26:11 +02:00
|
|
|
xfree(buffer);
|
|
|
|
xfree(p);
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_close(md);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2003-09-23 19:48:33 +02:00
|
|
|
do_check_messages( PKT_public_key *pk, PKT_signature *sig,
|
2006-04-19 13:26:11 +02:00
|
|
|
int *r_expired, int *r_revoked )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
|
|
|
u32 cur_time;
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if(r_expired)
|
2003-09-23 19:48:33 +02:00
|
|
|
*r_expired = 0;
|
2006-04-19 13:26:11 +02:00
|
|
|
if(r_revoked)
|
2003-09-23 19:48:33 +02:00
|
|
|
*r_revoked = 0;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if( pk->timestamp > sig->timestamp )
|
|
|
|
{
|
2003-06-05 09:14:21 +02:00
|
|
|
ulong d = pk->timestamp - sig->timestamp;
|
2006-04-19 13:26:11 +02:00
|
|
|
log_info(d==1
|
|
|
|
?_("public key %s is %lu second newer than the signature\n")
|
|
|
|
:_("public key %s is %lu seconds newer than the signature\n"),
|
|
|
|
keystr_from_pk(pk),d );
|
2003-06-05 09:14:21 +02:00
|
|
|
if( !opt.ignore_time_conflict )
|
2006-04-19 13:26:11 +02:00
|
|
|
return G10ERR_TIME_CONFLICT; /* pubkey newer than signature */
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
cur_time = make_timestamp();
|
2006-04-19 13:26:11 +02:00
|
|
|
if( pk->timestamp > cur_time )
|
|
|
|
{
|
2003-06-05 09:14:21 +02:00
|
|
|
ulong d = pk->timestamp - cur_time;
|
2006-04-19 13:26:11 +02:00
|
|
|
log_info( d==1
|
|
|
|
? _("key %s was created %lu second"
|
|
|
|
" in the future (time warp or clock problem)\n")
|
|
|
|
: _("key %s was created %lu seconds"
|
|
|
|
" in the future (time warp or clock problem)\n"),
|
|
|
|
keystr_from_pk(pk),d );
|
2003-06-05 09:14:21 +02:00
|
|
|
if( !opt.ignore_time_conflict )
|
2006-04-19 13:26:11 +02:00
|
|
|
return G10ERR_TIME_CONFLICT;
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
if( pk->expiredate && pk->expiredate < cur_time ) {
|
|
|
|
char buf[11];
|
2006-04-19 13:26:11 +02:00
|
|
|
if (opt.verbose)
|
|
|
|
log_info(_("NOTE: signature key %s expired %s\n"),
|
|
|
|
keystr_from_pk(pk), asctimestamp( pk->expiredate ) );
|
2003-06-05 09:14:21 +02:00
|
|
|
/* SIGEXPIRED is deprecated. Use KEYEXPIRED. */
|
|
|
|
sprintf(buf,"%lu",(ulong)pk->expiredate);
|
|
|
|
write_status_text(STATUS_KEYEXPIRED,buf);
|
|
|
|
write_status(STATUS_SIGEXPIRED);
|
2006-04-19 13:26:11 +02:00
|
|
|
if(r_expired)
|
|
|
|
*r_expired = 1;
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
2003-09-23 19:48:33 +02:00
|
|
|
if(pk->is_revoked && r_revoked)
|
|
|
|
*r_revoked=1;
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2006-04-19 13:26:11 +02:00
|
|
|
do_check( PKT_public_key *pk, PKT_signature *sig, gcry_md_hd_t digest,
|
2003-09-23 19:48:33 +02:00
|
|
|
int *r_expired, int *r_revoked, PKT_public_key *ret_pk )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_mpi_t result = NULL;
|
2006-04-19 13:26:11 +02:00
|
|
|
int rc = 0;
|
2003-06-05 09:14:21 +02:00
|
|
|
struct cmp_help_context_s ctx;
|
|
|
|
|
2003-09-23 19:48:33 +02:00
|
|
|
if( (rc=do_check_messages(pk,sig,r_expired,r_revoked)) )
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Make sure the digest algo is enabled (in case of a detached
|
|
|
|
signature). */
|
|
|
|
gcry_md_enable (digest, sig->digest_algo);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Complete the digest. */
|
2003-06-05 09:14:21 +02:00
|
|
|
if( sig->version >= 4 )
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_putc( digest, sig->version );
|
|
|
|
gcry_md_putc( digest, sig->sig_class );
|
2003-06-05 09:14:21 +02:00
|
|
|
if( sig->version < 4 ) {
|
|
|
|
u32 a = sig->timestamp;
|
2003-06-18 21:56:13 +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 );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_putc( digest, sig->pubkey_algo );
|
|
|
|
gcry_md_putc( digest, sig->digest_algo );
|
2003-06-05 09:14:21 +02:00
|
|
|
if( sig->hashed ) {
|
|
|
|
n = sig->hashed->len;
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_putc (digest, (n >> 8) );
|
|
|
|
gcry_md_putc (digest, n );
|
|
|
|
gcry_md_write (digest, sig->hashed->data, n);
|
2003-06-05 09:14:21 +02:00
|
|
|
n += 6;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Two octets for the (empty) length of the hashed
|
|
|
|
section. */
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_putc (digest, 0);
|
|
|
|
gcry_md_putc (digest, 0);
|
2003-06-05 09:14:21 +02:00
|
|
|
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;
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_write( digest, buf, 6 );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
gcry_md_final( digest );
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
result = encode_md_value( pk, NULL, digest, sig->digest_algo );
|
2003-06-05 09:14:21 +02:00
|
|
|
if (!result)
|
2006-04-19 13:26:11 +02:00
|
|
|
return G10ERR_GENERAL;
|
2003-06-05 09:14:21 +02:00
|
|
|
ctx.sig = sig;
|
|
|
|
ctx.md = digest;
|
2006-04-19 13:26:11 +02:00
|
|
|
rc = pk_verify( pk->pubkey_algo, result, sig->data, pk->pkey );
|
|
|
|
gcry_mpi_release (result);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if( !rc && sig->flags.unknown_critical )
|
|
|
|
{
|
|
|
|
log_info(_("assuming bad signature from key %s"
|
|
|
|
" due to an unknown critical bit\n"),keystr_from_pk(pk));
|
|
|
|
rc = G10ERR_BAD_SIGN;
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2003-09-23 19:48:33 +02:00
|
|
|
if(!rc && ret_pk)
|
|
|
|
copy_public_key(ret_pk,pk);
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
static void
|
2006-04-19 15:24:36 +02:00
|
|
|
hash_uid_node( KBNODE unode, gcry_md_hd_t md, PKT_signature *sig )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
|
|
|
PKT_user_id *uid = unode->pkt->pkt.user_id;
|
|
|
|
|
|
|
|
assert( unode->pkt->pkttype == PKT_USER_ID );
|
|
|
|
if( uid->attrib_data ) {
|
|
|
|
if( sig->version >=4 ) {
|
|
|
|
byte buf[5];
|
|
|
|
buf[0] = 0xd1; /* packet of type 17 */
|
|
|
|
buf[1] = uid->attrib_len >> 24; /* always use 4 length bytes */
|
|
|
|
buf[2] = uid->attrib_len >> 16;
|
|
|
|
buf[3] = uid->attrib_len >> 8;
|
|
|
|
buf[4] = uid->attrib_len;
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_write( md, buf, 5 );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_write( md, uid->attrib_data, uid->attrib_len );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
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;
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_write( md, buf, 5 );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_write( md, uid->name, uid->len );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cache_sig_result ( PKT_signature *sig, int result )
|
|
|
|
{
|
|
|
|
if ( !result ) {
|
|
|
|
sig->flags.checked = 1;
|
|
|
|
sig->flags.valid = 1;
|
|
|
|
}
|
2003-06-18 21:56:13 +02:00
|
|
|
else if ( gpg_err_code (result) == GPG_ERR_BAD_SIGNATURE ) {
|
2003-06-05 09:14:21 +02:00
|
|
|
sig->flags.checked = 1;
|
|
|
|
sig->flags.valid = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sig->flags.checked = 0;
|
|
|
|
sig->flags.valid = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the revocation keys to see if any of them have revoked our
|
|
|
|
pk. sig is the revocation sig. pk is the key it is on. This code
|
|
|
|
will need to be modified if gpg ever becomes multi-threaded. Note
|
|
|
|
that this guarantees that a designated revocation sig will never be
|
|
|
|
considered valid unless it is actually valid, as well as being
|
2006-04-19 13:26:11 +02:00
|
|
|
issued by a revocation key in a valid direct signature. Note also
|
|
|
|
that this is written so that a revoked revoker can still issue
|
2003-06-05 09:14:21 +02:00
|
|
|
revocations: i.e. If A revokes B, but A is revoked, B is still
|
|
|
|
revoked. I'm not completely convinced this is the proper behavior,
|
|
|
|
but it matches how PGP does it. -dms */
|
|
|
|
|
|
|
|
/* Returns 0 if sig is valid (i.e. pk is revoked), non-0 if not
|
2006-04-19 13:26:11 +02:00
|
|
|
revoked. It is important that G10ERR_NO_PUBKEY is only returned
|
|
|
|
when a revocation signature is from a valid revocation key
|
|
|
|
designated in a revkey subpacket, but the revocation key itself
|
|
|
|
isn't present. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int
|
|
|
|
check_revocation_keys(PKT_public_key *pk,PKT_signature *sig)
|
|
|
|
{
|
|
|
|
static int busy=0;
|
2006-04-19 13:26:11 +02:00
|
|
|
int i,rc=G10ERR_GENERAL;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
assert(IS_KEY_REV(sig));
|
|
|
|
assert((sig->keyid[0]!=pk->keyid[0]) || (sig->keyid[0]!=pk->keyid[1]));
|
|
|
|
|
|
|
|
if(busy)
|
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
/* return an error (i.e. not revoked), but mark the pk as
|
|
|
|
uncacheable as we don't really know its revocation status
|
|
|
|
until it is checked directly. */
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
pk->dont_cache=1;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
busy=1;
|
|
|
|
|
|
|
|
/* printf("looking at %08lX with a sig from %08lX\n",(ulong)pk->keyid[1],
|
|
|
|
(ulong)sig->keyid[1]); */
|
|
|
|
|
|
|
|
/* is the issuer of the sig one of our revokers? */
|
|
|
|
if( !pk->revkey && pk->numrevkeys )
|
|
|
|
BUG();
|
|
|
|
else
|
|
|
|
for(i=0;i<pk->numrevkeys;i++)
|
|
|
|
{
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
|
|
keyid_from_fingerprint(pk->revkey[i].fpr,MAX_FINGERPRINT_LEN,keyid);
|
|
|
|
|
|
|
|
if(keyid[0]==sig->keyid[0] && keyid[1]==sig->keyid[1])
|
|
|
|
{
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_hd_t md;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, sig->digest_algo, 0))
|
|
|
|
BUG ();
|
2003-06-05 09:14:21 +02:00
|
|
|
hash_public_key(md,pk);
|
|
|
|
rc=signature_check(sig,md);
|
|
|
|
cache_sig_result(sig,rc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
busy=0;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Backsigs (0x19) have the same format as binding sigs (0x18), but
|
|
|
|
this function is simpler than check_key_signature in a few ways.
|
|
|
|
For example, there is no support for expiring backsigs since it is
|
|
|
|
questionable what such a thing actually means. Note also that the
|
|
|
|
sig cache check here, unlike other sig caches in GnuPG, is not
|
|
|
|
persistent. */
|
|
|
|
int
|
|
|
|
check_backsig(PKT_public_key *main_pk,PKT_public_key *sub_pk,
|
|
|
|
PKT_signature *backsig)
|
|
|
|
{
|
|
|
|
gcry_md_hd_t md;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if(!opt.no_sig_cache && backsig->flags.checked)
|
|
|
|
{
|
|
|
|
if((rc=openpgp_md_test_algo (backsig->digest_algo)))
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
return backsig->flags.valid? 0 : gpg_error (GPG_ERR_BAD_SIGNATURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gcry_md_open (&md, backsig->digest_algo,0))
|
|
|
|
BUG ();
|
|
|
|
hash_public_key(md,main_pk);
|
|
|
|
hash_public_key(md,sub_pk);
|
|
|
|
rc=do_check(sub_pk,backsig,md,NULL,NULL,NULL);
|
|
|
|
cache_sig_result(backsig,rc);
|
|
|
|
gcry_md_close(md);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
/****************
|
|
|
|
* check the signature pointed to by NODE. This is a key signature.
|
|
|
|
* If the function detects a self-signature, it uses the PK from
|
|
|
|
* ROOT and does not read any public key.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
check_key_signature( KBNODE root, KBNODE node, int *is_selfsig )
|
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
return check_key_signature2(root, node, NULL, NULL, is_selfsig, NULL, NULL );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If check_pk is set, then use it to check the signature in node
|
2003-09-23 19:48:33 +02:00
|
|
|
rather than getting it from root or the keydb. If ret_pk is set,
|
|
|
|
fill in the public key that was used to verify the signature.
|
|
|
|
ret_pk is only meaningful when the verification was successful. */
|
|
|
|
/* TODO: add r_revoked here as well. It has the same problems as
|
|
|
|
r_expiredate and r_expired and the cache. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int
|
|
|
|
check_key_signature2( KBNODE root, KBNODE node, PKT_public_key *check_pk,
|
2003-09-23 19:48:33 +02:00
|
|
|
PKT_public_key *ret_pk, int *is_selfsig,
|
2006-04-19 13:26:11 +02:00
|
|
|
u32 *r_expiredate, int *r_expired )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
gcry_md_hd_t md;
|
2003-06-05 09:14:21 +02:00
|
|
|
PKT_public_key *pk;
|
|
|
|
PKT_signature *sig;
|
|
|
|
int algo;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if( is_selfsig )
|
|
|
|
*is_selfsig = 0;
|
2003-09-23 19:48:33 +02:00
|
|
|
if( r_expiredate )
|
|
|
|
*r_expiredate = 0;
|
|
|
|
if( r_expired )
|
|
|
|
*r_expired = 0;
|
2003-06-05 09:14:21 +02:00
|
|
|
assert( node->pkt->pkttype == PKT_SIGNATURE );
|
|
|
|
assert( root->pkt->pkttype == PKT_PUBLIC_KEY );
|
|
|
|
|
|
|
|
pk = root->pkt->pkt.public_key;
|
|
|
|
sig = node->pkt->pkt.signature;
|
|
|
|
algo = sig->digest_algo;
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Check whether we have cached the result of a previous signature
|
|
|
|
check. Note that we may no longer have the pubkey or hash
|
|
|
|
needed to verify a sig, but can still use the cached value. A
|
|
|
|
cache refresh detects and clears these cases. */
|
2003-06-05 09:14:21 +02:00
|
|
|
if ( !opt.no_sig_cache ) {
|
|
|
|
if (sig->flags.checked) { /*cached status available*/
|
|
|
|
if( is_selfsig ) {
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
|
|
keyid_from_pk( pk, keyid );
|
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] )
|
|
|
|
*is_selfsig = 1;
|
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
/* BUG: This is wrong for non-self-sigs.. needs to be the
|
2003-09-23 19:48:33 +02:00
|
|
|
actual pk */
|
|
|
|
if((rc=do_check_messages(pk,sig,r_expired,NULL)))
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
2003-06-18 21:56:13 +02:00
|
|
|
return sig->flags.valid? 0 : gpg_error (GPG_ERR_BAD_SIGNATURE);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if( (rc=openpgp_pk_test_algo(sig->pubkey_algo)) )
|
|
|
|
return rc;
|
|
|
|
if( (rc=openpgp_md_test_algo(algo)) )
|
|
|
|
return rc;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
if( sig->sig_class == 0x20 ) { /* key revocation */
|
|
|
|
u32 keyid[2];
|
|
|
|
keyid_from_pk( pk, keyid );
|
|
|
|
|
|
|
|
/* is it a designated revoker? */
|
|
|
|
if(keyid[0]!=sig->keyid[0] || keyid[1]!=sig->keyid[1])
|
|
|
|
rc=check_revocation_keys(pk,sig);
|
|
|
|
else
|
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, algo, 0 ))
|
|
|
|
BUG ();
|
2003-06-05 09:14:21 +02:00
|
|
|
hash_public_key( md, pk );
|
2003-09-23 19:48:33 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired, NULL, ret_pk );
|
2003-06-05 09:14:21 +02:00
|
|
|
cache_sig_result ( sig, rc );
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_close(md);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( sig->sig_class == 0x28 ) { /* subkey revocation */
|
|
|
|
KBNODE snode = find_prev_kbnode( root, node, PKT_PUBLIC_SUBKEY );
|
|
|
|
|
|
|
|
if( snode ) {
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, algo, 0))
|
|
|
|
BUG ();
|
2003-06-05 09:14:21 +02:00
|
|
|
hash_public_key( md, pk );
|
|
|
|
hash_public_key( md, snode->pkt->pkt.public_key );
|
2003-09-23 19:48:33 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired, NULL, ret_pk );
|
2003-06-05 09:14:21 +02:00
|
|
|
cache_sig_result ( sig, rc );
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_close(md);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
else
|
|
|
|
{
|
2003-09-23 19:48:33 +02:00
|
|
|
if (opt.verbose)
|
2006-04-19 13:26:11 +02:00
|
|
|
log_info (_("key %s: no subkey for subkey"
|
|
|
|
" revocation signature\n"),keystr_from_pk(pk));
|
|
|
|
rc = G10ERR_SIG_CLASS;
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
else if( sig->sig_class == 0x18 ) { /* key binding */
|
|
|
|
KBNODE snode = find_prev_kbnode( root, node, PKT_PUBLIC_SUBKEY );
|
|
|
|
|
|
|
|
if( snode ) {
|
|
|
|
if( is_selfsig ) { /* does this make sense????? */
|
|
|
|
u32 keyid[2]; /* it should always be a selfsig */
|
|
|
|
|
|
|
|
keyid_from_pk( pk, keyid );
|
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] )
|
|
|
|
*is_selfsig = 1;
|
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, algo, 0))
|
|
|
|
BUG ();
|
2003-06-05 09:14:21 +02:00
|
|
|
hash_public_key( md, pk );
|
|
|
|
hash_public_key( md, snode->pkt->pkt.public_key );
|
2003-09-23 19:48:33 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired, NULL, ret_pk );
|
2003-06-05 09:14:21 +02:00
|
|
|
cache_sig_result ( sig, rc );
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_close(md);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
else
|
|
|
|
{
|
2003-06-05 09:14:21 +02:00
|
|
|
if (opt.verbose)
|
2006-04-19 13:26:11 +02:00
|
|
|
log_info(_("key %s: no subkey for subkey"
|
|
|
|
" binding signature\n"),keystr_from_pk(pk));
|
|
|
|
rc = G10ERR_SIG_CLASS;
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
else if( sig->sig_class == 0x1f ) { /* direct key signature */
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, algo, 0 ))
|
|
|
|
BUG ();
|
2003-06-05 09:14:21 +02:00
|
|
|
hash_public_key( md, pk );
|
2003-09-23 19:48:33 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired, NULL, ret_pk );
|
2003-06-05 09:14:21 +02:00
|
|
|
cache_sig_result ( sig, rc );
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_close(md);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
else { /* all other classes */
|
|
|
|
KBNODE unode = find_prev_kbnode( root, node, PKT_USER_ID );
|
|
|
|
|
|
|
|
if( unode ) {
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
|
|
keyid_from_pk( pk, keyid );
|
2006-04-19 13:26:11 +02:00
|
|
|
if (gcry_md_open (&md, algo, 0 ))
|
|
|
|
BUG ();
|
2003-06-05 09:14:21 +02:00
|
|
|
hash_public_key( md, pk );
|
|
|
|
hash_uid_node( unode, md, sig );
|
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] )
|
|
|
|
{
|
|
|
|
if( is_selfsig )
|
|
|
|
*is_selfsig = 1;
|
2003-09-23 19:48:33 +02:00
|
|
|
rc = do_check( pk, sig, md, r_expired, NULL, ret_pk );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
else if (check_pk)
|
2006-04-19 13:26:11 +02:00
|
|
|
rc=do_check(check_pk,sig,md,r_expired,NULL,ret_pk);
|
2003-06-05 09:14:21 +02:00
|
|
|
else
|
2006-04-19 13:26:11 +02:00
|
|
|
rc=signature_check2(sig,md,r_expiredate,r_expired,NULL,ret_pk);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
cache_sig_result ( sig, rc );
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_close(md);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
else
|
|
|
|
{
|
2003-06-05 09:14:21 +02:00
|
|
|
if (!opt.quiet)
|
2006-04-19 13:26:11 +02:00
|
|
|
log_info ("key %s: no user ID for key signature packet"
|
|
|
|
" of class %02x\n",keystr_from_pk(pk),sig->sig_class);
|
|
|
|
rc = G10ERR_SIG_CLASS;
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|