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

958 lines
24 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"
#define MAX_PKC_CACHE_ENTRIES 500
typedef struct keyid_list {
struct keyid_list *next;
u32 keyid[2];
} *keyid_list_t;
typedef struct user_id_db {
struct user_id_db *next;
u32 keyid[2];
int len;
char name[1];
} *user_id_db_t;
typedef struct pkc_cache_entry {
struct pkc_cache_entry *next;
u32 keyid[2];
1997-12-01 11:33:23 +01:00
PKT_public_cert *pkc;
1997-11-18 15:06:00 +01:00
} *pkc_cache_entry_t;
1998-01-13 20:04:23 +01:00
typedef struct enum_seckey_context {
int eof;
STRLIST sl;
IOBUF iobuf;
} enum_seckey_context_t;
1997-11-18 15:06:00 +01:00
static STRLIST keyrings;
1997-12-12 13:03:58 +01:00
static STRLIST secret_keyrings;
1997-11-18 15:06:00 +01:00
static keyid_list_t unknown_keyids;
static user_id_db_t user_id_db;
static pkc_cache_entry_t pkc_cache;
static int pkc_cache_entries; /* number of entries in pkc cache */
1998-03-19 16:27:29 +01:00
static int lookup( PKT_public_cert *pkc,
1998-04-08 21:49:02 +02:00
int mode, u32 *keyid, const char *name,
KBNODE *ret_keyblock );
1998-03-19 16:27:29 +01:00
static int lookup_skc( PKT_secret_cert *skc,
int mode, u32 *keyid, const char *name );
1997-11-18 15:06:00 +01:00
1998-02-12 00:22:09 +01:00
/* note this function may be called before secure memory is
* available */
1997-11-18 15:06:00 +01:00
void
add_keyring( const char *name )
{
STRLIST sl;
1997-12-12 13:03:58 +01:00
int rc;
1997-11-18 15:06:00 +01:00
1998-02-12 00:22:09 +01:00
if( *name != '/' ) { /* do tilde expansion etc */
char *p ;
if( strchr(name, '/') )
p = make_filename(name, NULL);
else
1998-02-17 21:48:52 +01:00
p = make_filename(opt.homedir, name, NULL);
1998-02-12 00:22:09 +01:00
sl = m_alloc( sizeof *sl + strlen(p) );
strcpy(sl->d, p );
m_free(p);
}
else {
sl = m_alloc( sizeof *sl + strlen(name) );
strcpy(sl->d, name );
}
1997-11-18 15:06:00 +01:00
sl->next = keyrings;
keyrings = sl;
1997-12-12 13:03:58 +01:00
1998-04-02 12:30:03 +02:00
/* fixme: We should remove much out of this module and
1997-12-12 13:03:58 +01:00
* combine it with the keyblock stuff from ringedit.c
* For now we will simple add the filename as keyblock resource
*/
1998-02-12 00:22:09 +01:00
rc = add_keyblock_resource( sl->d, 0, 0 );
1997-12-12 13:03:58 +01:00
if( rc )
1998-02-12 00:22:09 +01:00
log_error("keyblock resource '%s': %s\n", sl->d, g10_errstr(rc) );
1997-12-12 13:03:58 +01:00
}
1998-01-05 20:13:15 +01:00
/****************
* Get the name of the keyrings, start with a sequence number of 0.
*/
const char *
get_keyring( int sequence )
{
STRLIST sl;
for(sl = keyrings; sl && sequence; sl = sl->next, sequence-- )
;
return sl? sl->d : NULL;
}
1997-12-12 13:03:58 +01:00
void
add_secret_keyring( const char *name )
{
STRLIST sl;
int rc;
1998-02-12 00:22:09 +01:00
if( *name != '/' ) { /* do tilde expansion etc */
char *p ;
if( strchr(name, '/') )
p = make_filename(name, NULL);
else
1998-02-17 21:48:52 +01:00
p = make_filename(opt.homedir, name, NULL);
1998-02-12 00:22:09 +01:00
sl = m_alloc( sizeof *sl + strlen(p) );
strcpy(sl->d, p );
m_free(p);
}
else {
sl = m_alloc( sizeof *sl + strlen(name) );
strcpy(sl->d, name );
}
1997-12-12 13:03:58 +01:00
sl->next = secret_keyrings;
secret_keyrings = sl;
1998-01-06 22:01:36 +01:00
1998-04-14 19:51:16 +02:00
/* fixme: We should remove much out of this module and
1998-01-06 22:01:36 +01:00
* combine it with the keyblock stuff from ringedit.c
* For now we will simple add the filename as keyblock resource
*/
1998-02-12 00:22:09 +01:00
rc = add_keyblock_resource( sl->d, 0, 1 );
1998-01-06 22:01:36 +01:00
if( rc )
1998-02-12 00:22:09 +01:00
log_error("secret keyblock resource '%s': %s\n", sl->d, g10_errstr(rc));
1997-11-18 15:06:00 +01:00
}
1998-03-19 16:27:29 +01:00
static void
1997-12-01 11:33:23 +01:00
cache_public_cert( PKT_public_cert *pkc )
1997-11-18 15:06:00 +01:00
{
pkc_cache_entry_t ce;
u32 keyid[2];
1997-11-24 23:24:04 +01:00
if( pkc->pubkey_algo == PUBKEY_ALGO_ELGAMAL
1998-03-09 22:44:06 +01:00
|| pkc->pubkey_algo == PUBKEY_ALGO_DSA
1997-11-24 23:24:04 +01:00
|| pkc->pubkey_algo == PUBKEY_ALGO_RSA ) {
keyid_from_pkc( pkc, keyid );
1997-11-18 15:06:00 +01:00
}
else
return; /* don't know how to get the keyid */
for( ce = pkc_cache; ce; ce = ce->next )
if( ce->keyid[0] == keyid[0] && ce->keyid[1] == keyid[1] ) {
if( DBG_CACHE )
1997-12-01 11:33:23 +01:00
log_debug("cache_public_cert: already in cache\n");
1997-11-18 15:06:00 +01:00
return;
}
if( pkc_cache_entries > MAX_PKC_CACHE_ENTRIES ) {
/* FIMXE: use another algorithm to free some cache slots */
if( pkc_cache_entries == MAX_PKC_CACHE_ENTRIES ) {
pkc_cache_entries++;
log_info("too many entries in pkc cache - disabled\n");
}
ce = pkc_cache;
1997-12-01 11:33:23 +01:00
free_public_cert( ce->pkc );
1997-11-18 15:06:00 +01:00
}
else {
pkc_cache_entries++;
ce = m_alloc( sizeof *ce );
ce->next = pkc_cache;
pkc_cache = ce;
}
1997-12-01 11:33:23 +01:00
ce->pkc = copy_public_cert( NULL, pkc );
1997-11-18 15:06:00 +01:00
ce->keyid[0] = keyid[0];
ce->keyid[1] = keyid[1];
}
/****************
* 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;
}
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;
}
/****************
* Get a public key and store it into the allocated pkc
* can be called with PKC set to NULL to just read it into some
* internal structures.
*/
int
1997-12-01 11:33:23 +01:00
get_pubkey( PKT_public_cert *pkc, u32 *keyid )
1997-11-18 15:06:00 +01:00
{
keyid_list_t kl;
int internal = 0;
int rc = 0;
pkc_cache_entry_t ce;
1998-04-14 19:51:16 +02:00
/* let's see whether we checked the keyid already */
1997-11-18 15:06:00 +01:00
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 */
1998-03-19 16:27:29 +01:00
/* Try to get it from our cache */
1997-11-18 15:06:00 +01:00
for( ce = pkc_cache; ce; ce = ce->next )
if( ce->keyid[0] == keyid[0] && ce->keyid[1] == keyid[1] ) {
if( pkc )
1997-12-01 11:33:23 +01:00
copy_public_cert( pkc, ce->pkc );
1997-11-18 15:06:00 +01:00
return 0;
}
/* more init stuff */
if( !pkc ) {
pkc = m_alloc_clear( sizeof *pkc );
internal++;
}
1998-03-19 16:27:29 +01:00
/* do a lookup */
1998-04-08 21:49:02 +02:00
rc = lookup( pkc, 11, keyid, NULL, NULL );
1998-03-19 16:27:29 +01:00
if( !rc )
goto leave;
1997-11-18 15:06:00 +01:00
1998-03-19 16:27:29 +01:00
/* not found: store it for future reference */
1997-11-18 15:06:00 +01:00
kl = m_alloc( sizeof *kl );
kl->keyid[0] = keyid[0];
kl->keyid[1] = keyid[1];
kl->next = unknown_keyids;
unknown_keyids = kl;
rc = G10ERR_NO_PUBKEY;
leave:
if( !rc )
1997-12-01 11:33:23 +01:00
cache_public_cert( pkc );
1997-11-18 15:06:00 +01:00
if( internal )
m_free(pkc);
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.
* if pkc has the pubkey algo set, the function will only return
* 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.
* (Not yet implemented)
* - 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-01-26 23:09:01 +01:00
* - If the userid start with an '=' an exact compare is done; this may
* also follow the keyid in which case both parts are matched.
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,
PKT_public_cert *pkc, PKT_secret_cert *skc, 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 ) {
if( !skc ) {
skc = m_alloc_clear( sizeof *skc );
internal++;
}
rc = mode < 16? lookup_skc( skc, mode, keyid, name )
: lookup_skc( skc, mode, keyid, fprint );
}
else {
if( !pkc ) {
pkc = m_alloc_clear( sizeof *pkc );
internal++;
}
rc = mode < 16? lookup( pkc, mode, keyid, name, NULL )
: lookup( pkc, mode, keyid, fprint, NULL );
1997-11-18 15:06:00 +01:00
}
leave:
1998-04-08 21:49:02 +02:00
if( internal && secret )
m_free( skc );
else if( internal )
m_free( pkc );
1997-11-18 15:06:00 +01:00
return rc;
}
1998-04-08 21:49:02 +02:00
int
get_pubkey_byname( PKT_public_cert *pkc, const char *name )
{
return key_byname( 0, pkc, NULL, name );
}
/****************
* Search for a key with the given fingerprint and return the
* complete keyblock which may have more than only this key.
* The fingerprint should always be 20 bytes, fill with zeroes
* for 16 byte fprints.
*/
int
get_keyblock_byfprint( KBNODE *ret_keyblock, const byte *fprint )
{
int rc;
PKT_public_cert *pkc = m_alloc_clear( sizeof *pkc );
rc = lookup( pkc, 20, NULL, fprint, ret_keyblock );
free_public_cert( pkc );
return rc;
}
1997-11-18 15:06:00 +01:00
/****************
1998-04-08 21:49:02 +02:00
* Get a secret key and store it into skc
1997-11-18 15:06:00 +01:00
*/
int
1997-12-01 11:33:23 +01:00
get_seckey( PKT_secret_cert *skc, 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-03-19 16:27:29 +01:00
rc = lookup_skc( skc, 11, keyid, NULL );
if( !rc ) {
/* check the secret key (this may prompt for a passprase to
* unlock the secret key
*/
rc = check_secret_key( skc );
}
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 )
{
PKT_secret_cert *skc;
1998-03-19 16:27:29 +01:00
int rc;
1998-03-05 10:22:13 +01:00
skc = m_alloc_clear( sizeof *skc );
1998-03-19 16:27:29 +01:00
rc = lookup_skc( skc, 11, keyid, NULL );
1998-03-05 10:22:13 +01:00
free_secret_cert( skc );
return rc;
}
1997-11-24 12:04:11 +01:00
/****************
* Get a secret key by name and store it into skc
1997-12-03 11:20:03 +01:00
* If NAME is NULL use the default certificate
1997-11-24 12:04:11 +01:00
*/
int
1997-12-16 20:15:09 +01:00
get_seckey_byname( PKT_secret_cert *skc, 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-04-08 21:49:02 +02:00
rc = name ? key_byname( 1, NULL, skc, name )
: lookup_skc( skc, 15, NULL, NULL );
1998-03-19 16:27:29 +01:00
if( !rc && unprotect )
rc = check_secret_key( skc );
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;
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;
}
else if( mode == 3 ) { /* case insensitive email address */
/* FIXME: not yet implemented */
if( memistr( uid, uidlen, name ) )
return 0;
}
else if( mode == 4 ) { /* email substring */
/* FIXME: not yet implemented */
if( memistr( uid, uidlen, name ) )
return 0;
}
else if( mode == 5 ) { /* email from end */
/* FIXME: not yet implemented */
if( memistr( uid, uidlen, name ) )
return 0;
}
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
1997-11-18 15:06:00 +01:00
/****************
1998-03-19 16:27:29 +01:00
* Lookup a key by scanning all keyrings
* 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
* Caller must provide an empty PKC, if the pubkey_algo is filled in, only
* 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-04-08 21:49:02 +02:00
lookup( PKT_public_cert *pkc, int mode, u32 *keyid,
const char *name, KBNODE *ret_keyblock )
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( 0, &kbpos, &keyblock );
if( rc ) {
if( rc == -1 )
rc = G10ERR_NO_PUBKEY;
else if( rc )
log_error("enum_keyblocks(open) 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 */
for(kk=keyblock; kk; kk = kk->next )
if( ( kk->pkt->pkttype == PKT_PUBLIC_CERT
|| kk->pkt->pkttype == PKT_PUBKEY_SUBCERT )
&& ( !pkc->pubkey_algo
|| pkc->pubkey_algo
== kk->pkt->pkt.public_cert->pubkey_algo))
break;
if( kk ) {
u32 aki[2];
keyid_from_pkc( kk->pkt->pkt.public_cert, aki );
cache_user_id( k->pkt->pkt.user_id, aki );
k = kk;
break;
}
else
log_error("No key for userid\n");
1997-11-18 15:06:00 +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) ) {
log_debug("lookup keyid=%08lx%08lx req_algo=%d mode=%d\n",
(ulong)keyid[0], (ulong)keyid[1],
pkc->pubkey_algo, mode );
}
1998-03-19 16:27:29 +01:00
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_PUBLIC_CERT
|| k->pkt->pkttype == PKT_PUBKEY_SUBCERT ) {
if( mode == 10 || mode == 11 ) {
u32 aki[2];
keyid_from_pkc( k->pkt->pkt.public_cert, 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],
k->pkt->pkt.public_cert->pubkey_algo );
}
1998-03-19 16:27:29 +01:00
if( aki[1] == keyid[1]
&& ( mode == 10 || aki[0] == keyid[0] )
&& ( !pkc->pubkey_algo
|| pkc->pubkey_algo
== k->pkt->pkt.public_cert->pubkey_algo) ){
/* 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 */
if( !pkc->pubkey_algo
|| pkc->pubkey_algo
== k->pkt->pkt.public_cert->pubkey_algo )
break;
}
else if( mode == 16 || mode == 20 ) {
size_t an;
byte *afp = fingerprint_from_pkc(
k->pkt->pkt.public_cert, &an );
if( an == mode && !memcmp( afp, name, an)
&& ( !pkc->pubkey_algo
|| pkc->pubkey_algo
== k->pkt->pkt.public_cert->pubkey_algo) ) {
m_free(afp);
break;
}
m_free(afp);
}
else
BUG();
} /* end compare public keys */
1997-11-18 15:06:00 +01:00
}
}
1998-03-19 16:27:29 +01:00
if( k ) { /* found */
assert( k->pkt->pkttype == PKT_PUBLIC_CERT
|| k->pkt->pkttype == PKT_PUBKEY_SUBCERT );
copy_public_cert( pkc, k->pkt->pkt.public_cert );
1998-04-08 21:49:02 +02:00
if( ret_keyblock ) {
*ret_keyblock = keyblock;
keyblock = NULL;
}
1998-03-19 16:27:29 +01:00
break; /* enumeration */
1997-11-18 15:06:00 +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 )
rc = G10ERR_NO_PUBKEY;
else if( rc )
log_error("enum_keyblocks(read) failed: %s\n", g10_errstr(rc));
1997-11-18 15:06:00 +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-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-03-19 16:27:29 +01:00
lookup_skc( PKT_secret_cert *skc, int mode, u32 *keyid, const char *name )
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 */
for(kk=keyblock; kk; kk = kk->next )
if( ( kk->pkt->pkttype == PKT_SECRET_CERT
|| kk->pkt->pkttype == PKT_SECKEY_SUBCERT )
&& ( !skc->pubkey_algo
|| skc->pubkey_algo
== kk->pkt->pkt.secret_cert->pubkey_algo))
break;
if( kk ) {
u32 aki[2];
keyid_from_skc( kk->pkt->pkt.secret_cert, aki );
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
log_error("No key for userid (in skc)\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) ) {
log_debug("lookup_skc keyid=%08lx%08lx req_algo=%d mode=%d\n",
(ulong)keyid[0], (ulong)keyid[1],
skc->pubkey_algo, mode );
}
1998-03-19 16:27:29 +01:00
for(k=keyblock; k; k = k->next ) {
if( k->pkt->pkttype == PKT_SECRET_CERT
|| k->pkt->pkttype == PKT_SECKEY_SUBCERT ) {
if( mode == 10 || mode == 11 ) {
u32 aki[2];
keyid_from_skc( k->pkt->pkt.secret_cert, 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],
k->pkt->pkt.secret_cert->pubkey_algo );
}
1998-03-19 16:27:29 +01:00
if( aki[1] == keyid[1]
&& ( mode == 10 || aki[0] == keyid[0] )
&& ( !skc->pubkey_algo
|| skc->pubkey_algo
== k->pkt->pkt.secret_cert->pubkey_algo) ){
/* 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 */
if( !skc->pubkey_algo
|| skc->pubkey_algo
== k->pkt->pkt.secret_cert->pubkey_algo )
break;
}
else if( mode == 16 || mode == 20 ) {
size_t an;
byte *afp = fingerprint_from_skc(
k->pkt->pkt.secret_cert, &an );
if( an == mode && !memcmp( afp, name, an)
&& ( !skc->pubkey_algo
|| skc->pubkey_algo
== k->pkt->pkt.secret_cert->pubkey_algo) ) {
m_free(afp);
break;
}
m_free(afp);
}
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 */
assert( k->pkt->pkttype == PKT_SECRET_CERT
|| k->pkt->pkttype == PKT_SECKEY_SUBCERT );
copy_secret_cert( skc, k->pkt->pkt.secret_cert );
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
/****************
* Enumerate all secret keys. Caller must use these procedure:
* 1) create a void pointer and initialize it to NULL
* 2) pass this void pointer by reference to this function
* and provide space for the secret key (pass a buffer for skc)
* 3) call this function as long as it does not return -1
* to indicate EOF.
* 4) Always call this function a last time with SKC set to NULL,
* so that can free it's context.
*
* Return
*/
int
enum_secret_keys( void **context, PKT_secret_cert *skc )
{
int rc=0;
PACKET pkt;
int save_mode;
enum_seckey_context_t *c = *context;
if( !c ) { /* make a new context */
c = m_alloc_clear( sizeof *c );
*context = c;
c->sl = secret_keyrings;
}
if( !skc ) { /* free the context */
m_free( c );
*context = NULL;
return 0;
}
if( c->eof )
return -1;
for( ; c->sl; c->sl = c->sl->next ) {
if( !c->iobuf ) {
if( !(c->iobuf = iobuf_open( c->sl->d ) ) ) {
log_error("enum_secret_keys: can't open '%s'\n", c->sl->d );
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-04-08 21:49:02 +02:00
else if( pkt.pkttype == PKT_SECRET_CERT
|| pkt.pkttype == PKT_SECKEY_SUBCERT ) {
1998-01-13 20:04:23 +01:00
copy_secret_cert( skc, pkt.pkt.secret_cert );
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;
/* try it two times; second pass reads from keyrings */
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;
/* try it two times; second pass reads from keyrings */
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