gnupg/g10/mainproc.c

799 lines
20 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* mainproc.c - handle packets
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* GNUPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
1998-02-24 19:50:46 +01:00
* GNUPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
1998-03-09 22:44:06 +01:00
#include <string.h>
1997-12-01 11:33:23 +01:00
#include <assert.h>
1997-11-18 15:06:00 +01:00
#include "packet.h"
#include "iobuf.h"
#include "memory.h"
#include "options.h"
#include "util.h"
#include "cipher.h"
#include "keydb.h"
1997-11-24 12:04:11 +01:00
#include "filter.h"
1997-12-01 11:33:23 +01:00
#include "cipher.h"
1997-11-24 23:24:04 +01:00
#include "main.h"
1998-01-30 17:23:16 +01:00
#include "status.h"
1997-11-18 15:06:00 +01:00
1997-11-27 12:44:13 +01:00
1997-12-01 11:33:23 +01:00
/****************
* Structure to hold the context
*/
1997-11-27 12:44:13 +01:00
typedef struct {
1997-12-01 11:33:23 +01:00
PKT_public_cert *last_pubkey;
PKT_secret_cert *last_seckey;
1997-11-27 12:44:13 +01:00
PKT_user_id *last_user_id;
md_filter_context_t mfx;
1998-03-09 22:44:06 +01:00
int sigs_only; /* process only signatures and reject all other stuff */
1998-04-14 19:51:16 +02:00
int encrypt_only; /* process only encrytion messages */
1998-03-09 22:44:06 +01:00
STRLIST signed_data;
1997-11-27 12:44:13 +01:00
DEK *dek;
int last_was_pubkey_enc;
1998-02-17 21:48:52 +01:00
KBNODE list; /* the current list of packets */
1997-12-03 11:20:03 +01:00
int have_data;
IOBUF iobuf; /* used to get the filename etc. */
1997-11-27 12:44:13 +01:00
} *CTX;
1998-03-09 22:44:06 +01:00
static int do_proc_packets( CTX c, IOBUF a );
1997-11-27 12:44:13 +01:00
1997-12-12 13:03:58 +01:00
static void list_node( CTX c, KBNODE node );
static void proc_tree( CTX c, KBNODE node );
1997-12-01 11:33:23 +01:00
1997-11-26 23:02:28 +01:00
static void
1998-02-17 21:48:52 +01:00
release_list( CTX c )
1997-11-26 23:02:28 +01:00
{
1998-02-17 21:48:52 +01:00
if( !c->list )
1997-12-01 11:33:23 +01:00
return;
1998-02-17 21:48:52 +01:00
proc_tree(c, c->list );
release_kbnode( c->list );
c->list = NULL;
1997-11-26 23:02:28 +01:00
}
1997-12-02 20:36:53 +01:00
static int
add_onepass_sig( CTX c, PACKET *pkt )
{
1997-12-12 13:03:58 +01:00
KBNODE node;
1997-12-03 11:20:03 +01:00
1998-02-17 21:48:52 +01:00
if( c->list ) { /* add another packet */
if( c->list->pkt->pkttype != PKT_ONEPASS_SIG ) {
1997-12-02 20:36:53 +01:00
log_error("add_onepass_sig: another packet is in the way\n");
1998-02-17 21:48:52 +01:00
release_list( c );
1997-12-02 20:36:53 +01:00
}
1998-02-17 21:48:52 +01:00
add_kbnode( c->list, new_kbnode( pkt ));
1997-12-02 20:36:53 +01:00
}
else /* insert the first one */
1998-02-17 21:48:52 +01:00
c->list = node = new_kbnode( pkt );
1997-12-03 11:20:03 +01:00
1997-12-02 20:36:53 +01:00
return 1;
}
1997-12-01 11:33:23 +01:00
static int
1998-04-02 12:30:03 +02:00
add_user_id( CTX c, PACKET *pkt )
1997-12-01 11:33:23 +01:00
{
1998-04-02 12:30:03 +02:00
if( !c->list ) {
log_error("orphaned user id\n" );
return 0;
}
add_kbnode( c->list, new_kbnode( pkt ) );
1997-12-01 11:33:23 +01:00
return 1;
}
static int
1998-04-02 12:30:03 +02:00
add_subkey( CTX c, PACKET *pkt )
1997-11-27 12:44:13 +01:00
{
1998-02-17 21:48:52 +01:00
if( !c->list ) {
1998-04-02 12:30:03 +02:00
log_error("subkey w/o mainkey\n" );
1997-12-01 11:33:23 +01:00
return 0;
1997-11-27 12:44:13 +01:00
}
1998-02-17 21:48:52 +01:00
add_kbnode( c->list, new_kbnode( pkt ) );
1997-12-01 11:33:23 +01:00
return 1;
1997-11-27 12:44:13 +01:00
}
1997-12-01 11:33:23 +01:00
static int
add_signature( CTX c, PACKET *pkt )
1997-11-27 12:44:13 +01:00
{
1998-02-12 00:22:09 +01:00
KBNODE node;
1997-11-27 12:44:13 +01:00
1998-02-17 21:48:52 +01:00
if( pkt->pkttype == PKT_SIGNATURE && !c->list ) {
1998-04-14 19:51:16 +02:00
/* This is the first signature for the following datafile.
* G10 does not write such packets; instead it always uses
1998-01-30 17:23:16 +01:00
* onepass-sig packets. The drawback of PGP's method
1998-04-14 19:51:16 +02:00
* of prepending the signature to the data is
* that it is not possible to make a signature from data read
1998-04-14 19:51:16 +02:00
* from stdin. (G10 is able to read PGP stuff anyway.) */
1998-01-30 17:23:16 +01:00
node = new_kbnode( pkt );
1998-02-17 21:48:52 +01:00
c->list = node;
1998-01-30 17:23:16 +01:00
return 1;
1997-11-27 12:44:13 +01:00
}
1998-02-17 21:48:52 +01:00
else if( !c->list )
1998-02-12 00:22:09 +01:00
return 0; /* oops (invalid packet sequence)*/
1998-02-17 21:48:52 +01:00
else if( !c->list->pkt )
1998-02-12 00:22:09 +01:00
BUG(); /* so nicht */
1998-01-30 17:23:16 +01:00
1998-02-12 00:22:09 +01:00
/* add a new signature node id at the end */
1997-12-12 13:03:58 +01:00
node = new_kbnode( pkt );
1998-02-17 21:48:52 +01:00
add_kbnode( c->list, node );
1997-12-01 11:33:23 +01:00
return 1;
1997-11-27 12:44:13 +01:00
}
static void
proc_pubkey_enc( CTX c, PACKET *pkt )
{
PKT_pubkey_enc *enc;
int result = 0;
c->last_was_pubkey_enc = 1;
enc = pkt->pkt.pubkey_enc;
1998-01-02 21:40:10 +01:00
/*printf("enc: encrypted by a pubkey with keyid %08lX\n", enc->keyid[1] );*/
1997-11-27 12:44:13 +01:00
if( enc->pubkey_algo == PUBKEY_ALGO_ELGAMAL
1998-03-09 22:44:06 +01:00
|| enc->pubkey_algo == PUBKEY_ALGO_DSA
1997-11-27 12:44:13 +01:00
|| enc->pubkey_algo == PUBKEY_ALGO_RSA ) {
m_free(c->dek ); /* paranoid: delete a pending DEK */
c->dek = m_alloc_secure( sizeof *c->dek );
if( (result = get_session_key( enc, c->dek )) ) {
/* error: delete the DEK */
m_free(c->dek); c->dek = NULL;
}
}
else
result = G10ERR_PUBKEY_ALGO;
if( result == -1 )
;
1998-01-02 21:40:10 +01:00
else if( !result ) {
if( opt.verbose > 1 )
log_info( "pubkey_enc packet: Good DEK\n" );
}
1997-11-27 12:44:13 +01:00
else
1998-01-02 21:40:10 +01:00
log_error( "pubkey_enc packet: %s\n", g10_errstr(result));
1997-11-27 12:44:13 +01:00
free_packet(pkt);
}
static void
1997-12-01 11:33:23 +01:00
proc_encrypted( CTX c, PACKET *pkt )
1997-11-27 12:44:13 +01:00
{
int result = 0;
1998-01-02 21:40:10 +01:00
/*printf("dat: %sencrypted data\n", c->dek?"":"conventional ");*/
1997-11-27 12:44:13 +01:00
if( !c->dek && !c->last_was_pubkey_enc ) {
/* assume this is conventional encrypted data */
c->dek = m_alloc_secure( sizeof *c->dek );
1998-01-07 21:47:46 +01:00
c->dek->algo = opt.def_cipher_algo;
1998-02-24 19:50:46 +01:00
result = make_dek_from_passphrase( c->dek, 0, NULL );
1997-11-27 12:44:13 +01:00
}
else if( !c->dek )
result = G10ERR_NO_SECKEY;
if( !result )
1997-12-01 11:33:23 +01:00
result = decrypt_data( pkt->pkt.encrypted, c->dek );
1997-11-27 12:44:13 +01:00
m_free(c->dek); c->dek = NULL;
if( result == -1 )
;
1998-01-02 21:40:10 +01:00
else if( !result ) {
if( opt.verbose > 1 )
log_info("encryption okay\n");
}
else {
log_error("encryption failed: %s\n", g10_errstr(result));
}
1997-11-27 12:44:13 +01:00
free_packet(pkt);
c->last_was_pubkey_enc = 0;
}
static void
proc_plaintext( CTX c, PACKET *pkt )
{
PKT_plaintext *pt = pkt->pkt.plaintext;
1998-01-02 21:40:10 +01:00
int rc;
1997-11-27 12:44:13 +01:00
1998-01-02 21:40:10 +01:00
if( opt.verbose )
log_info("original file name='%.*s'\n", pt->namelen, pt->name);
1997-11-27 12:44:13 +01:00
free_md_filter_context( &c->mfx );
/* fixme: take the digest algo(s) to use from the
* onepass_sig packet (if we have these)
1998-04-14 19:51:16 +02:00
* And look at the sigclass to check whether we should use the
* textmode filter (sigclass 0x01)
*/
1998-01-12 11:18:17 +01:00
c->mfx.md = md_open( DIGEST_ALGO_RMD160, 0);
1998-04-08 21:49:02 +02:00
md_enable( c->mfx.md, DIGEST_ALGO_SHA1 );
1998-02-04 19:54:31 +01:00
md_enable( c->mfx.md, DIGEST_ALGO_MD5 );
1998-01-02 21:40:10 +01:00
rc = handle_plaintext( pt, &c->mfx );
if( rc )
log_error( "handle plaintext failed: %s\n", g10_errstr(rc));
1997-11-27 12:44:13 +01:00
free_packet(pkt);
c->last_was_pubkey_enc = 0;
}
1998-03-09 22:44:06 +01:00
static int
proc_compressed_cb( IOBUF a, void *info )
{
return proc_signature_packets( a, ((CTX)info)->signed_data );
}
static int
proc_encrypt_cb( IOBUF a, void *info )
{
return proc_encryption_packets( a );
}
1997-11-27 12:44:13 +01:00
static void
1997-12-01 11:33:23 +01:00
proc_compressed( CTX c, PACKET *pkt )
1997-11-27 12:44:13 +01:00
{
PKT_compressed *zd = pkt->pkt.compressed;
1998-01-02 21:40:10 +01:00
int rc;
1997-11-27 12:44:13 +01:00
1998-01-02 21:40:10 +01:00
/*printf("zip: compressed data packet\n");*/
1998-03-09 22:44:06 +01:00
if( c->sigs_only )
rc = handle_compressed( zd, proc_compressed_cb, c );
else if( c->encrypt_only )
rc = handle_compressed( zd, proc_encrypt_cb, c );
else
rc = handle_compressed( zd, NULL, NULL );
1998-01-02 21:40:10 +01:00
if( rc )
log_error("uncompressing failed: %s\n", g10_errstr(rc));
1997-11-27 12:44:13 +01:00
free_packet(pkt);
c->last_was_pubkey_enc = 0;
}
1997-11-26 23:02:28 +01:00
1997-12-01 11:33:23 +01:00
/****************
* check the signature
* Returns: 0 = valid signature or an error code
*/
static int
1997-12-12 13:03:58 +01:00
do_check_sig( CTX c, KBNODE node )
1997-12-01 11:33:23 +01:00
{
PKT_signature *sig;
1998-01-12 11:18:17 +01:00
MD_HANDLE md;
1997-12-01 11:33:23 +01:00
int algo, rc;
assert( node->pkt->pkttype == PKT_SIGNATURE );
sig = node->pkt->pkt.signature;
algo = digest_algo_from_sig( sig );
if( !algo )
1997-12-01 11:33:23 +01:00
return G10ERR_PUBKEY_ALGO;
1998-01-12 11:18:17 +01:00
if( (rc=check_digest_algo(algo)) )
1997-12-01 11:33:23 +01:00
return rc;
1997-12-03 11:20:03 +01:00
if( sig->sig_class == 0x00 ) {
1998-02-27 18:51:28 +01:00
if( c->mfx.md )
md = md_copy( c->mfx.md );
else /* detached signature */
md = md_open( 0, 0 ); /* signature_check() will enable the md*/
1997-12-03 11:20:03 +01:00
}
1998-02-04 19:54:31 +01:00
else if( sig->sig_class == 0x01 ) {
/* how do we know that we have to hash the (already hashed) text
* in canonical mode ??? (calculating both modes???) */
1998-02-27 18:51:28 +01:00
if( c->mfx.md )
md = md_copy( c->mfx.md );
else /* detached signature */
md = md_open( 0, 0 ); /* signature_check() will enable the md*/
1998-02-04 19:54:31 +01:00
}
else if( (sig->sig_class&~3) == 0x10
1998-04-02 12:30:03 +02:00
|| sig->sig_class == 0x18
|| sig->sig_class == 0x20
1998-04-25 10:08:35 +02:00
|| sig->sig_class == 0x30 ) { /* classes 0x10..0x17,0x20,0x30 */
1998-04-02 12:30:03 +02:00
if( c->list->pkt->pkttype == PKT_PUBLIC_CERT
|| c->list->pkt->pkttype == PKT_PUBKEY_SUBCERT ) {
return check_key_signature( c->list, node, NULL );
1997-12-01 11:33:23 +01:00
}
else {
log_error("invalid root packet for sigclass %02x\n",
sig->sig_class);
1997-12-01 11:33:23 +01:00
return G10ERR_SIG_CLASS;
}
}
else
return G10ERR_SIG_CLASS;
rc = signature_check( sig, md );
md_close(md);
return rc;
}
static void
print_userid( PACKET *pkt )
{
if( !pkt )
1998-01-16 22:15:24 +01:00
BUG();
1997-12-01 11:33:23 +01:00
if( pkt->pkttype != PKT_USER_ID ) {
printf("ERROR: unexpected packet type %d", pkt->pkttype );
return;
}
1998-03-09 22:44:06 +01:00
print_string( stdout, pkt->pkt.user_id->name, pkt->pkt.user_id->len,
opt.with_colons );
1997-12-01 11:33:23 +01:00
}
1997-12-09 13:46:23 +01:00
static void
print_fingerprint( PKT_public_cert *pkc, PKT_secret_cert *skc )
{
byte *array, *p;
size_t i, n;
p = array = skc? fingerprint_from_skc( skc, &n )
: fingerprint_from_pkc( pkc, &n );
1998-03-09 22:44:06 +01:00
if( opt.with_colons ) {
1998-04-02 12:30:03 +02:00
printf("fpr:::::::::");
1998-03-09 22:44:06 +01:00
for(i=0; i < n ; i++, p++ )
printf("%02X", *p );
putchar(':');
1997-12-09 13:46:23 +01:00
}
else {
1998-03-09 22:44:06 +01:00
printf(" Key fingerprint =");
if( n == 20 ) {
for(i=0; i < n ; i++, i++, p += 2 ) {
if( i == 10 )
putchar(' ');
printf(" %02X%02X", *p, p[1] );
}
}
else {
for(i=0; i < n ; i++, p++ ) {
if( i && !(i%8) )
putchar(' ');
printf(" %02X", *p );
}
1997-12-09 13:46:23 +01:00
}
}
putchar('\n');
m_free(array);
}
1997-12-01 11:33:23 +01:00
/****************
* List the certificate in a user friendly way
*/
static void
1997-12-12 13:03:58 +01:00
list_node( CTX c, KBNODE node )
1997-12-01 11:33:23 +01:00
{
int any=0;
1998-04-02 12:30:03 +02:00
int mainkey;
1997-12-01 11:33:23 +01:00
if( !node )
;
1998-04-02 12:30:03 +02:00
else if( (mainkey = (node->pkt->pkttype == PKT_PUBLIC_CERT) )
|| node->pkt->pkttype == PKT_PUBKEY_SUBCERT ) {
1997-12-01 11:33:23 +01:00
PKT_public_cert *pkc = node->pkt->pkt.public_cert;
1998-03-09 22:44:06 +01:00
if( opt.with_colons ) {
u32 keyid[2];
keyid_from_pkc( pkc, keyid );
1998-04-02 12:30:03 +02:00
printf("%s::%u:%d:%08lX%08lX:%s:%u:::",
mainkey? "pub":"sub",
1998-03-09 22:44:06 +01:00
/* fixme: add trust value here */
nbits_from_pkc( pkc ),
pkc->pubkey_algo,
(ulong)keyid[0],(ulong)keyid[1],
1998-04-02 12:30:03 +02:00
datestr_from_pkc( pkc ),
(unsigned)pkc->valid_days
1998-03-09 22:44:06 +01:00
/* fixme: add LID and ownertrust here */
);
}
else
1998-04-02 12:30:03 +02:00
printf("%s %4u%c/%08lX %s ",
mainkey? "pub":"sub",
nbits_from_pkc( pkc ),
1997-12-01 11:33:23 +01:00
pubkey_letter( pkc->pubkey_algo ),
(ulong)keyid_from_pkc( pkc, NULL ),
datestr_from_pkc( pkc ) );
/* and now list all userids with their signatures */
1998-02-17 21:48:52 +01:00
for( node = node->next; node; node = node->next ) {
if( any != 2 && node->pkt->pkttype == PKT_SIGNATURE ) {
1998-03-09 22:44:06 +01:00
if( !any ) {
if( node->pkt->pkt.signature->sig_class == 0x20 )
puts("[revoked]");
else
putchar('\n');
}
list_node(c, node );
any = 1;
}
else if( node->pkt->pkttype == PKT_USER_ID ) {
1998-02-17 21:48:52 +01:00
KBNODE n;
1998-03-09 22:44:06 +01:00
if( any ) {
if( opt.with_colons )
1998-04-02 12:30:03 +02:00
printf("uid:::::::::");
1998-03-09 22:44:06 +01:00
else
printf( "uid%*s", 28, "" );
}
1998-02-17 21:48:52 +01:00
print_userid( node->pkt );
1998-03-09 22:44:06 +01:00
if( opt.with_colons )
putchar(':');
1998-02-17 21:48:52 +01:00
putchar('\n');
if( opt.fingerprint && !any )
print_fingerprint( pkc, NULL );
for( n=node->next; n; n = n->next ) {
if( n->pkt->pkttype == PKT_USER_ID )
break;
if( n->pkt->pkttype == PKT_SIGNATURE )
list_node(c, n );
}
any=2;
1998-02-17 21:48:52 +01:00
}
1998-04-02 12:30:03 +02:00
else if( mainkey && node->pkt->pkttype == PKT_PUBKEY_SUBCERT ) {
if( !any ) {
putchar('\n');
any = 1;
}
list_node(c, node );
}
1997-12-01 11:33:23 +01:00
}
1998-04-02 12:30:03 +02:00
if( any != 2 && mainkey )
printf("ERROR: no user id!\n");
1998-04-02 12:30:03 +02:00
else if( any != 2 )
putchar('\n');
1997-12-01 11:33:23 +01:00
}
1998-04-02 12:30:03 +02:00
else if( (mainkey = (node->pkt->pkttype == PKT_SECRET_CERT) )
|| node->pkt->pkttype == PKT_SECKEY_SUBCERT ) {
1997-12-01 11:33:23 +01:00
PKT_secret_cert *skc = node->pkt->pkt.secret_cert;
1998-04-02 12:30:03 +02:00
printf("%s %4u%c/%08lX %s ",
mainkey? "sec":"ssb",
nbits_from_skc( skc ),
1997-12-01 11:33:23 +01:00
pubkey_letter( skc->pubkey_algo ),
(ulong)keyid_from_skc( skc, NULL ),
1998-04-02 12:30:03 +02:00
datestr_from_skc( skc ) );
/* and now list all userids */
while( (node = find_next_kbnode(node, PKT_USER_ID)) ) {
print_userid( node->pkt );
1997-12-09 13:46:23 +01:00
putchar('\n');
if( opt.fingerprint && !any )
1997-12-09 13:46:23 +01:00
print_fingerprint( NULL, skc );
any=1;
1997-12-01 11:33:23 +01:00
}
1998-04-02 12:30:03 +02:00
if( !any && mainkey )
printf("ERROR: no user id!\n");
1998-04-02 12:30:03 +02:00
else if( !any )
putchar('\n');
1997-12-01 11:33:23 +01:00
}
1997-12-09 13:46:23 +01:00
else if( node->pkt->pkttype == PKT_SIGNATURE ) {
1997-12-01 11:33:23 +01:00
PKT_signature *sig = node->pkt->pkt.signature;
1998-02-17 21:48:52 +01:00
int rc2=0;
1997-12-01 11:33:23 +01:00
size_t n;
char *p;
int sigrc = ' ';
1997-12-09 13:46:23 +01:00
if( !opt.list_sigs )
return;
if( sig->sig_class == 0x20 || sig->sig_class == 0x30 )
fputs("rev", stdout);
else
fputs("sig", stdout);
1997-12-01 11:33:23 +01:00
if( opt.check_sigs ) {
fflush(stdout);
1997-12-01 11:33:23 +01:00
switch( (rc2=do_check_sig( c, node )) ) {
case 0: sigrc = '!'; break;
case G10ERR_BAD_SIGN: sigrc = '-'; break;
case G10ERR_NO_PUBKEY: sigrc = '?'; break;
default: sigrc = '%'; break;
}
}
1998-03-09 22:44:06 +01:00
if( opt.with_colons ) {
putchar(':');
if( sigrc != ' ' )
putchar(sigrc);
1998-04-02 12:30:03 +02:00
printf(":::%08lX%08lX:%s::::", (ulong)sig->keyid[0],
1998-03-09 22:44:06 +01:00
(ulong)sig->keyid[1], datestr_from_sig(sig));
}
else
printf("%c %08lX %s ",
sigrc, (ulong)sig->keyid[1], datestr_from_sig(sig));
1997-12-01 11:33:23 +01:00
if( sigrc == '%' )
printf("[%s] ", g10_errstr(rc2) );
else if( sigrc == '?' )
;
else {
p = get_user_id( sig->keyid, &n );
1998-03-09 22:44:06 +01:00
print_string( stdout, p, n, opt.with_colons );
1997-12-01 11:33:23 +01:00
m_free(p);
}
1998-03-09 22:44:06 +01:00
if( opt.with_colons )
printf(":%02x:", sig->sig_class );
1997-12-01 11:33:23 +01:00
putchar('\n');
}
else
log_error("invalid node with packet of type %d\n", node->pkt->pkttype);
}
1997-11-26 23:02:28 +01:00
int
proc_packets( IOBUF a )
{
1997-11-27 12:44:13 +01:00
CTX c = m_alloc_clear( sizeof *c );
1998-03-09 22:44:06 +01:00
int rc = do_proc_packets( c, a );
m_free( c );
return rc;
}
int
proc_signature_packets( IOBUF a, STRLIST signedfiles )
{
CTX c = m_alloc_clear( sizeof *c );
1998-01-16 22:15:24 +01:00
int rc;
1998-03-09 22:44:06 +01:00
c->sigs_only = 1;
c->signed_data = signedfiles;
rc = do_proc_packets( c, a );
m_free( c );
return rc;
}
int
proc_encryption_packets( IOBUF a )
{
CTX c = m_alloc_clear( sizeof *c );
int rc;
c->encrypt_only = 1;
rc = do_proc_packets( c, a );
m_free( c );
return rc;
}
int
do_proc_packets( CTX c, IOBUF a )
{
PACKET *pkt = m_alloc( sizeof *pkt );
int rc=0;
1997-12-01 11:33:23 +01:00
int newpkt;
1997-11-26 23:02:28 +01:00
c->iobuf = a;
1997-11-26 23:02:28 +01:00
init_packet(pkt);
while( (rc=parse_packet(a, pkt)) != -1 ) {
/* cleanup if we have an illegal data structure */
1997-12-01 11:33:23 +01:00
if( c->dek && pkt->pkttype != PKT_ENCRYPTED ) {
1997-11-26 23:02:28 +01:00
log_error("oops: valid pubkey enc packet not followed by data\n");
1997-11-27 12:44:13 +01:00
m_free(c->dek); c->dek = NULL; /* burn it */
1997-11-26 23:02:28 +01:00
}
if( rc ) {
free_packet(pkt);
if( rc == G10ERR_INVALID_PACKET )
break;
1997-11-26 23:02:28 +01:00
continue;
}
1997-12-01 11:33:23 +01:00
newpkt = -1;
1998-01-02 21:40:10 +01:00
if( opt.list_packets ) {
switch( pkt->pkttype ) {
case PKT_PUBKEY_ENC: proc_pubkey_enc( c, pkt ); break;
case PKT_ENCRYPTED: proc_encrypted( c, pkt ); break;
case PKT_COMPRESSED: proc_compressed( c, pkt ); break;
default: newpkt = 0; break;
}
}
1998-03-09 22:44:06 +01:00
else if( c->sigs_only ) {
switch( pkt->pkttype ) {
case PKT_PUBLIC_CERT:
case PKT_SECRET_CERT:
case PKT_USER_ID:
case PKT_PUBKEY_ENC:
case PKT_ENCRYPTED:
rc = G10ERR_UNEXPECTED;
goto leave;
case PKT_SIGNATURE: newpkt = add_signature( c, pkt ); break;
case PKT_PLAINTEXT: proc_plaintext( c, pkt ); break;
case PKT_COMPRESSED: proc_compressed( c, pkt ); break;
case PKT_ONEPASS_SIG: newpkt = add_onepass_sig( c, pkt ); break;
default: newpkt = 0; break;
}
}
else if( c->encrypt_only ) {
switch( pkt->pkttype ) {
case PKT_PUBLIC_CERT:
case PKT_SECRET_CERT:
case PKT_USER_ID:
rc = G10ERR_UNEXPECTED;
goto leave;
case PKT_SIGNATURE: newpkt = add_signature( c, pkt ); break;
case PKT_PUBKEY_ENC: proc_pubkey_enc( c, pkt ); break;
case PKT_ENCRYPTED: proc_encrypted( c, pkt ); break;
case PKT_PLAINTEXT: proc_plaintext( c, pkt ); break;
case PKT_COMPRESSED: proc_compressed( c, pkt ); break;
case PKT_ONEPASS_SIG: newpkt = add_onepass_sig( c, pkt ); break;
default: newpkt = 0; break;
}
}
1998-01-02 21:40:10 +01:00
else {
switch( pkt->pkttype ) {
1998-04-02 12:30:03 +02:00
case PKT_PUBLIC_CERT:
case PKT_SECRET_CERT:
release_list( c );
c->list = new_kbnode( pkt );
newpkt = 1;
break;
case PKT_PUBKEY_SUBCERT:
case PKT_SECKEY_SUBCERT:
newpkt = add_subkey( c, pkt );
break;
1998-01-02 21:40:10 +01:00
case PKT_USER_ID: newpkt = add_user_id( c, pkt ); break;
case PKT_SIGNATURE: newpkt = add_signature( c, pkt ); break;
case PKT_PUBKEY_ENC: proc_pubkey_enc( c, pkt ); break;
case PKT_ENCRYPTED: proc_encrypted( c, pkt ); break;
case PKT_PLAINTEXT: proc_plaintext( c, pkt ); break;
case PKT_COMPRESSED: proc_compressed( c, pkt ); break;
case PKT_ONEPASS_SIG: newpkt = add_onepass_sig( c, pkt ); break;
default: newpkt = 0; break;
}
1997-12-01 11:33:23 +01:00
}
1997-12-03 11:20:03 +01:00
if( pkt->pkttype != PKT_SIGNATURE )
c->have_data = pkt->pkttype == PKT_PLAINTEXT;
1997-12-01 11:33:23 +01:00
if( newpkt == -1 )
;
else if( newpkt ) {
pkt = m_alloc( sizeof *pkt );
init_packet(pkt);
1997-11-26 23:02:28 +01:00
}
1997-12-01 11:33:23 +01:00
else
free_packet(pkt);
1997-11-26 23:02:28 +01:00
}
1998-03-09 22:44:06 +01:00
rc = 0;
1997-11-26 23:02:28 +01:00
1998-03-09 22:44:06 +01:00
leave:
1998-02-17 21:48:52 +01:00
release_list( c );
1997-11-27 12:44:13 +01:00
m_free(c->dek);
1997-11-26 23:02:28 +01:00
free_packet( pkt );
m_free( pkt );
1997-11-27 12:44:13 +01:00
free_md_filter_context( &c->mfx );
1998-03-09 22:44:06 +01:00
return rc;
1997-11-26 23:02:28 +01:00
}
1997-11-18 15:06:00 +01:00
1997-12-02 20:36:53 +01:00
static void
print_keyid( FILE *fp, u32 *keyid )
{
size_t n;
char *p = get_user_id( keyid, &n );
1998-03-09 22:44:06 +01:00
print_string( fp, p, n, opt.with_colons );
1997-12-02 20:36:53 +01:00
m_free(p);
}
1998-01-30 17:23:16 +01:00
static int
check_sig_and_print( CTX c, KBNODE node )
{
PKT_signature *sig = node->pkt->pkt.signature;
int rc;
rc = do_check_sig(c, node );
1998-03-09 22:44:06 +01:00
if( !rc || rc == G10ERR_BAD_SIGN ) {
char *p, *buf;
p = get_user_id_string( sig->keyid );
buf = m_alloc( 20 + strlen(p) );
sprintf(buf, "%lu %s", (ulong)sig->timestamp, p );
m_free(p);
if( (p=strchr(buf,'\n')) )
*p = 0; /* just in case ... */
write_status_text( rc? STATUS_BADSIG : STATUS_GOODSIG, buf );
m_free(buf);
log_info("%s signature from ", rc? "BAD":"Good");
1998-01-30 17:23:16 +01:00
print_keyid( stderr, sig->keyid );
putc('\n', stderr);
1998-03-19 16:27:29 +01:00
if( opt.batch && rc )
1998-01-30 17:23:16 +01:00
g10_exit(1);
}
else {
write_status( STATUS_ERRSIG );
log_error("Can't check signature made by %08lX: %s\n",
1998-02-03 13:09:20 +01:00
(ulong)sig->keyid[1], g10_errstr(rc) );
1998-01-30 17:23:16 +01:00
}
return rc;
}
1997-12-02 20:36:53 +01:00
/****************
* Process the tree which starts at node
1997-12-02 20:36:53 +01:00
*/
static void
1997-12-12 13:03:58 +01:00
proc_tree( CTX c, KBNODE node )
1997-12-02 20:36:53 +01:00
{
1997-12-12 13:03:58 +01:00
KBNODE n1;
1997-12-02 20:36:53 +01:00
int rc;
1998-01-02 21:40:10 +01:00
if( opt.list_packets )
return;
1998-04-02 12:30:03 +02:00
if( node->pkt->pkttype == PKT_PUBLIC_CERT
|| node->pkt->pkttype == PKT_PUBKEY_SUBCERT )
1997-12-02 20:36:53 +01:00
list_node( c, node );
else if( node->pkt->pkttype == PKT_SECRET_CERT )
list_node( c, node );
else if( node->pkt->pkttype == PKT_ONEPASS_SIG ) {
/* check all signatures */
if( !c->have_data ) {
free_md_filter_context( &c->mfx );
/* prepare to create all requested message digests */
c->mfx.md = md_open(0, 0);
1998-03-09 22:44:06 +01:00
/* fixme: why looking for the signature packet and not 1passpacket*/
for( n1 = node; (n1 = find_next_kbnode(n1, PKT_SIGNATURE )); ) {
md_enable( c->mfx.md,
digest_algo_from_sig(n1->pkt->pkt.signature));
}
/* ask for file and hash it */
1998-03-09 22:44:06 +01:00
if( c->sigs_only )
rc = hash_datafiles( c->mfx.md, c->signed_data,
n1->pkt->pkt.onepass_sig->sig_class == 0x01 );
else
rc = ask_for_detached_datafile( &c->mfx,
iobuf_get_fname(c->iobuf));
if( rc ) {
log_error("can't hash datafile: %s\n", g10_errstr(rc));
return;
1997-12-03 11:20:03 +01:00
}
1997-12-02 20:36:53 +01:00
}
for( n1 = node; (n1 = find_next_kbnode(n1, PKT_SIGNATURE )); )
check_sig_and_print( c, n1 );
1997-12-02 20:36:53 +01:00
}
else if( node->pkt->pkttype == PKT_SIGNATURE ) {
1998-01-30 17:23:16 +01:00
PKT_signature *sig = node->pkt->pkt.signature;
1998-02-27 18:51:28 +01:00
if( !c->have_data ) {
free_md_filter_context( &c->mfx );
c->mfx.md = md_open(digest_algo_from_sig(sig), 0);
1998-03-09 22:44:06 +01:00
if( c->sigs_only )
rc = hash_datafiles( c->mfx.md, c->signed_data,
sig->sig_class == 0x01 );
else
rc = ask_for_detached_datafile( &c->mfx,
1998-02-27 18:51:28 +01:00
iobuf_get_fname(c->iobuf));
if( rc ) {
log_error("can't hash datafile: %s\n", g10_errstr(rc));
return;
1998-01-30 17:23:16 +01:00
}
}
1998-02-27 18:51:28 +01:00
else
log_info("old style signature\n");
1998-01-30 17:23:16 +01:00
check_sig_and_print( c, node );
1997-12-02 20:36:53 +01:00
}
else
log_error("proc_tree: invalid root packet\n");
}