2015-09-02 15:07:06 +02:00
|
|
|
/* test-stubs.c - The GnuPG signature verify utility
|
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005, 2006,
|
|
|
|
* 2008, 2009, 2012 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define INCLUDED_BY_MAIN_MODULE 1
|
|
|
|
#include "gpg.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "iobuf.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
#include "trustdb.h"
|
|
|
|
#include "filter.h"
|
|
|
|
#include "ttyio.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
#include "sysutils.h"
|
|
|
|
#include "status.h"
|
|
|
|
#include "call-agent.h"
|
|
|
|
|
|
|
|
int g10_errors_seen;
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
g10_exit( int rc )
|
|
|
|
{
|
|
|
|
rc = rc? rc : log_get_errorcount(0)? 2 : g10_errors_seen? 1 : 0;
|
|
|
|
exit(rc );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Stub:
|
|
|
|
* We have to override the trustcheck from pkclist.c becuase
|
|
|
|
* this utility assumes that all keys in the keyring are trustworthy
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
check_signatures_trust( PKT_signature *sig )
|
|
|
|
{
|
|
|
|
(void)sig;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
read_trust_options(byte *trust_model, ulong *created, ulong *nextcheck,
|
|
|
|
byte *marginals, byte *completes, byte *cert_depth,
|
|
|
|
byte *min_cert_level)
|
|
|
|
{
|
|
|
|
(void)trust_model;
|
|
|
|
(void)created;
|
|
|
|
(void)nextcheck;
|
|
|
|
(void)marginals;
|
|
|
|
(void)completes;
|
|
|
|
(void)cert_depth;
|
|
|
|
(void)min_cert_level;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stub:
|
|
|
|
* We don't have the trustdb , so we have to provide some stub functions
|
|
|
|
* instead
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
cache_disabled_value(PKT_public_key *pk)
|
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
check_trustdb_stale(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
get_validity_info (PKT_public_key *pk, PKT_user_id *uid)
|
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
(void)uid;
|
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
g10: Add TOFU support.
* configure.ac: Check for sqlite3.
(SQLITE3_CFLAGS): AC_SUBST it.
(SQLITE3_LIBS): Likewise.
* g10/Makefile.am (AM_CFLAGS): Add $(SQLITE3_CFLAGS).
(gpg2_SOURCES): Add tofu.h and tofu.c.
(gpg2_LDADD): Add $(SQLITE3_LIBS).
* g10/tofu.c: New file.
* g10/tofu.h: New file.
* g10/options.h (trust_model): Define TM_TOFU and TM_TOFU_PGP.
(tofu_db_format): Define.
* g10/packet.h (PKT_signature): Add fields digest and digest_len.
* g10/gpg.c: Include "tofu.h".
(cmd_and_opt_values): Declare aTOFUPolicy, oTOFUDefaultPolicy,
oTOFUDBFormat.
(opts): Add them.
(parse_trust_model): Recognize the tofu and tofu+pgp trust models.
(parse_tofu_policy): New function.
(parse_tofu_db_format): New function.
(main): Initialize opt.tofu_default_policy and opt.tofu_db_format.
Handle aTOFUPolicy, oTOFUDefaultPolicy and oTOFUDBFormat.
* g10/mainproc.c (do_check_sig): If the signature is good, copy the
hash to SIG->DIGEST and set SIG->DIGEST_LEN appropriately.
* g10/trustdb.h (get_validity): Add arguments sig and may_ask. Update
callers.
(tdb_get_validity_core): Add arguments sig and may_ask. Update
callers.
* g10/trust.c (get_validity) Add arguments sig and may_ask. Pass them
to tdb_get_validity_core.
* g10/trustdb.c: Include "tofu.h".
(trust_model_string): Handle TM_TOFU and TM_TOFU_PGP.
(tdb_get_validity_core): Add arguments sig and may_ask. If
OPT.TRUST_MODEL is TM_TOFU or TM_TOFU_PGP, compute the TOFU trust
level. Combine it with the computed PGP trust level, if appropriate.
* g10/keyedit.c: Include "tofu.h".
(show_key_with_all_names_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/keylist.c: Include "tofu.h".
(public_key_list): Also show the PGP stats if the trust model is
TM_TOFU_PGP.
(list_keyblock_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/pkclist.c: Include "tofu.h".
* g10/gpgv.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* g10/test-stubs.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* doc/DETAILS: Describe the TOFU Policy field.
* doc/gpg.texi: Document --tofu-set-policy, --trust-model=tofu,
--trust-model=tofu+pgp, --tofu-default-policy and --tofu-db-format.
* tests/openpgp/Makefile.am (TESTS): Add tofu.test.
(TEST_FILES): Add tofu-keys.asc, tofu-keys-secret.asc,
tofu-2183839A-1.txt, tofu-BC15C85A-1.txt and tofu-EE37CF96-1.txt.
(CLEANFILES): Add tofu.db.
(clean-local): Add tofu.d.
* tests/openpgp/tofu.test: New file.
* tests/openpgp/tofu-2183839A-1.txt: New file.
* tests/openpgp/tofu-BC15C85A-1.txt: New file.
* tests/openpgp/tofu-EE37CF96-1.txt: New file.
* tests/openpgp/tofu-keys.asc: New file.
* tests/openpgp/tofu-keys-secret.asc: New file.
--
Signed-off-by: Neal H. Walfield <neal@g10code.com>.
2015-10-18 18:44:05 +02:00
|
|
|
get_validity (PKT_public_key *pk, PKT_user_id *uid, PKT_signature *sig,
|
|
|
|
int may_ask)
|
2015-09-02 15:07:06 +02:00
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
(void)uid;
|
g10: Add TOFU support.
* configure.ac: Check for sqlite3.
(SQLITE3_CFLAGS): AC_SUBST it.
(SQLITE3_LIBS): Likewise.
* g10/Makefile.am (AM_CFLAGS): Add $(SQLITE3_CFLAGS).
(gpg2_SOURCES): Add tofu.h and tofu.c.
(gpg2_LDADD): Add $(SQLITE3_LIBS).
* g10/tofu.c: New file.
* g10/tofu.h: New file.
* g10/options.h (trust_model): Define TM_TOFU and TM_TOFU_PGP.
(tofu_db_format): Define.
* g10/packet.h (PKT_signature): Add fields digest and digest_len.
* g10/gpg.c: Include "tofu.h".
(cmd_and_opt_values): Declare aTOFUPolicy, oTOFUDefaultPolicy,
oTOFUDBFormat.
(opts): Add them.
(parse_trust_model): Recognize the tofu and tofu+pgp trust models.
(parse_tofu_policy): New function.
(parse_tofu_db_format): New function.
(main): Initialize opt.tofu_default_policy and opt.tofu_db_format.
Handle aTOFUPolicy, oTOFUDefaultPolicy and oTOFUDBFormat.
* g10/mainproc.c (do_check_sig): If the signature is good, copy the
hash to SIG->DIGEST and set SIG->DIGEST_LEN appropriately.
* g10/trustdb.h (get_validity): Add arguments sig and may_ask. Update
callers.
(tdb_get_validity_core): Add arguments sig and may_ask. Update
callers.
* g10/trust.c (get_validity) Add arguments sig and may_ask. Pass them
to tdb_get_validity_core.
* g10/trustdb.c: Include "tofu.h".
(trust_model_string): Handle TM_TOFU and TM_TOFU_PGP.
(tdb_get_validity_core): Add arguments sig and may_ask. If
OPT.TRUST_MODEL is TM_TOFU or TM_TOFU_PGP, compute the TOFU trust
level. Combine it with the computed PGP trust level, if appropriate.
* g10/keyedit.c: Include "tofu.h".
(show_key_with_all_names_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/keylist.c: Include "tofu.h".
(public_key_list): Also show the PGP stats if the trust model is
TM_TOFU_PGP.
(list_keyblock_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/pkclist.c: Include "tofu.h".
* g10/gpgv.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* g10/test-stubs.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* doc/DETAILS: Describe the TOFU Policy field.
* doc/gpg.texi: Document --tofu-set-policy, --trust-model=tofu,
--trust-model=tofu+pgp, --tofu-default-policy and --tofu-db-format.
* tests/openpgp/Makefile.am (TESTS): Add tofu.test.
(TEST_FILES): Add tofu-keys.asc, tofu-keys-secret.asc,
tofu-2183839A-1.txt, tofu-BC15C85A-1.txt and tofu-EE37CF96-1.txt.
(CLEANFILES): Add tofu.db.
(clean-local): Add tofu.d.
* tests/openpgp/tofu.test: New file.
* tests/openpgp/tofu-2183839A-1.txt: New file.
* tests/openpgp/tofu-BC15C85A-1.txt: New file.
* tests/openpgp/tofu-EE37CF96-1.txt: New file.
* tests/openpgp/tofu-keys.asc: New file.
* tests/openpgp/tofu-keys-secret.asc: New file.
--
Signed-off-by: Neal H. Walfield <neal@g10code.com>.
2015-10-18 18:44:05 +02:00
|
|
|
(void)sig;
|
|
|
|
(void)may_ask;
|
2015-09-02 15:07:06 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
trust_value_to_string (unsigned int value)
|
|
|
|
{
|
|
|
|
(void)value;
|
|
|
|
return "err";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
uid_trust_string_fixed (PKT_public_key *key, PKT_user_id *uid)
|
|
|
|
{
|
|
|
|
(void)key;
|
|
|
|
(void)uid;
|
|
|
|
return "err";
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
get_ownertrust_info (PKT_public_key *pk)
|
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
return '?';
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
get_ownertrust (PKT_public_key *pk)
|
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
return TRUST_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Stubs:
|
|
|
|
* Because we only work with trusted keys, it does not make sense to
|
|
|
|
* get them from a keyserver
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct keyserver_spec *
|
|
|
|
keyserver_match (struct keyserver_spec *spec)
|
|
|
|
{
|
|
|
|
(void)spec;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
keyserver_import_keyid (u32 *keyid, void *dummy)
|
|
|
|
{
|
|
|
|
(void)keyid;
|
|
|
|
(void)dummy;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
keyserver_import_cert (const char *name)
|
|
|
|
{
|
|
|
|
(void)name;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
keyserver_import_pka (const char *name,unsigned char *fpr)
|
|
|
|
{
|
|
|
|
(void)name;
|
|
|
|
(void)fpr;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
keyserver_import_name (const char *name,struct keyserver_spec *spec)
|
|
|
|
{
|
|
|
|
(void)name;
|
|
|
|
(void)spec;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
keyserver_import_ldap (const char *name)
|
|
|
|
{
|
|
|
|
(void)name;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stub:
|
|
|
|
* No encryption here but mainproc links to these functions.
|
|
|
|
*/
|
|
|
|
gpg_error_t
|
|
|
|
get_session_key (PKT_pubkey_enc *k, DEK *dek)
|
|
|
|
{
|
|
|
|
(void)k;
|
|
|
|
(void)dek;
|
|
|
|
return GPG_ERR_GENERAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stub: */
|
|
|
|
gpg_error_t
|
|
|
|
get_override_session_key (DEK *dek, const char *string)
|
|
|
|
{
|
|
|
|
(void)dek;
|
|
|
|
(void)string;
|
|
|
|
return GPG_ERR_GENERAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stub: */
|
|
|
|
int
|
|
|
|
decrypt_data (ctrl_t ctrl, void *procctx, PKT_encrypted *ed, DEK *dek)
|
|
|
|
{
|
|
|
|
(void)ctrl;
|
|
|
|
(void)procctx;
|
|
|
|
(void)ed;
|
|
|
|
(void)dek;
|
|
|
|
return GPG_ERR_GENERAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Stub:
|
|
|
|
* No interactive commands, so we don't need the helptexts
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
display_online_help (const char *keyword)
|
|
|
|
{
|
|
|
|
(void)keyword;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stub:
|
|
|
|
* We don't use secret keys, but getkey.c links to this
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
check_secret_key (PKT_public_key *pk, int n)
|
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
(void)n;
|
|
|
|
return GPG_ERR_GENERAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stub:
|
|
|
|
* No secret key, so no passphrase needed
|
|
|
|
*/
|
|
|
|
DEK *
|
|
|
|
passphrase_to_dek (u32 *keyid, int pubkey_algo,
|
|
|
|
int cipher_algo, STRING2KEY *s2k, int mode,
|
|
|
|
const char *tmp, int *canceled)
|
|
|
|
{
|
|
|
|
(void)keyid;
|
|
|
|
(void)pubkey_algo;
|
|
|
|
(void)cipher_algo;
|
|
|
|
(void)s2k;
|
|
|
|
(void)mode;
|
|
|
|
(void)tmp;
|
|
|
|
|
|
|
|
if (canceled)
|
|
|
|
*canceled = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
passphrase_clear_cache (u32 *keyid, const char *cacheid, int algo)
|
|
|
|
{
|
|
|
|
(void)keyid;
|
|
|
|
(void)cacheid;
|
|
|
|
(void)algo;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct keyserver_spec *
|
|
|
|
parse_preferred_keyserver(PKT_signature *sig)
|
|
|
|
{
|
|
|
|
(void)sig;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct keyserver_spec *
|
|
|
|
parse_keyserver_uri (const char *uri, int require_scheme,
|
|
|
|
const char *configname, unsigned int configlineno)
|
|
|
|
{
|
|
|
|
(void)uri;
|
|
|
|
(void)require_scheme;
|
|
|
|
(void)configname;
|
|
|
|
(void)configlineno;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
free_keyserver_spec (struct keyserver_spec *keyserver)
|
|
|
|
{
|
|
|
|
(void)keyserver;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stubs to avoid linking to photoid.c */
|
|
|
|
void
|
|
|
|
show_photos (const struct user_attribute *attrs, int count, PKT_public_key *pk)
|
|
|
|
{
|
|
|
|
(void)attrs;
|
|
|
|
(void)count;
|
|
|
|
(void)pk;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
parse_image_header (const struct user_attribute *attr, byte *type, u32 *len)
|
|
|
|
{
|
|
|
|
(void)attr;
|
|
|
|
(void)type;
|
|
|
|
(void)len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
image_type_to_string (byte type, int string)
|
|
|
|
{
|
|
|
|
(void)type;
|
|
|
|
(void)string;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ENABLE_CARD_SUPPORT
|
|
|
|
int
|
|
|
|
agent_scd_getattr (const char *name, struct agent_card_info_s *info)
|
|
|
|
{
|
|
|
|
(void)name;
|
|
|
|
(void)info;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* ENABLE_CARD_SUPPORT */
|
|
|
|
|
|
|
|
/* We do not do any locking, so use these stubs here */
|
|
|
|
void
|
|
|
|
dotlock_disable (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
dotlock_t
|
|
|
|
dotlock_create (const char *file_to_lock, unsigned int flags)
|
|
|
|
{
|
|
|
|
(void)file_to_lock;
|
|
|
|
(void)flags;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dotlock_destroy (dotlock_t h)
|
|
|
|
{
|
|
|
|
(void)h;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dotlock_take (dotlock_t h, long timeout)
|
|
|
|
{
|
|
|
|
(void)h;
|
|
|
|
(void)timeout;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dotlock_release (dotlock_t h)
|
|
|
|
{
|
|
|
|
(void)h;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dotlock_remove_lockfiles (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
gpg_error_t
|
|
|
|
agent_probe_secret_key (ctrl_t ctrl, PKT_public_key *pk)
|
|
|
|
{
|
|
|
|
(void)ctrl;
|
|
|
|
(void)pk;
|
|
|
|
return gpg_error (GPG_ERR_NO_SECKEY);
|
|
|
|
}
|
|
|
|
|
|
|
|
gpg_error_t
|
|
|
|
agent_probe_any_secret_key (ctrl_t ctrl, kbnode_t keyblock)
|
|
|
|
{
|
|
|
|
(void)ctrl;
|
|
|
|
(void)keyblock;
|
|
|
|
return gpg_error (GPG_ERR_NO_SECKEY);
|
|
|
|
}
|
|
|
|
|
|
|
|
gpg_error_t
|
|
|
|
agent_get_keyinfo (ctrl_t ctrl, const char *hexkeygrip, char **r_serialno)
|
|
|
|
{
|
|
|
|
(void)ctrl;
|
|
|
|
(void)hexkeygrip;
|
|
|
|
*r_serialno = NULL;
|
|
|
|
return gpg_error (GPG_ERR_NO_SECKEY);
|
|
|
|
}
|
|
|
|
|
|
|
|
gpg_error_t
|
|
|
|
gpg_dirmngr_get_pka (ctrl_t ctrl, const char *userid,
|
|
|
|
unsigned char **r_fpr, size_t *r_fprlen,
|
|
|
|
char **r_url)
|
|
|
|
{
|
|
|
|
(void)ctrl;
|
|
|
|
(void)userid;
|
|
|
|
if (r_fpr)
|
|
|
|
*r_fpr = NULL;
|
|
|
|
if (r_fprlen)
|
|
|
|
*r_fprlen = 0;
|
|
|
|
if (r_url)
|
|
|
|
*r_url = NULL;
|
|
|
|
return gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
}
|
2015-10-08 15:04:45 +02:00
|
|
|
|
|
|
|
gpg_error_t
|
|
|
|
export_pubkey_buffer (ctrl_t ctrl, const char *keyspec, unsigned int options,
|
|
|
|
kbnode_t *r_keyblock, void **r_data, size_t *r_datalen)
|
|
|
|
{
|
|
|
|
(void)ctrl;
|
|
|
|
(void)keyspec;
|
|
|
|
(void)options;
|
|
|
|
|
|
|
|
*r_keyblock = NULL;
|
|
|
|
*r_data = NULL;
|
|
|
|
*r_datalen = 0;
|
|
|
|
return gpg_error (GPG_ERR_NOT_IMPLEMENTED);
|
|
|
|
}
|
g10: Add TOFU support.
* configure.ac: Check for sqlite3.
(SQLITE3_CFLAGS): AC_SUBST it.
(SQLITE3_LIBS): Likewise.
* g10/Makefile.am (AM_CFLAGS): Add $(SQLITE3_CFLAGS).
(gpg2_SOURCES): Add tofu.h and tofu.c.
(gpg2_LDADD): Add $(SQLITE3_LIBS).
* g10/tofu.c: New file.
* g10/tofu.h: New file.
* g10/options.h (trust_model): Define TM_TOFU and TM_TOFU_PGP.
(tofu_db_format): Define.
* g10/packet.h (PKT_signature): Add fields digest and digest_len.
* g10/gpg.c: Include "tofu.h".
(cmd_and_opt_values): Declare aTOFUPolicy, oTOFUDefaultPolicy,
oTOFUDBFormat.
(opts): Add them.
(parse_trust_model): Recognize the tofu and tofu+pgp trust models.
(parse_tofu_policy): New function.
(parse_tofu_db_format): New function.
(main): Initialize opt.tofu_default_policy and opt.tofu_db_format.
Handle aTOFUPolicy, oTOFUDefaultPolicy and oTOFUDBFormat.
* g10/mainproc.c (do_check_sig): If the signature is good, copy the
hash to SIG->DIGEST and set SIG->DIGEST_LEN appropriately.
* g10/trustdb.h (get_validity): Add arguments sig and may_ask. Update
callers.
(tdb_get_validity_core): Add arguments sig and may_ask. Update
callers.
* g10/trust.c (get_validity) Add arguments sig and may_ask. Pass them
to tdb_get_validity_core.
* g10/trustdb.c: Include "tofu.h".
(trust_model_string): Handle TM_TOFU and TM_TOFU_PGP.
(tdb_get_validity_core): Add arguments sig and may_ask. If
OPT.TRUST_MODEL is TM_TOFU or TM_TOFU_PGP, compute the TOFU trust
level. Combine it with the computed PGP trust level, if appropriate.
* g10/keyedit.c: Include "tofu.h".
(show_key_with_all_names_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/keylist.c: Include "tofu.h".
(public_key_list): Also show the PGP stats if the trust model is
TM_TOFU_PGP.
(list_keyblock_colon): If the trust mode is tofu or
tofu+pgp, then show the trust policy.
* g10/pkclist.c: Include "tofu.h".
* g10/gpgv.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* g10/test-stubs.c (get_validity): Add arguments sig and may_ask.
(enum tofu_policy): Define.
(tofu_get_policy): New stub.
(tofu_policy_str): Likewise.
* doc/DETAILS: Describe the TOFU Policy field.
* doc/gpg.texi: Document --tofu-set-policy, --trust-model=tofu,
--trust-model=tofu+pgp, --tofu-default-policy and --tofu-db-format.
* tests/openpgp/Makefile.am (TESTS): Add tofu.test.
(TEST_FILES): Add tofu-keys.asc, tofu-keys-secret.asc,
tofu-2183839A-1.txt, tofu-BC15C85A-1.txt and tofu-EE37CF96-1.txt.
(CLEANFILES): Add tofu.db.
(clean-local): Add tofu.d.
* tests/openpgp/tofu.test: New file.
* tests/openpgp/tofu-2183839A-1.txt: New file.
* tests/openpgp/tofu-BC15C85A-1.txt: New file.
* tests/openpgp/tofu-EE37CF96-1.txt: New file.
* tests/openpgp/tofu-keys.asc: New file.
* tests/openpgp/tofu-keys-secret.asc: New file.
--
Signed-off-by: Neal H. Walfield <neal@g10code.com>.
2015-10-18 18:44:05 +02:00
|
|
|
|
|
|
|
gpg_error_t
|
|
|
|
tofu_get_policy (PKT_public_key *pk, PKT_user_id *user_id,
|
|
|
|
enum tofu_policy *policy)
|
|
|
|
{
|
|
|
|
(void)pk;
|
|
|
|
(void)user_id;
|
|
|
|
(void)policy;
|
|
|
|
return gpg_error (GPG_ERR_GENERAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
tofu_policy_str (enum tofu_policy policy)
|
|
|
|
{
|
|
|
|
(void)policy;
|
|
|
|
|
|
|
|
return "unknown";
|
|
|
|
}
|
2015-10-23 17:23:17 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
tofu_begin_batch_update (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tofu_end_batch_update (void)
|
|
|
|
{
|
|
|
|
}
|