2001-11-13 13:50:14 +01:00
|
|
|
/* certcheck.c - check one certificate
|
|
|
|
* Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* 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 <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <gcrypt.h>
|
|
|
|
#include <ksba.h>
|
|
|
|
|
|
|
|
#include "gpgsm.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
|
2001-11-16 18:56:23 +01:00
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
static int
|
2001-11-16 18:56:23 +01:00
|
|
|
do_encode_md (GCRY_MD_HD md, int algo, unsigned int nbits,
|
|
|
|
GCRY_MPI *r_val)
|
2001-11-13 13:50:14 +01:00
|
|
|
{
|
|
|
|
int nframe = (nbits+7) / 8;
|
|
|
|
byte *frame;
|
|
|
|
int i, n;
|
2001-11-16 18:56:23 +01:00
|
|
|
byte asn[100];
|
|
|
|
size_t asnlen;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
asnlen = DIM(asn);
|
|
|
|
if (gcry_md_algo_info (algo, GCRYCTL_GET_ASNOID, asn, &asnlen))
|
|
|
|
{
|
|
|
|
log_error ("No object identifier for algo %d\n", algo);
|
2001-11-24 18:43:43 +01:00
|
|
|
return GNUPG_Internal_Error;
|
2001-11-16 18:56:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
len = gcry_md_get_algo_dlen (algo);
|
2001-11-13 13:50:14 +01:00
|
|
|
|
|
|
|
if ( len + asnlen + 4 > nframe )
|
|
|
|
{
|
|
|
|
log_error ("can't encode a %d bit MD into a %d bits frame\n",
|
|
|
|
(int)(len*8), (int)nbits);
|
2001-11-24 18:43:43 +01:00
|
|
|
return GNUPG_Internal_Error;
|
2001-11-13 13:50:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We encode the MD in this way:
|
|
|
|
*
|
|
|
|
* 0 A PAD(n bytes) 0 ASN(asnlen bytes) MD(len bytes)
|
|
|
|
*
|
|
|
|
* PAD consists of FF bytes.
|
|
|
|
*/
|
|
|
|
frame = xtrymalloc (nframe);
|
|
|
|
if (!frame)
|
2001-11-24 18:43:43 +01:00
|
|
|
return GNUPG_Out_Of_Core;
|
2001-11-13 13:50:14 +01:00
|
|
|
n = 0;
|
|
|
|
frame[n++] = 0;
|
|
|
|
frame[n++] = 1; /* block type */
|
|
|
|
i = nframe - len - asnlen -3 ;
|
|
|
|
assert ( i > 1 );
|
|
|
|
memset ( frame+n, 0xff, i ); n += i;
|
|
|
|
frame[n++] = 0;
|
|
|
|
memcpy ( frame+n, asn, asnlen ); n += asnlen;
|
|
|
|
memcpy ( frame+n, gcry_md_read(md, algo), len ); n += len;
|
|
|
|
assert ( n == nframe );
|
2001-11-16 18:56:23 +01:00
|
|
|
if (DBG_X509)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
log_debug ("encoded hash:");
|
|
|
|
for (j=0; j < nframe; j++)
|
|
|
|
log_printf (" %02X", frame[j]);
|
|
|
|
log_printf ("\n");
|
|
|
|
}
|
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
gcry_mpi_scan (r_val, GCRYMPI_FMT_USG, frame, &nframe);
|
|
|
|
xfree (frame);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Check the signature on CERT using the ISSUER-CERT. This function
|
|
|
|
does only test the cryptographic signature and nothing else. It is
|
|
|
|
assumed that the ISSUER_CERT is valid. */
|
|
|
|
int
|
|
|
|
gpgsm_check_cert_sig (KsbaCert issuer_cert, KsbaCert cert)
|
|
|
|
{
|
2001-11-20 19:28:53 +01:00
|
|
|
const char *algoid;
|
2001-11-13 13:50:14 +01:00
|
|
|
GCRY_MD_HD md;
|
|
|
|
int rc, algo;
|
|
|
|
GCRY_MPI frame;
|
2001-12-18 18:37:48 +01:00
|
|
|
KsbaSexp p;
|
|
|
|
size_t n;
|
2001-11-13 13:50:14 +01:00
|
|
|
GCRY_SEXP s_sig, s_hash, s_pkey;
|
|
|
|
|
2001-11-20 19:28:53 +01:00
|
|
|
algo = gcry_md_map_name ( (algoid=ksba_cert_get_digest_algo (cert)));
|
|
|
|
if (!algo)
|
|
|
|
{
|
|
|
|
log_error ("unknown hash algorithm `%s'\n", algoid? algoid:"?");
|
2001-11-24 18:43:43 +01:00
|
|
|
return GNUPG_General_Error;
|
2001-11-20 19:28:53 +01:00
|
|
|
}
|
2001-11-13 13:50:14 +01:00
|
|
|
md = gcry_md_open (algo, 0);
|
|
|
|
if (!md)
|
|
|
|
{
|
|
|
|
log_error ("md_open failed: %s\n", gcry_strerror (-1));
|
2001-11-24 18:43:43 +01:00
|
|
|
return GNUPG_General_Error;
|
2001-11-13 13:50:14 +01:00
|
|
|
}
|
2002-09-19 14:59:57 +02:00
|
|
|
if (DBG_HASHING)
|
|
|
|
gcry_md_start_debug (md, "hash.cert");
|
2001-11-13 13:50:14 +01:00
|
|
|
|
|
|
|
rc = ksba_cert_hash (cert, 1, HASH_FNC, md);
|
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("ksba_cert_hash failed: %s\n", ksba_strerror (rc));
|
|
|
|
gcry_md_close (md);
|
|
|
|
return map_ksba_err (rc);
|
|
|
|
}
|
|
|
|
gcry_md_final (md);
|
|
|
|
|
2001-12-18 18:37:48 +01:00
|
|
|
p = ksba_cert_get_sig_val (cert);
|
|
|
|
n = gcry_sexp_canon_len (p, 0, NULL, NULL);
|
|
|
|
if (!n)
|
|
|
|
{
|
|
|
|
log_error ("libksba did not return a proper S-Exp\n");
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_md_close (md);
|
|
|
|
ksba_free (p);
|
2001-12-18 18:37:48 +01:00
|
|
|
return GNUPG_Bug;
|
|
|
|
}
|
2002-09-19 14:59:57 +02:00
|
|
|
if (DBG_X509)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
log_debug ("signature value:");
|
|
|
|
for (j=0; j < n; j++)
|
|
|
|
log_printf (" %02X", p[j]);
|
|
|
|
log_printf ("\n");
|
|
|
|
}
|
|
|
|
|
2001-12-18 18:37:48 +01:00
|
|
|
rc = gcry_sexp_sscan ( &s_sig, NULL, p, n);
|
2002-08-09 20:12:22 +02:00
|
|
|
ksba_free (p);
|
2001-11-13 13:50:14 +01:00
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("gcry_sexp_scan failed: %s\n", gcry_strerror (rc));
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_md_close (md);
|
2001-11-13 13:50:14 +01:00
|
|
|
return map_gcry_err (rc);
|
|
|
|
}
|
|
|
|
|
2001-11-16 18:56:23 +01:00
|
|
|
p = ksba_cert_get_public_key (issuer_cert);
|
2001-12-18 18:37:48 +01:00
|
|
|
n = gcry_sexp_canon_len (p, 0, NULL, NULL);
|
|
|
|
if (!n)
|
|
|
|
{
|
|
|
|
log_error ("libksba did not return a proper S-Exp\n");
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_md_close (md);
|
|
|
|
ksba_free (p);
|
|
|
|
gcry_sexp_release (s_sig);
|
2001-12-18 18:37:48 +01:00
|
|
|
return GNUPG_Bug;
|
|
|
|
}
|
|
|
|
rc = gcry_sexp_sscan ( &s_pkey, NULL, p, n);
|
2002-08-09 20:12:22 +02:00
|
|
|
ksba_free (p);
|
2001-11-16 18:56:23 +01:00
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("gcry_sexp_scan failed: %s\n", gcry_strerror (rc));
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_md_close (md);
|
|
|
|
gcry_sexp_release (s_sig);
|
2001-11-16 18:56:23 +01:00
|
|
|
return map_gcry_err (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = do_encode_md (md, algo, gcry_pk_get_nbits (s_pkey), &frame);
|
2001-11-13 13:50:14 +01:00
|
|
|
if (rc)
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_md_close (md);
|
|
|
|
gcry_sexp_release (s_sig);
|
|
|
|
gcry_sexp_release (s_pkey);
|
2001-11-13 13:50:14 +01:00
|
|
|
return rc;
|
|
|
|
}
|
2002-08-09 20:12:22 +02:00
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
/* put hash into the S-Exp s_hash */
|
|
|
|
if ( gcry_sexp_build (&s_hash, NULL, "%m", frame) )
|
|
|
|
BUG ();
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_mpi_release (frame);
|
2002-09-19 14:59:57 +02:00
|
|
|
|
2001-11-16 18:56:23 +01:00
|
|
|
|
|
|
|
rc = gcry_pk_verify (s_sig, s_hash, s_pkey);
|
|
|
|
if (DBG_CRYPTO)
|
|
|
|
log_debug ("gcry_pk_verify: %s\n", gcry_strerror (rc));
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_md_close (md);
|
|
|
|
gcry_sexp_release (s_sig);
|
|
|
|
gcry_sexp_release (s_hash);
|
|
|
|
gcry_sexp_release (s_pkey);
|
2001-11-16 18:56:23 +01:00
|
|
|
return map_gcry_err (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-12-18 18:37:48 +01:00
|
|
|
gpgsm_check_cms_signature (KsbaCert cert, KsbaConstSexp sigval,
|
2001-11-16 18:56:23 +01:00
|
|
|
GCRY_MD_HD md, int algo)
|
|
|
|
{
|
|
|
|
int rc;
|
2001-12-18 18:37:48 +01:00
|
|
|
KsbaSexp p;
|
2001-11-24 15:26:27 +01:00
|
|
|
GCRY_MPI frame;
|
2001-11-16 18:56:23 +01:00
|
|
|
GCRY_SEXP s_sig, s_hash, s_pkey;
|
2001-12-18 18:37:48 +01:00
|
|
|
size_t n;
|
2001-11-16 18:56:23 +01:00
|
|
|
|
2001-12-18 18:37:48 +01:00
|
|
|
n = gcry_sexp_canon_len (sigval, 0, NULL, NULL);
|
|
|
|
if (!n)
|
|
|
|
{
|
|
|
|
log_error ("libksba did not return a proper S-Exp\n");
|
|
|
|
return GNUPG_Bug;
|
|
|
|
}
|
|
|
|
rc = gcry_sexp_sscan (&s_sig, NULL, sigval, n);
|
2001-11-16 18:56:23 +01:00
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("gcry_sexp_scan failed: %s\n", gcry_strerror (rc));
|
|
|
|
return map_gcry_err (rc);
|
|
|
|
}
|
|
|
|
|
2001-12-18 18:37:48 +01:00
|
|
|
p = ksba_cert_get_public_key (cert);
|
|
|
|
n = gcry_sexp_canon_len (p, 0, NULL, NULL);
|
|
|
|
if (!n)
|
|
|
|
{
|
|
|
|
log_error ("libksba did not return a proper S-Exp\n");
|
2002-08-09 20:12:22 +02:00
|
|
|
ksba_free (p);
|
|
|
|
gcry_sexp_release (s_sig);
|
2001-12-18 18:37:48 +01:00
|
|
|
return GNUPG_Bug;
|
|
|
|
}
|
2002-03-05 16:56:46 +01:00
|
|
|
if (DBG_X509)
|
|
|
|
log_printhex ("public key: ", p, n);
|
|
|
|
|
2001-12-18 18:37:48 +01:00
|
|
|
rc = gcry_sexp_sscan ( &s_pkey, NULL, p, n);
|
2002-08-09 20:12:22 +02:00
|
|
|
ksba_free (p);
|
2001-11-13 13:50:14 +01:00
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("gcry_sexp_scan failed: %s\n", gcry_strerror (rc));
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_sexp_release (s_sig);
|
2001-11-13 13:50:14 +01:00
|
|
|
return map_gcry_err (rc);
|
|
|
|
}
|
2001-11-24 15:26:27 +01:00
|
|
|
|
2001-11-16 18:56:23 +01:00
|
|
|
|
|
|
|
rc = do_encode_md (md, algo, gcry_pk_get_nbits (s_pkey), &frame);
|
|
|
|
if (rc)
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_sexp_release (s_sig);
|
|
|
|
gcry_sexp_release (s_pkey);
|
2001-11-16 18:56:23 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
/* put hash into the S-Exp s_hash */
|
|
|
|
if ( gcry_sexp_build (&s_hash, NULL, "%m", frame) )
|
|
|
|
BUG ();
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_mpi_release (frame);
|
|
|
|
|
2001-11-13 13:50:14 +01:00
|
|
|
|
|
|
|
rc = gcry_pk_verify (s_sig, s_hash, s_pkey);
|
|
|
|
if (DBG_CRYPTO)
|
|
|
|
log_debug ("gcry_pk_verify: %s\n", gcry_strerror (rc));
|
2002-08-09 20:12:22 +02:00
|
|
|
gcry_sexp_release (s_sig);
|
|
|
|
gcry_sexp_release (s_hash);
|
|
|
|
gcry_sexp_release (s_sig);
|
2001-11-13 13:50:14 +01:00
|
|
|
return map_gcry_err (rc);
|
|
|
|
}
|
|
|
|
|
2001-11-24 15:26:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
gpgsm_create_cms_signature (KsbaCert cert, GCRY_MD_HD md, int mdalgo,
|
|
|
|
char **r_sigval)
|
|
|
|
{
|
2001-11-25 19:23:06 +01:00
|
|
|
int rc;
|
|
|
|
char *grip;
|
|
|
|
size_t siglen;
|
|
|
|
|
|
|
|
grip = gpgsm_get_keygrip_hexstring (cert);
|
|
|
|
if (!grip)
|
|
|
|
return seterr (Bad_Certificate);
|
|
|
|
|
|
|
|
rc = gpgsm_agent_pksign (grip, gcry_md_read(md, mdalgo),
|
|
|
|
gcry_md_get_algo_dlen (mdalgo), mdalgo,
|
|
|
|
r_sigval, &siglen);
|
|
|
|
xfree (grip);
|
|
|
|
return rc;
|
2001-11-24 15:26:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-25 19:18:40 +01:00
|
|
|
|