1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00
gnupg/g10/getkey.c

1250 lines
31 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* getkey.c - Get a key from the database
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +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-02-24 19:50:46 +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
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
1998-01-26 23:09:01 +01:00
#include <ctype.h>
1997-11-18 15:06:00 +01:00
#include "util.h"
#include "packet.h"
#include "memory.h"
#include "iobuf.h"
#include "keydb.h"
#include "options.h"
1998-06-25 12:19:08 +02:00
#include "main.h"
1998-09-28 21:25:31 +02:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
1998-10-12 22:16:38 +02:00
#define MAX_UNK_CACHE_ENTRIES 1000
#define MAX_PK_CACHE_ENTRIES 50
#define MAX_UID_CACHE_ENTRIES 50
1997-11-18 15:06:00 +01:00
1998-10-16 18:00:17 +02:00
static struct {
int any;
int okay_count;
int nokey_count;
int error_count;
} lkup_stats[21];
1997-11-18 15:06:00 +01:00
1998-01-13 20:04:23 +01:00
1997-11-18 15:06:00 +01:00
1998-10-12 22:16:38 +02:00
#if MAX_UNK_CACHE_ENTRIES
typedef struct keyid_list {
struct keyid_list *next;
u32 keyid[2];
} *keyid_list_t;
static keyid_list_t unknown_keyids;
static int unk_cache_entries; /* number of entries in unknown keys cache */
static int unk_cache_disabled;
#endif
#if MAX_PK_CACHE_ENTRIES
typedef struct pk_cache_entry {
struct pk_cache_entry *next;
u32 keyid[2];
PKT_public_key *pk;
} *pk_cache_entry_t;
static pk_cache_entry_t pk_cache;
static int pk_cache_entries; /* number of entries in pk cache */
static int pk_cache_disabled;
#endif
#if MAX_UID_CACHE_ENTRIES < 5
#error we really need the userid cache
#endif
typedef struct user_id_db {
struct user_id_db *next;
u32 keyid[2];
int len;
char name[1];
} *user_id_db_t;
1997-11-18 15:06:00 +01:00
static user_id_db_t user_id_db;
1998-10-12 22:16:38 +02:00
static int uid_cache_entries; /* number of entries in uid cache */
1997-11-18 15:06:00 +01:00
1998-06-29 14:30:57 +02:00
static int lookup( PKT_public_key *pk,
1998-04-08 21:49:02 +02:00
int mode, u32 *keyid, const char *name,
1998-08-11 19:29:34 +02:00
KBNODE *ret_keyblock, int primary );
1998-06-29 14:30:57 +02:00
static int lookup_sk( PKT_secret_key *sk,
1998-08-11 19:29:34 +02:00
int mode, u32 *keyid, const char *name, int primary );
1997-11-18 15:06:00 +01:00
1997-12-12 13:03:58 +01:00
1998-01-05 20:13:15 +01:00
1998-10-16 18:00:17 +02:00
static void
print_stats()
1997-12-12 13:03:58 +01:00
{
1998-10-16 18:00:17 +02:00
int i;
for(i=0; i < DIM(lkup_stats); i++ ) {
if( lkup_stats[i].any )
fprintf(stderr,
"lookup stats: mode=%-2d ok=%-6d nokey=%-6d err=%-6d\n",
i,
lkup_stats[i].okay_count,
lkup_stats[i].nokey_count,
lkup_stats[i].error_count );
1998-02-12 00:22:09 +01:00
}
1997-11-18 15:06:00 +01:00
}
1998-10-16 18:00:17 +02:00
1998-03-19 16:27:29 +01:00
static void
1998-06-29 14:30:57 +02:00
cache_public_key( PKT_public_key *pk )
1997-11-18 15:06:00 +01:00
{
1998-10-12 22:16:38 +02:00
#if MAX_PK_CACHE_ENTRIES
1998-06-29 14:30:57 +02:00
pk_cache_entry_t ce;
1997-11-18 15:06:00 +01:00
u32 keyid[2];
1998-10-12 22:16:38 +02:00
if( pk_cache_disabled )
return;
1998-06-29 14:30:57 +02:00
if( is_ELGAMAL(pk->pubkey_algo)
|| pk->pubkey_algo == PUBKEY_ALGO_DSA
|| is_RSA(pk->pubkey_algo) ) {
keyid_from_pk( pk, keyid );
1997-11-18 15:06:00 +01:00
}
else
return; /* don't know how to get the keyid */
1998-06-29 14:30:57 +02:00
for( ce = pk_cache; ce; ce = ce->next )
1997-11-18 15:06:00 +01:00
if( ce->keyid[0] == keyid[0] && ce->keyid[1] == keyid[1] ) {
if( DBG_CACHE )
1998-06-29 14:30:57 +02:00
log_debug("cache_public_key: already in cache\n");
1997-11-18 15:06:00 +01:00
return;
}
1998-10-12 22:16:38 +02:00
if( pk_cache_entries >= MAX_PK_CACHE_ENTRIES ) {
/* fixme: use another algorithm to free some cache slots */
pk_cache_disabled=1;
log_info("too many entries in pk cache - disabled\n");
return;
1997-11-18 15:06:00 +01:00
}
1998-10-12 22:16:38 +02:00
pk_cache_entries++;
ce = m_alloc( sizeof *ce );
ce->next = pk_cache;
pk_cache = ce;
1998-06-29 14:30:57 +02:00
ce->pk = copy_public_key( NULL, pk );
1997-11-18 15:06:00 +01:00
ce->keyid[0] = keyid[0];
ce->keyid[1] = keyid[1];
1998-10-12 22:16:38 +02:00
#endif
1997-11-18 15:06:00 +01:00
}
/****************
* Store the association of keyid and userid
*/
void
cache_user_id( PKT_user_id *uid, u32 *keyid )
{
user_id_db_t r;
for(r=user_id_db; r; r = r->next )
if( r->keyid[0] == keyid[0] && r->keyid[1] == keyid[1] ) {
if( DBG_CACHE )
1998-03-19 16:27:29 +01:00
log_debug("cache_user_id: already in cache\n");
1997-11-18 15:06:00 +01:00
return;
}
1998-10-12 22:16:38 +02:00
if( uid_cache_entries >= MAX_UID_CACHE_ENTRIES ) {
/* fixme: use another algorithm to free some cache slots */
r = user_id_db;
user_id_db = r->next;
m_free(r);
uid_cache_entries--;
}
1997-11-18 15:06:00 +01:00
r = m_alloc( sizeof *r + uid->len-1 );
r->keyid[0] = keyid[0];
r->keyid[1] = keyid[1];
r->len = uid->len;
memcpy(r->name, uid->name, r->len);
r->next = user_id_db;
user_id_db = r;
1998-10-12 22:16:38 +02:00
uid_cache_entries++;
1997-11-18 15:06:00 +01:00
}
/****************
1998-06-29 14:30:57 +02:00
* Get a public key and store it into the allocated pk
* can be called with PK set to NULL to just read it into some
1997-11-18 15:06:00 +01:00
* internal structures.
*/
int
1998-06-29 14:30:57 +02:00
get_pubkey( PKT_public_key *pk, u32 *keyid )
1997-11-18 15:06:00 +01:00
{
int internal = 0;
int rc = 0;
1998-10-12 22:16:38 +02:00
#if MAX_UNK_CACHE_ENTRIES
{ /* let's see whether we checked the keyid already */
keyid_list_t kl;
for( kl = unknown_keyids; kl; kl = kl->next )
if( kl->keyid[0] == keyid[0] && kl->keyid[1] == keyid[1] )
return G10ERR_NO_PUBKEY; /* already checked and not found */
}
#endif
#if MAX_PK_CACHE_ENTRIES
{ /* Try to get it from the cache */
pk_cache_entry_t ce;
for( ce = pk_cache; ce; ce = ce->next ) {
if( ce->keyid[0] == keyid[0] && ce->keyid[1] == keyid[1] ) {
if( pk )
copy_public_key( pk, ce->pk );
return 0;
}
1997-11-18 15:06:00 +01:00
}
1998-10-12 22:16:38 +02:00
}
#endif
1997-11-18 15:06:00 +01:00
/* more init stuff */
1998-06-29 14:30:57 +02:00
if( !pk ) {
pk = m_alloc_clear( sizeof *pk );
1997-11-18 15:06:00 +01:00
internal++;
}
1998-03-19 16:27:29 +01:00
/* do a lookup */
1998-08-11 19:29:34 +02:00
rc = lookup( pk, 11, keyid, NULL, NULL, 0 );
1998-03-19 16:27:29 +01:00
if( !rc )
goto leave;
1997-11-18 15:06:00 +01:00
1998-10-12 22:16:38 +02:00
#if MAX_UNK_CACHE_ENTRIES
1998-03-19 16:27:29 +01:00
/* not found: store it for future reference */
1998-10-12 22:16:38 +02:00
if( unk_cache_disabled )
;
else if( ++unk_cache_entries > MAX_UNK_CACHE_ENTRIES ) {
unk_cache_disabled = 1;
log_info("too many entries in unk cache - disabled\n");
}
else {
keyid_list_t kl;
kl = m_alloc( sizeof *kl );
kl->keyid[0] = keyid[0];
kl->keyid[1] = keyid[1];
kl->next = unknown_keyids;
unknown_keyids = kl;
}
#endif
1997-11-18 15:06:00 +01:00
rc = G10ERR_NO_PUBKEY;
leave:
if( !rc )
1998-06-29 14:30:57 +02:00
cache_public_key( pk );
1997-11-18 15:06:00 +01:00
if( internal )
1998-06-29 14:30:57 +02:00
m_free(pk);
1997-11-18 15:06:00 +01:00
return rc;
}
1998-03-19 16:27:29 +01:00
static int
hextobyte( const byte *s )
{
int c;
if( *s >= '0' && *s <= '9' )
c = 16 * (*s - '0');
else if( *s >= 'A' && *s <= 'F' )
c = 16 * (10 + *s - 'A');
else if( *s >= 'a' && *s <= 'f' )
c = 16 * (10 + *s - 'a');
else
return -1;
s++;
if( *s >= '0' && *s <= '9' )
c += *s - '0';
else if( *s >= 'A' && *s <= 'F' )
c += 10 + *s - 'A';
else if( *s >= 'a' && *s <= 'f' )
c += 10 + *s - 'a';
else
return -1;
return c;
}
1997-11-18 15:06:00 +01:00
/****************
1998-04-14 19:51:16 +02:00
* Try to get the pubkey by the userid. This function looks for the
1997-11-18 15:06:00 +01:00
* first pubkey certificate which has the given name in a user_id.
1998-06-29 14:30:57 +02:00
* if pk has the pubkey algo set, the function will only return
1997-11-18 15:06:00 +01:00
* a pubkey with that algo.
1998-01-26 23:09:01 +01:00
*
* - If the username starts with 8,9,16 or 17 hex-digits (the first one
* must be in the range 0..9), this is considered a keyid; depending
* on the length a short or complete one.
* - If the username starts with 32,33,40 or 41 hex-digits (the first one
* must be in the range 0..9), this is considered a fingerprint.
* - If the username starts with a left angle, we assume it is a complete
* email address and look only at this part.
1998-03-19 16:27:29 +01:00
* - If the username starts with a '.', we assume it is the ending
* part of an email address
* - If the username starts with an '@', we assume it is a part of an
* email address
1998-08-11 19:29:34 +02:00
* - If the userid start with an '=' an exact compare is done.
1998-03-19 16:27:29 +01:00
* - If the userid starts with a '*' a case insensitive substring search is
* done (This is also the default).
1997-11-18 15:06:00 +01:00
*/
1998-04-08 21:49:02 +02:00
static int
key_byname( int secret,
1998-06-29 14:30:57 +02:00
PKT_public_key *pk, PKT_secret_key *sk, const char *name )
1997-11-18 15:06:00 +01:00
{
int internal = 0;
int rc = 0;
1998-01-26 23:09:01 +01:00
const char *s;
u32 keyid[2] = {0}; /* init to avoid compiler warning */
1998-03-19 16:27:29 +01:00
byte fprint[20];
int mode = 0;
1998-01-26 23:09:01 +01:00
/* check what kind of name it is */
for(s = name; *s && isspace(*s); s++ )
;
1998-03-19 16:27:29 +01:00
if( isdigit( *s ) ) { /* a keyid or a fingerprint */
int i, j;
1998-01-26 23:09:01 +01:00
char buf[9];
1998-03-05 10:22:13 +01:00
if( *s == '0' && s[1] == 'x' && isxdigit(s[2]) )
s += 2; /*kludge to allow 0x034343434 */
1998-01-26 23:09:01 +01:00
for(i=0; isxdigit(s[i]); i++ )
;
if( s[i] && !isspace(s[i]) ) /* not terminated by EOS or blank*/
rc = G10ERR_INV_USER_ID;
else if( i == 8 || (i == 9 && *s == '0') ) { /* short keyid */
if( i==9 )
s++;
keyid[1] = strtoul( s, NULL, 16 );
1998-03-19 16:27:29 +01:00
mode = 10;
1998-01-26 23:09:01 +01:00
}
else if( i == 16 || (i == 17 && *s == '0') ) { /* complete keyid */
if( i==17 )
s++;
mem2str(buf, s, 9 );
keyid[0] = strtoul( buf, NULL, 16 );
keyid[1] = strtoul( s+8, NULL, 16 );
1998-03-19 16:27:29 +01:00
mode = 11;
}
else if( i == 32 || ( i == 33 && *s == '0' ) ) { /* md5 fingerprint */
if( i==33 )
s++;
memset(fprint+16, 4, 0);
for(j=0; !rc && j < 16; j++, s+=2 ) {
int c = hextobyte( s );
if( c == -1 )
rc = G10ERR_INV_USER_ID;
else
fprint[j] = c;
}
mode = 16;
}
else if( i == 40 || ( i == 41 && *s == '0' ) ) { /* sha1/rmd160 fprint*/
if( i==33 )
s++;
for(j=0; !rc && j < 20; j++, s+=2 ) {
int c = hextobyte( s );
if( c == -1 )
rc = G10ERR_INV_USER_ID;
else
fprint[j] = c;
}
mode = 20;
1998-01-26 23:09:01 +01:00
}
else
rc = G10ERR_INV_USER_ID;
}
1998-03-19 16:27:29 +01:00
else if( *s == '=' ) { /* exact search */
mode = 1;
s++;
}
else if( *s == '*' ) { /* substring search */
mode = 2;
s++;
}
1998-01-26 23:09:01 +01:00
else if( *s == '<' ) { /* an email address */
1998-03-19 16:27:29 +01:00
mode = 3;
1998-01-26 23:09:01 +01:00
}
1998-03-19 16:27:29 +01:00
else if( *s == '@' ) { /* a part of an email address */
mode = 4;
s++;
1998-01-26 23:09:01 +01:00
}
1998-03-19 16:27:29 +01:00
else if( *s == '.' ) { /* an email address, compare from end */
mode = 5;
s++;
1998-01-26 23:09:01 +01:00
}
1998-03-19 16:27:29 +01:00
else if( *s == '#' ) { /* use local id */
rc = G10ERR_INV_USER_ID; /* not yet implemented */
1998-01-26 23:09:01 +01:00
}
else if( !*s ) /* empty string */
rc = G10ERR_INV_USER_ID;
1998-03-19 16:27:29 +01:00
else
mode = 2;
1998-01-26 23:09:01 +01:00
if( rc )
goto leave;
1998-04-08 21:49:02 +02:00
if( secret ) {
1998-06-29 14:30:57 +02:00
if( !sk ) {
sk = m_alloc_clear( sizeof *sk );
1998-04-08 21:49:02 +02:00
internal++;
}
1998-08-11 19:29:34 +02:00
rc = mode < 16? lookup_sk( sk, mode, keyid, s, 1 )
: lookup_sk( sk, mode, keyid, fprint, 1 );
1998-04-08 21:49:02 +02:00
}
else {
1998-06-29 14:30:57 +02:00
if( !pk ) {
pk = m_alloc_clear( sizeof *pk );
1998-04-08 21:49:02 +02:00
internal++;
}
1998-08-11 19:29:34 +02:00
rc = mode < 16? lookup( pk, mode, keyid, s, NULL, 1 )
: lookup( pk, mode, keyid, fprint, NULL, 1 );
1997-11-18 15:06:00 +01:00
}
leave:
1998-04-08 21:49:02 +02:00
if( internal && secret )
1998-06-29 14:30:57 +02:00
m_free( sk );
1998-04-08 21:49:02 +02:00
else if( internal )
1998-06-29 14:30:57 +02:00
m_free( pk );
1997-11-18 15:06:00 +01:00
return rc;
}
1998-04-08 21:49:02 +02:00
int
1998-06-29 14:30:57 +02:00
get_pubkey_byname( PKT_public_key *pk, const char *name )
1998-04-08 21:49:02 +02:00
{
1998-06-29 14:30:57 +02:00
return key_byname( 0, pk, NULL, name );
1998-04-08 21:49:02 +02:00
}
1998-07-21 14:53:38 +02:00
/****************
* Search for a key with the given fingerprint.
*/
int
get_pubkey_byfprint( PKT_public_key *pk, const byte *fprint, size_t fprint_len)
{
int rc;
if( fprint_len == 20 || fprint_len == 16 )
1998-08-11 19:29:34 +02:00
rc = lookup( pk, fprint_len, NULL, fprint, NULL, 0 );
1998-07-21 14:53:38 +02:00
else
rc = G10ERR_GENERAL; /* Oops */
return rc;
}
1998-04-08 21:49:02 +02:00
/****************
* Search for a key with the given fingerprint and return the
* complete keyblock which may have more than only this key.
*/
int
1998-06-13 19:00:02 +02:00
get_keyblock_byfprint( KBNODE *ret_keyblock, const byte *fprint,
size_t fprint_len )
1998-04-08 21:49:02 +02:00
{
int rc;
1998-06-29 14:30:57 +02:00
PKT_public_key *pk = m_alloc_clear( sizeof *pk );
1998-04-08 21:49:02 +02:00
1998-06-13 19:00:02 +02:00
if( fprint_len == 20 || fprint_len == 16 )
1998-08-11 19:29:34 +02:00
rc = lookup( pk, fprint_len, NULL, fprint, ret_keyblock, 0 );
1998-06-13 19:00:02 +02:00
else
rc = G10ERR_GENERAL; /* Oops */
1998-04-08 21:49:02 +02:00
1998-06-29 14:30:57 +02:00
free_public_key( pk );
1998-04-08 21:49:02 +02:00
return rc;
}
1997-11-18 15:06:00 +01:00
/****************
1998-06-29 14:30:57 +02:00
* Get a secret key and store it into sk
1997-11-18 15:06:00 +01:00
*/
int
1998-06-29 14:30:57 +02:00
get_seckey( PKT_secret_key *sk, u32 *keyid )
1997-11-18 15:06:00 +01:00
{
1998-03-19 16:27:29 +01:00
int rc;
1997-11-18 15:06:00 +01:00
1998-08-11 19:29:34 +02:00
rc = lookup_sk( sk, 11, keyid, NULL, 0 );
1998-03-19 16:27:29 +01:00
if( !rc ) {
/* check the secret key (this may prompt for a passprase to
* unlock the secret key
*/
1998-09-11 07:47:32 +02:00
rc = check_secret_key( sk, 0 );
1998-03-19 16:27:29 +01:00
}
1997-11-24 12:04:11 +01:00
return rc;
}
1998-03-05 10:22:13 +01:00
/****************
1998-04-14 19:51:16 +02:00
* Check whether the secret key is available
1998-03-05 10:22:13 +01:00
* Returns: 0 := key is available
* G10ERR_NO_SECKEY := not availabe
*/
int
seckey_available( u32 *keyid )
{
1998-06-29 14:30:57 +02:00
PKT_secret_key *sk;
1998-03-19 16:27:29 +01:00
int rc;
1998-03-05 10:22:13 +01:00
1998-06-29 14:30:57 +02:00
sk = m_alloc_clear( sizeof *sk );
1998-08-11 19:29:34 +02:00
rc = lookup_sk( sk, 11, keyid, NULL, 0 );
1998-06-29 14:30:57 +02:00
free_secret_key( sk );
1998-03-05 10:22:13 +01:00
return rc;
}
1997-11-24 12:04:11 +01:00
/****************
1998-06-29 14:30:57 +02:00
* Get a secret key by name and store it into sk
* If NAME is NULL use the default key
1997-11-24 12:04:11 +01:00
*/
int
1998-06-29 14:30:57 +02:00
get_seckey_byname( PKT_secret_key *sk, const char *name, int unprotect )
1997-11-24 12:04:11 +01:00
{
1998-03-19 16:27:29 +01:00
int rc;
1997-11-24 12:04:11 +01:00
1998-07-08 11:29:43 +02:00
if( !name && opt.def_secret_key && *opt.def_secret_key )
rc = key_byname( 1, NULL, sk, opt.def_secret_key );
else if( !name ) /* use the first one as default key */
1998-08-11 19:29:34 +02:00
rc = lookup_sk( sk, 15, NULL, NULL, 1 );
1998-07-08 11:29:43 +02:00
else
rc = key_byname( 1, NULL, sk, name );
1998-03-19 16:27:29 +01:00
if( !rc && unprotect )
1998-09-11 07:47:32 +02:00
rc = check_secret_key( sk, 0 );
1997-11-18 15:06:00 +01:00
return rc;
}
1998-03-19 16:27:29 +01:00
static int
compare_name( const char *uid, size_t uidlen, const char *name, int mode )
{
int i;
1998-04-25 10:08:35 +02:00
const char *s, *se;
1998-03-19 16:27:29 +01:00
if( mode == 1 ) { /* exact match */
for(i=0; name[i] && uidlen; i++, uidlen-- )
if( uid[i] != name[i] )
break;
if( !uidlen && !name[i] )
return 0; /* found */
}
else if( mode == 2 ) { /* case insensitive substring */
if( memistr( uid, uidlen, name ) )
return 0;
}
1998-04-25 10:08:35 +02:00
else if( mode >= 3 && mode <= 5 ) { /* look at the email address */
for( i=0, s= uid; i < uidlen && *s != '<'; s++, i++ )
;
if( i < uidlen ) {
/* skip opening delim and one char and look for the closing one*/
s++; i++;
for( se=s+1, i++; i < uidlen && *se != '>'; se++, i++ )
;
if( i < uidlen ) {
i = se - s;
if( mode == 3 ) { /* exact email address */
1998-08-11 19:29:34 +02:00
if( strlen(name)-2 == i && !memicmp( s, name+1, i) )
1998-04-25 10:08:35 +02:00
return 0;
}
else if( mode == 4 ) { /* email substring */
if( memistr( s, i, name ) )
return 0;
}
else { /* email from end */
/* nyi */
}
}
}
1998-03-19 16:27:29 +01:00
}
else
BUG();
1998-01-13 20:04:23 +01:00
1998-03-19 16:27:29 +01:00
return -1; /* not found */
}
1998-01-13 20:04:23 +01:00
1998-06-25 12:19:08 +02:00
/****************
* Assume that knode points to a public key packet and keyblock is
* the entire keyblock. This function adds all relevant information from
* a selfsignature to the public key.
*/
static void
1998-09-18 17:24:53 +02:00
merge_one_pk_and_selfsig( KBNODE keyblock, KBNODE knode )
1998-06-25 12:19:08 +02:00
{
1998-06-29 14:30:57 +02:00
PKT_public_key *pk = knode->pkt->pkt.public_key;
1998-06-25 12:19:08 +02:00
PKT_signature *sig;
KBNODE k;
u32 kid[2];
1998-06-29 14:30:57 +02:00
assert( knode->pkt->pkttype == PKT_PUBLIC_KEY
|| knode->pkt->pkttype == PKT_PUBLIC_SUBKEY );
1998-06-25 12:19:08 +02:00
1998-06-29 14:30:57 +02:00
if( pk->version < 4 )
1998-06-25 12:19:08 +02:00
return; /* this is only needed for version >=4 packets */
/* find the selfsignature */
1998-06-29 14:30:57 +02:00
if( knode->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
k = find_kbnode( keyblock, PKT_PUBLIC_KEY );
1998-06-25 12:19:08 +02:00
if( !k )
BUG(); /* keyblock without primary key!!! */
1998-06-29 14:30:57 +02:00
keyid_from_pk( knode->pkt->pkt.public_key, kid );
1998-06-25 12:19:08 +02:00
}
else
1998-06-29 14:30:57 +02:00
keyid_from_pk( pk, kid );
1998-06-25 12:19:08 +02:00
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_SIGNATURE
&& (sig=k->pkt->pkt.signature)->sig_class >= 0x10
1998-10-18 17:21:22 +02:00
&& sig->sig_class <= 0x30
1998-06-25 12:19:08 +02:00
&& sig->keyid[0] == kid[0]
&& sig->keyid[1] == kid[1]
&& sig->version > 3 ) {
/* okay this is (the first) self-signature which can be used
* FIXME: We should only use this if the signature is valid
1998-09-18 17:24:53 +02:00
* but this is time consuming - we must provide another
1998-06-25 12:19:08 +02:00
* way to handle this
*/
const byte *p;
p = parse_sig_subpkt( sig->hashed_data, SIGSUBPKT_KEY_EXPIRE, NULL );
1998-10-16 18:00:17 +02:00
pk->expiredate = p? buffer_to_u32(p):0;
1998-06-29 14:30:57 +02:00
/* fixme: add usage etc. to pk */
1998-06-25 12:19:08 +02:00
break;
}
}
}
1998-07-06 12:23:57 +02:00
1998-09-18 17:24:53 +02:00
/****************
* merge all selfsignatures with the keys.
*/
void
merge_keys_and_selfsig( KBNODE keyblock )
{
PKT_public_key *pk = NULL;
PKT_secret_key *sk = NULL;
PKT_signature *sig;
KBNODE k;
u32 kid[2];
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_PUBLIC_KEY
|| k->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
pk = k->pkt->pkt.public_key; sk = NULL;
if( pk->version < 4 )
pk = NULL; /* not needed for old keys */
else
keyid_from_pk( pk, kid );
}
else if( k->pkt->pkttype == PKT_SECRET_KEY
|| k->pkt->pkttype == PKT_SECRET_SUBKEY ) {
pk = NULL; sk = k->pkt->pkt.secret_key;
if( sk->version < 4 )
sk = NULL;
else
keyid_from_sk( sk, kid );
}
else if( (pk || sk ) && k->pkt->pkttype == PKT_SIGNATURE
&& (sig=k->pkt->pkt.signature)->sig_class >= 0x10
1998-10-18 17:21:22 +02:00
&& sig->sig_class <= 0x30 && sig->version > 3
1998-09-18 17:24:53 +02:00
&& sig->keyid[0] == kid[0] && sig->keyid[1] == kid[1] ) {
/* okay this is (the first) self-signature which can be used
* FIXME: We should only use this if the signature is valid
* but this is time consuming - we must provide another
* way to handle this
*/
const byte *p;
p = parse_sig_subpkt( sig->hashed_data, SIGSUBPKT_KEY_EXPIRE, NULL );
if( pk ) {
1998-10-16 18:00:17 +02:00
pk->expiredate = p? buffer_to_u32(p):0;
1998-09-18 17:24:53 +02:00
/* fixme: add usage etc. */
pk = NULL; /* use only the first self signature */
}
else {
1998-10-16 18:00:17 +02:00
sk->expiredate = p? buffer_to_u32(p):0;
1998-09-18 17:24:53 +02:00
sk = NULL; /* use only the first self signature */
}
}
}
}
1998-10-21 19:34:36 +02:00
static KBNODE
find_by_name( KBNODE keyblock, PKT_public_key *pk, const char *name,
int mode, byte *namehash, int *use_namehash )
{
KBNODE k, kk;
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_USER_ID
&& !compare_name( k->pkt->pkt.user_id->name,
k->pkt->pkt.user_id->len, name, mode)) {
/* we found a matching name, look for the key */
for(kk=keyblock; kk; kk = kk->next ) {
if( ( kk->pkt->pkttype == PKT_PUBLIC_KEY
|| kk->pkt->pkttype == PKT_PUBLIC_SUBKEY )
&& ( !pk->pubkey_algo
|| pk->pubkey_algo
== kk->pkt->pkt.public_key->pubkey_algo)
&& ( !pk->pubkey_usage
|| !check_pubkey_algo2(
kk->pkt->pkt.public_key->pubkey_algo,
pk->pubkey_usage ))
)
break;
}
if( kk ) {
u32 aki[2];
keyid_from_pk( kk->pkt->pkt.public_key, aki );
cache_user_id( k->pkt->pkt.user_id, aki );
rmd160_hash_buffer( namehash,
k->pkt->pkt.user_id->name,
k->pkt->pkt.user_id->len );
*use_namehash = 1;
return kk;
}
else if( is_RSA(pk->pubkey_algo) )
log_error("RSA key cannot be used in this version\n");
else
log_error("No key for userid\n");
}
}
return NULL;
}
static KBNODE
find_by_keyid( KBNODE keyblock, PKT_public_key *pk, u32 *keyid, int mode )
{
KBNODE k;
if( DBG_CACHE )
log_debug("lookup keyid=%08lx%08lx req_algo=%d mode=%d\n",
(ulong)keyid[0], (ulong)keyid[1], pk->pubkey_algo, mode );
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_PUBLIC_KEY
|| k->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
u32 aki[2];
keyid_from_pk( k->pkt->pkt.public_key, aki );
if( DBG_CACHE )
log_debug(" aki=%08lx%08lx algo=%d\n",
(ulong)aki[0], (ulong)aki[1],
k->pkt->pkt.public_key->pubkey_algo );
if( aki[1] == keyid[1]
&& ( mode == 10 || aki[0] == keyid[0] )
&& ( !pk->pubkey_algo
|| pk->pubkey_algo
== k->pkt->pkt.public_key->pubkey_algo) ){
KBNODE kk;
/* cache the userid */
for(kk=keyblock; kk; kk = kk->next )
if( kk->pkt->pkttype == PKT_USER_ID )
break;
if( kk )
cache_user_id( kk->pkt->pkt.user_id, aki );
else
log_error("No userid for key\n");
return k; /* found */
}
}
}
return NULL;
}
static KBNODE
find_first( KBNODE keyblock, PKT_public_key *pk )
{
KBNODE k;
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_PUBLIC_KEY
|| k->pkt->pkttype == PKT_PUBLIC_SUBKEY )
{
if( !pk->pubkey_algo
|| pk->pubkey_algo == k->pkt->pkt.public_key->pubkey_algo )
return k;
}
}
return NULL;
}
static KBNODE
find_by_fpr( KBNODE keyblock, PKT_public_key *pk, const char *name, int mode )
{
KBNODE k;
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_PUBLIC_KEY
|| k->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
byte afp[MAX_FINGERPRINT_LEN];
size_t an;
fingerprint_from_pk(k->pkt->pkt.public_key, afp, &an );
if( DBG_CACHE ) {
u32 aki[2];
keyid_from_pk( k->pkt->pkt.public_key, aki );
log_debug(" aki=%08lx%08lx algo=%d mode=%d an=%u\n",
(ulong)aki[0], (ulong)aki[1],
k->pkt->pkt.public_key->pubkey_algo, mode, an );
}
if( an == mode
&& !memcmp( afp, name, an)
&& ( !pk->pubkey_algo
|| pk->pubkey_algo == k->pkt->pkt.public_key->pubkey_algo) )
return k;
}
}
return NULL;
}
static void
finish_lookup( KBNODE keyblock, PKT_public_key *pk, KBNODE k, byte *namehash,
int use_namehash, int primary )
{
assert( k->pkt->pkttype == PKT_PUBLIC_KEY
|| k->pkt->pkttype == PKT_PUBLIC_SUBKEY );
assert( keyblock->pkt->pkttype == PKT_PUBLIC_KEY );
if( primary && !pk->pubkey_usage ) {
copy_public_key_new_namehash( pk, keyblock->pkt->pkt.public_key,
use_namehash? namehash:NULL);
merge_one_pk_and_selfsig( keyblock, keyblock );
}
else {
if( primary && pk->pubkey_usage
&& check_pubkey_algo2( k->pkt->pkt.public_key->pubkey_algo,
pk->pubkey_usage ) == G10ERR_WR_PUBKEY_ALGO ) {
/* if the usage is not correct, try to use a subkey */
KBNODE save_k = k;
for( ; k; k = k->next ) {
if( k->pkt->pkttype == PKT_PUBLIC_SUBKEY
&& !check_pubkey_algo2(
k->pkt->pkt.public_key->pubkey_algo,
pk->pubkey_usage ) )
break;
}
if( !k )
k = save_k;
else
log_info(_("using secondary key %08lX "
"instead of primary key %08lX\n"),
(ulong)keyid_from_pk( k->pkt->pkt.public_key, NULL),
(ulong)keyid_from_pk( save_k->pkt->pkt.public_key, NULL)
);
}
copy_public_key_new_namehash( pk, k->pkt->pkt.public_key,
use_namehash? namehash:NULL);
merge_one_pk_and_selfsig( keyblock, k );
}
}
1998-09-18 17:24:53 +02:00
1997-11-18 15:06:00 +01:00
/****************
1998-10-16 18:00:17 +02:00
* Lookup a key by scanning all keyresources
1998-03-19 16:27:29 +01:00
* mode 1 = lookup by NAME (exact)
* 2 = lookup by NAME (substring)
* 3 = lookup by NAME (email address)
* 4 = email address (substring)
* 5 = email address (compare from end)
* 10 = lookup by short KEYID (don't care about keyid[0])
* 11 = lookup by long KEYID
* 15 = Get the first key.
* 16 = lookup by 16 byte fingerprint which is stored in NAME
* 20 = lookup by 20 byte fingerprint which is stored in NAME
1998-06-29 14:30:57 +02:00
* Caller must provide an empty PK, if the pubkey_algo is filled in, only
1998-03-19 16:27:29 +01:00
* a key of this algo will be returned.
1998-04-08 21:49:02 +02:00
* If ret_keyblock is not NULL, the complete keyblock is returned also
* and the caller must release it.
1997-11-18 15:06:00 +01:00
*/
static int
1998-06-29 14:30:57 +02:00
lookup( PKT_public_key *pk, int mode, u32 *keyid,
1998-08-11 19:29:34 +02:00
const char *name, KBNODE *ret_keyblock, int primary )
1997-11-18 15:06:00 +01:00
{
1998-03-19 16:27:29 +01:00
int rc;
KBNODE keyblock = NULL;
1998-10-21 19:34:36 +02:00
KBNODE k;
1998-03-19 16:27:29 +01:00
KBPOS kbpos;
1998-04-07 20:16:10 +02:00
int oldmode = set_packet_list_mode(0);
1998-08-05 18:51:59 +02:00
byte namehash[20];
int use_namehash=0;
1998-03-19 16:27:29 +01:00
1998-10-21 19:34:36 +02:00
/* try the quick functions */
k = NULL;
switch( mode ) {
case 10:
case 11:
rc = locate_keyblock_by_keyid( &kbpos, keyid, mode==10, 0 );
if( !rc )
rc = read_keyblock( &kbpos, &keyblock );
if( !rc )
k = find_by_keyid( keyblock, pk, keyid, mode );
break;
case 16:
case 20:
rc = locate_keyblock_by_fpr( &kbpos, name, mode, 0 );
if( !rc )
rc = read_keyblock( &kbpos, &keyblock );
if( !rc )
k = find_by_fpr( keyblock, pk, name, mode );
break;
default: rc = G10ERR_UNSUPPORTED;
}
if( !rc ) {
if( !k ) {
log_error("lookup: key has been located but was not found\n");
rc = G10ERR_INV_KEYRING;
}
else
finish_lookup( keyblock, pk, k, namehash, 0, primary );
1997-11-18 15:06:00 +01:00
}
1998-10-21 19:34:36 +02:00
/* if this was not possible, loop over all keyblocks
* fixme: If one of the resources in the quick functions above
* works, but the key was not found, we will not find it
* in the other resources */
if( rc == G10ERR_UNSUPPORTED ) {
rc = enum_keyblocks( 0, &kbpos, &keyblock );
if( !rc ) {
while( !(rc = enum_keyblocks( 1, &kbpos, &keyblock )) ) {
if( mode < 10 )
k = find_by_name( keyblock, pk, name, mode,
namehash, &use_namehash);
else if( mode == 10 || mode == 11 )
k = find_by_keyid( keyblock, pk, keyid, mode );
else if( mode == 15 )
k = find_first( keyblock, pk );
else if( mode == 16 || mode == 20 )
k = find_by_fpr( keyblock, pk, name, mode );
else
BUG();
if( k ) {
finish_lookup( keyblock, pk, k, namehash,
use_namehash, primary );
break; /* found */
1997-11-18 15:06:00 +01:00
}
1998-10-21 19:34:36 +02:00
release_kbnode( keyblock );
keyblock = NULL;
1997-11-18 15:06:00 +01:00
}
}
1998-10-21 19:34:36 +02:00
enum_keyblocks( 2, &kbpos, &keyblock ); /* close */
if( rc && rc != -1 )
log_error("enum_keyblocks failed: %s\n", g10_errstr(rc));
}
1998-09-28 21:25:31 +02:00
1998-10-21 19:34:36 +02:00
if( !rc ) {
if( ret_keyblock ) {
*ret_keyblock = keyblock;
keyblock = NULL;
1997-11-18 15:06:00 +01:00
}
}
1998-10-21 19:34:36 +02:00
else if( rc == -1 )
1998-03-19 16:27:29 +01:00
rc = G10ERR_NO_PUBKEY;
1997-11-18 15:06:00 +01:00
1998-10-21 19:34:36 +02:00
1998-03-19 16:27:29 +01:00
release_kbnode( keyblock );
1998-04-07 20:16:10 +02:00
set_packet_list_mode(oldmode);
1998-10-16 18:00:17 +02:00
if( opt.debug & DBG_MEMSTAT_VALUE ) {
static int initialized;
if( !initialized ) {
initialized = 1;
atexit( print_stats );
}
assert( mode < DIM(lkup_stats) );
lkup_stats[mode].any = 1;
if( !rc )
lkup_stats[mode].okay_count++;
else if ( rc == G10ERR_NO_PUBKEY )
lkup_stats[mode].nokey_count++;
else
lkup_stats[mode].error_count++;
}
1997-11-18 15:06:00 +01:00
return rc;
}
/****************
1998-03-19 16:27:29 +01:00
* Ditto for secret keys
1997-11-18 15:06:00 +01:00
*/
static int
1998-08-11 19:29:34 +02:00
lookup_sk( PKT_secret_key *sk, int mode, u32 *keyid, const char *name,
int primary )
1997-11-18 15:06:00 +01:00
{
1998-03-19 16:27:29 +01:00
int rc;
KBNODE keyblock = NULL;
KBPOS kbpos;
1998-04-07 20:16:10 +02:00
int oldmode = set_packet_list_mode(0);
1998-03-19 16:27:29 +01:00
rc = enum_keyblocks( 5 /* open secret */, &kbpos, &keyblock );
if( rc ) {
if( rc == -1 )
1998-04-07 20:16:10 +02:00
rc = G10ERR_NO_SECKEY;
1998-03-19 16:27:29 +01:00
else if( rc )
log_error("enum_keyblocks(open secret) failed: %s\n", g10_errstr(rc) );
goto leave;
1997-11-18 15:06:00 +01:00
}
1998-03-19 16:27:29 +01:00
while( !(rc = enum_keyblocks( 1, &kbpos, &keyblock )) ) {
KBNODE k, kk;
if( mode < 10 ) { /* name lookup */
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_USER_ID
&& !compare_name( k->pkt->pkt.user_id->name,
k->pkt->pkt.user_id->len, name, mode)) {
/* we found a matching name, look for the key */
1998-08-11 19:29:34 +02:00
for(kk=keyblock; kk; kk = kk->next ) {
1998-06-29 14:30:57 +02:00
if( ( kk->pkt->pkttype == PKT_SECRET_KEY
|| kk->pkt->pkttype == PKT_SECRET_SUBKEY )
&& ( !sk->pubkey_algo
|| sk->pubkey_algo
1998-08-11 19:29:34 +02:00
== kk->pkt->pkt.secret_key->pubkey_algo)
&& ( !sk->pubkey_usage
|| !check_pubkey_algo2(
kk->pkt->pkt.secret_key->pubkey_algo,
sk->pubkey_usage ))
)
break;
}
1998-03-19 16:27:29 +01:00
if( kk ) {
u32 aki[2];
1998-06-29 14:30:57 +02:00
keyid_from_sk( kk->pkt->pkt.secret_key, aki );
1998-03-19 16:27:29 +01:00
cache_user_id( k->pkt->pkt.user_id, aki );
k = kk;
break;
1997-12-03 11:20:03 +01:00
}
1998-03-19 16:27:29 +01:00
else
1998-06-29 14:30:57 +02:00
log_error("No key for userid (in sk)\n");
1997-12-03 11:20:03 +01:00
}
1997-11-24 12:04:11 +01:00
}
}
1998-03-19 16:27:29 +01:00
else { /* keyid or fingerprint lookup */
1998-04-08 21:49:02 +02:00
if( DBG_CACHE && (mode== 10 || mode==11) ) {
1998-06-29 14:30:57 +02:00
log_debug("lookup_sk keyid=%08lx%08lx req_algo=%d mode=%d\n",
1998-04-08 21:49:02 +02:00
(ulong)keyid[0], (ulong)keyid[1],
1998-06-29 14:30:57 +02:00
sk->pubkey_algo, mode );
1998-04-08 21:49:02 +02:00
}
1998-03-19 16:27:29 +01:00
for(k=keyblock; k; k = k->next ) {
1998-06-29 14:30:57 +02:00
if( k->pkt->pkttype == PKT_SECRET_KEY
|| k->pkt->pkttype == PKT_SECRET_SUBKEY ) {
1998-03-19 16:27:29 +01:00
if( mode == 10 || mode == 11 ) {
u32 aki[2];
1998-06-29 14:30:57 +02:00
keyid_from_sk( k->pkt->pkt.secret_key, aki );
1998-04-08 21:49:02 +02:00
if( DBG_CACHE ) {
log_debug(" aki=%08lx%08lx algo=%d\n",
(ulong)aki[0], (ulong)aki[1],
1998-06-29 14:30:57 +02:00
k->pkt->pkt.secret_key->pubkey_algo );
1998-04-08 21:49:02 +02:00
}
1998-03-19 16:27:29 +01:00
if( aki[1] == keyid[1]
&& ( mode == 10 || aki[0] == keyid[0] )
1998-06-29 14:30:57 +02:00
&& ( !sk->pubkey_algo
|| sk->pubkey_algo
== k->pkt->pkt.secret_key->pubkey_algo) ){
1998-03-19 16:27:29 +01:00
/* cache the userid */
for(kk=keyblock; kk; kk = kk->next )
if( kk->pkt->pkttype == PKT_USER_ID )
break;
if( kk )
cache_user_id( kk->pkt->pkt.user_id, aki );
else
log_error("No userid for key\n");
break; /* found */
}
}
else if( mode == 15 ) { /* get the first key */
1998-06-29 14:30:57 +02:00
if( !sk->pubkey_algo
|| sk->pubkey_algo
== k->pkt->pkt.secret_key->pubkey_algo )
1998-03-19 16:27:29 +01:00
break;
}
else if( mode == 16 || mode == 20 ) {
size_t an;
1998-10-12 22:16:38 +02:00
byte afp[MAX_FINGERPRINT_LEN];
fingerprint_from_sk(k->pkt->pkt.secret_key, afp, &an );
1998-03-19 16:27:29 +01:00
if( an == mode && !memcmp( afp, name, an)
1998-06-29 14:30:57 +02:00
&& ( !sk->pubkey_algo
|| sk->pubkey_algo
== k->pkt->pkt.secret_key->pubkey_algo) ) {
1998-03-19 16:27:29 +01:00
break;
}
}
else
BUG();
} /* end compare secret keys */
1997-11-18 15:06:00 +01:00
}
}
1998-03-19 16:27:29 +01:00
if( k ) { /* found */
1998-06-29 14:30:57 +02:00
assert( k->pkt->pkttype == PKT_SECRET_KEY
|| k->pkt->pkttype == PKT_SECRET_SUBKEY );
1998-08-11 19:29:34 +02:00
assert( keyblock->pkt->pkttype == PKT_SECRET_KEY );
if( primary && !sk->pubkey_usage )
copy_secret_key( sk, keyblock->pkt->pkt.secret_key );
else
copy_secret_key( sk, k->pkt->pkt.secret_key );
1998-03-19 16:27:29 +01:00
break; /* enumeration */
1997-11-24 12:04:11 +01:00
}
1998-03-19 16:27:29 +01:00
release_kbnode( keyblock );
keyblock = NULL;
1997-11-18 15:06:00 +01:00
}
1998-03-19 16:27:29 +01:00
if( rc == -1 )
1998-04-07 20:16:10 +02:00
rc = G10ERR_NO_SECKEY;
1998-03-19 16:27:29 +01:00
else if( rc )
log_error("enum_keyblocks(read) failed: %s\n", g10_errstr(rc));
1997-11-18 15:06:00 +01:00
1997-11-24 12:04:11 +01:00
leave:
1998-03-19 16:27:29 +01:00
enum_keyblocks( 2, &kbpos, &keyblock ); /* close */
release_kbnode( keyblock );
1998-04-07 20:16:10 +02:00
set_packet_list_mode(oldmode);
1997-11-24 12:04:11 +01:00
return rc;
1997-11-18 15:06:00 +01:00
}
1998-03-19 16:27:29 +01:00
1998-01-13 20:04:23 +01:00
/****************
1998-08-05 18:51:59 +02:00
* Enumerate all primary secret keys. Caller must use these procedure:
1998-01-13 20:04:23 +01:00
* 1) create a void pointer and initialize it to NULL
* 2) pass this void pointer by reference to this function
1998-06-29 14:30:57 +02:00
* and provide space for the secret key (pass a buffer for sk)
1998-01-13 20:04:23 +01:00
* 3) call this function as long as it does not return -1
* to indicate EOF.
1998-06-29 14:30:57 +02:00
* 4) Always call this function a last time with SK set to NULL,
1998-01-13 20:04:23 +01:00
* so that can free it's context.
*
1998-09-11 07:47:32 +02:00
*
1998-01-13 20:04:23 +01:00
*/
int
1998-09-11 07:47:32 +02:00
enum_secret_keys( void **context, PKT_secret_key *sk, int with_subkeys )
1998-01-13 20:04:23 +01:00
{
int rc=0;
PACKET pkt;
int save_mode;
1998-10-16 18:00:17 +02:00
struct {
int eof;
int sequence;
const char *name;
IOBUF iobuf;
} *c = *context;
1998-01-13 20:04:23 +01:00
if( !c ) { /* make a new context */
c = m_alloc_clear( sizeof *c );
*context = c;
1998-10-16 18:00:17 +02:00
c->sequence = 0;
c->name = enum_keyblock_resources( &c->sequence, 1 );
1998-01-13 20:04:23 +01:00
}
1998-06-29 14:30:57 +02:00
if( !sk ) { /* free the context */
1998-10-06 14:10:02 +02:00
if( c->iobuf )
iobuf_close(c->iobuf);
1998-01-13 20:04:23 +01:00
m_free( c );
*context = NULL;
return 0;
}
if( c->eof )
return -1;
1998-10-16 18:00:17 +02:00
/* FIXME: This assumes a plain keyring file */
for( ; c->name; c->name = enum_keyblock_resources( &c->sequence, 1 ) ) {
1998-01-13 20:04:23 +01:00
if( !c->iobuf ) {
1998-10-16 18:00:17 +02:00
if( !(c->iobuf = iobuf_open( c->name ) ) ) {
log_error("enum_secret_keys: can't open '%s'\n", c->name );
1998-01-13 20:04:23 +01:00
continue; /* try next file */
}
}
save_mode = set_packet_list_mode(0);
init_packet(&pkt);
while( (rc=parse_packet(c->iobuf, &pkt)) != -1 ) {
if( rc )
; /* e.g. unknown packet */
1998-09-11 07:47:32 +02:00
else if( pkt.pkttype == PKT_SECRET_KEY
|| ( with_subkeys && pkt.pkttype == PKT_SECRET_SUBKEY ) ) {
1998-06-29 14:30:57 +02:00
copy_secret_key( sk, pkt.pkt.secret_key );
1998-01-13 20:04:23 +01:00
set_packet_list_mode(save_mode);
return 0; /* found */
}
free_packet(&pkt);
}
set_packet_list_mode(save_mode);
iobuf_close(c->iobuf); c->iobuf = NULL;
}
c->eof = 1;
return -1;
}
1997-11-18 15:06:00 +01:00
/****************
* Return a string with a printable representation of the user_id.
* this string must be freed by m_free.
*/
char*
get_user_id_string( u32 *keyid )
{
user_id_db_t r;
char *p;
int pass=0;
1998-10-16 18:00:17 +02:00
/* try it two times; second pass reads from key resources */
1997-11-18 15:06:00 +01:00
do {
for(r=user_id_db; r; r = r->next )
if( r->keyid[0] == keyid[0] && r->keyid[1] == keyid[1] ) {
p = m_alloc( r->len + 10 );
1998-02-03 13:09:20 +01:00
sprintf(p, "%08lX %.*s", (ulong)keyid[1], r->len, r->name );
1997-11-18 15:06:00 +01:00
return p;
}
} while( ++pass < 2 && !get_pubkey( NULL, keyid ) );
p = m_alloc( 15 );
1998-02-03 13:09:20 +01:00
sprintf(p, "%08lX [?]", (ulong)keyid[1] );
1997-11-18 15:06:00 +01:00
return p;
}
1997-12-01 11:33:23 +01:00
char*
get_user_id( u32 *keyid, size_t *rn )
{
user_id_db_t r;
char *p;
int pass=0;
1998-10-16 18:00:17 +02:00
/* try it two times; second pass reads from key resources */
1997-12-01 11:33:23 +01:00
do {
for(r=user_id_db; r; r = r->next )
if( r->keyid[0] == keyid[0] && r->keyid[1] == keyid[1] ) {
p = m_alloc( r->len );
memcpy(p, r->name, r->len );
*rn = r->len;
return p;
}
} while( ++pass < 2 && !get_pubkey( NULL, keyid ) );
p = m_alloc( 19 );
memcpy(p, "[User id not found]", 19 );
*rn = 19;
return p;
}
1997-11-18 15:06:00 +01:00