1997-11-18 15:06:00 +01:00
|
|
|
/* encr-data.c - process an encrypted data packet
|
2000-07-14 19:34:53 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +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-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1997-11-18 15:06:00 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
2000-07-14 19:34:53 +02:00
|
|
|
|
1999-09-18 12:17:16 +02:00
|
|
|
#include <gcrypt.h>
|
1997-11-18 15:06:00 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "packet.h"
|
1998-04-04 22:16:55 +02:00
|
|
|
#include "options.h"
|
1998-09-14 17:49:56 +02:00
|
|
|
#include "i18n.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
|
1999-05-17 22:03:24 +02:00
|
|
|
static int mdc_decode_filter( void *opaque, int control, IOBUF a,
|
2000-07-14 19:34:53 +02:00
|
|
|
byte *buf, size_t *ret_len);
|
|
|
|
static int decode_filter( void *opaque, int control, IOBUF a,
|
1999-05-17 22:03:24 +02:00
|
|
|
byte *buf, size_t *ret_len);
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
typedef struct {
|
1999-09-18 12:17:16 +02:00
|
|
|
GCRY_CIPHER_HD cipher_hd;
|
|
|
|
GCRY_MD_HD mdc_hash;
|
1999-05-17 22:03:24 +02:00
|
|
|
char defer[20];
|
|
|
|
int defer_filled;
|
|
|
|
int eof_seen;
|
1997-11-18 15:06:00 +01:00
|
|
|
} decode_filter_ctx_t;
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Decrypt the data, specified by ED with the key DEK.
|
|
|
|
*/
|
|
|
|
int
|
1999-04-26 17:53:01 +02:00
|
|
|
decrypt_data( void *procctx, PKT_encrypted *ed, DEK *dek )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
|
|
|
decode_filter_ctx_t dfx;
|
|
|
|
byte *p;
|
1999-05-17 22:03:24 +02:00
|
|
|
int rc=0, c, i;
|
1998-07-29 21:35:05 +02:00
|
|
|
byte temp[32];
|
2000-07-14 19:34:53 +02:00
|
|
|
unsigned int blocksize;
|
|
|
|
unsigned int nprefix;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1999-05-17 22:03:24 +02:00
|
|
|
memset( &dfx, 0, sizeof dfx );
|
1999-09-18 12:17:16 +02:00
|
|
|
if( gcry_cipher_test_algo( dek->algo ) ) {
|
|
|
|
if( opt.verbose )
|
1998-11-10 13:59:59 +01:00
|
|
|
log_info(_("encrypted with unknown algorithm %d\n"), dek->algo );
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_CIPHER_ALGO;
|
1999-05-17 22:03:24 +02:00
|
|
|
goto leave;
|
1999-09-18 12:17:16 +02:00
|
|
|
}
|
|
|
|
if( opt.verbose )
|
|
|
|
log_info(_("%s encrypted data\n"), gcry_cipher_algo_name( dek->algo ) );
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
blocksize = gcry_cipher_get_algo_blklen( dek->algo );
|
2000-07-14 19:34:53 +02:00
|
|
|
if( !blocksize || blocksize > 16 )
|
1998-07-29 21:35:05 +02:00
|
|
|
log_fatal("unsupported blocksize %u\n", blocksize );
|
1999-04-09 12:34:44 +02:00
|
|
|
nprefix = blocksize;
|
1999-04-07 20:58:34 +02:00
|
|
|
if( ed->len && ed->len < (nprefix+2) )
|
|
|
|
BUG();
|
1999-10-26 14:14:37 +02:00
|
|
|
|
|
|
|
if( ed->mdc_method ) {
|
|
|
|
dfx.mdc_hash = gcry_md_open( ed->mdc_method, 0 );
|
2000-07-14 19:34:53 +02:00
|
|
|
if ( DBG_HASHING )
|
|
|
|
gcry_md_start_debug(dfx.mdc_hash, "checkmdc");
|
1999-10-26 14:14:37 +02:00
|
|
|
}
|
|
|
|
if( !(dfx.cipher_hd = gcry_cipher_open( dek->algo,
|
|
|
|
GCRY_CIPHER_MODE_CFB,
|
|
|
|
GCRY_CIPHER_SECURE
|
2000-07-14 19:34:53 +02:00
|
|
|
| ((ed->mdc_method || dek->algo >= 100)?
|
1999-10-26 14:14:37 +02:00
|
|
|
0 : GCRY_CIPHER_ENABLE_SYNC) ))
|
|
|
|
) {
|
|
|
|
/* we should never get an error here cause we already checked, that
|
|
|
|
* the algorithm is available. What about a flag to let the function
|
|
|
|
* die in this case? */
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-18 10:18:52 +02:00
|
|
|
/* log_hexdump( "thekey", dek->key, dek->keylen );*/
|
1999-10-26 14:14:37 +02:00
|
|
|
rc = gcry_cipher_setkey( dfx.cipher_hd, dek->key, dek->keylen );
|
|
|
|
if( rc == GCRYERR_WEAK_KEY ) {
|
1998-12-29 14:47:31 +01:00
|
|
|
log_info(_("WARNING: message was encrypted with "
|
1998-09-14 17:49:56 +02:00
|
|
|
"a weak key in the symmetric cipher.\n"));
|
1999-10-26 14:14:37 +02:00
|
|
|
rc = 0;
|
|
|
|
}
|
1999-05-17 22:03:24 +02:00
|
|
|
else if( rc ) {
|
1999-10-26 14:14:37 +02:00
|
|
|
log_error("key setup failed: %s\n", gcry_strerror(rc) );
|
1999-05-17 22:03:24 +02:00
|
|
|
goto leave;
|
|
|
|
}
|
1998-09-14 17:49:56 +02:00
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_setiv( dfx.cipher_hd, NULL, 0 );
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
if( ed->len ) {
|
1999-04-07 20:58:34 +02:00
|
|
|
for(i=0; i < (nprefix+2) && ed->len; i++, ed->len-- ) {
|
1999-01-09 16:06:59 +01:00
|
|
|
if( (c=iobuf_get(ed->buf)) == -1 )
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
temp[i] = c;
|
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
|
|
|
else {
|
1999-04-07 20:58:34 +02:00
|
|
|
for(i=0; i < (nprefix+2); i++ )
|
1997-11-18 15:06:00 +01:00
|
|
|
if( (c=iobuf_get(ed->buf)) == -1 )
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
temp[i] = c;
|
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_decrypt( dfx.cipher_hd, temp, nprefix+2, NULL, 0 );
|
|
|
|
gcry_cipher_sync( dfx.cipher_hd );
|
1997-11-18 15:06:00 +01:00
|
|
|
p = temp;
|
1999-04-18 10:18:52 +02:00
|
|
|
/* log_hexdump( "prefix", temp, nprefix+2 ); */
|
1999-04-07 20:58:34 +02:00
|
|
|
if( p[nprefix-2] != p[nprefix] || p[nprefix-1] != p[nprefix+1] ) {
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_BAD_KEY;
|
1999-05-17 22:03:24 +02:00
|
|
|
goto leave;
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
2000-07-14 19:34:53 +02:00
|
|
|
|
|
|
|
if( dfx.mdc_hash )
|
|
|
|
gcry_md_write( dfx.mdc_hash, temp, nprefix+2 );
|
|
|
|
|
1999-05-17 22:03:24 +02:00
|
|
|
if( ed->mdc_method )
|
|
|
|
iobuf_push_filter( ed->buf, mdc_decode_filter, &dfx );
|
|
|
|
else
|
|
|
|
iobuf_push_filter( ed->buf, decode_filter, &dfx );
|
2000-07-14 19:34:53 +02:00
|
|
|
|
|
|
|
proc_packets( procctx, ed->buf );
|
1997-11-18 15:06:00 +01:00
|
|
|
ed->buf = NULL;
|
1999-05-17 22:03:24 +02:00
|
|
|
if( ed->mdc_method && dfx.eof_seen == 2 )
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_INVALID_PACKET;
|
1999-05-17 22:03:24 +02:00
|
|
|
else if( ed->mdc_method ) { /* check the mdc */
|
1999-10-26 14:14:37 +02:00
|
|
|
int datalen = gcry_md_get_algo_dlen( ed->mdc_method );
|
2000-07-14 19:34:53 +02:00
|
|
|
|
|
|
|
gcry_cipher_decrypt( dfx.cipher_hd, dfx.defer, 20, NULL, 0);
|
1999-05-17 22:03:24 +02:00
|
|
|
if( datalen != 20
|
1999-10-26 14:14:37 +02:00
|
|
|
|| memcmp(gcry_md_read( dfx.mdc_hash, 0 ), dfx.defer, datalen) )
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_BAD_SIGN;
|
2000-07-14 19:34:53 +02:00
|
|
|
/*log_hexdump("MDC calculated:", md_read( dfx.mdc_hash, 0), datalen);*/
|
|
|
|
/*log_hexdump("MDC message :", dfx.defer, 20);*/
|
1999-05-17 22:03:24 +02:00
|
|
|
}
|
2000-07-14 19:34:53 +02:00
|
|
|
|
1999-05-17 22:03:24 +02:00
|
|
|
leave:
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_close(dfx.cipher_hd);
|
|
|
|
gcry_md_close( dfx.mdc_hash );
|
1999-05-17 22:03:24 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
|
1999-05-17 22:03:24 +02:00
|
|
|
/* I think we should merge this with cipher_filter */
|
|
|
|
static int
|
|
|
|
mdc_decode_filter( void *opaque, int control, IOBUF a,
|
|
|
|
byte *buf, size_t *ret_len)
|
|
|
|
{
|
|
|
|
decode_filter_ctx_t *dfx = opaque;
|
|
|
|
size_t n, size = *ret_len;
|
|
|
|
int rc = 0;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if( control == IOBUFCTRL_UNDERFLOW && dfx->eof_seen ) {
|
|
|
|
*ret_len = 0;
|
|
|
|
rc = -1;
|
|
|
|
}
|
|
|
|
else if( control == IOBUFCTRL_UNDERFLOW ) {
|
|
|
|
assert(a);
|
|
|
|
assert( size > 40 );
|
|
|
|
|
|
|
|
/* get at least 20 bytes and put it somewhere ahead in the buffer */
|
|
|
|
for(n=20; n < 40 ; n++ ) {
|
|
|
|
if( (c = iobuf_get(a)) == -1 )
|
|
|
|
break;
|
|
|
|
buf[n] = c;
|
|
|
|
}
|
|
|
|
if( n == 40 ) {
|
|
|
|
/* we have enough stuff - flush the deferred stuff */
|
2000-07-14 19:34:53 +02:00
|
|
|
/* (we have asserted that the buffer is large enough) */
|
|
|
|
if( !dfx->defer_filled ) { /* the first time */
|
1999-05-17 22:03:24 +02:00
|
|
|
memcpy(buf, buf+20, 20 );
|
2000-07-14 19:34:53 +02:00
|
|
|
n = 20;
|
|
|
|
}
|
|
|
|
else {
|
1999-05-17 22:03:24 +02:00
|
|
|
memcpy(buf, dfx->defer, 20 );
|
2000-07-14 19:34:53 +02:00
|
|
|
}
|
1999-05-17 22:03:24 +02:00
|
|
|
/* now fill up */
|
|
|
|
for(; n < size; n++ ) {
|
|
|
|
if( (c = iobuf_get(a)) == -1 )
|
|
|
|
break;
|
|
|
|
buf[n] = c;
|
|
|
|
}
|
|
|
|
/* move the last 20 bytes back to the defer buffer */
|
|
|
|
/* (okay, we are wasting 20 bytes of supplied buffer) */
|
|
|
|
n -= 20;
|
|
|
|
memcpy( dfx->defer, buf+n, 20 );
|
|
|
|
dfx->defer_filled = 1;
|
|
|
|
}
|
|
|
|
else if( !dfx->defer_filled ) { /* eof seen buf empty defer */
|
2000-07-14 19:34:53 +02:00
|
|
|
/* this is bad because there is an incomplete hash */
|
1999-05-17 22:03:24 +02:00
|
|
|
n -= 20;
|
|
|
|
memcpy(buf, buf+20, n );
|
|
|
|
dfx->eof_seen = 2; /* eof with incomplete hash */
|
|
|
|
}
|
|
|
|
else { /* eof seen */
|
|
|
|
memcpy(buf, dfx->defer, 20 );
|
|
|
|
n -= 20;
|
|
|
|
memcpy( dfx->defer, buf+n, 20 );
|
|
|
|
dfx->eof_seen = 1; /* normal eof */
|
|
|
|
}
|
|
|
|
|
|
|
|
if( n ) {
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_cipher_decrypt( dfx->cipher_hd, buf, n, NULL, 0);
|
|
|
|
gcry_md_write( dfx->mdc_hash, buf, n );
|
1999-05-17 22:03:24 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert( dfx->eof_seen );
|
|
|
|
rc = -1; /* eof */
|
|
|
|
}
|
|
|
|
*ret_len = n;
|
|
|
|
}
|
|
|
|
else if( control == IOBUFCTRL_DESC ) {
|
|
|
|
*(char**)buf = "mdc_decode_filter";
|
|
|
|
}
|
|
|
|
return rc;
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
decode_filter( void *opaque, int control, IOBUF a, byte *buf, size_t *ret_len)
|
|
|
|
{
|
|
|
|
decode_filter_ctx_t *fc = opaque;
|
|
|
|
size_t n, size = *ret_len;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
if( control == IOBUFCTRL_UNDERFLOW ) {
|
|
|
|
assert(a);
|
1999-05-31 19:49:37 +02:00
|
|
|
n = iobuf_read( a, buf, size );
|
|
|
|
if( n == -1 ) n = 0;
|
1998-04-07 20:16:10 +02:00
|
|
|
if( n )
|
2000-07-14 19:34:53 +02:00
|
|
|
gcry_cipher_decrypt( fc->cipher_hd, buf, n, NULL, 0 );
|
1997-11-18 15:06:00 +01:00
|
|
|
else
|
|
|
|
rc = -1; /* eof */
|
|
|
|
*ret_len = n;
|
|
|
|
}
|
|
|
|
else if( control == IOBUFCTRL_DESC ) {
|
|
|
|
*(char**)buf = "decode_filter";
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|