2001-11-13 12:50:14 +00:00
|
|
|
/* certpath.c - path validation
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
int
|
|
|
|
gpgsm_validate_path (KsbaCert cert)
|
|
|
|
{
|
|
|
|
int rc = 0, depth = 0;
|
|
|
|
char *issuer = NULL;
|
|
|
|
char *subject = NULL;
|
|
|
|
KEYDB_HANDLE kh = keydb_new (0);
|
|
|
|
KsbaCert subject_cert = NULL, issuer_cert = NULL;
|
|
|
|
|
|
|
|
if (!kh)
|
|
|
|
{
|
|
|
|
log_error (_("failed to allocated keyDB handle\n"));
|
2001-11-24 17:43:43 +00:00
|
|
|
rc = GNUPG_General_Error;
|
2001-11-13 12:50:14 +00:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
2002-01-15 13:02:47 +00:00
|
|
|
if (DBG_X509)
|
|
|
|
gpgsm_dump_cert ("subject", cert);
|
2001-11-13 12:50:14 +00:00
|
|
|
|
|
|
|
subject_cert = cert;
|
|
|
|
|
2002-01-15 13:02:47 +00:00
|
|
|
/* FIXME: We need to check that none of the certs didexpire */
|
|
|
|
|
2001-11-13 12:50:14 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
xfree (issuer);
|
|
|
|
xfree (subject);
|
2001-12-13 13:11:40 +00:00
|
|
|
issuer = ksba_cert_get_issuer (subject_cert, 0);
|
|
|
|
subject = ksba_cert_get_subject (subject_cert, 0);
|
2001-11-13 12:50:14 +00:00
|
|
|
|
|
|
|
if (!issuer)
|
|
|
|
{
|
|
|
|
if (DBG_X509)
|
|
|
|
log_debug ("ERROR: issuer missing\n");
|
2001-11-24 17:43:43 +00:00
|
|
|
rc = GNUPG_Bad_Certificate;
|
2001-11-13 12:50:14 +00:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
2002-01-11 17:07:51 +00:00
|
|
|
if (!opt.no_crl_check)
|
|
|
|
{
|
|
|
|
rc = gpgsm_dirmngr_isvalid (subject_cert);
|
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
switch (rc)
|
|
|
|
{
|
|
|
|
case GNUPG_Certificate_Revoked:
|
|
|
|
log_error (_("the certificate has been revoked\n"));
|
|
|
|
break;
|
|
|
|
case GNUPG_No_CRL_Known:
|
|
|
|
log_error (_("no CRL found for certificate\n"));
|
|
|
|
break;
|
|
|
|
case GNUPG_CRL_Too_Old:
|
|
|
|
log_error (_("the available CRL is too old\n"));
|
|
|
|
log_info (_("please make sure that the "
|
|
|
|
"\"dirmngr\" is properly installed\n"));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_error (_("checking the CRL failed: %s\n"),
|
|
|
|
gnupg_strerror (rc));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-13 12:50:14 +00:00
|
|
|
if (subject && !strcmp (issuer, subject))
|
|
|
|
{
|
|
|
|
if (gpgsm_check_cert_sig (subject_cert, subject_cert) )
|
|
|
|
{
|
2002-01-15 13:02:47 +00:00
|
|
|
log_error ("selfsigned certificate has a BAD signatures\n");
|
2001-11-24 17:43:43 +00:00
|
|
|
rc = depth? GNUPG_Bad_Certificate_Path : GNUPG_Bad_Certificate;
|
2001-11-13 12:50:14 +00:00
|
|
|
goto leave;
|
|
|
|
}
|
2002-01-15 13:02:47 +00:00
|
|
|
rc = gpgsm_agent_istrusted (subject_cert);
|
|
|
|
if (!rc)
|
|
|
|
;
|
|
|
|
else if (rc == GNUPG_Not_Trusted)
|
|
|
|
{
|
|
|
|
char *fpr = gpgsm_get_fingerprint_string (subject_cert,
|
|
|
|
GCRY_MD_SHA1);
|
|
|
|
log_error (_("root certificate is not marked trusted\n"));
|
|
|
|
log_info (_("fingerprint=%s\n"), fpr? fpr : "?");
|
|
|
|
xfree (fpr);
|
|
|
|
/* fixme: print a note while we have not yet the code to
|
|
|
|
ask whether the cert should be netered into the trust
|
|
|
|
list */
|
|
|
|
gpgsm_dump_cert ("issuer", subject_cert);
|
|
|
|
log_info ("after checking the fingerprint, you may want "
|
|
|
|
"to enter it into \"~/.gnupg-test/trustlist.txt\"\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log_error (_("checking the trust list failed: %s\n"),
|
|
|
|
gnupg_strerror (rc));
|
|
|
|
}
|
|
|
|
|
2001-11-13 12:50:14 +00:00
|
|
|
break; /* okay, a self-signed certicate is an end-point */
|
|
|
|
}
|
|
|
|
|
|
|
|
depth++;
|
|
|
|
/* fixme: check against a maximum path length */
|
|
|
|
|
|
|
|
/* find the next cert up the tree */
|
|
|
|
keydb_search_reset (kh);
|
2001-11-16 17:56:23 +00:00
|
|
|
rc = keydb_search_subject (kh, issuer);
|
2001-11-13 12:50:14 +00:00
|
|
|
if (rc)
|
|
|
|
{
|
2002-01-15 13:02:47 +00:00
|
|
|
log_error ("failed to find issuer's certificate: rc=%d\n", rc);
|
2001-11-24 17:43:43 +00:00
|
|
|
rc = GNUPG_Missing_Certificate;
|
2001-11-13 12:50:14 +00:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
ksba_cert_release (issuer_cert); issuer_cert = NULL;
|
|
|
|
rc = keydb_get_cert (kh, &issuer_cert);
|
|
|
|
if (rc)
|
|
|
|
{
|
2002-01-15 13:02:47 +00:00
|
|
|
log_error ("failed to get cert: rc=%d\n", rc);
|
2001-11-24 17:43:43 +00:00
|
|
|
rc = GNUPG_General_Error;
|
2001-11-13 12:50:14 +00:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
2002-01-15 13:02:47 +00:00
|
|
|
if (DBG_X509)
|
|
|
|
{
|
|
|
|
log_debug ("got issuer's certificate:\n");
|
|
|
|
gpgsm_dump_cert ("issuer", issuer_cert);
|
|
|
|
}
|
2001-11-13 12:50:14 +00:00
|
|
|
|
|
|
|
if (gpgsm_check_cert_sig (issuer_cert, subject_cert) )
|
|
|
|
{
|
2002-01-15 13:02:47 +00:00
|
|
|
log_error ("certificate has a BAD signatures\n");
|
2001-11-24 17:43:43 +00:00
|
|
|
rc = GNUPG_Bad_Certificate_Path;
|
2001-11-13 12:50:14 +00:00
|
|
|
goto leave;
|
|
|
|
}
|
2002-01-15 13:02:47 +00:00
|
|
|
if (opt.verbose)
|
|
|
|
log_info ("certificate is good\n");
|
2001-11-13 12:50:14 +00:00
|
|
|
|
|
|
|
keydb_search_reset (kh);
|
|
|
|
subject_cert = issuer_cert;
|
|
|
|
issuer_cert = NULL;
|
|
|
|
}
|
2002-01-11 17:07:51 +00:00
|
|
|
|
|
|
|
if (opt.no_crl_check)
|
|
|
|
log_info ("CRL was not checked due to --no-crl-cechk option\n");
|
|
|
|
|
2001-11-13 12:50:14 +00:00
|
|
|
|
|
|
|
leave:
|
|
|
|
xfree (issuer);
|
|
|
|
keydb_release (kh);
|
|
|
|
ksba_cert_release (issuer_cert);
|
|
|
|
if (subject_cert != cert)
|
|
|
|
ksba_cert_release (subject_cert);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-01-15 13:02:47 +00:00
|
|
|
|
|
|
|
/* Check that the given certificate is valid but DO NOT check any
|
|
|
|
constraints. We assume that the issuers certificate is already in
|
|
|
|
the DB and that this one is valid; which it should be because it
|
|
|
|
has been checked using this function. */
|
|
|
|
int
|
|
|
|
gpgsm_basic_cert_check (KsbaCert cert)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
char *issuer = NULL;
|
|
|
|
char *subject = NULL;
|
|
|
|
KEYDB_HANDLE kh = keydb_new (0);
|
|
|
|
KsbaCert issuer_cert = NULL;
|
|
|
|
|
|
|
|
if (!kh)
|
|
|
|
{
|
|
|
|
log_error (_("failed to allocated keyDB handle\n"));
|
|
|
|
rc = GNUPG_General_Error;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
issuer = ksba_cert_get_issuer (cert, 0);
|
|
|
|
subject = ksba_cert_get_subject (cert, 0);
|
|
|
|
if (!issuer)
|
|
|
|
{
|
|
|
|
if (DBG_X509)
|
|
|
|
log_debug ("ERROR: issuer missing\n");
|
|
|
|
rc = GNUPG_Bad_Certificate;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subject && !strcmp (issuer, subject))
|
|
|
|
{
|
|
|
|
if (gpgsm_check_cert_sig (cert, cert) )
|
|
|
|
{
|
|
|
|
log_error ("selfsigned certificate has a BAD signatures\n");
|
|
|
|
rc = GNUPG_Bad_Certificate;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* find the next cert up the tree */
|
|
|
|
keydb_search_reset (kh);
|
|
|
|
rc = keydb_search_subject (kh, issuer);
|
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("failed to find issuer's certificate: rc=%d\n", rc);
|
|
|
|
rc = GNUPG_Missing_Certificate;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
ksba_cert_release (issuer_cert); issuer_cert = NULL;
|
|
|
|
rc = keydb_get_cert (kh, &issuer_cert);
|
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_error ("failed to get cert: rc=%d\n", rc);
|
|
|
|
rc = GNUPG_General_Error;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gpgsm_check_cert_sig (issuer_cert, cert) )
|
|
|
|
{
|
|
|
|
log_error ("certificate has a BAD signatures\n");
|
|
|
|
rc = GNUPG_Bad_Certificate;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
if (opt.verbose)
|
|
|
|
log_info ("certificate is good\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
leave:
|
|
|
|
xfree (issuer);
|
|
|
|
keydb_release (kh);
|
|
|
|
ksba_cert_release (issuer_cert);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|