2003-06-05 09:14:21 +02:00
|
|
|
/* keydb.h - Key database
|
2006-04-19 13:26:11 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
2010-02-02 15:06:19 +01:00
|
|
|
* 2006, 2010 Free Software Foundation, Inc.
|
2016-02-19 14:48:56 +01:00
|
|
|
* Copyright (C) 2015, 2016 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef G10_KEYDB_H
|
|
|
|
#define G10_KEYDB_H
|
|
|
|
|
|
|
|
#include "types.h"
|
2010-04-21 18:26:17 +02:00
|
|
|
#include "util.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
#include "packet.h"
|
|
|
|
|
|
|
|
/* What qualifies as a certification (rather than a signature?) */
|
|
|
|
#define IS_CERT(s) (IS_KEY_SIG(s) || IS_UID_SIG(s) || IS_SUBKEY_SIG(s) \
|
|
|
|
|| IS_KEY_REV(s) || IS_UID_REV(s) || IS_SUBKEY_REV(s))
|
|
|
|
#define IS_SIG(s) (!IS_CERT(s))
|
|
|
|
#define IS_KEY_SIG(s) ((s)->sig_class == 0x1f)
|
|
|
|
#define IS_UID_SIG(s) (((s)->sig_class & ~3) == 0x10)
|
|
|
|
#define IS_SUBKEY_SIG(s) ((s)->sig_class == 0x18)
|
|
|
|
#define IS_KEY_REV(s) ((s)->sig_class == 0x20)
|
|
|
|
#define IS_UID_REV(s) ((s)->sig_class == 0x30)
|
|
|
|
#define IS_SUBKEY_REV(s) ((s)->sig_class == 0x28)
|
|
|
|
|
|
|
|
struct getkey_ctx_s;
|
|
|
|
typedef struct getkey_ctx_s *GETKEY_CTX;
|
2010-02-02 15:06:19 +01:00
|
|
|
typedef struct getkey_ctx_s *getkey_ctx_t;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* A Keyblock is all packets which form an entire certificate;
|
|
|
|
* i.e. the public key, certificate, trust packets, user ids,
|
|
|
|
* signatures, and subkey.
|
|
|
|
*
|
|
|
|
* This structure is also used to bind arbitrary packets together.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct kbnode_struct {
|
|
|
|
KBNODE next;
|
|
|
|
PACKET *pkt;
|
|
|
|
int flag;
|
|
|
|
int private_flag;
|
|
|
|
ulong recno; /* used while updating the trustdb */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define is_deleted_kbnode(a) ((a)->private_flag & 1)
|
|
|
|
#define is_cloned_kbnode(a) ((a)->private_flag & 2)
|
|
|
|
|
|
|
|
|
|
|
|
enum resource_type {
|
|
|
|
rt_UNKNOWN = 0,
|
|
|
|
rt_RING = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-12-04 08:56:02 +01:00
|
|
|
/* Bit flags used with build_pk_list. */
|
2015-12-17 10:36:27 +01:00
|
|
|
enum
|
|
|
|
{
|
2016-07-06 14:03:50 +02:00
|
|
|
PK_LIST_ENCRYPT_TO = 1, /* This is an encrypt-to recipient. */
|
|
|
|
PK_LIST_HIDDEN = 2, /* This is a hidden recipient. */
|
|
|
|
PK_LIST_CONFIG = 4, /* Specified via config file. */
|
|
|
|
PK_LIST_FROM_FILE = 8 /* Take key from file with that name. */
|
2015-12-17 10:36:27 +01:00
|
|
|
};
|
2016-07-06 14:03:50 +02:00
|
|
|
/* To store private data in the flags the private data must be left
|
|
|
|
shifted by this value. */
|
2015-12-17 10:36:27 +01:00
|
|
|
enum
|
|
|
|
{
|
2016-07-06 14:03:50 +02:00
|
|
|
PK_LIST_SHIFT = 4
|
2015-12-17 10:36:27 +01:00
|
|
|
};
|
2015-12-04 08:56:02 +01:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
/****************
|
2015-09-16 14:01:48 +02:00
|
|
|
* A data structure to hold information about the external position
|
2003-06-05 09:14:21 +02:00
|
|
|
* of a keyblock.
|
|
|
|
*/
|
|
|
|
struct keyblock_pos_struct {
|
|
|
|
int resno; /* resource number */
|
|
|
|
enum resource_type rt;
|
|
|
|
off_t offset; /* position information */
|
|
|
|
unsigned count; /* length of the keyblock in packets */
|
2006-04-19 13:26:11 +02:00
|
|
|
iobuf_t fp; /* Used by enum_keyblocks. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int secret; /* working on a secret keyring */
|
|
|
|
PACKET *pkt; /* ditto */
|
|
|
|
int valid;
|
|
|
|
};
|
|
|
|
typedef struct keyblock_pos_struct KBPOS;
|
|
|
|
|
2009-09-30 17:28:38 +02:00
|
|
|
/* Structure to hold a couple of public key certificates. */
|
|
|
|
typedef struct pk_list *PK_LIST; /* Deprecated. */
|
|
|
|
typedef struct pk_list *pk_list_t;
|
2011-02-04 12:57:53 +01:00
|
|
|
struct pk_list
|
2009-09-30 17:28:38 +02:00
|
|
|
{
|
|
|
|
PK_LIST next;
|
|
|
|
PKT_public_key *pk;
|
2016-07-06 14:03:50 +02:00
|
|
|
int flags; /* See PK_LIST_ constants. */
|
2003-06-05 09:14:21 +02:00
|
|
|
};
|
|
|
|
|
2010-02-02 15:06:19 +01:00
|
|
|
/* Structure to hold a list of secret key certificates. */
|
2003-06-05 09:14:21 +02:00
|
|
|
typedef struct sk_list *SK_LIST;
|
2011-02-04 12:57:53 +01:00
|
|
|
struct sk_list
|
2010-02-02 15:06:19 +01:00
|
|
|
{
|
|
|
|
SK_LIST next;
|
|
|
|
PKT_public_key *pk;
|
|
|
|
int mark; /* not used */
|
2003-06-05 09:14:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* structure to collect all information which can be used to
|
|
|
|
* identify a public key */
|
|
|
|
typedef struct pubkey_find_info *PUBKEY_FIND_INFO;
|
|
|
|
struct pubkey_find_info {
|
|
|
|
u32 keyid[2];
|
|
|
|
unsigned nbits;
|
|
|
|
byte pubkey_algo;
|
|
|
|
byte fingerprint[MAX_FINGERPRINT_LEN];
|
|
|
|
char userid[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct keydb_handle *KEYDB_HANDLE;
|
|
|
|
|
2006-07-27 16:18:55 +02:00
|
|
|
|
|
|
|
/* Helper type for preference fucntions. */
|
|
|
|
union pref_hint
|
|
|
|
{
|
|
|
|
int digest_length;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
/*-- keydb.c --*/
|
|
|
|
|
2012-12-27 15:04:29 +01:00
|
|
|
#define KEYDB_RESOURCE_FLAG_PRIMARY 2 /* The primary resource. */
|
|
|
|
#define KEYDB_RESOURCE_FLAG_DEFAULT 4 /* The default one. */
|
|
|
|
#define KEYDB_RESOURCE_FLAG_READONLY 8 /* Open in read only mode. */
|
2015-08-07 15:53:56 +02:00
|
|
|
#define KEYDB_RESOURCE_FLAG_GPGVDEF 16 /* Default file for gpgv. */
|
2012-12-27 15:04:29 +01:00
|
|
|
|
2015-11-17 11:36:38 +01:00
|
|
|
/* Format a search term for debugging output. The caller must free
|
|
|
|
the result. */
|
|
|
|
char *keydb_search_desc_dump (struct keydb_search_desc *desc);
|
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Register a resource (keyring or keybox). */
|
2012-12-27 15:04:29 +01:00
|
|
|
gpg_error_t keydb_add_resource (const char *url, unsigned int flags);
|
|
|
|
|
2015-08-31 11:14:21 +02:00
|
|
|
/* Dump some statistics to the log. */
|
|
|
|
void keydb_dump_stats (void);
|
|
|
|
|
2015-12-03 12:18:32 +01:00
|
|
|
/* Create a new database handle. Returns NULL on error, sets ERRNO,
|
|
|
|
and prints an error diagnostic. */
|
2010-04-21 18:26:17 +02:00
|
|
|
KEYDB_HANDLE keydb_new (void);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
|
|
|
/* Free all resources owned by the database handle. */
|
2003-06-05 09:14:21 +02:00
|
|
|
void keydb_release (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
|
|
|
/* Set a flag on the handle to suppress use of cached results. This
|
|
|
|
is required for updating a keyring and for key listings. Fixme:
|
|
|
|
Using a new parameter for keydb_new might be a better solution. */
|
2014-10-13 14:01:29 +02:00
|
|
|
void keydb_disable_caching (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Save the last found state and invalidate the current selection. */
|
2015-05-08 15:51:11 +02:00
|
|
|
void keydb_push_found_state (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Restore the previous save state. */
|
2015-05-08 15:51:11 +02:00
|
|
|
void keydb_pop_found_state (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the file name of the resource. */
|
2003-06-05 09:14:21 +02:00
|
|
|
const char *keydb_get_resource_name (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the keyblock last found by keydb_search. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_get_keyblock (KEYDB_HANDLE hd, KBNODE *ret_kb);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Update the keyblock KB. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_update_keyblock (KEYDB_HANDLE hd, kbnode_t kb);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Insert a keyblock into one of the underlying keyrings or keyboxes. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_insert_keyblock (KEYDB_HANDLE hd, kbnode_t kb);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Delete the currently selected keyblock. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_delete_keyblock (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Find the first writable resource. */
|
2015-08-28 16:22:59 +02:00
|
|
|
gpg_error_t keydb_locate_writable (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
|
|
|
/* Rebuild the on-disk caches of all key resources. */
|
2006-04-19 13:26:11 +02:00
|
|
|
void keydb_rebuild_caches (int noisy);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
|
|
|
/* Return the number of skipped blocks (because they were to large to
|
|
|
|
read from a keybox) since the last search reset. */
|
2014-10-09 21:01:49 +02:00
|
|
|
unsigned long keydb_get_skipped_counter (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Clears the current search result and resets the handle's position. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_search_reset (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Search the database for keys matching the search description. */
|
2013-01-08 09:43:21 +01:00
|
|
|
gpg_error_t keydb_search (KEYDB_HANDLE hd, KEYDB_SEARCH_DESC *desc,
|
|
|
|
size_t ndesc, size_t *descindex);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the first non-legacy key in the database. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_search_first (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the next key (not the next matching key!). */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_search_next (KEYDB_HANDLE hd);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
|
|
|
/* This is a convenience function for searching for keys with a long
|
2016-01-11 11:41:49 +01:00
|
|
|
key id. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_search_kid (KEYDB_HANDLE hd, u32 *kid);
|
2015-08-31 11:14:21 +02:00
|
|
|
|
|
|
|
/* This is a convenience function for searching for keys with a long
|
2016-01-11 11:41:49 +01:00
|
|
|
(20 byte) fingerprint. */
|
2011-04-29 15:07:11 +02:00
|
|
|
gpg_error_t keydb_search_fpr (KEYDB_HANDLE hd, const byte *fpr);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2015-06-20 15:03:32 +02:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
/*-- pkclist.c --*/
|
|
|
|
void show_revocation_reason( PKT_public_key *pk, int mode );
|
2016-05-21 11:41:49 +02:00
|
|
|
int check_signatures_trust (ctrl_t ctrl, PKT_signature *sig);
|
2009-09-30 17:28:38 +02:00
|
|
|
|
|
|
|
void release_pk_list (PK_LIST pk_list);
|
2015-12-18 13:26:40 +01:00
|
|
|
int build_pk_list (ctrl_t ctrl, strlist_t rcpts, PK_LIST *ret_pk_list);
|
2010-10-01 22:33:53 +02:00
|
|
|
gpg_error_t find_and_check_key (ctrl_t ctrl,
|
2011-02-04 12:57:53 +01:00
|
|
|
const char *name, unsigned int use,
|
2016-07-06 14:03:50 +02:00
|
|
|
int mark_hidden, int from_file,
|
|
|
|
pk_list_t *pk_list_addr);
|
2009-09-30 17:28:38 +02:00
|
|
|
|
2006-07-27 16:18:55 +02:00
|
|
|
int algo_available( preftype_t preftype, int algo,
|
|
|
|
const union pref_hint *hint );
|
2003-06-05 09:14:21 +02:00
|
|
|
int select_algo_from_prefs( PK_LIST pk_list, int preftype,
|
2006-07-27 16:18:55 +02:00
|
|
|
int request, const union pref_hint *hint);
|
2003-06-05 09:14:21 +02:00
|
|
|
int select_mdc_from_pklist (PK_LIST pk_list);
|
2006-11-05 16:08:58 +01:00
|
|
|
void warn_missing_mdc_from_pklist (PK_LIST pk_list);
|
|
|
|
void warn_missing_aes_from_pklist (PK_LIST pk_list);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
/*-- skclist.c --*/
|
2006-08-21 22:20:23 +02:00
|
|
|
int random_is_faked (void);
|
2003-06-05 09:14:21 +02:00
|
|
|
void release_sk_list( SK_LIST sk_list );
|
2015-11-03 23:15:27 +01:00
|
|
|
gpg_error_t build_sk_list (ctrl_t ctrl, strlist_t locusr,
|
|
|
|
SK_LIST *ret_sk_list, unsigned use);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
/*-- passphrase.h --*/
|
2010-01-08 20:18:49 +01:00
|
|
|
unsigned char encode_s2k_iterations (int iterations);
|
2003-06-05 09:14:21 +02:00
|
|
|
int have_static_passphrase(void);
|
2013-02-07 20:37:58 +01:00
|
|
|
const char *get_static_passphrase (void);
|
2006-04-19 13:26:11 +02:00
|
|
|
void set_passphrase_from_string(const char *pass);
|
2003-06-05 09:14:21 +02:00
|
|
|
void read_passphrase_from_fd( int fd );
|
2016-08-08 18:45:29 +02:00
|
|
|
void passphrase_clear_cache (const char *cacheid);
|
2009-05-15 21:26:46 +02:00
|
|
|
DEK *passphrase_to_dek_ext(u32 *keyid, int pubkey_algo,
|
|
|
|
int cipher_algo, STRING2KEY *s2k, int mode,
|
|
|
|
const char *tryagain_text,
|
|
|
|
const char *custdesc, const char *custprompt,
|
|
|
|
int *canceled);
|
2016-08-08 18:45:29 +02:00
|
|
|
DEK *passphrase_to_dek (int cipher_algo, STRING2KEY *s2k,
|
|
|
|
int create, int nocache,
|
2003-06-05 09:14:21 +02:00
|
|
|
const char *tryagain_text, int *canceled);
|
|
|
|
void set_next_passphrase( const char *s );
|
|
|
|
char *get_last_passphrase(void);
|
2006-04-19 13:26:11 +02:00
|
|
|
void next_to_last_passphrase(void);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2013-02-07 20:37:58 +01:00
|
|
|
void emit_status_need_passphrase (u32 *keyid, u32 *mainkeyid, int pubkey_algo);
|
|
|
|
|
2014-04-14 14:40:18 +02:00
|
|
|
#define FORMAT_KEYDESC_NORMAL 0
|
|
|
|
#define FORMAT_KEYDESC_IMPORT 1
|
|
|
|
#define FORMAT_KEYDESC_EXPORT 2
|
2014-04-15 16:40:48 +02:00
|
|
|
#define FORMAT_KEYDESC_DELKEY 3
|
2010-09-06 21:57:42 +02:00
|
|
|
char *gpg_format_keydesc (PKT_public_key *pk, int mode, int escaped);
|
2010-04-27 16:11:41 +02:00
|
|
|
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
/*-- getkey.c --*/
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Cache a copy of a public key in the public key cache. */
|
2003-06-05 09:14:21 +02:00
|
|
|
void cache_public_key( PKT_public_key *pk );
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Disable and drop the public key cache. */
|
2003-06-05 09:14:21 +02:00
|
|
|
void getkey_disable_caches(void);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the public key with the key id KEYID and store it at PK. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int get_pubkey( PKT_public_key *pk, u32 *keyid );
|
2015-09-16 14:01:48 +02:00
|
|
|
|
|
|
|
/* Similar to get_pubkey, but it does not take PK->REQ_USAGE into
|
|
|
|
account nor does it merge in the self-signed data. This function
|
2016-01-11 11:41:49 +01:00
|
|
|
also only considers primary keys. */
|
|
|
|
int get_pubkey_fast (PKT_public_key *pk, u32 *keyid);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the key block for the key with KEYID. */
|
|
|
|
kbnode_t get_pubkeyblock (u32 *keyid);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2015-12-22 14:57:53 +01:00
|
|
|
/* A list used by get_pubkeys to gather all of the matches. */
|
2015-12-23 15:45:20 +01:00
|
|
|
struct pubkey_s
|
2015-12-22 14:57:53 +01:00
|
|
|
{
|
2015-12-23 15:45:20 +01:00
|
|
|
struct pubkey_s *next;
|
2015-12-22 14:57:53 +01:00
|
|
|
/* The key to use (either the public key or the subkey). */
|
|
|
|
PKT_public_key *pk;
|
|
|
|
kbnode_t keyblock;
|
|
|
|
};
|
2015-12-23 15:45:20 +01:00
|
|
|
typedef struct pubkey_s *pubkey_t;
|
2015-12-22 14:57:53 +01:00
|
|
|
|
|
|
|
/* Free a single key. This does not remove key from any list! */
|
2015-12-23 15:45:20 +01:00
|
|
|
void pubkey_free (pubkey_t key);
|
2015-12-22 14:57:53 +01:00
|
|
|
|
|
|
|
/* Free a list of public keys. */
|
2015-12-23 15:45:20 +01:00
|
|
|
void pubkeys_free (pubkey_t keys);
|
2015-12-22 14:57:53 +01:00
|
|
|
|
|
|
|
/* Returns all keys that match the search specfication SEARCH_TERMS.
|
|
|
|
The returned keys should be freed using pubkeys_free. */
|
|
|
|
gpg_error_t
|
|
|
|
get_pubkeys (ctrl_t ctrl,
|
|
|
|
char *search_terms, int use, int include_unusable, char *source,
|
|
|
|
int warn_possibly_ambiguous,
|
2015-12-23 15:45:20 +01:00
|
|
|
pubkey_t *r_keys);
|
2015-12-22 14:57:53 +01:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Find a public key identified by NAME. */
|
2010-10-01 22:33:53 +02:00
|
|
|
int get_pubkey_byname (ctrl_t ctrl,
|
2015-09-16 14:01:48 +02:00
|
|
|
GETKEY_CTX *retctx, PKT_public_key *pk,
|
|
|
|
const char *name,
|
2003-06-05 09:14:21 +02:00
|
|
|
KBNODE *ret_keyblock, KEYDB_HANDLE *ret_kdbhd,
|
2008-04-08 13:04:16 +02:00
|
|
|
int include_unusable, int no_akl );
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-07-06 14:03:50 +02:00
|
|
|
/* Get a public key directly from file FNAME. */
|
|
|
|
gpg_error_t get_pubkey_fromfile (ctrl_t ctrl,
|
|
|
|
PKT_public_key *pk, const char *fname);
|
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the public key with the key id KEYID iff the secret key is
|
|
|
|
* available and store it at PK. */
|
2010-04-21 18:26:17 +02:00
|
|
|
gpg_error_t get_seckey (PKT_public_key *pk, u32 *keyid);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Lookup a key with the specified fingerprint. */
|
2015-05-07 12:01:12 +02:00
|
|
|
int get_pubkey_byfprint (PKT_public_key *pk, kbnode_t *r_keyblock,
|
|
|
|
const byte *fprint, size_t fprint_len);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
|
|
|
/* This function is similar to get_pubkey_byfprint, but it doesn't
|
|
|
|
merge the self-signed data into the public key and subkeys or into
|
2016-01-11 11:41:49 +01:00
|
|
|
the user ids. */
|
2003-06-05 09:14:21 +02:00
|
|
|
int get_pubkey_byfprint_fast (PKT_public_key *pk,
|
|
|
|
const byte *fprint, size_t fprint_len);
|
2006-04-19 13:26:11 +02:00
|
|
|
|
2015-12-03 12:18:32 +01:00
|
|
|
/* Returns true if a secret key is available for the public key with
|
|
|
|
key id KEYID. */
|
2010-04-21 18:26:17 +02:00
|
|
|
int have_secret_key_with_kid (u32 *keyid);
|
|
|
|
|
2015-11-03 23:39:46 +01:00
|
|
|
/* Parse the --default-key parameter. Returns the last key (in terms
|
|
|
|
of when the option is given) that is available. */
|
|
|
|
const char *parse_def_secret_key (ctrl_t ctrl);
|
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Look up a secret key. */
|
2015-11-03 23:15:27 +01:00
|
|
|
gpg_error_t get_seckey_default (ctrl_t ctrl, PKT_public_key *pk);
|
2010-04-21 18:26:17 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Search for keys matching some criteria. */
|
2010-02-02 15:06:19 +01:00
|
|
|
gpg_error_t getkey_bynames (getkey_ctx_t *retctx, PKT_public_key *pk,
|
|
|
|
strlist_t names, int want_secret,
|
|
|
|
kbnode_t *ret_keyblock);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Search for one key matching some criteria. */
|
2015-11-03 23:15:27 +01:00
|
|
|
gpg_error_t getkey_byname (ctrl_t ctrl,
|
|
|
|
getkey_ctx_t *retctx, PKT_public_key *pk,
|
2010-02-02 15:06:19 +01:00
|
|
|
const char *name, int want_secret,
|
|
|
|
kbnode_t *ret_keyblock);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Return the next search result. */
|
2010-02-02 15:06:19 +01:00
|
|
|
gpg_error_t getkey_next (getkey_ctx_t ctx, PKT_public_key *pk,
|
|
|
|
kbnode_t *ret_keyblock);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Release any resources used by a key listing context. */
|
2010-02-02 15:06:19 +01:00
|
|
|
void getkey_end (getkey_ctx_t ctx);
|
|
|
|
|
2015-09-16 14:01:48 +02:00
|
|
|
/* Return the database handle used by this context. The context still
|
|
|
|
owns the handle. */
|
|
|
|
KEYDB_HANDLE get_ctx_handle(GETKEY_CTX ctx);
|
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Enumerate some secret keys. */
|
2015-11-03 23:15:27 +01:00
|
|
|
gpg_error_t enum_secret_keys (ctrl_t ctrl, void **context, PKT_public_key *pk);
|
2010-02-02 15:06:19 +01:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* Set the mainkey_id fields for all keys in KEYBLOCK. */
|
2014-04-15 16:40:48 +02:00
|
|
|
void setup_main_keyids (kbnode_t keyblock);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2016-01-11 11:41:49 +01:00
|
|
|
/* This function merges information from the self-signed data into the
|
|
|
|
data structures. */
|
|
|
|
void merge_keys_and_selfsig (kbnode_t keyblock);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
char*get_user_id_string_native( u32 *keyid );
|
2003-06-05 09:14:21 +02:00
|
|
|
char*get_long_user_id_string( u32 *keyid );
|
|
|
|
char*get_user_id( u32 *keyid, size_t *rn );
|
2006-04-19 13:26:11 +02:00
|
|
|
char*get_user_id_native( u32 *keyid );
|
2014-10-13 14:54:26 +02:00
|
|
|
char *get_user_id_byfpr (const byte *fpr, size_t *rn);
|
|
|
|
char *get_user_id_byfpr_native (const byte *fpr);
|
2015-09-16 14:01:48 +02:00
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
void release_akl(void);
|
|
|
|
int parse_auto_key_locate(char *options);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
/*-- keyid.c --*/
|
|
|
|
int pubkey_letter( int algo );
|
2014-02-05 10:37:59 +01:00
|
|
|
char *pubkey_string (PKT_public_key *pk, char *buffer, size_t bufsize);
|
|
|
|
#define PUBKEY_STRING_SIZE 32
|
2006-05-23 18:19:43 +02:00
|
|
|
u32 v3_keyid (gcry_mpi_t a, u32 *ki);
|
2006-04-19 13:26:11 +02:00
|
|
|
void hash_public_key( gcry_md_hd_t md, PKT_public_key *pk );
|
2016-02-08 00:31:35 +01:00
|
|
|
char *format_keyid (u32 *keyid, int format, char *buffer, int len);
|
2016-02-19 14:48:56 +01:00
|
|
|
|
|
|
|
/* Return PK's keyid. The memory is owned by PK. */
|
|
|
|
u32 *pk_keyid (PKT_public_key *pk);
|
|
|
|
|
|
|
|
/* Return the keyid of the primary key associated with PK. The memory
|
|
|
|
is owned by PK. */
|
|
|
|
u32 *pk_main_keyid (PKT_public_key *pk);
|
|
|
|
|
|
|
|
/* Order A and B. If A < B then return -1, if A == B then return 0,
|
|
|
|
and if A > B then return 1. */
|
|
|
|
static int GPGRT_ATTR_UNUSED
|
|
|
|
keyid_cmp (const u32 *a, const u32 *b)
|
|
|
|
{
|
|
|
|
if (a[0] < b[0])
|
|
|
|
return -1;
|
|
|
|
if (a[0] > b[0])
|
|
|
|
return 1;
|
|
|
|
if (a[1] < b[1])
|
|
|
|
return -1;
|
|
|
|
if (a[1] > b[1])
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy the keyid in SRC to DEST and return DEST. */
|
|
|
|
u32 *keyid_copy (u32 *dest, const u32 *src);
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
size_t keystrlen(void);
|
|
|
|
const char *keystr(u32 *keyid);
|
2010-08-31 17:58:39 +02:00
|
|
|
const char *keystr_with_sub (u32 *main_kid, u32 *sub_kid);
|
2006-04-19 13:26:11 +02:00
|
|
|
const char *keystr_from_pk(PKT_public_key *pk);
|
2010-08-31 17:58:39 +02:00
|
|
|
const char *keystr_from_pk_with_sub (PKT_public_key *main_pk,
|
|
|
|
PKT_public_key *sub_pk);
|
2016-02-19 14:48:56 +01:00
|
|
|
|
|
|
|
/* Return PK's key id as a string using the default format. PK owns
|
|
|
|
the storage. */
|
|
|
|
const char *pk_keyid_str (PKT_public_key *pk);
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
const char *keystr_from_desc(KEYDB_SEARCH_DESC *desc);
|
2003-06-05 09:14:21 +02:00
|
|
|
u32 keyid_from_pk( PKT_public_key *pk, u32 *keyid );
|
|
|
|
u32 keyid_from_sig( PKT_signature *sig, u32 *keyid );
|
2006-04-19 13:26:11 +02:00
|
|
|
u32 keyid_from_fingerprint(const byte *fprint, size_t fprint_len, u32 *keyid);
|
2003-06-05 09:14:21 +02:00
|
|
|
byte *namehash_from_uid(PKT_user_id *uid);
|
|
|
|
unsigned nbits_from_pk( PKT_public_key *pk );
|
|
|
|
const char *datestr_from_pk( PKT_public_key *pk );
|
|
|
|
const char *datestr_from_sig( PKT_signature *sig );
|
|
|
|
const char *expirestr_from_pk( PKT_public_key *pk );
|
|
|
|
const char *expirestr_from_sig( PKT_signature *sig );
|
2006-04-19 13:26:11 +02:00
|
|
|
const char *revokestr_from_pk( PKT_public_key *pk );
|
2014-08-12 10:36:30 +02:00
|
|
|
const char *usagestr_from_pk (PKT_public_key *pk, int fill);
|
2003-06-05 09:14:21 +02:00
|
|
|
const char *colon_strtime (u32 t);
|
|
|
|
const char *colon_datestr_from_pk (PKT_public_key *pk);
|
|
|
|
const char *colon_datestr_from_sig (PKT_signature *sig);
|
|
|
|
const char *colon_expirestr_from_sig (PKT_signature *sig);
|
|
|
|
byte *fingerprint_from_pk( PKT_public_key *pk, byte *buf, size_t *ret_len );
|
2015-11-14 09:13:02 +01:00
|
|
|
char *hexfingerprint (PKT_public_key *pk, char *buffer, size_t buflen);
|
|
|
|
char *format_hexfingerprint (const char *fingerprint,
|
|
|
|
char *buffer, size_t buflen);
|
2010-04-20 19:57:50 +02:00
|
|
|
gpg_error_t keygrip_from_pk (PKT_public_key *pk, unsigned char *array);
|
|
|
|
gpg_error_t hexkeygrip_from_pk (PKT_public_key *pk, char **r_grip);
|
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
/*-- kbnode.c --*/
|
|
|
|
KBNODE new_kbnode( PACKET *pkt );
|
|
|
|
KBNODE clone_kbnode( KBNODE node );
|
|
|
|
void release_kbnode( KBNODE n );
|
|
|
|
void delete_kbnode( KBNODE node );
|
|
|
|
void add_kbnode( KBNODE root, KBNODE node );
|
|
|
|
void insert_kbnode( KBNODE root, KBNODE node, int pkttype );
|
|
|
|
void move_kbnode( KBNODE *root, KBNODE node, KBNODE where );
|
|
|
|
void remove_kbnode( KBNODE *root, KBNODE node );
|
|
|
|
KBNODE find_prev_kbnode( KBNODE root, KBNODE node, int pkttype );
|
|
|
|
KBNODE find_next_kbnode( KBNODE node, int pkttype );
|
|
|
|
KBNODE find_kbnode( KBNODE node, int pkttype );
|
|
|
|
KBNODE walk_kbnode( KBNODE root, KBNODE *context, int all );
|
|
|
|
void clear_kbnode_flags( KBNODE n );
|
|
|
|
int commit_kbnode( KBNODE *root );
|
|
|
|
void dump_kbnode( KBNODE node );
|
|
|
|
|
|
|
|
#endif /*G10_KEYDB_H*/
|