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.
|
2015-10-19 11:06:57 +02:00
|
|
|
* Copyright (C) 2015 g10 Code GmbH
|
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
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-06-05 09:14:21 +02:00
|
|
|
* (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
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
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 "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
|
|
|
|
2015-10-19 11:06:57 +02:00
|
|
|
static int check_signature_end (PKT_public_key *pk, PKT_signature *sig,
|
|
|
|
gcry_md_hd_t digest,
|
|
|
|
int *r_expired, int *r_revoked,
|
|
|
|
PKT_public_key *ret_pk);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Check a signature. This is shorthand for check_signature2 with
|
|
|
|
the unnamed arguments passed as NULL. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int
|
2015-10-19 11:06:57 +02:00
|
|
|
check_signature (PKT_signature *sig, gcry_md_hd_t digest)
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2015-10-19 11:06:57 +02:00
|
|
|
return check_signature2 (sig, digest, NULL, NULL, NULL, NULL);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Check a signature.
|
|
|
|
|
|
|
|
Looks up the public key that created the signature (SIG->KEYID)
|
|
|
|
from the key db. Makes sure that the signature is valid (it was
|
|
|
|
not created prior to the key, the public key was created in the
|
|
|
|
past, and the signature does not include any unsupported critical
|
|
|
|
features), finishes computing the hash of the signature data, and
|
|
|
|
checks that the signature verifies the digest. If the key that
|
|
|
|
generated the signature is a subkey, this function also verifies
|
|
|
|
that there is a valid backsig from the subkey to the primary key.
|
|
|
|
Finally, if status fd is enabled and the signature class is 0x00 or
|
|
|
|
0x01, then a STATUS_SIG_ID is emitted on the status fd.
|
|
|
|
|
|
|
|
SIG is the signature to check.
|
|
|
|
|
|
|
|
DIGEST contains a valid hash context that already includes the
|
|
|
|
signed data. This function adds the relevant meta-data from the
|
|
|
|
signature packet to compute the final hash. (See Section 5.2 of
|
|
|
|
RFC 4880: "The concatenation of the data being signed and the
|
|
|
|
signature data from the version number through the hashed subpacket
|
|
|
|
data (inclusive) is hashed.")
|
|
|
|
|
|
|
|
If R_EXPIREDATE is not NULL, R_EXPIREDATE is set to the key's
|
|
|
|
expiry.
|
|
|
|
|
|
|
|
If R_EXPIRED is not NULL, *R_EXPIRED is set to 1 if PK has expired
|
|
|
|
(0 otherwise). Note: PK being expired does not cause this function
|
|
|
|
to fail.
|
|
|
|
|
|
|
|
If R_REVOKED is not NULL, *R_REVOKED is set to 1 if PK has been
|
|
|
|
revoked (0 otherwise). Note: PK being revoked does not cause this
|
|
|
|
function to fail.
|
|
|
|
|
|
|
|
If PK is not NULL, the public key is saved in *PK on success.
|
|
|
|
|
|
|
|
Returns 0 on success. An error code otherwise. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int
|
2015-10-19 11:06:57 +02:00
|
|
|
check_signature2 (PKT_signature *sig, gcry_md_hd_t digest, u32 *r_expiredate,
|
2015-09-23 20:50:03 +02:00
|
|
|
int *r_expired, int *r_revoked, PKT_public_key *pk )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
|
|
|
int rc=0;
|
2015-09-23 20:50:03 +02:00
|
|
|
int pk_internal;
|
|
|
|
|
|
|
|
if (pk)
|
|
|
|
pk_internal = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pk_internal = 1;
|
|
|
|
pk = xmalloc_clear( sizeof *pk );
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
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"));
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_GENERAL;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
else if( get_pubkey( pk, sig->keyid ) )
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_NO_PUBKEY;
|
2010-10-20 13:33:50 +02:00
|
|
|
else if(!pk->flags.valid && !pk->flags.primary)
|
2015-01-22 12:06:11 +01:00
|
|
|
{
|
|
|
|
/* You cannot have a good sig from an invalid subkey. */
|
|
|
|
rc = GPG_ERR_BAD_PUBKEY;
|
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(r_expiredate)
|
|
|
|
*r_expiredate = pk->expiredate;
|
|
|
|
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (pk, sig, digest, r_expired, r_revoked, NULL);
|
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
|
2015-10-19 11:06:57 +02:00
|
|
|
signatures issued by it. */
|
2010-10-20 13:33:50 +02:00
|
|
|
if(rc==0 && !pk->flags.primary && pk->flags.backsig < 2)
|
2006-04-19 13:26:11 +02:00
|
|
|
{
|
2010-10-20 13:33:50 +02:00
|
|
|
if (!pk->flags.backsig)
|
2006-04-19 13:26:11 +02:00
|
|
|
{
|
|
|
|
log_info(_("WARNING: signing subkey %s is not"
|
|
|
|
" cross-certified\n"),keystr_from_pk(pk));
|
|
|
|
log_info(_("please see %s for more information\n"),
|
2015-02-11 12:10:39 +01:00
|
|
|
"https://gnupg.org/faq/subkey-cross-certify.html");
|
2006-04-19 13:26:11 +02:00
|
|
|
/* --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)
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_GENERAL;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
2010-10-20 13:33:50 +02:00
|
|
|
else if(pk->flags.backsig == 1)
|
2006-04-19 13:26:11 +02:00
|
|
|
{
|
|
|
|
log_info(_("WARNING: signing subkey %s has an invalid"
|
|
|
|
" cross-certification\n"),keystr_from_pk(pk));
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_GENERAL;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2015-09-23 20:50:03 +02:00
|
|
|
if (pk_internal || rc)
|
|
|
|
{
|
|
|
|
release_public_key_parts (pk);
|
|
|
|
if (pk_internal)
|
|
|
|
xfree (pk);
|
|
|
|
else
|
|
|
|
/* Be very sure that the caller doesn't try to use *PK. */
|
|
|
|
memset (pk, 0, sizeof (*pk));
|
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
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
|
2011-02-04 12:57:53 +01:00
|
|
|
* like this feature here.
|
|
|
|
*
|
2008-12-11 18:44:52 +01:00
|
|
|
* Note that before 2.0.10, we used RIPE-MD160 for the hash
|
2015-11-16 12:41:46 +01:00
|
|
|
* and accidentally didn't include the timestamp and algorithm
|
2008-12-11 18:44:52 +01:00
|
|
|
* information in the hash. Given that this feature is not
|
|
|
|
* commonly used and that a replay attacks detection should
|
|
|
|
* not solely be based on this feature (because it does not
|
|
|
|
* work with RSA), we take the freedom and switch to SHA-1
|
|
|
|
* with 2.0.10 to take advantage of hardware supported SHA-1
|
|
|
|
* implementations. We also include the missing information
|
|
|
|
* in the hash. Note also the SIG_ID as computed by gpg 1.x
|
|
|
|
* and gpg 2.x didn't matched either because 2.x used to print
|
|
|
|
* MPIs not in PGP format. */
|
2003-06-05 09:14:21 +02:00
|
|
|
u32 a = sig->timestamp;
|
2008-12-11 18:44:52 +01:00
|
|
|
int nsig = pubkey_get_nsig( sig->pubkey_algo );
|
|
|
|
unsigned char *p, *buffer;
|
|
|
|
size_t n, nbytes;
|
|
|
|
int i;
|
|
|
|
char hashbuf[20];
|
|
|
|
|
|
|
|
nbytes = 6;
|
|
|
|
for (i=0; i < nsig; i++ )
|
|
|
|
{
|
|
|
|
if (gcry_mpi_print (GCRYMPI_FMT_USG, NULL, 0, &n, sig->data[i]))
|
2006-04-19 13:26:11 +02:00
|
|
|
BUG();
|
2008-12-11 18:44:52 +01:00
|
|
|
nbytes += n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make buffer large enough to be later used as output buffer. */
|
|
|
|
if (nbytes < 100)
|
|
|
|
nbytes = 100;
|
|
|
|
nbytes += 10; /* Safety margin. */
|
|
|
|
|
|
|
|
/* Fill and hash buffer. */
|
|
|
|
buffer = p = xmalloc (nbytes);
|
|
|
|
*p++ = sig->pubkey_algo;
|
|
|
|
*p++ = sig->digest_algo;
|
|
|
|
*p++ = (a >> 24) & 0xff;
|
|
|
|
*p++ = (a >> 16) & 0xff;
|
|
|
|
*p++ = (a >> 8) & 0xff;
|
|
|
|
*p++ = a & 0xff;
|
|
|
|
nbytes -= 6;
|
|
|
|
for (i=0; i < nsig; i++ )
|
|
|
|
{
|
|
|
|
if (gcry_mpi_print (GCRYMPI_FMT_PGP, p, nbytes, &n, sig->data[i]))
|
|
|
|
BUG();
|
|
|
|
p += n;
|
|
|
|
nbytes -= n;
|
|
|
|
}
|
|
|
|
gcry_md_hash_buffer (GCRY_MD_SHA1, hashbuf, buffer, p-buffer);
|
|
|
|
|
|
|
|
p = make_radix64_string (hashbuf, 20);
|
|
|
|
sprintf (buffer, "%s %s %lu",
|
|
|
|
p, strtimestamp (sig->timestamp), (ulong)sig->timestamp);
|
|
|
|
xfree (p);
|
|
|
|
write_status_text (STATUS_SIG_ID, buffer);
|
|
|
|
xfree (buffer);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* The signature SIG was generated with the public key PK. Check
|
|
|
|
whether the signature is valid in the following sense:
|
|
|
|
|
|
|
|
- Make sure the public key was created before the signature was
|
|
|
|
generated.
|
|
|
|
|
|
|
|
- Make sure the public key was created in the past
|
|
|
|
|
|
|
|
- Check whether PK has expired (set *R_EXPIRED to 1 if so and 0
|
|
|
|
otherwise)
|
|
|
|
|
|
|
|
- Check whether PK has been revoked (set *R_REVOKED to 1 if so
|
|
|
|
and 0 otherwise).
|
|
|
|
|
|
|
|
If either of the first two tests fail, returns an error code.
|
|
|
|
Otherwise returns 0. (Thus, this function doesn't fail if the
|
|
|
|
public key is expired or revoked.) */
|
2003-06-05 09:14:21 +02:00
|
|
|
static int
|
2015-10-19 11:06:57 +02:00
|
|
|
check_signature_metadata_validity (PKT_public_key *pk, PKT_signature *sig,
|
|
|
|
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 )
|
2015-01-22 12:06:11 +01:00
|
|
|
return GPG_ERR_TIME_CONFLICT; /* pubkey newer than signature. */
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
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 )
|
2015-01-22 12:06:11 +01:00
|
|
|
return GPG_ERR_TIME_CONFLICT;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2009-12-17 18:55:43 +01:00
|
|
|
/* Check whether the key has expired. We check the has_expired
|
|
|
|
flag which is set after a full evaluation of the key (getkey.c)
|
|
|
|
as well as a simple compare to the current time in case the
|
|
|
|
merge has for whatever reasons not been done. */
|
|
|
|
if( pk->has_expired || (pk->expiredate && pk->expiredate < cur_time)) {
|
2003-06-05 09:14:21 +02:00
|
|
|
char buf[11];
|
2006-04-19 13:26:11 +02:00
|
|
|
if (opt.verbose)
|
2014-10-10 15:29:42 +02:00
|
|
|
log_info(_("Note: signature key %s expired %s\n"),
|
2006-04-19 13:26:11 +02:00
|
|
|
keystr_from_pk(pk), asctimestamp( pk->expiredate ) );
|
2003-06-05 09:14:21 +02:00
|
|
|
sprintf(buf,"%lu",(ulong)pk->expiredate);
|
|
|
|
write_status_text(STATUS_KEYEXPIRED,buf);
|
2006-04-19 13:26:11 +02:00
|
|
|
if(r_expired)
|
|
|
|
*r_expired = 1;
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
2010-10-20 13:33:50 +02:00
|
|
|
if (pk->flags.revoked)
|
2008-05-08 12:10:27 +02:00
|
|
|
{
|
|
|
|
if (opt.verbose)
|
2014-10-10 15:29:42 +02:00
|
|
|
log_info (_("Note: signature key %s has been revoked\n"),
|
2008-05-08 12:10:27 +02:00
|
|
|
keystr_from_pk(pk));
|
|
|
|
if (r_revoked)
|
|
|
|
*r_revoked=1;
|
|
|
|
}
|
2003-09-23 19:48:33 +02:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Finish generating a signature and check it. Concretely: make sure
|
|
|
|
that the signature is valid (it was not created prior to the key,
|
|
|
|
the public key was created in the past, and the signature does not
|
|
|
|
include any unsupported critical features), finish computing the
|
|
|
|
digest by adding the relevant data from the signature packet, and
|
|
|
|
check that the signature verifies the digest.
|
|
|
|
|
|
|
|
DIGEST contains a hash context, which has already hashed the signed
|
|
|
|
data. This function adds the relevant meta-data from the signature
|
|
|
|
packet to compute the final hash. (See Section 5.2 of RFC 4880:
|
|
|
|
"The concatenation of the data being signed and the signature data
|
|
|
|
from the version number through the hashed subpacket data
|
|
|
|
(inclusive) is hashed.")
|
|
|
|
|
|
|
|
SIG is the signature to check.
|
|
|
|
|
|
|
|
PK is the public key used to generate the signature.
|
|
|
|
|
|
|
|
If R_EXPIRED is not NULL, *R_EXPIRED is set to 1 if PK has expired
|
|
|
|
(0 otherwise). Note: PK being expired does not cause this function
|
|
|
|
to fail.
|
|
|
|
|
|
|
|
If R_REVOKED is not NULL, *R_REVOKED is set to 1 if PK has been
|
|
|
|
revoked (0 otherwise). Note: PK being revoked does not cause this
|
|
|
|
function to fail.
|
|
|
|
|
|
|
|
If RET_PK is not NULL, PK is copied into RET_PK on success.
|
|
|
|
|
|
|
|
Returns 0 on success. An error code other. */
|
2003-06-05 09:14:21 +02:00
|
|
|
static int
|
2015-10-19 11:06:57 +02:00
|
|
|
check_signature_end (PKT_public_key *pk, PKT_signature *sig,
|
|
|
|
gcry_md_hd_t digest,
|
|
|
|
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;
|
2015-10-18 23:35:32 +02:00
|
|
|
const struct weakhash *weak;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2015-10-19 11:06:57 +02:00
|
|
|
if ((rc = check_signature_metadata_validity (pk, sig,
|
|
|
|
r_expired, r_revoked)))
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
|
|
|
|
2015-10-18 23:35:32 +02:00
|
|
|
if (!opt.flags.allow_weak_digest_algos)
|
2015-10-23 23:46:57 +02:00
|
|
|
for (weak = opt.weak_digests; weak; weak = weak->next)
|
|
|
|
if (sig->digest_algo == weak->algo)
|
2015-10-19 16:41:23 +02:00
|
|
|
{
|
|
|
|
print_digest_rejected_note(sig->digest_algo);
|
|
|
|
return GPG_ERR_DIGEST_ALGO;
|
|
|
|
}
|
2014-03-17 17:54:36 +01:00
|
|
|
|
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;
|
|
|
|
}
|
2015-10-19 11:15:00 +02:00
|
|
|
/* add some magic per Section 5.2.4 of RFC 4880. */
|
2003-06-05 09:14:21 +02:00
|
|
|
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
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Convert the digest to an MPI. */
|
2010-04-20 19:57:50 +02:00
|
|
|
result = encode_md_value (pk, digest, sig->digest_algo );
|
2003-06-05 09:14:21 +02:00
|
|
|
if (!result)
|
2015-01-22 12:06:11 +01:00
|
|
|
return GPG_ERR_GENERAL;
|
2015-10-19 11:15:00 +02:00
|
|
|
|
|
|
|
/* Verify the signature. */
|
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));
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_BAD_SIGNATURE;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Add a uid node to a hash context. See section 5.2.4, paragraph 4
|
|
|
|
of RFC 4880. */
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* SIG is a key revocation signature. Check if this signature was
|
|
|
|
generated by any of the public key PK's designated revokers.
|
|
|
|
|
|
|
|
PK is the public key that SIG allegedly revokes.
|
|
|
|
|
|
|
|
SIG is the revocation signature to check.
|
|
|
|
|
|
|
|
This function avoids infinite recursion, which can happen if two
|
|
|
|
keys are designed revokers for each other and they revoke each
|
|
|
|
other. This is done by observing that if a key A is revoked by key
|
|
|
|
B we still consider the revocation to be valid even if B is
|
|
|
|
revoked. Thus, we don't need to determine whether B is revoked to
|
|
|
|
determine whether A has been revoked by B, we just need to check
|
|
|
|
the signature.
|
|
|
|
|
|
|
|
Returns 0 if sig is valid (i.e. pk is revoked), non-0 if not
|
|
|
|
revoked. We are careful to make sure that GPG_ERR_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. */
|
|
|
|
|
|
|
|
/* XXX: 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 issued by a revocation key in a valid
|
|
|
|
direct signature. Note also that this is written so that a revoked
|
|
|
|
revoker can still issue 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 */
|
2003-06-05 09:14:21 +02:00
|
|
|
int
|
2015-10-19 11:15:00 +02:00
|
|
|
check_revocation_keys (PKT_public_key *pk, PKT_signature *sig)
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
|
|
|
static int busy=0;
|
2015-01-22 12:06:11 +01:00
|
|
|
int i;
|
|
|
|
int rc = GPG_ERR_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]));
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Avoid infinite recursion. Consider the following:
|
|
|
|
|
|
|
|
- We want to check if A is revoked.
|
|
|
|
|
|
|
|
- C is a designated revoker for B and has revoked B.
|
|
|
|
|
|
|
|
- B is a designated revoker for A and has revoked A.
|
|
|
|
|
|
|
|
When checking if A is revoked (in merge_selfsigs_main), we
|
|
|
|
observe that A has a designed revoker. As such, we call this
|
|
|
|
function. This function sees that there is a valid revocation
|
|
|
|
signature, which is signed by B. It then calls check_signature()
|
|
|
|
to verify that the signature is good. To check the sig, we need
|
|
|
|
to lookup B. Looking up B means calling merge_selfsigs_main,
|
|
|
|
which checks whether B is revoked, which calls this function to
|
|
|
|
see if B was revoked by some key.
|
|
|
|
|
|
|
|
In this case, the added level of indirection doesn't hurt. It
|
|
|
|
just means a bit more work. However, if C == A, then we'd end up
|
|
|
|
in a loop. But, it doesn't make sense to look up C anyways: even
|
|
|
|
if B is revoked, we conservatively consider a valid revocation
|
|
|
|
signed by B to revoke A. Since this is the only place where this
|
|
|
|
type of recursion can occur, we simply cause this function to
|
|
|
|
fail if it is entered recursively. */
|
2010-10-20 13:33:50 +02:00
|
|
|
if (busy)
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2010-10-20 13:33:50 +02:00
|
|
|
/* Return an error (i.e. not revoked), but mark the pk as
|
2006-04-19 13:26:11 +02:00
|
|
|
uncacheable as we don't really know its revocation status
|
2010-10-20 13:33:50 +02:00
|
|
|
until it is checked directly. */
|
|
|
|
pk->flags.dont_cache = 1;
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
busy=1;
|
|
|
|
|
2015-02-19 17:22:27 +01:00
|
|
|
/* es_printf("looking at %08lX with a sig from %08lX\n",(ulong)pk->keyid[1],
|
2003-06-05 09:14:21 +02:00
|
|
|
(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++)
|
|
|
|
{
|
2015-10-19 11:15:00 +02:00
|
|
|
/* The revoker's keyid. */
|
2003-06-05 09:14:21 +02:00
|
|
|
u32 keyid[2];
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
keyid_from_fingerprint(pk->revkey[i].fpr,MAX_FINGERPRINT_LEN,keyid);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
if(keyid[0]==sig->keyid[0] && keyid[1]==sig->keyid[1])
|
2015-10-19 11:15:00 +02:00
|
|
|
/* The signature was generated by a designated revoker.
|
|
|
|
Verify the signature. */
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_md_hd_t md;
|
2011-02-04 12:57:53 +01: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);
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Note: check_signature only checks that the signature
|
|
|
|
is good. It does not fail if the key is revoked. */
|
2015-10-19 11:06:57 +02:00
|
|
|
rc=check_signature(sig,md);
|
2003-06-05 09:14:21 +02:00
|
|
|
cache_sig_result(sig,rc);
|
2008-12-11 18:44:52 +01:00
|
|
|
gcry_md_close (md);
|
2003-06-05 09:14:21 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
busy=0;
|
|
|
|
|
|
|
|
return rc;
|
2011-02-04 12:57:53 +01:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Check that the backsig BACKSIG from the subkey SUB_PK to its
|
|
|
|
primary key MAIN_PK is valid.
|
|
|
|
|
|
|
|
Backsigs (0x19) have the same format as binding sigs (0x18), but
|
2006-04-19 13:26:11 +02:00
|
|
|
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
|
2015-10-19 11:15:00 +02:00
|
|
|
check_backsig (PKT_public_key *main_pk,PKT_public_key *sub_pk,
|
|
|
|
PKT_signature *backsig)
|
2006-04-19 13:26:11 +02:00
|
|
|
{
|
|
|
|
gcry_md_hd_t md;
|
|
|
|
int rc;
|
|
|
|
|
2007-05-16 13:10:07 +02:00
|
|
|
/* Always check whether the algorithm is available. Although
|
2015-10-19 11:15:00 +02:00
|
|
|
gcry_md_open would throw an error, some libgcrypt versions will
|
2007-05-16 13:10:07 +02:00
|
|
|
print a debug message in that case too. */
|
|
|
|
if ((rc=openpgp_md_test_algo (backsig->digest_algo)))
|
|
|
|
return rc;
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
if(!opt.no_sig_cache && backsig->flags.checked)
|
2007-05-16 13:10:07 +02:00
|
|
|
return backsig->flags.valid? 0 : gpg_error (GPG_ERR_BAD_SIGNATURE);
|
2006-04-19 13:26:11 +02:00
|
|
|
|
2007-05-16 13:10:07 +02:00
|
|
|
rc = gcry_md_open (&md, backsig->digest_algo,0);
|
|
|
|
if (!rc)
|
|
|
|
{
|
|
|
|
hash_public_key(md,main_pk);
|
|
|
|
hash_public_key(md,sub_pk);
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (sub_pk, backsig, md, NULL, NULL, NULL);
|
2007-05-16 13:10:07 +02:00
|
|
|
cache_sig_result(backsig,rc);
|
|
|
|
gcry_md_close(md);
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Check that a signature over a key is valid. This is a
|
|
|
|
specialization of check_key_signature2 with the unnamed parameters
|
|
|
|
passed as NULL. See the documentation for that function for more
|
|
|
|
details. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int
|
2015-10-19 11:15:00 +02:00
|
|
|
check_key_signature (KBNODE root, KBNODE node, int *is_selfsig)
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2015-10-19 11:15:00 +02:00
|
|
|
return check_key_signature2 (root, node, NULL, NULL, is_selfsig, NULL, NULL);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
2015-10-19 11:15:00 +02:00
|
|
|
/* Check that a signature over a key (e.g., a key revocation, key
|
|
|
|
binding, user id certification, etc.) is valid. If the function
|
|
|
|
detects a self-signature, it uses the public key from the specified
|
|
|
|
key block and does not bother looking up the key specified in the
|
|
|
|
signature packet.
|
|
|
|
|
|
|
|
ROOT is a keyblock.
|
|
|
|
|
|
|
|
NODE references a signature packet that appears in the keyblock
|
|
|
|
that should be verified.
|
|
|
|
|
|
|
|
If CHECK_PK is set, the specified key is sometimes preferred for
|
|
|
|
verifying signatures. See the implementation for details.
|
|
|
|
|
|
|
|
If RET_PK is not NULL, the public key that successfully verified
|
|
|
|
the signature is copied into *RET_PK.
|
|
|
|
|
|
|
|
If IS_SELFSIG is not NULL, *IS_SELFSIG is set to 1 if NODE is a
|
|
|
|
self-signature.
|
|
|
|
|
|
|
|
If R_EXPIREDATE is not NULL, *R_EXPIREDATE is set to the expiry
|
|
|
|
date.
|
|
|
|
|
|
|
|
If R_EXPIRED is not NULL, *R_EXPIRED is set to 1 if PK has been
|
|
|
|
expired (0 otherwise). Note: PK being revoked does not cause this
|
|
|
|
function to fail.
|
|
|
|
|
|
|
|
|
|
|
|
If OPT.NO_SIG_CACHE is not set, this function will first check if
|
|
|
|
the result of a previous verification is already cached in the
|
|
|
|
signature packet's data structure. */
|
2003-09-23 19:48:33 +02:00
|
|
|
/* 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
|
2015-10-19 11:15:00 +02:00
|
|
|
check_key_signature2(KBNODE root, KBNODE node, PKT_public_key *check_pk,
|
|
|
|
PKT_public_key *ret_pk, int *is_selfsig,
|
|
|
|
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*/
|
2011-02-04 12:57:53 +01:00
|
|
|
if( is_selfsig ) {
|
|
|
|
u32 keyid[2];
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
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 */
|
2015-10-19 11:06:57 +02:00
|
|
|
if((rc = check_signature_metadata_validity (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 */
|
2011-02-04 12:57:53 +01:00
|
|
|
u32 keyid[2];
|
2003-06-05 09:14:21 +02:00
|
|
|
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 );
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (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 );
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (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));
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_SIG_CLASS;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
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 );
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (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));
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_SIG_CLASS;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
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 );
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (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] )
|
2015-10-19 11:15:00 +02:00
|
|
|
/* The primary key is the signing key. */
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
|
|
|
if( is_selfsig )
|
|
|
|
*is_selfsig = 1;
|
2015-10-19 11:06:57 +02:00
|
|
|
rc = check_signature_end (pk, sig, md, r_expired, NULL, ret_pk);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
else if (check_pk)
|
2015-10-19 11:06:57 +02:00
|
|
|
/* The caller specified a key. Try that. */
|
|
|
|
rc = check_signature_end (check_pk, sig, md,
|
|
|
|
r_expired, NULL, ret_pk);
|
2003-06-05 09:14:21 +02:00
|
|
|
else
|
2015-10-19 11:06:57 +02:00
|
|
|
/* Look up the key. XXX: Could it be that the key is
|
|
|
|
not is not in this keyblock? */
|
|
|
|
rc = check_signature2 (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);
|
2015-01-22 12:06:11 +01:00
|
|
|
rc = GPG_ERR_SIG_CLASS;
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|