mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
56ca164684
* dirmngr/server.c (cmd_getinfo): New sub-command "stats". (dirmngr_status_helpf): Allow for a CTRL of NULL. * dirmngr/certcache.c (cert_cache_print_stats): Add arg ctrl and use dirmngr_status_helpf. Adjust all callers. * dirmngr/domaininfo.c (domaininfo_print_stats): Ditto. * sm/certchain.c (ask_marktrusted): Flush stdout before printing the fingerprint.
129 lines
5.1 KiB
C
129 lines
5.1 KiB
C
/* certcache.h - Certificate caching
|
|
* Copyright (C) 2004, 2008 g10 Code GmbH
|
|
*
|
|
* This file is part of DirMngr.
|
|
*
|
|
* DirMngr 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.
|
|
*
|
|
* DirMngr 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
|
|
*/
|
|
|
|
#ifndef CERTCACHE_H
|
|
#define CERTCACHE_H
|
|
|
|
/* The origin of the trusted root certificates. */
|
|
enum {
|
|
CERTTRUST_CLASS_SYSTEM = 1, /* From the system's list of trusted certs. */
|
|
CERTTRUST_CLASS_CONFIG = 2, /* From dirmngr's config files. */
|
|
CERTTRUST_CLASS_HKP = 4, /* From --hkp-cacert */
|
|
CERTTRUST_CLASS_HKPSPOOL= 8, /* The one and only from sks-keyservers */
|
|
};
|
|
|
|
|
|
/* First time initialization of the certificate cache. */
|
|
void cert_cache_init (strlist_t hkp_cacerts);
|
|
|
|
/* Deinitialize the certificate cache. */
|
|
void cert_cache_deinit (int full);
|
|
|
|
/* Print some statistics to the log file. */
|
|
void cert_cache_print_stats (ctrl_t ctrl);
|
|
|
|
/* Return true if any cert of a class in MASK is permanently loaded. */
|
|
int cert_cache_any_in_class (unsigned int mask);
|
|
|
|
/* Compute the fingerprint of the certificate CERT and put it into
|
|
the 20 bytes large buffer DIGEST. Return address of this buffer. */
|
|
unsigned char *cert_compute_fpr (ksba_cert_t cert, unsigned char *digest);
|
|
|
|
/* Put CERT into the certificate cache. */
|
|
gpg_error_t cache_cert (ksba_cert_t cert);
|
|
|
|
/* Put CERT into the certificate cache and return the fingerprint. */
|
|
gpg_error_t cache_cert_silent (ksba_cert_t cert, void *fpr_buffer);
|
|
|
|
/* Return 0 if the certificate is a trusted certificate. Returns
|
|
* GPG_ERR_NOT_TRUSTED if it is not trusted or other error codes in
|
|
* case of systems errors. TRUSTCLASSES are the bitwise ORed
|
|
* CERTTRUST_CLASS values to use for the check. */
|
|
gpg_error_t is_trusted_cert (ksba_cert_t cert, unsigned trustclasses);
|
|
|
|
/* Return a certificate object for the given fingerprint. FPR is
|
|
expected to be a 20 byte binary SHA-1 fingerprint. If no matching
|
|
certificate is available in the cache NULL is returned. The caller
|
|
must release a returned certificate. */
|
|
ksba_cert_t get_cert_byfpr (const unsigned char *fpr);
|
|
|
|
/* Return a certificate object for the given fingerprint. STRING is
|
|
expected to be a SHA-1 fingerprint in standard hex notation with or
|
|
without colons. If no matching certificate is available in the
|
|
cache NULL is returned. The caller must release a returned
|
|
certificate. */
|
|
ksba_cert_t get_cert_byhexfpr (const char *string);
|
|
|
|
/* Return the certificate matching ISSUER_DN and SERIALNO. */
|
|
ksba_cert_t get_cert_bysn (const char *issuer_dn, ksba_sexp_t serialno);
|
|
|
|
/* Return the certificate matching ISSUER_DN. SEQ should initially be
|
|
set to 0 and bumped up to get the next issuer with that DN. */
|
|
ksba_cert_t get_cert_byissuer (const char *issuer_dn, unsigned int seq);
|
|
|
|
/* Return the certificate matching SUBJECT_DN. SEQ should initially be
|
|
set to 0 and bumped up to get the next issuer with that DN. */
|
|
ksba_cert_t get_cert_bysubject (const char *subject_dn, unsigned int seq);
|
|
|
|
/* Given PATTERN, which is a string as used by GnuPG to specify a
|
|
certificate, return all matching certificates by calling the
|
|
supplied function RETFNC. */
|
|
gpg_error_t get_certs_bypattern (const char *pattern,
|
|
gpg_error_t (*retfnc)(void*,ksba_cert_t),
|
|
void *retfnc_data);
|
|
|
|
/* Return the certificate matching ISSUER_DN and SERIALNO; if it is
|
|
not already in the cache, try to find it from other resources. */
|
|
ksba_cert_t find_cert_bysn (ctrl_t ctrl,
|
|
const char *issuer_dn, ksba_sexp_t serialno);
|
|
|
|
|
|
/* Return the certificate matching SUBJECT_DN and (if not NULL) KEYID. If
|
|
it is not already in the cache, try to find it from other
|
|
resources. Note, that the external search does not work for user
|
|
certificates because the LDAP lookup is on the caCertificate
|
|
attribute. For our purposes this is just fine. */
|
|
ksba_cert_t find_cert_bysubject (ctrl_t ctrl,
|
|
const char *subject_dn, ksba_sexp_t keyid);
|
|
|
|
/* Given the certificate CERT locate the issuer for this certificate
|
|
and return it at R_CERT. Returns 0 on success or
|
|
GPG_ERR_NOT_FOUND. */
|
|
gpg_error_t find_issuing_cert (ctrl_t ctrl,
|
|
ksba_cert_t cert, ksba_cert_t *r_cert);
|
|
|
|
|
|
|
|
/* A simple list of certificates. */
|
|
struct certlist_s
|
|
{
|
|
struct certlist_s *next;
|
|
ksba_cert_t cert;
|
|
unsigned char fpr[20]; /* of the certificate. */
|
|
};
|
|
typedef struct certlist_s *certlist_t;
|
|
|
|
gpg_error_t read_certlist_from_stream (certlist_t *r_certlist, estream_t fp);
|
|
void release_certlist (certlist_t cl);
|
|
|
|
|
|
|
|
#endif /*CERTCACHE_H*/
|