1999-03-11 16:42:06 +01:00
|
|
|
/* tdbdump.c
|
2002-06-29 15:46:34 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
1999-03-11 16:42:06 +01:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* 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>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "errors.h"
|
|
|
|
#include "iobuf.h"
|
|
|
|
#include "keydb.h"
|
2002-06-29 15:46:34 +02:00
|
|
|
#include "memory.h"
|
1999-03-11 16:42:06 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "trustdb.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
#include "tdbio.h"
|
|
|
|
|
|
|
|
|
1999-11-19 17:11:37 +01:00
|
|
|
#define HEXTOBIN(x) ( (x) >= '0' && (x) <= '9' ? ((x)-'0') : \
|
|
|
|
(x) >= 'A' && (x) <= 'F' ? ((x)-'A'+10) : ((x)-'a'+10))
|
1999-03-11 16:42:06 +01:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
|
1999-03-11 16:42:06 +01:00
|
|
|
/****************
|
|
|
|
* 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"),
|
2002-06-29 15:46:34 +02:00
|
|
|
rec->recnum, rec->rectype, g10_errstr(rc) );
|
1999-03-11 16:42:06 +01:00
|
|
|
tdbio_invalid();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
2002-06-29 15:46:34 +02:00
|
|
|
* Dump the entire trustdb or only the entries of one key.
|
1999-03-11 16:42:06 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
list_trustdb( const char *username )
|
|
|
|
{
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
|
|
|
init_trustdb();
|
2002-06-29 15:46:34 +02:00
|
|
|
/* for now we ignore the user ID */
|
|
|
|
if (1) {
|
1999-03-11 16:42:06 +01:00
|
|
|
ulong recnum;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf("TrustDB: %s\n", tdbio_get_dbname() );
|
|
|
|
for(i=9+strlen(tdbio_get_dbname()); i > 0; i-- )
|
|
|
|
putchar('-');
|
|
|
|
putchar('\n');
|
|
|
|
for(recnum=0; !tdbio_read_record( recnum, &rec, 0); recnum++ )
|
|
|
|
tdbio_dump_record( &rec, stdout );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Print a list of all defined owner trust value.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
export_ownertrust()
|
|
|
|
{
|
|
|
|
TRUSTREC rec;
|
|
|
|
ulong recnum;
|
|
|
|
int i;
|
|
|
|
byte *p;
|
|
|
|
|
|
|
|
init_trustdb();
|
|
|
|
printf(_("# List of assigned trustvalues, created %s\n"
|
1999-06-26 12:23:06 +02:00
|
|
|
"# (Use \"gpg --import-ownertrust\" to restore them)\n"),
|
1999-03-11 16:42:06 +01:00
|
|
|
asctimestamp( make_timestamp() ) );
|
|
|
|
for(recnum=0; !tdbio_read_record( recnum, &rec, 0); recnum++ ) {
|
2002-06-29 15:46:34 +02:00
|
|
|
if( rec.rectype == RECTYPE_TRUST ) {
|
|
|
|
if( !rec.r.trust.ownertrust )
|
1999-03-11 16:42:06 +01:00
|
|
|
continue;
|
2002-06-29 15:46:34 +02:00
|
|
|
p = rec.r.trust.fingerprint;
|
|
|
|
for(i=0; i < 20; i++, p++ )
|
1999-03-11 16:42:06 +01:00
|
|
|
printf("%02X", *p );
|
2002-06-29 15:46:34 +02:00
|
|
|
printf(":%u:\n", (unsigned int)rec.r.trust.ownertrust );
|
1999-03-11 16:42:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
import_ownertrust( const char *fname )
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int is_stdin=0;
|
|
|
|
char line[256];
|
|
|
|
char *p;
|
|
|
|
size_t n, fprlen;
|
2002-06-29 15:46:34 +02:00
|
|
|
unsigned int otrust;
|
|
|
|
byte fpr[20];
|
|
|
|
int any = 0;
|
|
|
|
int rc;
|
1999-03-11 16:42:06 +01:00
|
|
|
|
|
|
|
init_trustdb();
|
|
|
|
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 ) ) {
|
|
|
|
TRUSTREC rec;
|
|
|
|
|
|
|
|
if( !*line || *line == '#' )
|
|
|
|
continue;
|
|
|
|
n = strlen(line);
|
|
|
|
if( line[n-1] != '\n' ) {
|
|
|
|
log_error_f(fname, _("line too long\n") );
|
|
|
|
/* ... or last line does not have a LF */
|
|
|
|
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 ownertrust value\n") );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if( !otrust )
|
|
|
|
continue; /* no otrust defined - no need to update or insert */
|
|
|
|
/* convert the ascii fingerprint to binary */
|
2002-06-29 15:46:34 +02:00
|
|
|
for(p=line, fprlen=0; fprlen < 20 && *p != ':'; p += 2 )
|
|
|
|
fpr[fprlen++] = HEXTOBIN(p[0]) * 16 + HEXTOBIN(p[1]);
|
|
|
|
while (fprlen < 20)
|
|
|
|
fpr[fprlen++] = 0;
|
|
|
|
|
|
|
|
rc = tdbio_search_trust_byfpr (fpr, &rec);
|
1999-03-11 16:42:06 +01:00
|
|
|
if( !rc ) { /* found: update */
|
2002-06-29 15:46:34 +02:00
|
|
|
if (rec.r.trust.ownertrust != otrust)
|
|
|
|
{
|
|
|
|
if( rec.r.trust.ownertrust )
|
|
|
|
log_info("changing ownertrust from %u to %u\n",
|
|
|
|
rec.r.trust.ownertrust, otrust );
|
|
|
|
else
|
|
|
|
log_info("setting ownertrust to %u\n", otrust );
|
|
|
|
rec.r.trust.ownertrust = otrust;
|
|
|
|
write_record (&rec );
|
|
|
|
any = 1;
|
|
|
|
}
|
1999-03-11 16:42:06 +01:00
|
|
|
}
|
2002-06-29 15:46:34 +02:00
|
|
|
else if( rc == -1 ) { /* not found: insert */
|
|
|
|
log_info("inserting ownertrust of %u\n", otrust );
|
|
|
|
memset (&rec, 0, sizeof rec);
|
|
|
|
rec.recnum = tdbio_new_recnum ();
|
|
|
|
rec.rectype = RECTYPE_TRUST;
|
|
|
|
memcpy (rec.r.trust.fingerprint, fpr, 20);
|
|
|
|
rec.r.trust.ownertrust = otrust;
|
|
|
|
write_record (&rec );
|
|
|
|
any = 1;
|
1999-03-11 16:42:06 +01:00
|
|
|
}
|
|
|
|
else /* error */
|
2002-06-29 15:46:34 +02:00
|
|
|
log_error_f(fname, _("error finding trust record: %s\n"),
|
|
|
|
g10_errstr(rc));
|
1999-03-11 16:42:06 +01:00
|
|
|
}
|
|
|
|
if( ferror(fp) )
|
|
|
|
log_error_f(fname, _("read error: %s\n"), strerror(errno) );
|
|
|
|
if( !is_stdin )
|
|
|
|
fclose(fp);
|
2002-06-29 15:46:34 +02:00
|
|
|
|
|
|
|
if (any)
|
|
|
|
{
|
|
|
|
revalidation_mark ();
|
|
|
|
rc = tdbio_sync ();
|
|
|
|
if (rc)
|
|
|
|
log_error (_("trustdb: sync failed: %s\n"), g10_errstr(rc) );
|
|
|
|
}
|
|
|
|
|
1999-03-11 16:42:06 +01:00
|
|
|
}
|
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
|