1998-01-02 21:40:10 +01:00
|
|
|
|
/* trustdb.c
|
1998-02-24 19:50:46 +01:00
|
|
|
|
* Copyright (C) 1998 Free Software Foundation, Inc.
|
1998-01-02 21:40:10 +01:00
|
|
|
|
*
|
1998-02-24 19:50:46 +01:00
|
|
|
|
* This file is part of GNUPG.
|
1998-01-02 21:40:10 +01:00
|
|
|
|
*
|
1998-02-24 19:50:46 +01:00
|
|
|
|
* GNUPG is free software; you can redistribute it and/or modify
|
1998-01-02 21:40:10 +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,
|
1998-01-02 21:40:10 +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 <errno.h>
|
1998-07-29 21:35:05 +02:00
|
|
|
|
#include <ctype.h>
|
1998-01-02 21:40:10 +01:00
|
|
|
|
#include <assert.h>
|
1998-02-17 21:48:52 +01:00
|
|
|
|
#include <sys/types.h>
|
1998-05-13 19:53:36 +02:00
|
|
|
|
#include <sys/stat.h>
|
1998-01-13 20:04:23 +01:00
|
|
|
|
#include <fcntl.h>
|
1998-02-17 21:48:52 +01:00
|
|
|
|
#include <unistd.h>
|
1998-01-02 21:40:10 +01:00
|
|
|
|
|
|
|
|
|
#include "errors.h"
|
|
|
|
|
#include "iobuf.h"
|
|
|
|
|
#include "keydb.h"
|
|
|
|
|
#include "memory.h"
|
|
|
|
|
#include "util.h"
|
1998-01-12 11:18:17 +01:00
|
|
|
|
#include "trustdb.h"
|
|
|
|
|
#include "options.h"
|
1998-01-16 22:15:24 +01:00
|
|
|
|
#include "packet.h"
|
|
|
|
|
#include "main.h"
|
1998-04-02 12:30:03 +02:00
|
|
|
|
#include "i18n.h"
|
1998-07-09 15:37:17 +02:00
|
|
|
|
#include "tdbio.h"
|
1998-01-02 21:40:10 +01:00
|
|
|
|
|
|
|
|
|
|
1998-07-14 19:10:28 +02:00
|
|
|
|
#if MAX_FINGERPRINT_LEN > 20
|
|
|
|
|
#error Must change structure of trustdb
|
|
|
|
|
#endif
|
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
typedef struct local_id_info *LOCAL_ID_INFO;
|
|
|
|
|
struct local_id_info {
|
|
|
|
|
LOCAL_ID_INFO next;
|
|
|
|
|
ulong lid;
|
|
|
|
|
unsigned flag;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
typedef struct trust_info TRUST_INFO;
|
|
|
|
|
struct trust_info {
|
|
|
|
|
ulong lid;
|
|
|
|
|
unsigned trust;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1998-01-19 19:54:44 +01:00
|
|
|
|
typedef struct trust_seg_list *TRUST_SEG_LIST;
|
|
|
|
|
struct trust_seg_list {
|
|
|
|
|
TRUST_SEG_LIST next;
|
|
|
|
|
int nseg; /* number of segmens */
|
|
|
|
|
int dup;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
TRUST_INFO seg[1]; /* segment list */
|
1998-01-19 19:54:44 +01:00
|
|
|
|
};
|
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
typedef struct {
|
|
|
|
|
TRUST_SEG_LIST tsl;
|
|
|
|
|
int index;
|
|
|
|
|
} ENUM_TRUST_WEB_CONTEXT;
|
|
|
|
|
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
struct recno_list_struct {
|
|
|
|
|
struct recno_list_struct *next;
|
|
|
|
|
ulong recno;
|
|
|
|
|
int type;
|
|
|
|
|
};
|
|
|
|
|
typedef struct recno_list_struct *RECNO_LIST;
|
|
|
|
|
|
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
static int walk_sigrecs( SIGREC_CONTEXT *c );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
|
|
|
|
static LOCAL_ID_INFO *new_lid_table(void);
|
|
|
|
|
static void release_lid_table( LOCAL_ID_INFO *tbl );
|
1998-01-19 19:54:44 +01:00
|
|
|
|
static int ins_lid_table_item( LOCAL_ID_INFO *tbl, ulong lid, unsigned flag );
|
|
|
|
|
static int qry_lid_table_flag( LOCAL_ID_INFO *tbl, ulong lid, unsigned *flag );
|
|
|
|
|
static void upd_lid_table_flag( LOCAL_ID_INFO *tbl, ulong lid, unsigned flag );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
|
|
|
|
static void print_user_id( const char *text, u32 *keyid );
|
1998-01-24 17:32:27 +01:00
|
|
|
|
static int do_list_path( TRUST_INFO *stack, int depth, int max_depth,
|
1998-01-19 19:54:44 +01:00
|
|
|
|
LOCAL_ID_INFO *lids, TRUST_SEG_LIST *tslist );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
|
|
|
|
static int list_sigs( ulong pubkey_id );
|
1998-01-24 17:32:27 +01:00
|
|
|
|
static int propagate_trust( TRUST_SEG_LIST tslist );
|
1998-07-14 19:10:28 +02:00
|
|
|
|
static int do_check( TRUSTREC *drec, unsigned *trustlevel );
|
1998-10-12 22:16:38 +02:00
|
|
|
|
static int get_dir_record( PKT_public_key *pk, TRUSTREC *rec );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
/* a table used to keep track of ultimately trusted keys
|
|
|
|
|
* which are the ones from our secrings */
|
|
|
|
|
static LOCAL_ID_INFO *ultikey_table;
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
static ulong last_trust_web_key;
|
|
|
|
|
static TRUST_SEG_LIST last_trust_web_tslist;
|
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-07-29 21:35:05 +02:00
|
|
|
|
#define HEXTOBIN(a) ( (a) >= '0' && (a) <= '9' ? ((a)-'0') : \
|
|
|
|
|
(a) >= 'A' && (a) <= 'F' ? ((a)-'A'+10) : ((a)-'a'+10))
|
1998-10-07 15:30:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************
|
|
|
|
|
*********** record read write **************
|
|
|
|
|
**********************************************/
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
die_invalid_db()
|
|
|
|
|
{
|
|
|
|
|
log_error(_(
|
|
|
|
|
"The trust DB is corrupted; please run \"gpgm --fix-trust-db\".\n") );
|
|
|
|
|
g10_exit(2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Read a record but die if it does not exist
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
read_record( ulong recno, TRUSTREC *rec, int rectype )
|
|
|
|
|
{
|
|
|
|
|
int rc = tdbio_read_record( recno, rec, rectype );
|
|
|
|
|
if( !rc )
|
|
|
|
|
return;
|
|
|
|
|
log_error("trust record %lu, req type %d: read failed: %s\n",
|
|
|
|
|
recno, rectype, g10_errstr(rc) );
|
|
|
|
|
die_invalid_db();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Wirte a record but die on error
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
write_record( TRUSTREC *rec )
|
|
|
|
|
{
|
|
|
|
|
int rc = tdbio_write_record( rec );
|
|
|
|
|
if( !rc )
|
|
|
|
|
return;
|
|
|
|
|
log_error("trust record %lu, type %d: write failed: %s\n",
|
|
|
|
|
rec->recnum, rec->rectype, g10_errstr(rc) );
|
|
|
|
|
die_invalid_db();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Delete a record but die on error
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
delete_record( ulong recno )
|
|
|
|
|
{
|
|
|
|
|
int rc = tdbio_delete_record( recno );
|
|
|
|
|
if( !rc )
|
|
|
|
|
return;
|
|
|
|
|
log_error("trust record %lu: delete failed: %s\n",
|
|
|
|
|
recno, g10_errstr(rc) );
|
|
|
|
|
die_invalid_db();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
/**********************************************
|
|
|
|
|
************* list helpers *******************
|
|
|
|
|
**********************************************/
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
/****************
|
|
|
|
|
* Insert a new item into a recno list
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
ins_recno_list( RECNO_LIST *head, ulong recno, int type )
|
|
|
|
|
{
|
|
|
|
|
RECNO_LIST item = m_alloc( sizeof *item );
|
|
|
|
|
|
|
|
|
|
item->recno = recno;
|
|
|
|
|
item->type = type;
|
|
|
|
|
item->next = *head;
|
|
|
|
|
*head = item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static RECNO_LIST
|
|
|
|
|
qry_recno_list( RECNO_LIST list, ulong recno, int type )
|
|
|
|
|
{
|
|
|
|
|
for( ; list; list = list->next ) {
|
|
|
|
|
if( list->recno == recno && (!type || list->type == type) )
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
rel_recno_list( RECNO_LIST *head )
|
|
|
|
|
{
|
|
|
|
|
RECNO_LIST r, r2;
|
|
|
|
|
|
|
|
|
|
for(r = *head; r; r = r2 ) {
|
|
|
|
|
r2 = r->next;
|
|
|
|
|
m_free(r);
|
|
|
|
|
}
|
|
|
|
|
*head = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
static LOCAL_ID_INFO *
|
|
|
|
|
new_lid_table(void)
|
|
|
|
|
{
|
|
|
|
|
return m_alloc_clear( 16 * sizeof(LOCAL_ID_INFO));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
release_lid_table( LOCAL_ID_INFO *tbl )
|
|
|
|
|
{
|
|
|
|
|
LOCAL_ID_INFO a, a2;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for(i=0; i < 16; i++ ) {
|
|
|
|
|
for(a=tbl[i]; a; a = a2 ) {
|
|
|
|
|
a2 = a->next;
|
|
|
|
|
m_free(a);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
m_free(tbl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Add a new item to the table or return 1 if we already have this item
|
1998-04-14 19:51:16 +02:00
|
|
|
|
* fixme: maybe it's a good idea to take items from an unused item list.
|
1998-01-30 21:25:31 +01:00
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
ins_lid_table_item( LOCAL_ID_INFO *tbl, ulong lid, unsigned flag )
|
|
|
|
|
{
|
|
|
|
|
LOCAL_ID_INFO a;
|
|
|
|
|
|
|
|
|
|
for( a = tbl[lid & 0x0f]; a; a = a->next )
|
|
|
|
|
if( a->lid == lid )
|
|
|
|
|
return 1;
|
|
|
|
|
a = m_alloc( sizeof *a );
|
|
|
|
|
a->lid = lid;
|
|
|
|
|
a->flag = flag;
|
|
|
|
|
a->next = tbl[lid & 0x0f];
|
|
|
|
|
tbl[lid & 0x0f] = a;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
qry_lid_table_flag( LOCAL_ID_INFO *tbl, ulong lid, unsigned *flag )
|
|
|
|
|
{
|
|
|
|
|
LOCAL_ID_INFO a;
|
|
|
|
|
|
|
|
|
|
for( a = tbl[lid & 0x0f]; a; a = a->next )
|
|
|
|
|
if( a->lid == lid ) {
|
|
|
|
|
if( flag )
|
|
|
|
|
*flag = a->flag;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upd_lid_table_flag( LOCAL_ID_INFO *tbl, ulong lid, unsigned flag )
|
|
|
|
|
{
|
|
|
|
|
LOCAL_ID_INFO a;
|
|
|
|
|
|
|
|
|
|
for( a = tbl[lid & 0x0f]; a; a = a->next )
|
|
|
|
|
if( a->lid == lid ) {
|
|
|
|
|
a->flag = flag;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
BUG();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/****************
|
|
|
|
|
* Return the keyid from the primary key identified by LID.
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
keyid_from_lid( ulong lid, u32 *keyid )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
int rc;
|
|
|
|
|
|
1998-07-09 15:37:17 +02:00
|
|
|
|
rc = tdbio_read_record( lid, &rec, RECTYPE_DIR );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
if( rc ) {
|
1998-07-21 14:53:38 +02:00
|
|
|
|
log_error("error reading dir record for LID %lu: %s\n",
|
1998-01-30 21:25:31 +01:00
|
|
|
|
lid, g10_errstr(rc));
|
|
|
|
|
return G10ERR_TRUSTDB;
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( !rec.r.dir.keylist ) {
|
|
|
|
|
log_error("no primary key for LID %lu\n", lid );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
return G10ERR_TRUSTDB;
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
rc = tdbio_read_record( rec.r.dir.keylist, &rec, RECTYPE_KEY );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("error reading primary key for LID %lu: %s\n",
|
|
|
|
|
lid, g10_errstr(rc));
|
|
|
|
|
return G10ERR_TRUSTDB;
|
|
|
|
|
}
|
|
|
|
|
keyid_from_fingerprint( rec.r.key.fingerprint, rec.r.key.fingerprint_len,
|
|
|
|
|
keyid );
|
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
return 0;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
|
|
|
|
|
ulong
|
|
|
|
|
lid_from_keyblock( KBNODE keyblock )
|
|
|
|
|
{
|
|
|
|
|
KBNODE node = find_kbnode( keyblock, PKT_PUBLIC_KEY );
|
|
|
|
|
PKT_public_key *pk;
|
|
|
|
|
if( !node )
|
|
|
|
|
BUG();
|
|
|
|
|
pk = node->pkt->pkt.public_key;
|
|
|
|
|
if( !pk->local_id ) {
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
|
|
|
|
|
get_dir_record( pk, &rec );
|
|
|
|
|
}
|
|
|
|
|
return pk->local_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
|
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
/****************
|
1998-04-14 19:51:16 +02:00
|
|
|
|
* Walk through the signatures of a public key.
|
1998-01-16 22:15:24 +01:00
|
|
|
|
* The caller must provide a context structure, with all fields set
|
1998-01-30 21:25:31 +01:00
|
|
|
|
* to zero, but the local_id field set to the requested key;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
* This function does not change this field. On return the context
|
|
|
|
|
* is filled with the local-id of the signature and the signature flag.
|
|
|
|
|
* No fields should be changed (clearing all fields and setting
|
|
|
|
|
* pubkeyid is okay to continue with an other pubkey)
|
|
|
|
|
* Returns: 0 - okay, -1 for eof (no more sigs) or any other errorcode
|
|
|
|
|
*/
|
|
|
|
|
static int
|
1998-10-12 22:16:38 +02:00
|
|
|
|
walk_sigrecs( SIGREC_CONTEXT *c )
|
1998-01-16 22:15:24 +01:00
|
|
|
|
{
|
|
|
|
|
TRUSTREC *r;
|
|
|
|
|
ulong rnum;
|
|
|
|
|
|
|
|
|
|
if( c->ctl.eof )
|
|
|
|
|
return -1;
|
|
|
|
|
r = &c->ctl.rec;
|
1998-01-31 22:24:36 +01:00
|
|
|
|
if( !c->ctl.init_done ) {
|
|
|
|
|
c->ctl.init_done = 1;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( c->lid, r, RECTYPE_DIR );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
c->ctl.nextuid = r->r.dir.uidlist;
|
|
|
|
|
/* force a read (what a bad bad hack) */
|
|
|
|
|
c->ctl.index = SIGS_PER_RECORD;
|
|
|
|
|
r->r.sig.next = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* need a loop to skip over deleted sigs */
|
|
|
|
|
do {
|
|
|
|
|
if( c->ctl.index >= SIGS_PER_RECORD ) { /* read the record */
|
|
|
|
|
rnum = r->r.sig.next;
|
|
|
|
|
if( !rnum && c->ctl.nextuid ) { /* read next uid record */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( c->ctl.nextuid, r, RECTYPE_UID );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
c->ctl.nextuid = r->r.uid.next;
|
|
|
|
|
rnum = r->r.uid.siglist;
|
1998-01-25 19:56:33 +01:00
|
|
|
|
}
|
1998-01-31 22:24:36 +01:00
|
|
|
|
if( !rnum ) {
|
1998-01-16 22:15:24 +01:00
|
|
|
|
c->ctl.eof = 1;
|
|
|
|
|
return -1; /* return eof */
|
|
|
|
|
}
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( rnum, r, RECTYPE_SIG );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( r->r.sig.lid != c->lid ) {
|
1998-04-20 16:47:21 +02:00
|
|
|
|
log_error(_("chained sigrec %lu has a wrong owner\n"), rnum );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
c->ctl.eof = 1;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
die_invalid_db();
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
|
|
|
|
c->ctl.index = 0;
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
} while( !r->r.sig.sig[c->ctl.index++].lid );
|
|
|
|
|
|
|
|
|
|
c->sig_lid = r->r.sig.sig[c->ctl.index-1].lid;
|
1998-01-31 22:24:36 +01:00
|
|
|
|
c->sig_flag = r->r.sig.sig[c->ctl.index-1].flag;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
/***********************************************
|
|
|
|
|
************* Trust stuff ******************
|
|
|
|
|
***********************************************/
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
/****************
|
1998-04-14 19:51:16 +02:00
|
|
|
|
* Verify that all our public keys are in the trustDB.
|
1998-01-13 20:04:23 +01:00
|
|
|
|
*/
|
|
|
|
|
static int
|
1998-06-29 14:30:57 +02:00
|
|
|
|
verify_own_keys()
|
1998-01-13 20:04:23 +01:00
|
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
void *enum_context = NULL;
|
1998-06-29 14:30:57 +02:00
|
|
|
|
PKT_secret_key *sk = m_alloc_clear( sizeof *sk );
|
|
|
|
|
PKT_public_key *pk = m_alloc_clear( sizeof *pk );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
1998-09-11 07:47:32 +02:00
|
|
|
|
while( !(rc=enum_secret_keys( &enum_context, sk, 0 ) ) ) {
|
1998-06-29 14:30:57 +02:00
|
|
|
|
keyid_from_sk( sk, keyid );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
|
|
|
|
if( DBG_TRUST )
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_debug("key %08lX: checking secret key\n", (ulong)keyid[1] );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
if( is_secret_key_protected( sk ) < 1 )
|
|
|
|
|
log_info("note: secret key %08lX is NOT protected.\n",
|
|
|
|
|
(ulong)keyid[1] );
|
|
|
|
|
|
1998-04-14 19:51:16 +02:00
|
|
|
|
/* see whether we can access the public key of this secret key */
|
1998-06-29 14:30:57 +02:00
|
|
|
|
memset( pk, 0, sizeof *pk );
|
|
|
|
|
rc = get_pubkey( pk, keyid );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
if( rc ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX: secret key without public key\n"),
|
1998-01-13 20:04:23 +01:00
|
|
|
|
(ulong)keyid[1] );
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( cmp_public_secret_key( pk, sk ) ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX: secret and public key don't match\n"),
|
1998-01-13 20:04:23 +01:00
|
|
|
|
(ulong)keyid[1] );
|
|
|
|
|
rc = G10ERR_GENERAL;
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
1998-01-24 17:32:27 +01:00
|
|
|
|
|
|
|
|
|
/* make sure that the pubkey is in the trustdb */
|
1998-06-29 14:30:57 +02:00
|
|
|
|
rc = query_trust_record( pk );
|
1998-01-24 17:32:27 +01:00
|
|
|
|
if( rc == -1 ) { /* put it into the trustdb */
|
1998-06-29 14:30:57 +02:00
|
|
|
|
rc = insert_trust_record( pk );
|
1998-01-24 17:32:27 +01:00
|
|
|
|
if( rc ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX: can't put it into the trustdb\n"),
|
1998-01-24 17:32:27 +01:00
|
|
|
|
(ulong)keyid[1] );
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
1998-01-24 17:32:27 +01:00
|
|
|
|
else if( rc ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX: query record failed\n"), (ulong)keyid[1] );
|
1998-01-24 17:32:27 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
1998-01-19 19:54:44 +01:00
|
|
|
|
if( DBG_TRUST )
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_debug("key %08lX.%lu: stored into ultikey_table\n",
|
1998-06-29 14:30:57 +02:00
|
|
|
|
(ulong)keyid[1], pk->local_id );
|
|
|
|
|
if( ins_lid_table_item( ultikey_table, pk->local_id, 0 ) )
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX: already in ultikey_table\n"),
|
1998-01-19 19:54:44 +01:00
|
|
|
|
(ulong)keyid[1]);
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
release_secret_key_parts( sk );
|
|
|
|
|
release_public_key_parts( pk );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
|
|
|
|
if( rc != -1 )
|
1998-04-20 16:47:21 +02:00
|
|
|
|
log_error(_("enum_secret_keys failed: %s\n"), g10_errstr(rc) );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
else
|
|
|
|
|
rc = 0;
|
|
|
|
|
|
|
|
|
|
leave:
|
1998-10-06 14:10:02 +02:00
|
|
|
|
enum_secret_keys( &enum_context, NULL, 0 ); /* free context */
|
1998-06-29 14:30:57 +02:00
|
|
|
|
free_secret_key( sk );
|
|
|
|
|
free_public_key( pk );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
static void
|
|
|
|
|
print_user_id( const char *text, u32 *keyid )
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
|
|
p = get_user_id( keyid, &n );
|
|
|
|
|
if( *text ) {
|
|
|
|
|
fputs( text, stdout);
|
|
|
|
|
putchar(' ');
|
|
|
|
|
}
|
|
|
|
|
putchar('\"');
|
1998-03-09 22:44:06 +01:00
|
|
|
|
print_string( stdout, p, n, 0 );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
putchar('\"');
|
|
|
|
|
putchar('\n');
|
|
|
|
|
m_free(p);
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-09 15:37:17 +02:00
|
|
|
|
static void
|
|
|
|
|
print_keyid( FILE *fp, ulong lid )
|
|
|
|
|
{
|
|
|
|
|
u32 ki[2];
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( keyid_from_lid( lid, ki ) )
|
1998-07-09 15:37:17 +02:00
|
|
|
|
fprintf(fp, "????????.%lu", lid );
|
|
|
|
|
else
|
|
|
|
|
fprintf(fp, "%08lX.%lu", (ulong)ki[1], lid );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_trust( FILE *fp, unsigned trust )
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
switch( trust ) {
|
|
|
|
|
case TRUST_UNKNOWN: c = 'o'; break;
|
|
|
|
|
case TRUST_EXPIRED: c = 'e'; break;
|
|
|
|
|
case TRUST_UNDEFINED: c = 'q'; break;
|
|
|
|
|
case TRUST_NEVER: c = 'n'; break;
|
|
|
|
|
case TRUST_MARGINAL: c = 'm'; break;
|
|
|
|
|
case TRUST_FULLY: c = 'f'; break;
|
|
|
|
|
case TRUST_ULTIMATE: c = 'u'; break;
|
|
|
|
|
default: fprintf(fp, "%02x", trust ); return;
|
|
|
|
|
}
|
|
|
|
|
putc(c, fp);
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
/* (a non-recursive algorithm would be easier) */
|
|
|
|
|
static int
|
|
|
|
|
do_list_sigs( ulong root, ulong pubkey, int depth,
|
|
|
|
|
LOCAL_ID_INFO *lids, unsigned *lineno )
|
|
|
|
|
{
|
|
|
|
|
SIGREC_CONTEXT sx;
|
|
|
|
|
int rc;
|
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
|
|
|
|
memset( &sx, 0, sizeof sx );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
sx.lid = pubkey;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
for(;;) {
|
1998-10-12 22:16:38 +02:00
|
|
|
|
rc = walk_sigrecs( &sx );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
if( rc )
|
|
|
|
|
break;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
rc = keyid_from_lid( sx.sig_lid, keyid );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
if( rc ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
printf("%6u: %*s????????.%lu:%02x\n", *lineno, depth*4, "",
|
1998-07-21 14:53:38 +02:00
|
|
|
|
sx.sig_lid, sx.sig_flag );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
++*lineno;
|
|
|
|
|
}
|
|
|
|
|
else {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
printf("%6u: %*s%08lX.%lu:%02x ", *lineno, depth*4, "",
|
1998-07-21 14:53:38 +02:00
|
|
|
|
(ulong)keyid[1], sx.sig_lid, sx.sig_flag );
|
1998-04-14 19:51:16 +02:00
|
|
|
|
/* check whether we already checked this pubkey */
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( !qry_lid_table_flag( ultikey_table, sx.sig_lid, NULL ) ) {
|
1998-01-16 22:15:24 +01:00
|
|
|
|
print_user_id("[ultimately trusted]", keyid);
|
|
|
|
|
++*lineno;
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
else if( sx.sig_lid == pubkey ) {
|
1998-01-16 22:15:24 +01:00
|
|
|
|
printf("[self-signature]\n");
|
|
|
|
|
++*lineno;
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
else if( sx.sig_lid == root ) {
|
1998-01-16 22:15:24 +01:00
|
|
|
|
printf("[closed]\n");
|
|
|
|
|
++*lineno;
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
else if( ins_lid_table_item( lids, sx.sig_lid, *lineno ) ) {
|
1998-01-16 22:15:24 +01:00
|
|
|
|
unsigned refline;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
qry_lid_table_flag( lids, sx.sig_lid, &refline );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
printf("[see line %u]\n", refline);
|
|
|
|
|
++*lineno;
|
|
|
|
|
}
|
|
|
|
|
else if( depth+1 >= MAX_LIST_SIGS_DEPTH ) {
|
|
|
|
|
print_user_id( "[too deeply nested]", keyid );
|
|
|
|
|
++*lineno;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
print_user_id( "", keyid );
|
|
|
|
|
++*lineno;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
rc = do_list_sigs( root, sx.sig_lid, depth+1, lids, lineno );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
if( rc )
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return rc==-1? 0 : rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* List all signatures of a public key
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
list_sigs( ulong pubkey_id )
|
|
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
u32 keyid[2];
|
|
|
|
|
LOCAL_ID_INFO *lids;
|
|
|
|
|
unsigned lineno = 1;
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
rc = keyid_from_lid( pubkey_id, keyid );
|
|
|
|
|
if( rc )
|
1998-01-16 22:15:24 +01:00
|
|
|
|
return rc;
|
1998-07-09 15:37:17 +02:00
|
|
|
|
printf("Signatures of %08lX.%lu ", (ulong)keyid[1], pubkey_id );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
print_user_id("", keyid);
|
|
|
|
|
printf("----------------------\n");
|
|
|
|
|
|
|
|
|
|
lids = new_lid_table();
|
|
|
|
|
rc = do_list_sigs( pubkey_id, pubkey_id, 0, lids, &lineno );
|
|
|
|
|
putchar('\n');
|
|
|
|
|
release_lid_table(lids);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/****************
|
|
|
|
|
* List all records of a public key
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
list_records( ulong lid )
|
|
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
TRUSTREC dr, ur, rec;
|
|
|
|
|
ulong recno;
|
|
|
|
|
|
|
|
|
|
rc = tdbio_read_record( lid, &dr, RECTYPE_DIR );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("lid %lu: read dir record failed: %s\n", lid, g10_errstr(rc));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
tdbio_dump_record( &dr, stdout );
|
|
|
|
|
|
|
|
|
|
for( recno=dr.r.dir.keylist; recno; recno = rec.r.key.next ) {
|
|
|
|
|
rc = tdbio_read_record( recno, &rec, RECTYPE_KEY );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("lid %lu: read key record failed: %s\n",
|
|
|
|
|
lid, g10_errstr(rc));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
tdbio_dump_record( &rec, stdout );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( recno=dr.r.dir.uidlist; recno; recno = ur.r.uid.next ) {
|
|
|
|
|
rc = tdbio_read_record( recno, &ur, RECTYPE_UID );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("lid %lu: read uid record failed: %s\n",
|
|
|
|
|
lid, g10_errstr(rc));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
tdbio_dump_record( &ur, stdout );
|
|
|
|
|
/* preference records */
|
|
|
|
|
for(recno=ur.r.uid.prefrec; recno; recno = rec.r.pref.next ) {
|
|
|
|
|
rc = tdbio_read_record( recno, &rec, RECTYPE_PREF );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("lid %lu: read pref record failed: %s\n",
|
|
|
|
|
lid, g10_errstr(rc));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
tdbio_dump_record( &rec, stdout );
|
|
|
|
|
}
|
|
|
|
|
/* sig records */
|
|
|
|
|
for(recno=ur.r.uid.siglist; recno; recno = rec.r.sig.next ) {
|
|
|
|
|
rc = tdbio_read_record( recno, &rec, RECTYPE_SIG );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("lid %lu: read sig record failed: %s\n",
|
|
|
|
|
lid, g10_errstr(rc));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
tdbio_dump_record( &rec, stdout );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* add cache record dump here */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
/****************
|
|
|
|
|
* Function to collect all trustpaths
|
|
|
|
|
*/
|
1998-01-16 22:15:24 +01:00
|
|
|
|
static int
|
1998-01-24 17:32:27 +01:00
|
|
|
|
do_list_path( TRUST_INFO *stack, int depth, int max_depth,
|
1998-01-19 19:54:44 +01:00
|
|
|
|
LOCAL_ID_INFO *lids, TRUST_SEG_LIST *tslist )
|
1998-01-16 22:15:24 +01:00
|
|
|
|
{
|
|
|
|
|
SIGREC_CONTEXT sx;
|
1998-01-19 19:54:44 +01:00
|
|
|
|
unsigned last_depth;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
int rc;
|
|
|
|
|
|
1998-01-19 19:54:44 +01:00
|
|
|
|
assert(depth);
|
|
|
|
|
|
|
|
|
|
/*printf("%2lu/%d: scrutinizig\n", stack[depth-1], depth);*/
|
|
|
|
|
if( depth >= max_depth || depth >= MAX_LIST_SIGS_DEPTH-1 ) {
|
1998-04-14 19:51:16 +02:00
|
|
|
|
/*printf("%2lu/%d: too deeply nested\n", stack[depth-1], depth);*/
|
1998-01-16 22:15:24 +01:00
|
|
|
|
return 0;
|
1998-01-19 19:54:44 +01:00
|
|
|
|
}
|
|
|
|
|
memset( &sx, 0, sizeof sx );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
sx.lid = stack[depth-1].lid;
|
|
|
|
|
/* loop over all signatures. If we do not have any, try to create them */
|
1998-10-12 22:16:38 +02:00
|
|
|
|
while( !(rc = walk_sigrecs( &sx )) ) {
|
1998-01-19 19:54:44 +01:00
|
|
|
|
TRUST_SEG_LIST tsl, t2, tl;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
stack[depth].lid = sx.sig_lid;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
stack[depth].trust = 0;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( qry_lid_table_flag( lids, sx.sig_lid, &last_depth) ) {
|
|
|
|
|
/*printf("%2lu/%d: marked\n", sx.sig_lid, depth );*/
|
|
|
|
|
ins_lid_table_item( lids, sx.sig_lid, depth);
|
1998-01-19 19:54:44 +01:00
|
|
|
|
last_depth = depth;
|
|
|
|
|
}
|
|
|
|
|
else if( depth < last_depth ) {
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/*printf("%2lu/%d: last_depth=%u - updated\n", sx.sig_lid, depth, last_depth);*/
|
1998-01-19 19:54:44 +01:00
|
|
|
|
last_depth = depth;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
upd_lid_table_flag( lids, sx.sig_lid, depth);
|
1998-01-19 19:54:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( last_depth < depth )
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/*printf("%2lu/%d: already visited\n", sx.sig_lid, depth)*/;
|
|
|
|
|
else if( !qry_lid_table_flag( ultikey_table, sx.sig_lid, NULL ) ) {
|
1998-01-19 19:54:44 +01:00
|
|
|
|
/* found end of path; store it, ordered by path length */
|
1998-01-24 17:32:27 +01:00
|
|
|
|
tsl = m_alloc( sizeof *tsl + depth*sizeof(TRUST_INFO) );
|
1998-01-19 19:54:44 +01:00
|
|
|
|
tsl->nseg = depth+1;
|
|
|
|
|
tsl->dup = 0;
|
|
|
|
|
for(i=0; i <= depth; i++ )
|
|
|
|
|
tsl->seg[i] = stack[i];
|
|
|
|
|
for(t2=*tslist,tl=NULL; t2; tl=t2, t2 = t2->next )
|
|
|
|
|
if( depth < t2->nseg )
|
|
|
|
|
break;
|
|
|
|
|
if( !tl ) {
|
|
|
|
|
tsl->next = t2;
|
|
|
|
|
*tslist = tsl;
|
|
|
|
|
}
|
1998-01-16 22:15:24 +01:00
|
|
|
|
else {
|
1998-01-19 19:54:44 +01:00
|
|
|
|
tsl->next = t2;
|
|
|
|
|
tl->next = tsl;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
1998-01-19 19:54:44 +01:00
|
|
|
|
/*putchar('.'); fflush(stdout);*/
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/*printf("%2lu/%d: found\n", sx.sig_lid, depth);*/
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
1998-01-19 19:54:44 +01:00
|
|
|
|
else {
|
|
|
|
|
rc = do_list_path( stack, depth+1, max_depth, lids, tslist);
|
|
|
|
|
if( rc && rc != -1 )
|
|
|
|
|
break;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
1998-01-19 19:54:44 +01:00
|
|
|
|
}
|
1998-01-16 22:15:24 +01:00
|
|
|
|
return rc==-1? 0 : rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
/****************
|
|
|
|
|
* Make a list of trust paths
|
|
|
|
|
*/
|
|
|
|
|
static int
|
1998-07-21 14:53:38 +02:00
|
|
|
|
make_tsl( ulong lid, TRUST_SEG_LIST *ret_tslist )
|
1998-01-24 17:32:27 +01:00
|
|
|
|
{
|
|
|
|
|
int i, rc;
|
|
|
|
|
LOCAL_ID_INFO *lids = new_lid_table();
|
|
|
|
|
TRUST_INFO stack[MAX_LIST_SIGS_DEPTH];
|
|
|
|
|
TRUST_SEG_LIST tsl, tslist;
|
|
|
|
|
int max_depth = 4;
|
|
|
|
|
|
|
|
|
|
tslist = *ret_tslist = NULL;
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( !qry_lid_table_flag( ultikey_table, lid, NULL ) ) {
|
1998-01-24 17:32:27 +01:00
|
|
|
|
tslist = m_alloc( sizeof *tslist );
|
|
|
|
|
tslist->nseg = 1;
|
|
|
|
|
tslist->dup = 0;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
tslist->seg[0].lid = lid;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
tslist->seg[0].trust = 0;
|
|
|
|
|
tslist->next = NULL;
|
|
|
|
|
rc = 0;
|
|
|
|
|
}
|
|
|
|
|
else {
|
1998-07-21 14:53:38 +02:00
|
|
|
|
stack[0].lid = lid;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
stack[0].trust = 0;
|
|
|
|
|
rc = do_list_path( stack, 1, max_depth, lids, &tslist );
|
|
|
|
|
}
|
|
|
|
|
if( !rc ) { /* wipe out duplicates */
|
|
|
|
|
LOCAL_ID_INFO *work = new_lid_table();
|
|
|
|
|
for( tsl=tslist; tsl; tsl = tsl->next ) {
|
|
|
|
|
for(i=1; i < tsl->nseg-1; i++ ) {
|
|
|
|
|
if( ins_lid_table_item( work, tsl->seg[i].lid, 0 ) ) {
|
|
|
|
|
tsl->dup = 1; /* mark as duplicate */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
release_lid_table(work);
|
|
|
|
|
*ret_tslist = tslist;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
; /* FIXME: release tslist */
|
|
|
|
|
release_lid_table(lids);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-14 13:34:05 +01:00
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
/****************
|
|
|
|
|
* Given a trust segment list tslist, walk over all paths and fill in
|
|
|
|
|
* the trust information for each segment. What this function does is
|
|
|
|
|
* to assign a trustvalue to the first segment (which is the requested key)
|
|
|
|
|
* of each path.
|
|
|
|
|
*
|
1998-04-14 19:51:16 +02:00
|
|
|
|
* FIXME: We have to do more thinking here. e.g. we should never increase
|
1998-01-24 17:32:27 +01:00
|
|
|
|
* the trust value.
|
|
|
|
|
*
|
|
|
|
|
* Do not do it for duplicates.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
propagate_trust( TRUST_SEG_LIST tslist )
|
|
|
|
|
{
|
1998-10-07 15:30:43 +02:00
|
|
|
|
int i;
|
1998-02-02 15:36:06 +01:00
|
|
|
|
unsigned trust, tr;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
TRUST_SEG_LIST tsl;
|
1998-01-14 13:34:05 +01:00
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
for(tsl = tslist; tsl; tsl = tsl->next ) {
|
|
|
|
|
if( tsl->dup )
|
|
|
|
|
continue;
|
|
|
|
|
assert( tsl->nseg );
|
1998-04-14 19:51:16 +02:00
|
|
|
|
/* the last segment is always an ultimately trusted one, so we can
|
1998-01-24 17:32:27 +01:00
|
|
|
|
* assign a fully trust to the next one */
|
|
|
|
|
i = tsl->nseg-1;
|
|
|
|
|
tsl->seg[i].trust = TRUST_ULTIMATE;
|
|
|
|
|
trust = TRUST_FULLY;
|
|
|
|
|
for(i-- ; i >= 0; i-- ) {
|
|
|
|
|
tsl->seg[i].trust = trust;
|
|
|
|
|
if( i > 0 ) {
|
|
|
|
|
/* get the trust of this pubkey */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
tr = get_ownertrust( tsl->seg[i].lid );
|
1998-02-02 15:36:06 +01:00
|
|
|
|
if( tr < trust )
|
|
|
|
|
trust = tr;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
1998-01-14 13:34:05 +01:00
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-07-14 19:10:28 +02:00
|
|
|
|
/****************
|
|
|
|
|
* we have the pubkey record and all needed informations are in the trustdb
|
|
|
|
|
* but nothing more is known.
|
|
|
|
|
* (this function may re-read the dir record dr)
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
do_check( TRUSTREC *dr, unsigned *trustlevel )
|
1998-01-13 20:04:23 +01:00
|
|
|
|
{
|
1998-01-24 17:32:27 +01:00
|
|
|
|
int i, rc=0;
|
|
|
|
|
TRUST_SEG_LIST tsl, tsl2, tslist;
|
|
|
|
|
int marginal, fully;
|
1998-01-25 19:56:33 +01:00
|
|
|
|
int fully_needed = opt.completes_needed;
|
|
|
|
|
int marginal_needed = opt.marginals_needed;
|
1998-02-18 14:58:46 +01:00
|
|
|
|
unsigned tflags = 0;
|
1998-01-25 19:56:33 +01:00
|
|
|
|
|
|
|
|
|
assert( fully_needed > 0 && marginal_needed > 1 );
|
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
|
|
|
|
|
*trustlevel = TRUST_UNDEFINED;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
|
1998-07-14 19:10:28 +02:00
|
|
|
|
if( !dr->r.dir.keylist ) {
|
|
|
|
|
log_error("Ooops, no keys\n");
|
1998-07-21 14:53:38 +02:00
|
|
|
|
return G10ERR_TRUSTDB;
|
1998-07-14 19:10:28 +02:00
|
|
|
|
}
|
|
|
|
|
if( !dr->r.dir.uidlist ) {
|
|
|
|
|
log_error("Ooops, no user ids\n");
|
1998-07-21 14:53:38 +02:00
|
|
|
|
return G10ERR_TRUSTDB;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
1998-02-18 14:58:46 +01:00
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/* did we already check the signatures */
|
1998-10-12 22:16:38 +02:00
|
|
|
|
/* fixme:.... */
|
1998-07-14 19:10:28 +02:00
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( dr->r.dir.dirflags & DIRF_REVOKED )
|
1998-02-18 14:58:46 +01:00
|
|
|
|
tflags |= TRUST_FLAG_REVOKED;
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
#if 0
|
|
|
|
|
if( !rc && !dr->r.dir.siglist ) {
|
|
|
|
|
/* We do not have any signatures; check whether it is one of our
|
|
|
|
|
* secret keys */
|
|
|
|
|
if( !qry_lid_table_flag( ultikey_table, dr->r.dir.lid, NULL ) )
|
1998-02-18 14:58:46 +01:00
|
|
|
|
*trustlevel = tflags | TRUST_ULTIMATE;
|
1998-03-03 09:43:28 +01:00
|
|
|
|
return 0;
|
1998-02-02 15:36:06 +01:00
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
#endif
|
1998-01-16 22:15:24 +01:00
|
|
|
|
if( rc )
|
|
|
|
|
return rc; /* error while looking for sigrec or building sigrecs */
|
1998-01-14 13:34:05 +01:00
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
/* fixme: take it from the cache if it is valid */
|
|
|
|
|
|
|
|
|
|
/* Make a list of all possible trust-paths */
|
1998-07-21 14:53:38 +02:00
|
|
|
|
rc = make_tsl( dr->r.dir.lid, &tslist );
|
1998-01-24 17:32:27 +01:00
|
|
|
|
if( rc )
|
|
|
|
|
return rc;
|
|
|
|
|
rc = propagate_trust( tslist );
|
|
|
|
|
if( rc )
|
|
|
|
|
return rc;
|
|
|
|
|
for(tsl = tslist; tsl; tsl = tsl->next ) {
|
|
|
|
|
if( tsl->dup )
|
|
|
|
|
continue;
|
|
|
|
|
|
1998-02-12 00:22:09 +01:00
|
|
|
|
if( opt.verbose ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_info("trust path:" );
|
|
|
|
|
for(i=0; i < tsl->nseg; i++ ) {
|
|
|
|
|
putc(' ',stderr);
|
|
|
|
|
print_keyid( stderr, tsl->seg[i].lid );
|
|
|
|
|
putc(':',stderr);
|
|
|
|
|
print_trust( stderr, tsl->seg[i].trust );
|
|
|
|
|
}
|
1998-02-12 00:22:09 +01:00
|
|
|
|
putc('\n',stderr);
|
|
|
|
|
}
|
1998-01-24 17:32:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
1998-04-14 19:51:16 +02:00
|
|
|
|
/* and see whether there is a trusted path.
|
1998-01-24 17:32:27 +01:00
|
|
|
|
* We only have to look at the first segment, because
|
|
|
|
|
* propagate_trust has investigated all other segments */
|
|
|
|
|
marginal = fully = 0;
|
|
|
|
|
for(tsl = tslist; tsl; tsl = tsl->next ) {
|
|
|
|
|
if( tsl->dup )
|
|
|
|
|
continue;
|
|
|
|
|
if( tsl->seg[0].trust == TRUST_ULTIMATE ) {
|
1998-02-18 14:58:46 +01:00
|
|
|
|
*trustlevel = tflags | TRUST_ULTIMATE; /* our own key */
|
1998-01-24 17:32:27 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if( tsl->seg[0].trust == TRUST_FULLY ) {
|
|
|
|
|
marginal++;
|
|
|
|
|
fully++;
|
|
|
|
|
}
|
|
|
|
|
else if( tsl->seg[0].trust == TRUST_MARGINAL )
|
|
|
|
|
marginal++;
|
|
|
|
|
|
|
|
|
|
if( fully >= fully_needed ) {
|
1998-02-18 14:58:46 +01:00
|
|
|
|
*trustlevel = tflags | TRUST_FULLY;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if( !tsl && marginal >= marginal_needed )
|
1998-02-18 14:58:46 +01:00
|
|
|
|
*trustlevel = tflags | TRUST_MARGINAL;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
|
|
|
|
|
/* cache the tslist */
|
|
|
|
|
if( last_trust_web_key ) {
|
|
|
|
|
for( tsl = last_trust_web_tslist; tsl; tsl = tsl2 ) {
|
|
|
|
|
tsl2 = tsl->next;
|
|
|
|
|
m_free(tsl);
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-07-21 14:53:38 +02:00
|
|
|
|
last_trust_web_key = dr->r.dir.lid;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
last_trust_web_tslist = tslist;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
return 0;
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
|
1998-04-14 19:51:16 +02:00
|
|
|
|
/***********************************************
|
1998-04-20 16:47:21 +02:00
|
|
|
|
**************** API ************************
|
1998-04-14 19:51:16 +02:00
|
|
|
|
***********************************************/
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Perform some checks over the trustdb
|
1998-01-16 22:15:24 +01:00
|
|
|
|
* level 0: only open the db
|
|
|
|
|
* 1: used for initial program startup
|
1998-01-12 11:18:17 +01:00
|
|
|
|
*/
|
|
|
|
|
int
|
1998-02-02 15:36:06 +01:00
|
|
|
|
init_trustdb( int level, const char *dbname )
|
1998-01-12 11:18:17 +01:00
|
|
|
|
{
|
1998-01-13 20:04:23 +01:00
|
|
|
|
int rc=0;
|
|
|
|
|
|
1998-01-16 22:15:24 +01:00
|
|
|
|
if( !ultikey_table )
|
|
|
|
|
ultikey_table = new_lid_table();
|
|
|
|
|
|
|
|
|
|
if( !level || level==1 ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
rc = tdbio_set_dbname( dbname, !!level );
|
|
|
|
|
if( rc )
|
|
|
|
|
return rc;
|
1998-01-16 22:15:24 +01:00
|
|
|
|
if( !level )
|
|
|
|
|
return 0;
|
|
|
|
|
|
1998-07-06 12:23:57 +02:00
|
|
|
|
/* verify that our own keys are in the trustDB
|
|
|
|
|
* or move them to the trustdb. */
|
|
|
|
|
rc = verify_own_keys();
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-07-06 12:23:57 +02:00
|
|
|
|
/* should we check whether there is no other ultimately trusted
|
|
|
|
|
* key in the database? */
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
1998-01-16 22:15:24 +01:00
|
|
|
|
BUG();
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
return rc;
|
1998-01-12 11:18:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
void
|
|
|
|
|
list_trustdb( const char *username )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
|
1998-07-29 21:35:05 +02:00
|
|
|
|
if( username && *username == '#' ) {
|
|
|
|
|
int rc;
|
|
|
|
|
ulong lid = atoi(username+1);
|
|
|
|
|
|
|
|
|
|
if( (rc = list_records( lid)) )
|
|
|
|
|
log_error("user '%s' read problem: %s\n", username, g10_errstr(rc));
|
|
|
|
|
else if( (rc = list_sigs( lid )) )
|
|
|
|
|
log_error("user '%s' list problem: %s\n", username, g10_errstr(rc));
|
|
|
|
|
}
|
|
|
|
|
else if( username ) {
|
1998-06-29 14:30:57 +02:00
|
|
|
|
PKT_public_key *pk = m_alloc_clear( sizeof *pk );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
int rc;
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( (rc = get_pubkey_byname( pk, username )) )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
log_error("user '%s' not found: %s\n", username, g10_errstr(rc) );
|
1998-07-30 19:37:03 +02:00
|
|
|
|
else if( (rc=tdbio_search_dir_bypk( pk, &rec )) && rc != -1 )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
log_error("problem finding '%s' in trustdb: %s\n",
|
|
|
|
|
username, g10_errstr(rc));
|
|
|
|
|
else if( rc == -1 )
|
|
|
|
|
log_error("user '%s' not in trustdb\n", username);
|
1998-07-21 14:53:38 +02:00
|
|
|
|
else if( (rc = list_records( pk->local_id)) )
|
|
|
|
|
log_error("user '%s' read problem: %s\n", username, g10_errstr(rc));
|
1998-06-29 14:30:57 +02:00
|
|
|
|
else if( (rc = list_sigs( pk->local_id )) )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
log_error("user '%s' list problem: %s\n", username, g10_errstr(rc));
|
1998-06-29 14:30:57 +02:00
|
|
|
|
free_public_key( pk );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
ulong recnum;
|
|
|
|
|
int i;
|
|
|
|
|
|
1998-07-09 15:37:17 +02:00
|
|
|
|
printf("TrustDB: %s\n", tdbio_get_dbname() );
|
|
|
|
|
for(i=9+strlen(tdbio_get_dbname()); i > 0; i-- )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
putchar('-');
|
|
|
|
|
putchar('\n');
|
1998-07-09 15:37:17 +02:00
|
|
|
|
for(recnum=0; !tdbio_read_record( recnum, &rec, 0); recnum++ )
|
1998-07-21 14:53:38 +02:00
|
|
|
|
tdbio_dump_record( &rec, stdout );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-06 12:23:57 +02:00
|
|
|
|
/****************
|
1998-07-29 21:35:05 +02:00
|
|
|
|
* Print a list of all defined owner trust value.
|
1998-07-06 12:23:57 +02:00
|
|
|
|
*/
|
|
|
|
|
void
|
1998-07-29 21:35:05 +02:00
|
|
|
|
export_ownertrust()
|
1998-07-06 12:23:57 +02:00
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
TRUSTREC rec2;
|
1998-07-06 12:23:57 +02:00
|
|
|
|
ulong recnum;
|
|
|
|
|
int i;
|
|
|
|
|
byte *p;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
int rc;
|
1998-07-06 12:23:57 +02:00
|
|
|
|
|
1998-07-09 15:37:17 +02:00
|
|
|
|
for(recnum=0; !tdbio_read_record( recnum, &rec, 0); recnum++ ) {
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( rec.rectype == RECTYPE_DIR ) {
|
|
|
|
|
if( !rec.r.dir.keylist ) {
|
|
|
|
|
log_error("Oops; directory record w/o primary key\n");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if( !rec.r.dir.ownertrust )
|
|
|
|
|
continue;
|
|
|
|
|
rc = tdbio_read_record( rec.r.dir.keylist, &rec2, RECTYPE_KEY);
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("error reading key record: %s\n", g10_errstr(rc));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
p = rec2.r.key.fingerprint;
|
|
|
|
|
for(i=0; i < rec2.r.key.fingerprint_len; i++, p++ )
|
1998-07-06 12:23:57 +02:00
|
|
|
|
printf("%02X", *p );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
printf(":%u:\n", (unsigned)rec.r.dir.ownertrust );
|
1998-07-06 12:23:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-29 21:35:05 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
import_ownertrust( const char *fname )
|
|
|
|
|
{
|
|
|
|
|
FILE *fp;
|
|
|
|
|
int is_stdin=0;
|
|
|
|
|
char line[256];
|
|
|
|
|
char *p;
|
|
|
|
|
size_t n, fprlen;
|
|
|
|
|
unsigned otrust;
|
|
|
|
|
|
|
|
|
|
if( !fname || (*fname == '-' && !fname[1]) ) {
|
|
|
|
|
fp = stdin;
|
|
|
|
|
fname = "[stdin]";
|
|
|
|
|
is_stdin = 1;
|
|
|
|
|
}
|
|
|
|
|
else if( !(fp = fopen( fname, "r" )) ) {
|
|
|
|
|
log_error_f(fname, _("can't open file: %s\n"), strerror(errno) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while( fgets( line, DIM(line)-1, fp ) ) {
|
1998-07-30 19:37:03 +02:00
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
int rc;
|
|
|
|
|
|
1998-07-29 21:35:05 +02:00
|
|
|
|
if( !*line || *line == '#' )
|
|
|
|
|
continue;
|
|
|
|
|
n = strlen(line);
|
|
|
|
|
if( line[n-1] != '\n' ) {
|
|
|
|
|
log_error_f(fname, "line to long\n" );
|
|
|
|
|
break; /* can't continue */
|
|
|
|
|
}
|
|
|
|
|
for(p = line; *p && *p != ':' ; p++ )
|
|
|
|
|
if( !isxdigit(*p) )
|
|
|
|
|
break;
|
|
|
|
|
if( *p != ':' ) {
|
|
|
|
|
log_error_f(fname, "error: missing colon\n" );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
fprlen = p - line;
|
|
|
|
|
if( fprlen != 32 && fprlen != 40 ) {
|
|
|
|
|
log_error_f(fname, "error: invalid fingerprint\n" );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if( sscanf(p, ":%u:", &otrust ) != 1 ) {
|
|
|
|
|
log_error_f(fname, "error: no otrust value\n" );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if( !otrust )
|
|
|
|
|
continue; /* no otrust defined - no need to update or insert */
|
|
|
|
|
/* convert the ascii fingerprint to binary */
|
|
|
|
|
for(p=line, fprlen=0; *p != ':'; p += 2 )
|
|
|
|
|
line[fprlen++] = HEXTOBIN(p[0]) * 16 + HEXTOBIN(p[1]);
|
|
|
|
|
line[fprlen] = 0;
|
|
|
|
|
|
1998-07-30 19:37:03 +02:00
|
|
|
|
repeat:
|
|
|
|
|
rc = tdbio_search_dir_byfpr( line, fprlen, 0, &rec );
|
|
|
|
|
if( !rc ) { /* found: update */
|
|
|
|
|
if( rec.r.dir.ownertrust )
|
|
|
|
|
log_info("LID %lu: changing trust from %u to %u\n",
|
|
|
|
|
rec.r.dir.lid, rec.r.dir.ownertrust, otrust );
|
|
|
|
|
else
|
|
|
|
|
log_info("LID %lu: setting trust to %u\n",
|
|
|
|
|
rec.r.dir.lid, otrust );
|
|
|
|
|
rec.r.dir.ownertrust = otrust;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
write_record( &rec );
|
1998-07-30 19:37:03 +02:00
|
|
|
|
}
|
|
|
|
|
else if( rc == -1 ) { /* not found; get the key from the ring */
|
|
|
|
|
PKT_public_key *pk = m_alloc_clear( sizeof *pk );
|
|
|
|
|
|
|
|
|
|
log_info_f(fname, "key not in trustdb, searching ring.\n");
|
|
|
|
|
rc = get_pubkey_byfprint( pk, line, fprlen );
|
|
|
|
|
if( rc )
|
|
|
|
|
log_info_f(fname, "key not in ring: %s\n", g10_errstr(rc));
|
|
|
|
|
else {
|
|
|
|
|
rc = query_trust_record( pk ); /* only as assertion */
|
|
|
|
|
if( rc != -1 )
|
|
|
|
|
log_error_f(fname, "Oops: key is now in trustdb???\n");
|
|
|
|
|
else {
|
|
|
|
|
rc = insert_trust_record( pk );
|
|
|
|
|
if( !rc )
|
|
|
|
|
goto repeat; /* update the ownertrust */
|
|
|
|
|
log_error_f(fname, "insert trust record failed: %s\n",
|
|
|
|
|
g10_errstr(rc) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else /* error */
|
|
|
|
|
log_error_f(fname, "error finding dir record: %s\n",
|
|
|
|
|
g10_errstr(rc));
|
1998-07-29 21:35:05 +02:00
|
|
|
|
}
|
|
|
|
|
if( ferror(fp) )
|
|
|
|
|
log_error_f(fname, _("read error: %s\n"), strerror(errno) );
|
|
|
|
|
if( !is_stdin )
|
|
|
|
|
fclose(fp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-01-30 21:25:31 +01:00
|
|
|
|
void
|
|
|
|
|
list_trust_path( int max_depth, const char *username )
|
|
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
int wipe=0;
|
|
|
|
|
int i;
|
|
|
|
|
TRUSTREC rec;
|
1998-06-29 14:30:57 +02:00
|
|
|
|
PKT_public_key *pk = m_alloc_clear( sizeof *pk );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
|
|
|
|
|
if( max_depth < 0 ) {
|
|
|
|
|
wipe = 1;
|
|
|
|
|
max_depth = -max_depth;
|
|
|
|
|
}
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( (rc = get_pubkey_byname( pk, username )) )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
log_error("user '%s' not found: %s\n", username, g10_errstr(rc) );
|
1998-07-30 19:37:03 +02:00
|
|
|
|
else if( (rc=tdbio_search_dir_bypk( pk, &rec )) && rc != -1 )
|
1998-01-30 21:25:31 +01:00
|
|
|
|
log_error("problem finding '%s' in trustdb: %s\n",
|
|
|
|
|
username, g10_errstr(rc));
|
|
|
|
|
else if( rc == -1 ) {
|
|
|
|
|
log_info("user '%s' not in trustdb - inserting\n", username);
|
1998-06-29 14:30:57 +02:00
|
|
|
|
rc = insert_trust_record( pk );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
if( rc )
|
|
|
|
|
log_error("failed to put '%s' into trustdb: %s\n", username, g10_errstr(rc));
|
|
|
|
|
else {
|
1998-06-29 14:30:57 +02:00
|
|
|
|
assert( pk->local_id );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !rc ) {
|
|
|
|
|
TRUST_SEG_LIST tsl, tslist = NULL;
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( !qry_lid_table_flag( ultikey_table, pk->local_id, NULL ) ) {
|
1998-01-30 21:25:31 +01:00
|
|
|
|
tslist = m_alloc( sizeof *tslist );
|
|
|
|
|
tslist->nseg = 1;
|
|
|
|
|
tslist->dup = 0;
|
1998-06-29 14:30:57 +02:00
|
|
|
|
tslist->seg[0].lid = pk->local_id;
|
1998-01-30 21:25:31 +01:00
|
|
|
|
tslist->seg[0].trust = 0;
|
|
|
|
|
tslist->next = NULL;
|
|
|
|
|
rc = 0;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LOCAL_ID_INFO *lids = new_lid_table();
|
|
|
|
|
TRUST_INFO stack[MAX_LIST_SIGS_DEPTH];
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
stack[0].lid = pk->local_id;
|
1998-01-30 21:25:31 +01:00
|
|
|
|
stack[0].trust = 0;
|
|
|
|
|
rc = do_list_path( stack, 1, max_depth, lids, &tslist );
|
|
|
|
|
if( wipe ) { /* wipe out duplicates */
|
|
|
|
|
LOCAL_ID_INFO *work;
|
|
|
|
|
|
|
|
|
|
work = new_lid_table();
|
|
|
|
|
for( tsl=tslist; tsl; tsl = tsl->next ) {
|
|
|
|
|
for(i=1; i < tsl->nseg-1; i++ ) {
|
|
|
|
|
if( ins_lid_table_item( work, tsl->seg[i].lid, 0 ) ) {
|
|
|
|
|
tsl->dup = 1; /* mark as duplicate */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
release_lid_table(work);
|
|
|
|
|
}
|
|
|
|
|
release_lid_table(lids);
|
1998-01-31 22:24:36 +01:00
|
|
|
|
}
|
1998-01-30 21:25:31 +01:00
|
|
|
|
if( rc )
|
|
|
|
|
log_error("user '%s' list problem: %s\n", username, g10_errstr(rc));
|
|
|
|
|
rc = propagate_trust( tslist );
|
|
|
|
|
if( rc )
|
|
|
|
|
log_error("user '%s' trust problem: %s\n", username, g10_errstr(rc));
|
|
|
|
|
for(tsl = tslist; tsl; tsl = tsl->next ) {
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if( tsl->dup )
|
|
|
|
|
continue;
|
|
|
|
|
printf("trust path:" );
|
1998-07-09 15:37:17 +02:00
|
|
|
|
for(i=0; i < tsl->nseg; i++ ) {
|
|
|
|
|
putc(' ',stdout);
|
|
|
|
|
print_keyid( stdout, tsl->seg[i].lid );
|
|
|
|
|
putc(':',stdout);
|
|
|
|
|
print_trust( stdout, tsl->seg[i].trust );
|
|
|
|
|
}
|
1998-01-30 21:25:31 +01:00
|
|
|
|
putchar('\n');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
free_public_key( pk );
|
1998-01-30 21:25:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
/****************
|
1998-10-12 22:16:38 +02:00
|
|
|
|
* Check the complete trustdb or only the entries for the given username.
|
|
|
|
|
* Special hack: A username "REBUILD" inserts all records from the public
|
|
|
|
|
* key rings into the trustdb.
|
1998-07-21 14:53:38 +02:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
check_trustdb( const char *username )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
KBNODE keyblock = NULL;
|
|
|
|
|
KBPOS kbpos;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
int rc;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
int rebuild = username && !strcmp(username, "REBUILD");
|
1998-07-21 14:53:38 +02:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
if( username && !rebuild ) {
|
|
|
|
|
rc = find_keyblock_byname( &kbpos, username );
|
|
|
|
|
if( !rc )
|
|
|
|
|
rc = read_keyblock( &kbpos, &keyblock );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("%s: keyblock read problem: %s\n",
|
|
|
|
|
username, g10_errstr(rc));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
rc = update_trust_record( keyblock );
|
|
|
|
|
if( rc == -1 ) { /* not yet in trustdb: insert */
|
|
|
|
|
rc = insert_trust_record(
|
|
|
|
|
find_kbnode( keyblock, PKT_PUBLIC_KEY
|
|
|
|
|
) ->pkt->pkt.public_key );
|
1998-07-29 21:35:05 +02:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
}
|
|
|
|
|
if( rc )
|
|
|
|
|
log_error("%s: update failed: %s\n",
|
|
|
|
|
username, g10_errstr(rc) );
|
|
|
|
|
else
|
|
|
|
|
log_info("%s: updated\n", username );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
}
|
|
|
|
|
release_kbnode( keyblock ); keyblock = NULL;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
ulong recnum;
|
|
|
|
|
|
|
|
|
|
for(recnum=0; !tdbio_read_record( recnum, &rec, 0); recnum++ ) {
|
|
|
|
|
if( rec.rectype == RECTYPE_DIR ) {
|
1998-10-12 22:16:38 +02:00
|
|
|
|
TRUSTREC tmp;
|
|
|
|
|
if( !rec.r.dir.keylist ) {
|
|
|
|
|
log_info("lid %lu: dir record w/o key - skipped\n", recnum);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
read_record( rec.r.dir.keylist, &tmp, RECTYPE_KEY );
|
|
|
|
|
|
|
|
|
|
rc = get_keyblock_byfprint( &keyblock,
|
|
|
|
|
tmp.r.key.fingerprint,
|
|
|
|
|
tmp.r.key.fingerprint_len );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("lid %lu: keyblock not found: %s\n",
|
|
|
|
|
recnum, g10_errstr(rc) );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
rc = update_trust_record( keyblock );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
if( rc )
|
1998-10-12 22:16:38 +02:00
|
|
|
|
log_error("lid %lu: update failed: %s\n",
|
1998-07-21 14:53:38 +02:00
|
|
|
|
recnum, g10_errstr(rc) );
|
|
|
|
|
else
|
1998-10-12 22:16:38 +02:00
|
|
|
|
log_info("lid %lu: updated\n", recnum );
|
|
|
|
|
|
|
|
|
|
release_kbnode( keyblock ); keyblock = NULL;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
1998-10-12 22:16:38 +02:00
|
|
|
|
if( rebuild ) {
|
|
|
|
|
log_info("adding new entries.\n");
|
|
|
|
|
|
|
|
|
|
rc = enum_keyblocks( 0, &kbpos, &keyblock );
|
|
|
|
|
if( !rc ) {
|
|
|
|
|
while( !(rc = enum_keyblocks( 1, &kbpos, &keyblock )) ) {
|
|
|
|
|
rc = update_trust_record( keyblock );
|
|
|
|
|
if( rc == -1 ) { /* not yet in trustdb: insert */
|
|
|
|
|
PKT_public_key *pk =
|
|
|
|
|
find_kbnode( keyblock, PKT_PUBLIC_KEY
|
|
|
|
|
) ->pkt->pkt.public_key;
|
|
|
|
|
rc = insert_trust_record( pk );
|
|
|
|
|
if( rc && !pk->local_id )
|
|
|
|
|
log_error("lid ?: insert failed: %s\n",
|
|
|
|
|
g10_errstr(rc) );
|
|
|
|
|
else if( rc )
|
|
|
|
|
log_error("lid %lu: insert failed: %s\n",
|
|
|
|
|
pk->local_id, g10_errstr(rc) );
|
|
|
|
|
else
|
|
|
|
|
log_info("lid %lu: inserted\n", pk->local_id );
|
|
|
|
|
}
|
|
|
|
|
else if( rc )
|
|
|
|
|
log_error("lid %lu: update failed: %s\n",
|
|
|
|
|
lid_from_keyblock(keyblock), g10_errstr(rc) );
|
|
|
|
|
else
|
|
|
|
|
log_info("lid %lu: updated\n",
|
|
|
|
|
lid_from_keyblock(keyblock) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if( rc && rc != -1 )
|
|
|
|
|
log_error("enum_keyblocks failed: %s\n", g10_errstr(rc));
|
|
|
|
|
|
|
|
|
|
enum_keyblocks( 2, &kbpos, &keyblock ); /* close */
|
|
|
|
|
release_kbnode( keyblock );
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-21 14:53:38 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
|
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
|
/****************
|
1998-06-29 14:30:57 +02:00
|
|
|
|
* Get the trustlevel for this PK.
|
1998-01-12 11:18:17 +01:00
|
|
|
|
* Note: This does not ask any questions
|
|
|
|
|
* Returns: 0 okay of an errorcode
|
|
|
|
|
*
|
|
|
|
|
* It operates this way:
|
1998-06-29 14:30:57 +02:00
|
|
|
|
* locate the pk in the trustdb
|
1998-01-12 11:18:17 +01:00
|
|
|
|
* found:
|
|
|
|
|
* Do we have a valid cache record for it?
|
|
|
|
|
* yes: return trustlevel from cache
|
1998-01-14 13:34:05 +01:00
|
|
|
|
* no: make a cache record and all the other stuff
|
1998-01-12 11:18:17 +01:00
|
|
|
|
* not found:
|
1998-07-14 19:10:28 +02:00
|
|
|
|
* try to insert the pubkey into the trustdb and check again
|
1998-01-12 11:18:17 +01:00
|
|
|
|
*
|
|
|
|
|
* Problems: How do we get the complete keyblock to check that the
|
|
|
|
|
* cache record is actually valid? Think we need a clever
|
|
|
|
|
* cache in getkey.c to keep track of this stuff. Maybe it
|
|
|
|
|
* is not necessary to check this if we use a local pubring. Hmmmm.
|
|
|
|
|
*/
|
|
|
|
|
int
|
1998-06-29 14:30:57 +02:00
|
|
|
|
check_trust( PKT_public_key *pk, unsigned *r_trustlevel )
|
1998-01-12 11:18:17 +01:00
|
|
|
|
{
|
1998-01-13 20:04:23 +01:00
|
|
|
|
TRUSTREC rec;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
unsigned trustlevel = TRUST_UNKNOWN;
|
1998-01-13 20:04:23 +01:00
|
|
|
|
int rc=0;
|
1998-06-25 12:19:08 +02:00
|
|
|
|
u32 cur_time;
|
1998-07-09 15:37:17 +02:00
|
|
|
|
u32 keyid[2];
|
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-07-09 15:37:17 +02:00
|
|
|
|
keyid_from_pk( pk, keyid );
|
1998-01-12 11:18:17 +01:00
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
/* get the pubkey record */
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( pk->local_id ) {
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( pk->local_id, &rec, RECTYPE_DIR );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
|
|
|
|
else { /* no local_id: scan the trustdb */
|
1998-07-30 19:37:03 +02:00
|
|
|
|
if( (rc=tdbio_search_dir_bypk( pk, &rec )) && rc != -1 ) {
|
1998-07-14 19:10:28 +02:00
|
|
|
|
log_error("check_trust: search dir record failed: %s\n",
|
1998-01-13 20:04:23 +01:00
|
|
|
|
g10_errstr(rc));
|
1998-01-16 22:15:24 +01:00
|
|
|
|
return rc;
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
1998-07-14 19:10:28 +02:00
|
|
|
|
else if( rc == -1 ) { /* not found - insert */
|
1998-06-29 14:30:57 +02:00
|
|
|
|
rc = insert_trust_record( pk );
|
1998-01-25 19:56:33 +01:00
|
|
|
|
if( rc ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX: insert trust record failed: %s\n"),
|
1998-09-28 21:25:31 +02:00
|
|
|
|
(ulong)keyid[1], g10_errstr(rc));
|
1998-01-25 19:56:33 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_info(_("key %08lX.%lu: inserted into trustdb\n"),
|
1998-09-28 21:25:31 +02:00
|
|
|
|
(ulong)keyid[1], pk->local_id );
|
1998-08-11 19:29:34 +02:00
|
|
|
|
/* and re-read the dir record */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( pk->local_id, &rec, RECTYPE_DIR );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
1998-04-02 12:30:03 +02:00
|
|
|
|
cur_time = make_timestamp();
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( pk->timestamp > cur_time ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_info(_("key %08lX.%lu: created in future "
|
|
|
|
|
"(time warp or clock problem)\n"),
|
1998-09-28 21:25:31 +02:00
|
|
|
|
(ulong)keyid[1], pk->local_id );
|
1998-03-19 16:27:29 +01:00
|
|
|
|
return G10ERR_TIME_CONFLICT;
|
|
|
|
|
}
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( pk->valid_days && add_days_to_timestamp(pk->timestamp,
|
|
|
|
|
pk->valid_days) < cur_time ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_info(_("key %08lX.%lu: expired at %s\n"),
|
1998-09-28 21:25:31 +02:00
|
|
|
|
(ulong)keyid[1], pk->local_id,
|
1998-09-18 17:24:53 +02:00
|
|
|
|
asctimestamp( add_days_to_timestamp(pk->timestamp,
|
1998-07-09 15:37:17 +02:00
|
|
|
|
pk->valid_days)));
|
1998-04-02 12:30:03 +02:00
|
|
|
|
trustlevel = TRUST_EXPIRED;
|
|
|
|
|
}
|
|
|
|
|
else {
|
1998-07-14 19:10:28 +02:00
|
|
|
|
rc = do_check( &rec, &trustlevel );
|
1998-04-02 12:30:03 +02:00
|
|
|
|
if( rc ) {
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_error(_("key %08lX.%lu: trust check failed: %s\n"),
|
1998-09-28 21:25:31 +02:00
|
|
|
|
(ulong)keyid[1], pk->local_id, g10_errstr(rc));
|
1998-04-02 12:30:03 +02:00
|
|
|
|
return rc;
|
|
|
|
|
}
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
1998-01-14 13:34:05 +01:00
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
|
|
|
|
leave:
|
1998-01-19 19:54:44 +01:00
|
|
|
|
if( DBG_TRUST )
|
1998-07-09 15:37:17 +02:00
|
|
|
|
log_debug("check_trust() returns trustlevel %04x.\n", trustlevel);
|
1998-01-12 11:18:17 +01:00
|
|
|
|
*r_trustlevel = trustlevel;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
1998-01-02 21:40:10 +01:00
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-05-29 13:53:54 +02:00
|
|
|
|
int
|
1998-06-29 14:30:57 +02:00
|
|
|
|
query_trust_info( PKT_public_key *pk )
|
1998-05-29 13:53:54 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned trustlevel;
|
|
|
|
|
int c;
|
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
|
if( check_trust( pk, &trustlevel ) )
|
1998-05-29 13:53:54 +02:00
|
|
|
|
return '?';
|
|
|
|
|
if( trustlevel & TRUST_FLAG_REVOKED )
|
|
|
|
|
return 'r';
|
|
|
|
|
switch( (trustlevel & TRUST_MASK) ) {
|
|
|
|
|
case TRUST_UNKNOWN: c = 'o'; break;
|
|
|
|
|
case TRUST_EXPIRED: c = 'e'; break;
|
|
|
|
|
case TRUST_UNDEFINED: c = 'q'; break;
|
|
|
|
|
case TRUST_NEVER: c = 'n'; break;
|
|
|
|
|
case TRUST_MARGINAL: c = 'm'; break;
|
|
|
|
|
case TRUST_FULLY: c = 'f'; break;
|
|
|
|
|
case TRUST_ULTIMATE: c = 'u'; break;
|
|
|
|
|
default: BUG();
|
|
|
|
|
}
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Enumerate all keys, which are needed to build all trust paths for
|
1998-01-31 22:24:36 +01:00
|
|
|
|
* the given key. This function does not return the key itself or
|
1998-01-24 17:32:27 +01:00
|
|
|
|
* the ultimate key.
|
|
|
|
|
*
|
|
|
|
|
* 1) create a void pointer and initialize it to NULL
|
|
|
|
|
* 2) pass this void pointer by reference to this function.
|
|
|
|
|
* Set lid to the key you want to enumerate and pass it by reference.
|
|
|
|
|
* 3) call this function as long as it does not return -1
|
|
|
|
|
* to indicate EOF. LID does contain the next key used to build the web
|
|
|
|
|
* 4) Always call this function a last time with LID set to NULL,
|
1998-04-14 19:51:16 +02:00
|
|
|
|
* so that it can free its context.
|
1998-01-24 17:32:27 +01:00
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
enum_trust_web( void **context, ulong *lid )
|
|
|
|
|
{
|
|
|
|
|
ENUM_TRUST_WEB_CONTEXT *c = *context;
|
|
|
|
|
|
|
|
|
|
if( !c ) { /* make a new context */
|
|
|
|
|
c = m_alloc_clear( sizeof *c );
|
|
|
|
|
*context = c;
|
1998-09-14 17:49:56 +02:00
|
|
|
|
if( *lid == last_trust_web_key && last_trust_web_tslist )
|
|
|
|
|
c->tsl = last_trust_web_tslist;
|
|
|
|
|
else {
|
|
|
|
|
TRUST_SEG_LIST tsl, tsl2, tslist;
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
rc = make_tsl( *lid, &tslist );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error("failed to build the TSL\n");
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
/* cache the tslist, so that we do not need to free it */
|
|
|
|
|
if( last_trust_web_key ) {
|
|
|
|
|
for( tsl = last_trust_web_tslist; tsl; tsl = tsl2 ) {
|
|
|
|
|
tsl2 = tsl->next;
|
|
|
|
|
m_free(tsl);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
last_trust_web_key = *lid;
|
|
|
|
|
last_trust_web_tslist = tslist;
|
|
|
|
|
c->tsl = last_trust_web_tslist;
|
|
|
|
|
}
|
1998-01-24 17:32:27 +01:00
|
|
|
|
c->index = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !lid ) { /* free the context */
|
|
|
|
|
m_free( c );
|
|
|
|
|
*context = NULL;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while( c->tsl ) {
|
|
|
|
|
if( !c->tsl->dup && c->index < c->tsl->nseg-1 ) {
|
|
|
|
|
*lid = c->tsl->seg[c->index].lid;
|
|
|
|
|
c->index++;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
c->index = 1;
|
|
|
|
|
c->tsl = c->tsl->next;
|
|
|
|
|
}
|
|
|
|
|
return -1; /* eof */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Return the assigned ownertrust value for the given LID
|
|
|
|
|
*/
|
1998-10-07 15:30:43 +02:00
|
|
|
|
unsigned
|
|
|
|
|
get_ownertrust( ulong lid )
|
1998-01-24 17:32:27 +01:00
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( lid, &rec, RECTYPE_DIR );
|
|
|
|
|
return rec.r.dir.ownertrust;
|
1998-01-24 17:32:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
1998-07-30 19:37:03 +02:00
|
|
|
|
int
|
|
|
|
|
get_ownertrust_info( ulong lid )
|
|
|
|
|
{
|
|
|
|
|
unsigned otrust;
|
|
|
|
|
int c;
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
otrust = get_ownertrust( lid );
|
1998-07-30 19:37:03 +02:00
|
|
|
|
switch( (otrust & TRUST_MASK) ) {
|
|
|
|
|
case TRUST_NEVER: c = 'n'; break;
|
|
|
|
|
case TRUST_MARGINAL: c = 'm'; break;
|
|
|
|
|
case TRUST_FULLY: c = 'f'; break;
|
|
|
|
|
case TRUST_ULTIMATE: c = 'u'; break;
|
|
|
|
|
default: c = '-'; break;
|
|
|
|
|
}
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-08-05 18:51:59 +02:00
|
|
|
|
byte *
|
|
|
|
|
get_pref_data( ulong lid, const byte *namehash, size_t *ret_n )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
ulong recno;
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( lid, &rec, RECTYPE_DIR );
|
1998-08-05 18:51:59 +02:00
|
|
|
|
for( recno=rec.r.dir.uidlist; recno; recno = rec.r.uid.next ) {
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( recno, &rec, RECTYPE_UID );
|
1998-08-05 18:51:59 +02:00
|
|
|
|
if( rec.r.uid.prefrec
|
|
|
|
|
&& ( !namehash || !memcmp(namehash, rec.r.uid.namehash, 20) )) {
|
|
|
|
|
byte *buf;
|
|
|
|
|
/* found the correct one or the first one */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( rec.r.uid.prefrec, &rec, RECTYPE_PREF );
|
1998-08-05 18:51:59 +02:00
|
|
|
|
if( rec.r.pref.next )
|
|
|
|
|
log_info("warning: can't yet handle long pref records\n");
|
|
|
|
|
buf = m_alloc( ITEMS_PER_PREF_RECORD );
|
|
|
|
|
memcpy( buf, rec.r.pref.data, ITEMS_PER_PREF_RECORD );
|
|
|
|
|
*ret_n = ITEMS_PER_PREF_RECORD;
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Check whether the algorithm is in one of the pref records
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
is_algo_in_prefs( ulong lid, int preftype, int algo )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
ulong recno;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
int i;
|
1998-08-05 18:51:59 +02:00
|
|
|
|
byte *pref;
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( lid, &rec, RECTYPE_DIR );
|
1998-08-05 18:51:59 +02:00
|
|
|
|
for( recno=rec.r.dir.uidlist; recno; recno = rec.r.uid.next ) {
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( recno, &rec, RECTYPE_UID );
|
1998-08-05 18:51:59 +02:00
|
|
|
|
if( rec.r.uid.prefrec ) {
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( rec.r.uid.prefrec, &rec, RECTYPE_PREF );
|
1998-08-05 18:51:59 +02:00
|
|
|
|
if( rec.r.pref.next )
|
|
|
|
|
log_info("warning: can't yet handle long pref records\n");
|
|
|
|
|
pref = rec.r.pref.data;
|
|
|
|
|
for(i=0; i+1 < ITEMS_PER_PREF_RECORD; i+=2 ) {
|
|
|
|
|
if( pref[i] == preftype && pref[i+1] == algo )
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-24 17:32:27 +01:00
|
|
|
|
|
1998-10-01 09:23:00 +02:00
|
|
|
|
static int
|
|
|
|
|
get_dir_record( PKT_public_key *pk, TRUSTREC *rec )
|
|
|
|
|
{
|
|
|
|
|
int rc=0;
|
|
|
|
|
|
|
|
|
|
if( pk->local_id ) {
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( pk->local_id, rec, RECTYPE_DIR );
|
1998-10-01 09:23:00 +02:00
|
|
|
|
}
|
|
|
|
|
else { /* no local_id: scan the trustdb */
|
|
|
|
|
if( (rc=tdbio_search_dir_bypk( pk, rec )) && rc != -1 )
|
|
|
|
|
log_error("get_dir_record: search_record failed: %s\n",
|
|
|
|
|
g10_errstr(rc));
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-01-31 22:24:36 +01:00
|
|
|
|
/****************
|
|
|
|
|
* This function simply looks for the key in the trustdb
|
1998-07-21 14:53:38 +02:00
|
|
|
|
* and makes sure that pk->local_id is set to the coreect value.
|
1998-01-31 22:24:36 +01:00
|
|
|
|
* Return: 0 = found
|
|
|
|
|
* -1 = not found
|
|
|
|
|
* other = error
|
|
|
|
|
*/
|
1998-01-16 22:15:24 +01:00
|
|
|
|
int
|
1998-06-29 14:30:57 +02:00
|
|
|
|
query_trust_record( PKT_public_key *pk )
|
1998-01-16 22:15:24 +01:00
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
1998-10-01 09:23:00 +02:00
|
|
|
|
return get_dir_record( pk, &rec );
|
1998-01-16 22:15:24 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1998-09-14 17:49:56 +02:00
|
|
|
|
int
|
|
|
|
|
clear_trust_checked_flag( PKT_public_key *pk )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
int rc;
|
|
|
|
|
|
1998-10-01 09:23:00 +02:00
|
|
|
|
rc = get_dir_record( pk, &rec );
|
|
|
|
|
if( rc )
|
1998-09-14 17:49:56 +02:00
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
|
|
if( !(rec.r.dir.dirflags & DIRF_CHECKED) )
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* reset the flag */
|
|
|
|
|
rec.r.dir.dirflags &= ~DIRF_CHECKED;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
write_record( &rec );
|
1998-09-14 17:49:56 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-15 20:05:01 +02:00
|
|
|
|
|
1998-10-01 09:23:00 +02:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
check_hint_sig( ulong lid, KBNODE keyblock, u32 *keyid, byte *uidrec_hash,
|
|
|
|
|
TRUSTREC *sigrec, int sigidx, ulong hint_owner )
|
|
|
|
|
{
|
|
|
|
|
KBNODE node;
|
|
|
|
|
int rc, state=0;
|
|
|
|
|
byte uhash[20];
|
|
|
|
|
int is_selfsig;
|
|
|
|
|
PKT_signature *sigpkt = NULL;
|
|
|
|
|
|
|
|
|
|
if( sigrec->r.sig.sig[sigidx].flag & SIGF_CHECKED )
|
|
|
|
|
log_info(_("note: sig rec %lu[%d] in hintlist "
|
|
|
|
|
"of %lu but marked as checked\n"),
|
|
|
|
|
sigrec->recnum, sigidx, hint_owner );
|
|
|
|
|
if( !(sigrec->r.sig.sig[sigidx].flag & SIGF_NOPUBKEY) )
|
|
|
|
|
log_info(_("note: sig rec %lu[%d] in hintlist "
|
|
|
|
|
"of %lu but not marked\n"),
|
|
|
|
|
sigrec->recnum, sigidx, hint_owner );
|
|
|
|
|
|
|
|
|
|
/* find the correct signature packet */
|
|
|
|
|
for( node=keyblock; node; node = node->next ) {
|
|
|
|
|
if( node->pkt->pkttype == PKT_USER_ID ) {
|
|
|
|
|
PKT_user_id *uidpkt = node->pkt->pkt.user_id;
|
|
|
|
|
|
|
|
|
|
if( state )
|
|
|
|
|
break;
|
|
|
|
|
rmd160_hash_buffer( uhash, uidpkt->name, uidpkt->len );
|
|
|
|
|
if( !memcmp( uhash, uidrec_hash, 20 ) )
|
|
|
|
|
state = 1;
|
|
|
|
|
}
|
|
|
|
|
else if( state && node->pkt->pkttype == PKT_SIGNATURE ) {
|
|
|
|
|
sigpkt = node->pkt->pkt.signature;
|
|
|
|
|
if( sigpkt->keyid[0] == keyid[0]
|
|
|
|
|
&& sigpkt->keyid[1] == keyid[1]
|
|
|
|
|
&& (sigpkt->sig_class&~3) == 0x10 )
|
|
|
|
|
break; /* found */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !node ) {
|
|
|
|
|
log_error(_("lid %lu: user id not found in keyblock\n"), lid );
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* and check the sig */
|
|
|
|
|
rc = check_key_signature( keyblock, node, &is_selfsig );
|
|
|
|
|
if( is_selfsig ) {
|
|
|
|
|
log_error(_("lid %lu: self-signature in hintlist\n"), lid );
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
if( !rc ) { /* valid signature */
|
|
|
|
|
sigrec->r.sig.sig[sigidx].flag = SIGF_CHECKED | SIGF_VALID;
|
|
|
|
|
}
|
|
|
|
|
else if( rc == G10ERR_NO_PUBKEY ) {
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"very strange: no public key for signature %08lX\n"),
|
|
|
|
|
(ulong)keyid[1], lid, uhash[18], uhash[19],
|
|
|
|
|
(ulong)sigpkt->keyid[1] );
|
|
|
|
|
sigrec->r.sig.sig[sigidx].flag = SIGF_NOPUBKEY;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"invalid signature: %s\n"),
|
|
|
|
|
(ulong)keyid[1], lid,
|
|
|
|
|
uhash[18], uhash[19], g10_errstr(rc));
|
|
|
|
|
sigrec->r.sig.sig[sigidx].flag = SIGF_CHECKED;
|
|
|
|
|
}
|
|
|
|
|
sigrec->dirty = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Process a hintlist.
|
|
|
|
|
* Fixme: this list is not anymore anchored to another
|
|
|
|
|
* record, so it should be put elsewehere in case of an error
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
process_hintlist( ulong hintlist, ulong hint_owner )
|
|
|
|
|
{
|
|
|
|
|
ulong hlst_rn;
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
for( hlst_rn = hintlist; hlst_rn; ) {
|
|
|
|
|
TRUSTREC hlstrec;
|
|
|
|
|
int hlst_idx;
|
|
|
|
|
|
|
|
|
|
read_record( hlst_rn, &hlstrec, RECTYPE_HLST );
|
|
|
|
|
|
|
|
|
|
for( hlst_idx=0; hlst_idx < ITEMS_PER_HLST_RECORD; hlst_idx++ ) {
|
|
|
|
|
TRUSTREC dirrec;
|
|
|
|
|
TRUSTREC uidrec;
|
|
|
|
|
TRUSTREC tmprec;
|
|
|
|
|
KBNODE keyblock = NULL;
|
|
|
|
|
u32 keyid[2];
|
|
|
|
|
ulong lid;
|
|
|
|
|
ulong r1, r2;
|
|
|
|
|
|
|
|
|
|
lid = hlstrec.r.hlst.rnum[hlst_idx];
|
|
|
|
|
if( !lid )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
read_record( lid, &dirrec, 0 );
|
|
|
|
|
/* make sure it points to a dir record:
|
|
|
|
|
* this should be true because it only makes sense to
|
|
|
|
|
* call this function if the dir record is available */
|
|
|
|
|
if( dirrec.rectype != RECTYPE_DIR ) {
|
|
|
|
|
log_error(_("hintlist %lu[%d] of %lu "
|
|
|
|
|
"does not point to a dir record\n"),
|
|
|
|
|
hlst_rn, hlst_idx, hint_owner );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if( !dirrec.r.dir.keylist ) {
|
|
|
|
|
log_error(_("lid %lu does not have a key\n"), lid );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* get the keyblock */
|
|
|
|
|
read_record( dirrec.r.dir.keylist, &tmprec, RECTYPE_KEY );
|
|
|
|
|
rc = get_keyblock_byfprint( &keyblock,
|
|
|
|
|
tmprec.r.key.fingerprint,
|
|
|
|
|
tmprec.r.key.fingerprint_len );
|
|
|
|
|
if( rc ) {
|
|
|
|
|
log_error(_("lid %lu: can't get keyblock: %s\n"),
|
|
|
|
|
lid, g10_errstr(rc) );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
keyid_from_fingerprint( tmprec.r.key.fingerprint,
|
|
|
|
|
tmprec.r.key.fingerprint_len, keyid );
|
|
|
|
|
|
|
|
|
|
/* Walk over all user ids and their signatures and check all
|
|
|
|
|
* the signature which are created by hint_owner */
|
|
|
|
|
for( r1 = dirrec.r.dir.uidlist; r1; r1 = uidrec.r.uid.next ) {
|
|
|
|
|
TRUSTREC sigrec;
|
|
|
|
|
|
|
|
|
|
read_record( r1, &uidrec, RECTYPE_UID );
|
|
|
|
|
for( r2 = uidrec.r.uid.siglist; r2; r2 = sigrec.r.sig.next ) {
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
read_record( r2, &sigrec, RECTYPE_SIG );
|
|
|
|
|
sigrec.dirty = 0;
|
|
|
|
|
for(i=0; i < SIGS_PER_RECORD; i++ ) {
|
|
|
|
|
if( !sigrec.r.sig.sig[i].lid )
|
|
|
|
|
continue; /* skip deleted sigs */
|
|
|
|
|
if( sigrec.r.sig.sig[i].lid != hint_owner )
|
|
|
|
|
continue; /* not for us */
|
|
|
|
|
/* some diagnostic messages */
|
|
|
|
|
/* and do the signature check */
|
|
|
|
|
check_hint_sig( lid, keyblock, keyid,
|
|
|
|
|
uidrec.r.uid.namehash,
|
|
|
|
|
&sigrec, i, hint_owner );
|
|
|
|
|
}
|
|
|
|
|
if( sigrec.dirty )
|
|
|
|
|
write_record( &sigrec );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
release_kbnode( keyblock );
|
|
|
|
|
} /* loop over hlst entries */
|
|
|
|
|
|
|
|
|
|
/* delete this hlst record */
|
|
|
|
|
hlst_rn = hlstrec.r.hlst.next;
|
|
|
|
|
delete_record( hlstrec.recnum );
|
|
|
|
|
} /* loop over hintlist */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upd_key_record( PKT_public_key *pk, TRUSTREC *drec, RECNO_LIST *recno_list )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC krec;
|
|
|
|
|
byte fpr[MAX_FINGERPRINT_LEN];
|
|
|
|
|
size_t fprlen;
|
|
|
|
|
ulong recno, newrecno;
|
|
|
|
|
|
|
|
|
|
fingerprint_from_pk( pk, fpr, &fprlen );
|
|
|
|
|
/* do we already have this key? */
|
|
|
|
|
for( recno=drec->r.dir.keylist; recno; recno = krec.r.key.next ) {
|
|
|
|
|
read_record( recno, &krec, RECTYPE_KEY );
|
|
|
|
|
if( krec.r.key.fingerprint_len == fprlen
|
|
|
|
|
&& !memcmp( krec.r.key.fingerprint, fpr, fprlen ) )
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if( recno ) { /* yes */
|
|
|
|
|
ins_recno_list( recno_list, recno, RECTYPE_KEY );
|
|
|
|
|
/* here we would compare/update the keyflags */
|
|
|
|
|
}
|
|
|
|
|
else { /* no: insert this new key */
|
|
|
|
|
memset( &krec, 0, sizeof(krec) );
|
|
|
|
|
krec.rectype = RECTYPE_KEY;
|
|
|
|
|
krec.r.key.lid = drec->recnum;
|
|
|
|
|
krec.r.key.pubkey_algo = pk->pubkey_algo;
|
|
|
|
|
krec.r.key.fingerprint_len = fprlen;
|
|
|
|
|
memcpy(krec.r.key.fingerprint, fpr, fprlen );
|
|
|
|
|
krec.recnum = newrecno = tdbio_new_recnum();
|
|
|
|
|
write_record( &krec );
|
|
|
|
|
ins_recno_list( recno_list, newrecno, RECTYPE_KEY );
|
|
|
|
|
/* and put this new record at the end of the keylist */
|
|
|
|
|
if( !(recno=drec->r.dir.keylist) ) {
|
|
|
|
|
/* this is the first key */
|
|
|
|
|
drec->r.dir.keylist = newrecno;
|
|
|
|
|
drec->dirty = 1;
|
|
|
|
|
}
|
|
|
|
|
else { /* we already have a key, append it to the list */
|
|
|
|
|
for( ; recno; recno = krec.r.key.next )
|
|
|
|
|
read_record( recno, &krec, RECTYPE_KEY );
|
|
|
|
|
krec.r.key.next = newrecno;
|
|
|
|
|
write_record( &krec );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upd_uid_record( PKT_user_id *uid, TRUSTREC *drec, RECNO_LIST *recno_list,
|
|
|
|
|
u32 *keyid, ulong *uidrecno, byte *uidhash )
|
|
|
|
|
{
|
|
|
|
|
TRUSTREC urec;
|
|
|
|
|
ulong recno, newrecno;
|
|
|
|
|
|
|
|
|
|
rmd160_hash_buffer( uidhash, uid->name, uid->len );
|
|
|
|
|
for( recno=drec->r.dir.uidlist; recno; recno = urec.r.uid.next ) {
|
|
|
|
|
read_record( recno, &urec, RECTYPE_UID );
|
|
|
|
|
if( !memcmp( uidhash, urec.r.uid.namehash, 20 ) )
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if( recno ) {
|
|
|
|
|
ins_recno_list( recno_list, recno, RECTYPE_UID );
|
|
|
|
|
*uidrecno = recno;
|
|
|
|
|
}
|
|
|
|
|
else { /* new user id */
|
|
|
|
|
memset( &urec, 0 , sizeof(urec) );
|
|
|
|
|
urec.rectype = RECTYPE_UID;
|
|
|
|
|
urec.r.uid.lid = drec->recnum;
|
|
|
|
|
memcpy(urec.r.uid.namehash, uidhash, 20 );
|
|
|
|
|
urec.recnum = newrecno = tdbio_new_recnum();
|
|
|
|
|
write_record( &urec );
|
|
|
|
|
ins_recno_list( recno_list, newrecno, RECTYPE_UID );
|
|
|
|
|
/* and put this new record at the end of the uidlist */
|
|
|
|
|
if( !(recno=drec->r.dir.uidlist) ) { /* this is the first uid */
|
|
|
|
|
drec->r.dir.uidlist = newrecno;
|
|
|
|
|
drec->dirty = 1;
|
|
|
|
|
}
|
|
|
|
|
else { /* we already have an uid, append it to the list */
|
|
|
|
|
for( ; recno; recno = urec.r.key.next )
|
|
|
|
|
read_record( recno, &urec, RECTYPE_UID );
|
|
|
|
|
urec.r.uid.next = newrecno;
|
|
|
|
|
write_record( &urec );
|
|
|
|
|
}
|
|
|
|
|
*uidrecno = newrecno;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
upd_pref_record( PKT_signature *sig, TRUSTREC *drec,
|
|
|
|
|
u32 *keyid, ulong *uidrecno, byte *uidhash )
|
|
|
|
|
{
|
|
|
|
|
static struct {
|
|
|
|
|
sigsubpkttype_t subpkttype;
|
|
|
|
|
int preftype;
|
|
|
|
|
} prefs[] = {
|
|
|
|
|
{ SIGSUBPKT_PREF_SYM, PREFTYPE_SYM },
|
|
|
|
|
{ SIGSUBPKT_PREF_HASH, PREFTYPE_HASH },
|
|
|
|
|
{ SIGSUBPKT_PREF_COMPR, PREFTYPE_COMPR },
|
|
|
|
|
{ 0, 0 }
|
|
|
|
|
};
|
|
|
|
|
TRUSTREC urec, prec;
|
|
|
|
|
const byte *s;
|
|
|
|
|
size_t n;
|
|
|
|
|
int k, i;
|
|
|
|
|
ulong recno_tbl[10];
|
|
|
|
|
int recno_idx = 0;
|
|
|
|
|
ulong recno;
|
|
|
|
|
|
|
|
|
|
/* we need the uid record */
|
|
|
|
|
read_record( *uidrecno, &urec, RECTYPE_UID );
|
|
|
|
|
|
|
|
|
|
/* First delete all pref records
|
|
|
|
|
* This is much simpler than checking whether we have to
|
|
|
|
|
* do update the record at all - the record cache may care about it */
|
|
|
|
|
for( recno=urec.r.uid.prefrec; recno; recno = prec.r.pref.next ) {
|
|
|
|
|
read_record( recno, &prec, RECTYPE_PREF );
|
|
|
|
|
delete_record( recno );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* and write the new ones */
|
|
|
|
|
i = 0;
|
|
|
|
|
for(k=0; prefs[k].subpkttype; k++ ) {
|
|
|
|
|
s = parse_sig_subpkt2( sig, prefs[k].subpkttype, &n );
|
|
|
|
|
if( s ) {
|
|
|
|
|
while( n ) {
|
|
|
|
|
if( !i || i >= ITEMS_PER_PREF_RECORD ) {
|
|
|
|
|
if( recno_idx >= DIM(recno_tbl)-1 ) {
|
|
|
|
|
log_info("too many preferences\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if( i ) {
|
|
|
|
|
recno_tbl[recno_idx]=tdbio_new_recnum();
|
|
|
|
|
prec.recnum = recno_tbl[recno_idx++];
|
|
|
|
|
write_record( &prec );
|
|
|
|
|
}
|
|
|
|
|
memset( &prec, 0, sizeof prec );
|
|
|
|
|
prec.rectype = RECTYPE_PREF;
|
|
|
|
|
prec.r.pref.lid = drec->recnum;
|
|
|
|
|
i = 0;
|
|
|
|
|
}
|
|
|
|
|
prec.r.pref.data[i++] = prefs[k].preftype;
|
|
|
|
|
prec.r.pref.data[i++] = *s++;
|
|
|
|
|
n--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if( i ) { /* write the last one */
|
|
|
|
|
recno_tbl[recno_idx]=tdbio_new_recnum();
|
|
|
|
|
prec.recnum = recno_tbl[recno_idx++];
|
|
|
|
|
write_record( &prec );
|
|
|
|
|
}
|
|
|
|
|
/* now link them together */
|
|
|
|
|
for(i=0; i < recno_idx-1; i++ ) {
|
|
|
|
|
read_record( recno_tbl[i], &prec, RECTYPE_PREF );
|
|
|
|
|
prec.r.pref.next = recno_tbl[i+1];
|
|
|
|
|
write_record( &prec );
|
|
|
|
|
}
|
|
|
|
|
/* don't need to write the last one, but update the uid */
|
|
|
|
|
urec.r.uid.prefrec = recno_idx? recno_tbl[0] : 0;
|
|
|
|
|
write_record( &urec );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-10-01 09:23:00 +02:00
|
|
|
|
/****************
|
1998-10-12 22:16:38 +02:00
|
|
|
|
* Note: A signature made with a secondayr key is not considered a
|
|
|
|
|
* self-signature.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
upd_sig_record( PKT_signature *sig, TRUSTREC *drec,
|
|
|
|
|
u32 *keyid, ulong *uidrecno, byte *uidhash,
|
|
|
|
|
KBNODE keyblock, KBNODE signode )
|
|
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
ulong lid = drec->recnum;
|
|
|
|
|
|
|
|
|
|
if( keyid[0] == sig->keyid[0] && keyid[1] == sig->keyid[1] ) {
|
|
|
|
|
if( (sig->sig_class&~3) == 0x10 ) {
|
|
|
|
|
/* must verify this selfsignature here, so that we can
|
|
|
|
|
* build the preference record and validate the uid record
|
|
|
|
|
*/
|
|
|
|
|
if( !*uidrecno ) {
|
|
|
|
|
log_error("key %08lX: self-signature without user id\n",
|
|
|
|
|
(ulong)keyid[1] );
|
|
|
|
|
}
|
|
|
|
|
else if( (rc = check_key_signature( keyblock, signode, NULL ))) {
|
|
|
|
|
log_error("key %08lX, uid %02X%02X: "
|
|
|
|
|
"invalid self-signature: %s\n", (ulong)keyid[1],
|
|
|
|
|
uidhash[18], uidhash[19], g10_errstr(rc) );
|
|
|
|
|
}
|
|
|
|
|
else { /* valid sig (may be revoked, but that doesn't matter here) */
|
|
|
|
|
upd_pref_record( sig, drec, keyid, uidrecno, uidhash );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {/* is revocation sig etc */
|
|
|
|
|
/* FIXME */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if( !*uidrecno )
|
|
|
|
|
; /* skip record with direct key signatures here */
|
|
|
|
|
else if( (sig->sig_class&~3) == 0x10 ) {
|
|
|
|
|
/* We simply insert the signature into the sig records but
|
|
|
|
|
* avoid duplicate ones. We do not check them here because
|
|
|
|
|
* there is a big chance, that we import required public keys
|
|
|
|
|
* later. The problem with this is that we must somewhere store
|
|
|
|
|
* the information about this signature (we need a record id).
|
|
|
|
|
* We do this by using the record type shadow dir, which will
|
|
|
|
|
* be converted to a dir record as soon as a new public key is
|
|
|
|
|
* inserted into the trustdb.
|
|
|
|
|
*/
|
|
|
|
|
TRUSTREC urec, rec;
|
|
|
|
|
ulong recno;
|
|
|
|
|
TRUSTREC delrec;
|
|
|
|
|
int delrecidx;
|
|
|
|
|
int newflag = 0;
|
|
|
|
|
ulong newlid = 0;
|
|
|
|
|
PKT_public_key *pk = m_alloc_clear( sizeof *pk );
|
|
|
|
|
|
|
|
|
|
delrec.recnum = 0;
|
|
|
|
|
/* we need the uid record */
|
|
|
|
|
read_record( *uidrecno, &urec, RECTYPE_UID );
|
|
|
|
|
|
|
|
|
|
for( recno = urec.r.uid.siglist; recno; recno = rec.r.sig.next ) {
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
read_record( recno, &rec, RECTYPE_SIG );
|
|
|
|
|
for(i=0; i < SIGS_PER_RECORD; i++ ) {
|
|
|
|
|
TRUSTREC tmp;
|
|
|
|
|
if( !rec.r.sig.sig[i].lid ) {
|
|
|
|
|
if( !delrec.recnum ) {
|
|
|
|
|
delrec = rec;
|
|
|
|
|
delrecidx = i;
|
|
|
|
|
}
|
|
|
|
|
continue; /* skip deleted sigs */
|
|
|
|
|
}
|
|
|
|
|
if( rec.r.sig.sig[i].flag & SIGF_CHECKED )
|
|
|
|
|
continue; /* we already checked this signature */
|
|
|
|
|
if( rec.r.sig.sig[i].flag & SIGF_NOPUBKEY )
|
|
|
|
|
continue; /* we do not have the public key */
|
|
|
|
|
|
|
|
|
|
read_record( rec.r.sig.sig[i].lid, &tmp, 0 );
|
|
|
|
|
if( tmp.rectype == RECTYPE_DIR ) {
|
|
|
|
|
/* In this case we should now be able to check
|
|
|
|
|
* the signature: */
|
|
|
|
|
rc = check_key_signature( keyblock, signode, NULL );
|
|
|
|
|
if( !rc ) { /* valid signature */
|
|
|
|
|
rec.r.sig.sig[i].flag = SIGF_CHECKED | SIGF_VALID;
|
|
|
|
|
}
|
|
|
|
|
else if( rc == G10ERR_NO_PUBKEY ) {
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"weird: no public key for signature %08lX\n"),
|
|
|
|
|
(ulong)keyid[1], lid, uidhash[18],
|
|
|
|
|
uidhash[19], (ulong)sig->keyid[1] );
|
|
|
|
|
rec.r.sig.sig[i].flag = SIGF_NOPUBKEY;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"invalid signature: %s\n"),
|
|
|
|
|
(ulong)keyid[1], lid,
|
|
|
|
|
uidhash[18], uidhash[19], g10_errstr(rc));
|
|
|
|
|
rec.r.sig.sig[i].flag = SIGF_CHECKED;
|
|
|
|
|
}
|
|
|
|
|
write_record( &rec );
|
|
|
|
|
goto ready;
|
|
|
|
|
}
|
|
|
|
|
else if( tmp.rectype == RECTYPE_SDIR ) {
|
|
|
|
|
/* must check that it is the right one */
|
|
|
|
|
if( tmp.r.sdir.keyid[0] == sig->keyid[0]
|
|
|
|
|
&& tmp.r.sdir.keyid[1] == sig->keyid[1]
|
|
|
|
|
&& (!tmp.r.sdir.pubkey_algo
|
|
|
|
|
|| tmp.r.sdir.pubkey_algo == sig->pubkey_algo )) {
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"has shadow dir %lu but not yet marked.\n"),
|
|
|
|
|
(ulong)keyid[1], lid,
|
|
|
|
|
uidhash[18], uidhash[19], tmp.recnum );
|
|
|
|
|
rec.r.sig.sig[i].flag = SIGF_NOPUBKEY;
|
|
|
|
|
write_record( &rec );
|
|
|
|
|
/* fixme: should we verify that the record is
|
|
|
|
|
* in the hintlist? - This case here should anyway
|
|
|
|
|
* never occur */
|
|
|
|
|
goto ready;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
log_error("sig record %lu[%d] points to wrong record.\n",
|
|
|
|
|
rec.r.sig.sig[i].lid, i );
|
|
|
|
|
die_invalid_db();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* at this point, we have verified, that the signature is not in
|
|
|
|
|
* our list of signatures. Add a new record with that signature
|
|
|
|
|
* and if the public key is there, check the signature. */
|
|
|
|
|
rc = get_pubkey( pk, sig->keyid );
|
|
|
|
|
if( !rc ) {
|
|
|
|
|
/* check that we already have the record in the trustdb;
|
|
|
|
|
* if not we should not check the signature, because we do
|
|
|
|
|
* not have the lid of the signature and therefore can't add
|
|
|
|
|
* a signature record. We will fake a no_pubkey error, so
|
|
|
|
|
* that this is handled, like we do not have the publick key at
|
|
|
|
|
* at all. The alternative would be a recursive insert of
|
|
|
|
|
* records - but that is not good.
|
|
|
|
|
*/
|
|
|
|
|
rc = query_trust_record( pk );
|
|
|
|
|
if( rc == -1 )
|
|
|
|
|
rc = G10ERR_NO_PUBKEY;
|
|
|
|
|
else
|
|
|
|
|
rc = check_key_signature( keyblock, signode, NULL );
|
|
|
|
|
}
|
|
|
|
|
if( !rc ) { /* valid signature */
|
|
|
|
|
newlid = pk->local_id; /* this is the pk of the signature */
|
|
|
|
|
if( !newlid )
|
|
|
|
|
BUG();
|
|
|
|
|
newflag = SIGF_CHECKED | SIGF_VALID;
|
|
|
|
|
}
|
|
|
|
|
else if( rc == G10ERR_NO_PUBKEY ) {
|
|
|
|
|
if( opt.verbose )
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"no public key for signature %08lX\n"),
|
|
|
|
|
(ulong)keyid[1], lid, uidhash[18],
|
|
|
|
|
uidhash[19], (ulong)sig->keyid[1] );
|
|
|
|
|
newflag = SIGF_NOPUBKEY;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
log_info(_("key %08lX.%lu, uid %02X%02X: "
|
|
|
|
|
"invalid signature: %s\n"),
|
|
|
|
|
(ulong)keyid[1], lid, uidhash[18], uidhash[19],
|
|
|
|
|
g10_errstr(rc));
|
|
|
|
|
newflag = SIGF_CHECKED;
|
|
|
|
|
}
|
|
|
|
|
free_public_key( pk );
|
|
|
|
|
|
|
|
|
|
if( !newlid ) { /* create a shadow dir record */
|
|
|
|
|
TRUSTREC sdir, hlst, tmphlst;
|
|
|
|
|
int tmpidx;
|
|
|
|
|
/* first see whether we already have such a record */
|
|
|
|
|
rc = tdbio_search_sdir( sig->keyid, sig->pubkey_algo, &sdir );
|
|
|
|
|
if( rc && rc != -1 ) {
|
|
|
|
|
log_error("tdbio_search_dir failed: %s\n", g10_errstr(rc));
|
|
|
|
|
die_invalid_db();
|
|
|
|
|
}
|
|
|
|
|
if( rc == -1 ) { /* not found: create */
|
|
|
|
|
memset( &sdir, 0, sizeof sdir );
|
|
|
|
|
sdir.recnum = tdbio_new_recnum();
|
|
|
|
|
sdir.rectype= RECTYPE_SDIR;
|
|
|
|
|
sdir.r.sdir.lid = sdir.recnum;
|
|
|
|
|
sdir.r.sdir.keyid[0] = sig->keyid[0];
|
|
|
|
|
sdir.r.sdir.keyid[1] = sig->keyid[1];
|
|
|
|
|
sdir.r.sdir.pubkey_algo = sig->pubkey_algo;
|
|
|
|
|
sdir.r.sdir.hintlist = 0;
|
|
|
|
|
write_record( &sdir );
|
|
|
|
|
}
|
|
|
|
|
newlid = sdir.recnum;
|
|
|
|
|
/* Put the record number into the hintlist.
|
|
|
|
|
* (It is easier to use the lid and not the record number of the
|
|
|
|
|
* key to save some space (assuming that a signator has
|
|
|
|
|
* signed more than one user id - and it is easier to implement.)
|
|
|
|
|
*/
|
|
|
|
|
tmphlst.recnum = 0;
|
|
|
|
|
for( recno=sdir.r.sdir.hintlist; recno; recno = hlst.r.hlst.next) {
|
|
|
|
|
int i;
|
|
|
|
|
read_record( recno, &hlst, RECTYPE_HLST );
|
|
|
|
|
for( i=0; i < ITEMS_PER_HLST_RECORD; i++ ) {
|
|
|
|
|
if( !hlst.r.hlst.rnum[i] ) {
|
|
|
|
|
if( !tmphlst.recnum ) {
|
|
|
|
|
tmphlst = hlst;
|
|
|
|
|
tmpidx = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if( hlst.r.hlst.rnum[i] == lid )
|
|
|
|
|
goto have_hint;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* not yet in the hint list, write it */
|
|
|
|
|
if( tmphlst.recnum ) { /* we have an empty slot */
|
|
|
|
|
tmphlst.r.hlst.rnum[tmpidx] = lid;
|
|
|
|
|
write_record( &tmphlst );
|
|
|
|
|
}
|
|
|
|
|
else { /* must append a new hlst record */
|
|
|
|
|
memset( &hlst, 0, sizeof hlst );
|
|
|
|
|
hlst.recnum = tdbio_new_recnum();
|
|
|
|
|
hlst.rectype = RECTYPE_HLST;
|
|
|
|
|
hlst.r.hlst.next = sdir.r.sdir.hintlist;
|
|
|
|
|
hlst.r.hlst.rnum[0] = lid;
|
|
|
|
|
write_record( &hlst );
|
|
|
|
|
sdir.r.sdir.hintlist = hlst.recnum;
|
|
|
|
|
write_record( &sdir );
|
|
|
|
|
}
|
|
|
|
|
have_hint: /* "goto considered useful" (don't tell Dijkstra) */
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( delrec.recnum ) { /* we can reuse a deleted slot */
|
|
|
|
|
delrec.r.sig.sig[delrecidx].lid = newlid;
|
|
|
|
|
delrec.r.sig.sig[delrecidx].flag= newflag;
|
|
|
|
|
write_record( &delrec );
|
|
|
|
|
}
|
|
|
|
|
else { /* must insert a new sig record */
|
|
|
|
|
TRUSTREC tmp;
|
|
|
|
|
|
|
|
|
|
memset( &tmp, 0, sizeof tmp );
|
|
|
|
|
tmp.recnum = tdbio_new_recnum();
|
|
|
|
|
tmp.rectype = RECTYPE_SIG;
|
|
|
|
|
tmp.r.sig.lid = lid;
|
|
|
|
|
tmp.r.sig.next = urec.r.uid.siglist;
|
|
|
|
|
tmp.r.sig.sig[0].lid = newlid;
|
|
|
|
|
tmp.r.sig.sig[0].flag= newflag;
|
|
|
|
|
write_record( &tmp );
|
|
|
|
|
urec.r.uid.siglist = tmp.recnum;
|
|
|
|
|
write_record( &urec );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ready:
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
/* handle other sig classes */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
|
* Update all the info from the public keyblock.
|
|
|
|
|
* The key must already exist in the keydb.
|
|
|
|
|
* This function is responsible for checking the signatures in cases
|
|
|
|
|
* where the public key is already available. If we no not have the public
|
|
|
|
|
* key, the check is done by some special code in insert_trust_record().
|
1998-10-01 09:23:00 +02:00
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
update_trust_record( KBNODE keyblock )
|
|
|
|
|
{
|
|
|
|
|
PKT_public_key *primary_pk;
|
|
|
|
|
KBNODE node;
|
|
|
|
|
TRUSTREC drec;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
TRUSTREC krec;
|
|
|
|
|
TRUSTREC urec;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
TRUSTREC prec;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
TRUSTREC helprec;
|
1998-10-01 09:23:00 +02:00
|
|
|
|
int rc = 0;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
u32 keyid[2]; /* keyid of primary key */
|
1998-10-12 22:16:38 +02:00
|
|
|
|
ulong recno, lastrecno;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
ulong uidrecno = 0;
|
|
|
|
|
byte uidhash[20];
|
|
|
|
|
RECNO_LIST recno_list = NULL; /* list of verified records */
|
1998-10-01 09:23:00 +02:00
|
|
|
|
|
|
|
|
|
node = find_kbnode( keyblock, PKT_PUBLIC_KEY );
|
|
|
|
|
primary_pk = node->pkt->pkt.public_key;
|
|
|
|
|
rc = get_dir_record( primary_pk, &drec );
|
|
|
|
|
if( rc )
|
|
|
|
|
return rc;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
if( !primary_pk->local_id )
|
|
|
|
|
primary_pk->local_id = drec.recnum;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
|
|
|
|
|
keyid_from_pk( primary_pk, keyid );
|
|
|
|
|
|
1998-10-06 14:10:02 +02:00
|
|
|
|
/* fixme: start a transaction */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
/* now update keys and user ids */
|
1998-10-06 14:10:02 +02:00
|
|
|
|
for( node=keyblock; node; node = node->next ) {
|
1998-10-12 22:16:38 +02:00
|
|
|
|
switch( node->pkt->pkttype ) {
|
|
|
|
|
case PKT_PUBLIC_KEY:
|
|
|
|
|
case PKT_PUBLIC_SUBKEY:
|
1998-10-07 15:30:43 +02:00
|
|
|
|
uidrecno = 0;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
upd_key_record( node->pkt->pkt.public_key, &drec, &recno_list );
|
|
|
|
|
break;
|
1998-10-06 14:10:02 +02:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
case PKT_USER_ID:
|
|
|
|
|
if( drec.dirty ) { /* upd_pref_record may read the drec */
|
|
|
|
|
write_record( &drec );
|
|
|
|
|
drec.dirty = 0;
|
1998-10-06 14:10:02 +02:00
|
|
|
|
}
|
1998-10-12 22:16:38 +02:00
|
|
|
|
upd_uid_record( node->pkt->pkt.user_id, &drec, &recno_list,
|
|
|
|
|
keyid, &uidrecno, uidhash );
|
|
|
|
|
break;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
case PKT_SIGNATURE:
|
|
|
|
|
if( drec.dirty ) { /* upd_sig_recrod may read the drec */
|
|
|
|
|
write_record( &drec );
|
|
|
|
|
drec.dirty = 0;
|
1998-10-06 14:10:02 +02:00
|
|
|
|
}
|
1998-10-12 22:16:38 +02:00
|
|
|
|
upd_sig_record( node->pkt->pkt.signature, &drec,
|
|
|
|
|
keyid, &uidrecno, uidhash, keyblock, node );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
1998-10-06 14:10:02 +02:00
|
|
|
|
}
|
|
|
|
|
} /* end loop over all nodes */
|
1998-10-01 09:23:00 +02:00
|
|
|
|
|
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
/* delete keyrecords from the trustdb which are not anymore used */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
lastrecno = 0;
|
|
|
|
|
for( recno=drec.r.dir.keylist; recno; recno = krec.r.key.next ) {
|
|
|
|
|
read_record( recno, &krec, RECTYPE_KEY );
|
|
|
|
|
if( !qry_recno_list( recno_list, recno, RECTYPE_KEY ) ) {
|
|
|
|
|
/* delete this one */
|
|
|
|
|
if( !lastrecno ) {
|
|
|
|
|
drec.r.dir.keylist = krec.r.key.next;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
drec.dirty = 1;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
read_record( lastrecno, &helprec, RECTYPE_KEY );
|
|
|
|
|
helprec.r.key.next = krec.r.key.next;
|
|
|
|
|
write_record( &helprec );
|
|
|
|
|
}
|
|
|
|
|
delete_record( recno );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
lastrecno = recno;
|
|
|
|
|
}
|
1998-10-12 22:16:38 +02:00
|
|
|
|
/* delete uid records and sig and their pref records from the
|
1998-10-07 15:30:43 +02:00
|
|
|
|
* trustdb which are not anymore used */
|
|
|
|
|
lastrecno = 0;
|
|
|
|
|
for( recno=drec.r.dir.uidlist; recno; recno = urec.r.uid.next ) {
|
|
|
|
|
read_record( recno, &urec, RECTYPE_UID );
|
|
|
|
|
if( !qry_recno_list( recno_list, recno, RECTYPE_UID ) ) {
|
|
|
|
|
ulong r2;
|
|
|
|
|
/* delete this one */
|
|
|
|
|
if( !lastrecno ) {
|
|
|
|
|
drec.r.dir.uidlist = urec.r.uid.next;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
drec.dirty = 1;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
read_record( lastrecno, &helprec, RECTYPE_UID );
|
|
|
|
|
helprec.r.uid.next = urec.r.uid.next;
|
|
|
|
|
write_record( &helprec );
|
|
|
|
|
}
|
|
|
|
|
for(r2=urec.r.uid.prefrec ; r2; r2 = prec.r.pref.next ) {
|
|
|
|
|
read_record( r2, &prec, RECTYPE_PREF );
|
|
|
|
|
delete_record( r2 );
|
|
|
|
|
}
|
1998-10-12 22:16:38 +02:00
|
|
|
|
for(r2=urec.r.uid.siglist ; r2; r2 = helprec.r.sig.next ) {
|
|
|
|
|
read_record( r2, &helprec, RECTYPE_SIG );
|
|
|
|
|
delete_record( r2 );
|
|
|
|
|
}
|
1998-10-07 15:30:43 +02:00
|
|
|
|
delete_record( recno );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
lastrecno = recno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-10-06 14:10:02 +02:00
|
|
|
|
if( rc )
|
|
|
|
|
; /* fixme: cancel transaction */
|
1998-10-12 22:16:38 +02:00
|
|
|
|
else if( drec.dirty ) {
|
1998-10-07 15:30:43 +02:00
|
|
|
|
drec.r.dir.dirflags &= ~DIRF_CHECKED; /* reset flag */
|
|
|
|
|
write_record( &drec );
|
1998-10-06 14:10:02 +02:00
|
|
|
|
/* fixme: commit_transaction */
|
1998-10-01 09:23:00 +02:00
|
|
|
|
}
|
1998-10-07 15:30:43 +02:00
|
|
|
|
rel_recno_list( &recno_list );
|
1998-10-01 09:23:00 +02:00
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
1998-07-15 20:05:01 +02:00
|
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
/****************
|
|
|
|
|
* Insert a trust record into the TrustDB
|
1998-10-12 22:16:38 +02:00
|
|
|
|
* This function assumes that the record does not yet exist.
|
1998-01-13 20:04:23 +01:00
|
|
|
|
*/
|
|
|
|
|
int
|
1998-10-07 15:30:43 +02:00
|
|
|
|
insert_trust_record( PKT_public_key *pk )
|
1998-01-13 20:04:23 +01:00
|
|
|
|
{
|
1998-10-07 15:30:43 +02:00
|
|
|
|
TRUSTREC dirrec;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
TRUSTREC shadow;
|
1998-07-14 19:10:28 +02:00
|
|
|
|
KBNODE keyblock = NULL;
|
|
|
|
|
KBNODE node;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
byte fingerprint[MAX_FINGERPRINT_LEN];
|
1998-01-13 20:04:23 +01:00
|
|
|
|
size_t fingerlen;
|
1998-07-14 19:10:28 +02:00
|
|
|
|
int rc = 0;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
ulong hintlist = 0;
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
if( pk->local_id )
|
|
|
|
|
log_bug("pk->local_id=%lu\n", pk->local_id );
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
fingerprint_from_pk( pk, fingerprint, &fingerlen );
|
1998-07-14 19:10:28 +02:00
|
|
|
|
|
|
|
|
|
/* fixme: assert that we do not have this record.
|
|
|
|
|
* we can do this by searching for the primary keyid
|
1998-10-12 22:16:38 +02:00
|
|
|
|
*
|
|
|
|
|
* fixme: If there is no such key we should look whether one
|
|
|
|
|
* of the subkeys has been used to sign another key and in this case
|
|
|
|
|
* we got the key anyway. Because a secondary key can't be used
|
|
|
|
|
* without a primary key (it is needed to bind the secondary one
|
|
|
|
|
* to the primary one which has the user ids etc.)
|
1998-07-14 19:10:28 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* get the keyblock which has the key */
|
|
|
|
|
rc = get_keyblock_byfprint( &keyblock, fingerprint, fingerlen );
|
|
|
|
|
if( rc ) { /* that should never happen */
|
|
|
|
|
log_error( "insert_trust_record: keyblock not found: %s\n",
|
|
|
|
|
g10_errstr(rc) );
|
1998-07-15 20:05:01 +02:00
|
|
|
|
goto leave;
|
1998-07-14 19:10:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
1998-10-12 22:16:38 +02:00
|
|
|
|
/* check that we used the primary key (we are little bit paranoid) */
|
|
|
|
|
{ PKT_public_key *a_pk;
|
|
|
|
|
node = find_kbnode( keyblock, PKT_PUBLIC_KEY );
|
|
|
|
|
a_pk = node->pkt->pkt.public_key;
|
|
|
|
|
if( cmp_public_keys( a_pk, pk ) ) {
|
|
|
|
|
log_error("did not use primary key for insert_trust_record()\n");
|
|
|
|
|
rc = G10ERR_GENERAL;
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We have to look for a shadow dir record which must be reused
|
|
|
|
|
* as the dir record. And: check all signatures which are listed
|
|
|
|
|
* in the hintlist of the shadow dir record.
|
|
|
|
|
*/
|
|
|
|
|
rc = tdbio_search_sdir( pk->keyid, pk->pubkey_algo, &shadow );
|
|
|
|
|
if( rc && rc != -1 ) {
|
|
|
|
|
log_error("tdbio_search_dir failed: %s\n", g10_errstr(rc));
|
|
|
|
|
die_invalid_db();
|
|
|
|
|
}
|
1998-10-07 15:30:43 +02:00
|
|
|
|
memset( &dirrec, 0, sizeof dirrec );
|
|
|
|
|
dirrec.rectype = RECTYPE_DIR;
|
1998-10-12 22:16:38 +02:00
|
|
|
|
if( !rc ) {
|
|
|
|
|
/* hey, great: this key has already signed other keys
|
|
|
|
|
* convert this to a real directory entry */
|
|
|
|
|
hintlist = shadow.r.sdir.hintlist;
|
|
|
|
|
dirrec.recnum = shadow.recnum;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
dirrec.recnum = tdbio_new_recnum();
|
|
|
|
|
}
|
1998-07-15 20:05:01 +02:00
|
|
|
|
dirrec.r.dir.lid = dirrec.recnum;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
write_record( &dirrec );
|
1998-07-14 19:10:28 +02:00
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
/* store the LID */
|
|
|
|
|
pk->local_id = dirrec.r.dir.lid;
|
1998-07-21 14:53:38 +02:00
|
|
|
|
for( node=keyblock; node; node = node->next ) {
|
|
|
|
|
if( node->pkt->pkttype == PKT_PUBLIC_KEY
|
|
|
|
|
|| node->pkt->pkttype == PKT_PUBLIC_SUBKEY ) {
|
|
|
|
|
PKT_public_key *pk = node->pkt->pkt.public_key;
|
|
|
|
|
pk->local_id = dirrec.r.dir.lid;
|
|
|
|
|
}
|
|
|
|
|
else if( node->pkt->pkttype == PKT_SIGNATURE ) {
|
|
|
|
|
PKT_signature *sig = node->pkt->pkt.signature;
|
|
|
|
|
sig->local_id = dirrec.r.dir.lid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
/* and put all the other stuff into the keydb */
|
|
|
|
|
rc = update_trust_record( keyblock );
|
1998-10-12 22:16:38 +02:00
|
|
|
|
if( !rc )
|
|
|
|
|
process_hintlist( hintlist, dirrec.r.dir.lid );
|
1998-07-15 20:05:01 +02:00
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
leave:
|
1998-10-12 22:16:38 +02:00
|
|
|
|
if( rc && hintlist )
|
|
|
|
|
; /* fixme: the hintlist is not anymore anchored */
|
1998-10-07 15:30:43 +02:00
|
|
|
|
release_kbnode( keyblock );
|
1998-07-15 20:05:01 +02:00
|
|
|
|
return rc;
|
1998-01-13 20:04:23 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1998-01-24 17:32:27 +01:00
|
|
|
|
update_ownertrust( ulong lid, unsigned new_trust )
|
1998-01-13 20:04:23 +01:00
|
|
|
|
{
|
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
|
1998-10-07 15:30:43 +02:00
|
|
|
|
read_record( lid, &rec, RECTYPE_DIR );
|
1998-07-21 14:53:38 +02:00
|
|
|
|
rec.r.dir.ownertrust = new_trust;
|
1998-10-07 15:30:43 +02:00
|
|
|
|
write_record( &rec );
|
1998-01-25 19:56:33 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|