1997-11-18 15:06:00 +01:00
|
|
|
/* keydb.h - Key database
|
2000-07-14 19:34:53 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1997-11-18 15:06:00 +01:00
|
|
|
* 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.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1997-11-18 15:06:00 +01:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2000-01-27 17:50:45 +01:00
|
|
|
#ifndef GPG_KEYDB_H
|
|
|
|
#define GPG_KEYDB_H
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
#include "types.h"
|
1999-10-26 14:14:37 +02:00
|
|
|
#include "basicdefs.h"
|
1997-11-24 23:24:04 +01:00
|
|
|
#include "packet.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-07-14 19:10:28 +02:00
|
|
|
#define MAX_FINGERPRINT_LEN 20
|
1997-11-18 15:06:00 +01:00
|
|
|
|
2000-09-18 16:35:34 +02:00
|
|
|
#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)
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-01-24 18:16:40 +01:00
|
|
|
struct getkey_ctx_s;
|
1998-11-08 18:23:14 +01:00
|
|
|
typedef struct getkey_ctx_s *GETKEY_CTX;
|
1997-12-12 13:03:58 +01:00
|
|
|
|
|
|
|
/****************
|
1998-04-14 19:51:16 +02:00
|
|
|
* A Keyblock is all packets which form an entire certificate;
|
1997-12-12 13:03:58 +01:00
|
|
|
* i.e. the public key, certificate, trust packets, user ids,
|
|
|
|
* signatures, and subkey.
|
|
|
|
*
|
|
|
|
* This structure is also used to bind arbitrary packets together.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct kbnode_struct *KBNODE;
|
|
|
|
struct kbnode_struct {
|
1998-02-11 04:25:44 +01:00
|
|
|
KBNODE next;
|
1997-12-12 13:03:58 +01:00
|
|
|
PACKET *pkt;
|
1997-12-19 12:41:47 +01:00
|
|
|
int flag;
|
1998-01-02 21:40:10 +01:00
|
|
|
int private_flag;
|
1998-10-21 19:34:36 +02:00
|
|
|
ulong recno; /* used while updating the trustdb */
|
1997-12-12 13:03:58 +01:00
|
|
|
};
|
|
|
|
|
1999-05-22 22:54:54 +02:00
|
|
|
#define is_deleted_kbnode(a) ((a)->private_flag & 1)
|
|
|
|
#define is_cloned_kbnode(a) ((a)->private_flag & 2)
|
|
|
|
|
1998-10-17 16:47:14 +02:00
|
|
|
|
|
|
|
enum resource_type {
|
|
|
|
rt_UNKNOWN = 0,
|
|
|
|
rt_RING = 1,
|
2000-10-06 14:28:44 +02:00
|
|
|
rt_KBXF = 2
|
1998-10-17 16:47:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
1997-12-12 13:03:58 +01:00
|
|
|
/****************
|
2000-10-06 14:28:44 +02:00
|
|
|
* A data structure to hold information about the external position
|
1997-12-12 13:03:58 +01:00
|
|
|
* of a keyblock.
|
|
|
|
*/
|
2000-10-06 14:28:44 +02:00
|
|
|
struct keyblock_pos_struct;
|
|
|
|
typedef struct keyblock_pos_struct *KBPOS;
|
1997-12-12 13:03:58 +01:00
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
/* structure to hold a couple of public key certificates */
|
1998-06-29 14:30:57 +02:00
|
|
|
struct pk_list {
|
|
|
|
PK_LIST next;
|
|
|
|
PKT_public_key *pk;
|
1997-12-31 13:32:54 +01:00
|
|
|
int mark;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* structure to hold a couple of secret key certificates */
|
1998-06-29 14:30:57 +02:00
|
|
|
struct sk_list {
|
|
|
|
SK_LIST next;
|
|
|
|
PKT_secret_key *sk;
|
1997-12-31 13:32:54 +01:00
|
|
|
int mark;
|
|
|
|
};
|
|
|
|
|
1998-07-14 19:10:28 +02:00
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
/*-- pkclist.c --*/
|
1998-07-09 15:37:17 +02:00
|
|
|
int check_signatures_trust( PKT_signature *sig );
|
1998-06-29 14:30:57 +02:00
|
|
|
void release_pk_list( PK_LIST pk_list );
|
1999-02-16 14:16:33 +01:00
|
|
|
int build_pk_list( STRLIST remusr, PK_LIST *ret_pk_list, unsigned use );
|
1998-08-05 18:51:59 +02:00
|
|
|
int select_algo_from_prefs( PK_LIST pk_list, int preftype );
|
1997-12-12 13:03:58 +01:00
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
/*-- skclist.c --*/
|
1998-06-29 14:30:57 +02:00
|
|
|
void release_sk_list( SK_LIST sk_list );
|
|
|
|
int build_sk_list( STRLIST locusr, SK_LIST *ret_sk_list,
|
1999-02-16 14:16:33 +01:00
|
|
|
int unlock, unsigned use );
|
1997-12-12 13:03:58 +01:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
/*-- passphrase.h --*/
|
1998-09-28 21:25:31 +02:00
|
|
|
int have_static_passphrase(void);
|
|
|
|
void read_passphrase_from_fd( int fd );
|
2000-08-21 17:54:37 +02:00
|
|
|
void passphrase_clear_cache ( u32 *keyid, int algo );
|
1999-07-01 12:53:35 +02:00
|
|
|
DEK *passphrase_to_dek( u32 *keyid, int pubkey_algo,
|
|
|
|
int cipher_algo, STRING2KEY *s2k, int mode);
|
1998-05-26 15:38:00 +02:00
|
|
|
void set_next_passphrase( const char *s );
|
|
|
|
char *get_last_passphrase(void);
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
/*-- getkey.c --*/
|
1998-11-08 18:23:14 +01:00
|
|
|
int classify_user_id( const char *name, u32 *keyid, byte *fprint,
|
|
|
|
const char **retstr, size_t *retlen );
|
1998-12-23 13:41:40 +01:00
|
|
|
void getkey_disable_caches(void);
|
1998-06-29 14:30:57 +02:00
|
|
|
int get_pubkey( PKT_public_key *pk, u32 *keyid );
|
1999-02-19 15:54:00 +01:00
|
|
|
KBNODE get_pubkeyblock( u32 *keyid );
|
1998-11-08 18:23:14 +01:00
|
|
|
int get_pubkey_byname( GETKEY_CTX *rx, PKT_public_key *pk,
|
|
|
|
const char *name, KBNODE *ret_keyblock );
|
1999-01-24 18:16:40 +01:00
|
|
|
int get_pubkey_bynames( GETKEY_CTX *rx, PKT_public_key *pk,
|
|
|
|
STRLIST names, KBNODE *ret_keyblock );
|
1998-11-08 18:23:14 +01:00
|
|
|
int get_pubkey_next( GETKEY_CTX ctx, PKT_public_key *pk, KBNODE *ret_keyblock );
|
|
|
|
void get_pubkey_end( GETKEY_CTX ctx );
|
1998-06-29 14:30:57 +02:00
|
|
|
int get_seckey( PKT_secret_key *sk, u32 *keyid );
|
1999-01-07 18:05:48 +01:00
|
|
|
int get_primary_seckey( PKT_secret_key *sk, u32 *keyid );
|
1998-07-21 14:53:38 +02:00
|
|
|
int get_pubkey_byfprint( PKT_public_key *pk, const byte *fprint,
|
|
|
|
size_t fprint_len );
|
1998-06-13 19:00:02 +02:00
|
|
|
int get_keyblock_byfprint( KBNODE *ret_keyblock, const byte *fprint,
|
|
|
|
size_t fprint_len );
|
1999-03-17 13:13:04 +01:00
|
|
|
int get_keyblock_bylid( KBNODE *ret_keyblock, ulong lid );
|
1998-03-05 10:22:13 +01:00
|
|
|
int seckey_available( u32 *keyid );
|
2000-10-06 14:28:44 +02:00
|
|
|
int get_seckey_byname( GETKEY_CTX *rx,
|
|
|
|
PKT_secret_key *sk, const char *name, int unlock,
|
|
|
|
KBNODE *retblock );
|
1999-01-24 18:16:40 +01:00
|
|
|
int get_seckey_bynames( GETKEY_CTX *rx, PKT_secret_key *sk,
|
|
|
|
STRLIST names, KBNODE *ret_keyblock );
|
|
|
|
int get_seckey_next( GETKEY_CTX ctx, PKT_secret_key *sk, KBNODE *ret_keyblock );
|
|
|
|
void get_seckey_end( GETKEY_CTX ctx );
|
2000-10-06 14:28:44 +02:00
|
|
|
int find_keyblock_byname( KBNODE *retblock, const char *username );
|
|
|
|
int find_secret_keyblock_byname( KBNODE *retblock, const char *username );
|
|
|
|
int find_keyblock_bypk( KBNODE *retblock, PKT_public_key *pk );
|
|
|
|
int find_keyblock_bysk( KBNODE *retblock, PKT_secret_key *sk );
|
|
|
|
|
1998-09-11 07:47:32 +02:00
|
|
|
int enum_secret_keys( void **context, PKT_secret_key *sk, int with_subkeys );
|
1998-09-18 17:24:53 +02:00
|
|
|
void merge_keys_and_selfsig( KBNODE keyblock );
|
2000-10-04 13:16:19 +02:00
|
|
|
void merge_public_with_secret ( KBNODE pubblock, KBNODE secblock );
|
1997-11-18 15:06:00 +01:00
|
|
|
char*get_user_id_string( u32 *keyid );
|
2000-07-14 19:34:53 +02:00
|
|
|
char*get_user_id_string_native( u32 *keyid );
|
1998-12-10 20:20:47 +01:00
|
|
|
char*get_long_user_id_string( u32 *keyid );
|
1997-12-01 11:33:23 +01:00
|
|
|
char*get_user_id( u32 *keyid, size_t *rn );
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-11-24 23:24:04 +01:00
|
|
|
/*-- keyid.c --*/
|
1997-12-16 20:15:09 +01:00
|
|
|
int pubkey_letter( int algo );
|
1998-06-29 14:30:57 +02:00
|
|
|
u32 keyid_from_sk( PKT_secret_key *sk, u32 *keyid );
|
|
|
|
u32 keyid_from_pk( PKT_public_key *pk, u32 *keyid );
|
1997-12-01 11:33:23 +01:00
|
|
|
u32 keyid_from_sig( PKT_signature *sig, u32 *keyid );
|
1998-07-21 14:53:38 +02:00
|
|
|
u32 keyid_from_fingerprint( const byte *fprint, size_t fprint_len, u32 *keyid );
|
1998-06-29 14:30:57 +02:00
|
|
|
unsigned nbits_from_pk( PKT_public_key *pk );
|
|
|
|
unsigned nbits_from_sk( PKT_secret_key *sk );
|
|
|
|
const char *datestr_from_pk( PKT_public_key *pk );
|
|
|
|
const char *datestr_from_sk( PKT_secret_key *sk );
|
1997-12-01 11:33:23 +01:00
|
|
|
const char *datestr_from_sig( PKT_signature *sig );
|
1998-07-29 21:35:05 +02:00
|
|
|
const char *expirestr_from_pk( PKT_public_key *pk );
|
|
|
|
const char *expirestr_from_sk( PKT_secret_key *sk );
|
1998-07-21 14:53:38 +02:00
|
|
|
byte *fingerprint_from_sk( PKT_secret_key *sk, byte *buf, size_t *ret_len );
|
1998-07-14 19:10:28 +02:00
|
|
|
byte *fingerprint_from_pk( PKT_public_key *pk, byte *buf, size_t *ret_len );
|
2000-10-06 14:28:44 +02:00
|
|
|
char *unified_fingerprint_from_pk( PKT_public_key *pk,
|
|
|
|
char *buffer, size_t bufsize );
|
|
|
|
char *unified_fingerprint_from_sk( PKT_secret_key *sk,
|
|
|
|
char *buffer, size_t bufsize );
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1997-12-12 13:03:58 +01:00
|
|
|
/*-- kbnode.c --*/
|
|
|
|
KBNODE new_kbnode( PACKET *pkt );
|
1998-02-17 21:48:52 +01:00
|
|
|
KBNODE clone_kbnode( KBNODE node );
|
1997-12-12 13:03:58 +01:00
|
|
|
void release_kbnode( KBNODE n );
|
1998-02-16 21:05:02 +01:00
|
|
|
void delete_kbnode( KBNODE node );
|
1997-12-16 20:15:09 +01:00
|
|
|
void add_kbnode( KBNODE root, KBNODE node );
|
1998-02-11 04:25:44 +01:00
|
|
|
void insert_kbnode( KBNODE root, KBNODE node, int pkttype );
|
1999-05-22 22:54:54 +02:00
|
|
|
void move_kbnode( KBNODE *root, KBNODE node, KBNODE where );
|
|
|
|
void remove_kbnode( KBNODE *root, KBNODE node );
|
1998-02-11 04:25:44 +01:00
|
|
|
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 );
|
1997-12-19 12:41:47 +01:00
|
|
|
void clear_kbnode_flags( KBNODE n );
|
1998-02-16 21:05:02 +01:00
|
|
|
int commit_kbnode( KBNODE *root );
|
1998-07-29 21:35:05 +02:00
|
|
|
void dump_kbnode( KBNODE node );
|
1997-12-12 13:03:58 +01:00
|
|
|
|
|
|
|
/*-- ringedit.c --*/
|
1998-10-16 18:00:17 +02:00
|
|
|
const char *enum_keyblock_resources( int *sequence, int secret );
|
|
|
|
int add_keyblock_resource( const char *resname, int force, int secret );
|
2000-10-06 14:28:44 +02:00
|
|
|
const char *keyblock_resource_name( KBPOS kbpos );
|
|
|
|
int get_keyblock_handle( const char *filename, int secret, KBPOS kbpos );
|
2000-07-14 19:34:53 +02:00
|
|
|
char *get_writable_keyblock_file( int secret );
|
2000-10-10 14:58:43 +02:00
|
|
|
int enum_keyblocks_begin( KBPOS *kbpos, int mode );
|
|
|
|
int enum_keyblocks_next( KBPOS kbpos, int mode, KBNODE *ret_root );
|
|
|
|
void enum_keyblocks_end( KBPOS kbpos );
|
2000-10-06 14:28:44 +02:00
|
|
|
int insert_keyblock( KBNODE keyblock );
|
|
|
|
int delete_keyblock( KBNODE keyblock );
|
|
|
|
int update_keyblock( KBNODE keyblock );
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
|
2000-01-27 17:50:45 +01:00
|
|
|
#endif /*GPG_KEYDB_H*/
|