$NetBSD: patch-ah,v 1.3 2007/05/12 11:08:31 shannonjr Exp $ --- ./g10/encr-data.c.orig 2007-02-22 03:44:22.000000000 -0700 +++ ./g10/encr-data.c @@ -39,35 +39,14 @@ static int mdc_decode_filter ( void *opa static int decode_filter ( void *opaque, int control, IOBUF a, byte *buf, size_t *ret_len); -typedef struct decode_filter_context_s +typedef struct { gcry_cipher_hd_t cipher_hd; gcry_md_hd_t mdc_hash; char defer[22]; int defer_filled; int eof_seen; - int refcount; -} *decode_filter_ctx_t; - - -/* Helper to release the decode context. */ -static void -release_dfx_context (decode_filter_ctx_t dfx) -{ - if (!dfx) - return; - - assert (dfx->refcount); - if ( !--dfx->refcount ) - { - gcry_cipher_close (dfx->cipher_hd); - dfx->cipher_hd = NULL; - gcry_md_close (dfx->mdc_hash); - dfx->mdc_hash = NULL; - xfree (dfx); - } -} - +} decode_filter_ctx_t; /**************** @@ -83,11 +62,7 @@ decrypt_data( void *procctx, PKT_encrypt unsigned blocksize; unsigned nprefix; - dfx = xtrycalloc (1, sizeof *dfx); - if (!dfx) - return gpg_error_from_syserror (); - dfx->refcount = 1; - + memset( &dfx, 0, sizeof dfx ); if ( opt.verbose && !dek->algo_info_printed ) { if (!gcry_cipher_test_algo (dek->algo)) @@ -101,20 +76,20 @@ decrypt_data( void *procctx, PKT_encrypt goto leave; blocksize = gcry_cipher_get_algo_blklen (dek->algo); if ( !blocksize || blocksize > 16 ) - log_fatal ("unsupported blocksize %u\n", blocksize ); + log_fatal("unsupported blocksize %u\n", blocksize ); nprefix = blocksize; if ( ed->len && ed->len < (nprefix+2) ) BUG(); if ( ed->mdc_method ) { - if (gcry_md_open (&dfx->mdc_hash, ed->mdc_method, 0 )) + if (gcry_md_open (&dfx.mdc_hash, ed->mdc_method, 0 )) BUG (); if ( DBG_HASHING ) - gcry_md_start_debug (dfx->mdc_hash, "checkmdc"); + gcry_md_start_debug (dfx.mdc_hash, "checkmdc"); } - rc = gcry_cipher_open (&dfx->cipher_hd, dek->algo, + rc = gcry_cipher_open (&dfx.cipher_hd, dek->algo, GCRY_CIPHER_MODE_CFB, (GCRY_CIPHER_SECURE | ((ed->mdc_method || dek->algo >= 100)? @@ -128,7 +103,7 @@ decrypt_data( void *procctx, PKT_encrypt /* log_hexdump( "thekey", dek->key, dek->keylen );*/ - rc = gcry_cipher_setkey (dfx->cipher_hd, dek->key, dek->keylen); + rc = gcry_cipher_setkey (dfx.cipher_hd, dek->key, dek->keylen); if ( gpg_err_code (rc) == GPG_ERR_WEAK_KEY ) { log_info(_("WARNING: message was encrypted with" @@ -147,7 +122,7 @@ decrypt_data( void *procctx, PKT_encrypt goto leave; } - gcry_cipher_setiv (dfx->cipher_hd, NULL, 0); + gcry_cipher_setiv (dfx.cipher_hd, NULL, 0); if ( ed->len ) { @@ -168,8 +143,8 @@ decrypt_data( void *procctx, PKT_encrypt temp[i] = c; } - gcry_cipher_decrypt (dfx->cipher_hd, temp, nprefix+2, NULL, 0); - gcry_cipher_sync (dfx->cipher_hd); + gcry_cipher_decrypt (dfx.cipher_hd, temp, nprefix+2, NULL, 0); + gcry_cipher_sync (dfx.cipher_hd); p = temp; /* log_hexdump( "prefix", temp, nprefix+2 ); */ if (dek->symmetric @@ -179,18 +154,17 @@ decrypt_data( void *procctx, PKT_encrypt goto leave; } - if ( dfx->mdc_hash ) - gcry_md_write (dfx->mdc_hash, temp, nprefix+2); - - dfx->refcount++; + if ( dfx.mdc_hash ) + gcry_md_write (dfx.mdc_hash, temp, nprefix+2); + if ( ed->mdc_method ) - iobuf_push_filter ( ed->buf, mdc_decode_filter, dfx ); + iobuf_push_filter( ed->buf, mdc_decode_filter, &dfx ); else - iobuf_push_filter ( ed->buf, decode_filter, dfx ); + iobuf_push_filter( ed->buf, decode_filter, &dfx ); proc_packets ( procctx, ed->buf ); ed->buf = NULL; - if ( ed->mdc_method && dfx->eof_seen == 2 ) + if ( ed->mdc_method && dfx.eof_seen == 2 ) rc = gpg_error (GPG_ERR_INV_PACKET); else if ( ed->mdc_method ) { @@ -209,28 +183,26 @@ decrypt_data( void *procctx, PKT_encrypt bytes are appended. */ int datalen = gcry_md_get_algo_dlen (ed->mdc_method); - assert (dfx->cipher_hd); - assert (dfx->mdc_hash); - gcry_cipher_decrypt (dfx->cipher_hd, dfx->defer, 22, NULL, 0); - gcry_md_write (dfx->mdc_hash, dfx->defer, 2); - gcry_md_final (dfx->mdc_hash); + gcry_cipher_decrypt (dfx.cipher_hd, dfx.defer, 22, NULL, 0); + gcry_md_write (dfx.mdc_hash, dfx.defer, 2); + gcry_md_final (dfx.mdc_hash); - if (dfx->defer[0] != '\xd3' || dfx->defer[1] != '\x14' ) + if (dfx.defer[0] != '\xd3' || dfx.defer[1] != '\x14' ) { log_error("mdc_packet with invalid encoding\n"); rc = gpg_error (GPG_ERR_INV_PACKET); } else if (datalen != 20 - || memcmp (gcry_md_read (dfx->mdc_hash, 0), - dfx->defer+2,datalen )) + || memcmp (gcry_md_read (dfx.mdc_hash, 0),dfx.defer+2,datalen)) rc = gpg_error (GPG_ERR_BAD_SIGNATURE); - /* log_printhex("MDC message:", dfx->defer, 22); */ - /* log_printhex("MDC calc:", gcry_md_read (dfx->mdc_hash,0), datalen); */ + /* log_printhex("MDC message:", dfx.defer, 22); */ + /* log_printhex("MDC calc:", gcry_md_read (dfx.mdc_hash,0), datalen); */ } leave: - release_dfx_context (dfx); + gcry_cipher_close (dfx.cipher_hd); + gcry_md_close (dfx.mdc_hash); return rc; } @@ -241,7 +213,7 @@ static int mdc_decode_filter (void *opaque, int control, IOBUF a, byte *buf, size_t *ret_len) { - decode_filter_ctx_t dfx = opaque; + decode_filter_ctx_t *dfx = opaque; size_t n, size = *ret_len; int rc = 0; int c; @@ -253,11 +225,11 @@ mdc_decode_filter (void *opaque, int con } else if( control == IOBUFCTRL_UNDERFLOW ) { - assert (a); - assert ( size > 44 ); + assert(a); + assert( size > 44 ); /* Get at least 22 bytes and put it somewhere ahead in the buffer. */ - for (n=22; n < 44 ; n++ ) + for(n=22; n < 44 ; n++ ) { if( (c = iobuf_get(a)) == -1 ) break; @@ -306,10 +278,8 @@ mdc_decode_filter (void *opaque, int con if ( n ) { - if ( dfx->cipher_hd ) - gcry_cipher_decrypt (dfx->cipher_hd, buf, n, NULL, 0); - if ( dfx->mdc_hash ) - gcry_md_write (dfx->mdc_hash, buf, n); + gcry_cipher_decrypt (dfx->cipher_hd, buf, n, NULL, 0); + gcry_md_write (dfx->mdc_hash, buf, n); } else { @@ -318,10 +288,6 @@ mdc_decode_filter (void *opaque, int con } *ret_len = n; } - else if ( control == IOBUFCTRL_FREE ) - { - release_dfx_context (dfx); - } else if ( control == IOBUFCTRL_DESC ) { *(char**)buf = "mdc_decode_filter"; @@ -333,7 +299,7 @@ mdc_decode_filter (void *opaque, int con static int decode_filter( void *opaque, int control, IOBUF a, byte *buf, size_t *ret_len) { - decode_filter_ctx_t fc = opaque; + decode_filter_ctx_t *fc = opaque; size_t n, size = *ret_len; int rc = 0; @@ -344,18 +310,11 @@ decode_filter( void *opaque, int control if ( n == -1 ) n = 0; if ( n ) - { - if (fc->cipher_hd) - gcry_cipher_decrypt (fc->cipher_hd, buf, n, NULL, 0); - } + gcry_cipher_decrypt (fc->cipher_hd, buf, n, NULL, 0); else rc = -1; /* EOF */ *ret_len = n; } - else if ( control == IOBUFCTRL_FREE ) - { - release_dfx_context (fc); - } else if ( control == IOBUFCTRL_DESC ) { *(char**)buf = "decode_filter";