mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
* misc.c (compress_algo_to_string, string_to_compress_algo,
check_compress_algo): Add bzip2. * compress.c (compress_filter): Make static to help force the use of push_compress_filter. Remove default algorithm setting since that is done in push_compress_filter now. * main.h: Use named algorithm. * filter.h, compress.c (push_compress_filter, push_compress_filter2): New. Figure out which is the appropriate compression filter to use, and push it into place. * compress.c (handle_compressed), encode.c (encode_simple, encode_crypt), sign.c (sign_file, sign_symencrypt_file), import.c (read_block), export.c (do_export): Use push_compress_filter instead of pushing the compression filter ourselves. * compress-bz2.c: New. Bzlib versions of the compression filter routines. * Makefile.am: Include compress-bz2.c if bz2lib is available.
This commit is contained in:
parent
8d82e1af00
commit
869c6bb7e4
@ -1,3 +1,28 @@
|
|||||||
|
2003-10-30 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* misc.c (compress_algo_to_string, string_to_compress_algo,
|
||||||
|
check_compress_algo): Add bzip2.
|
||||||
|
|
||||||
|
* compress.c (compress_filter): Make static to help force the use
|
||||||
|
of push_compress_filter. Remove default algorithm setting since
|
||||||
|
that is done in push_compress_filter now.
|
||||||
|
|
||||||
|
* main.h: Use named algorithm.
|
||||||
|
|
||||||
|
* filter.h, compress.c (push_compress_filter,
|
||||||
|
push_compress_filter2): New. Figure out which is the appropriate
|
||||||
|
compression filter to use, and push it into place.
|
||||||
|
|
||||||
|
* compress.c (handle_compressed), encode.c (encode_simple,
|
||||||
|
encode_crypt), sign.c (sign_file, sign_symencrypt_file), import.c
|
||||||
|
(read_block), export.c (do_export): Use push_compress_filter
|
||||||
|
instead of pushing the compression filter ourselves.
|
||||||
|
|
||||||
|
* compress-bz2.c: New. Bzlib versions of the compression filter
|
||||||
|
routines.
|
||||||
|
|
||||||
|
* Makefile.am: Include compress-bz2.c if bz2lib is available.
|
||||||
|
|
||||||
2003-10-30 Werner Koch <wk@gnupg.org>
|
2003-10-30 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* apdu.c (close_ct_reader, close_pcsc_reader): Implemented.
|
* apdu.c (close_ct_reader, close_pcsc_reader): Implemented.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
||||||
# 2003 Free Software Foundation, Inc.
|
# 2003 Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# This file is part of GnuPG.
|
# This file is part of GnuPG.
|
||||||
#
|
#
|
||||||
@ -32,10 +32,17 @@ needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
|
|||||||
#noinst_PROGRAMS = gpgd
|
#noinst_PROGRAMS = gpgd
|
||||||
bin_PROGRAMS = gpg gpgv
|
bin_PROGRAMS = gpg gpgv
|
||||||
|
|
||||||
|
if ENABLE_BZIP2_SUPPORT
|
||||||
|
bzip2_source = compress-bz2.c
|
||||||
|
else
|
||||||
|
bzip2_source =
|
||||||
|
endif
|
||||||
|
|
||||||
common_source = \
|
common_source = \
|
||||||
global.h \
|
global.h \
|
||||||
build-packet.c \
|
build-packet.c \
|
||||||
compress.c \
|
compress.c \
|
||||||
|
$(bzip2_source) \
|
||||||
filter.h \
|
filter.h \
|
||||||
free-packet.c \
|
free-packet.c \
|
||||||
getkey.c \
|
getkey.c \
|
||||||
@ -154,4 +161,3 @@ update-source-from-gnupg-2:
|
|||||||
cp $$dir/g10/$$i $$i; echo $$i; \
|
cp $$dir/g10/$$i $$i; echo $$i; \
|
||||||
done ; \
|
done ; \
|
||||||
echo "Please remember to update the ChangeLog accordingly!"
|
echo "Please remember to update the ChangeLog accordingly!"
|
||||||
|
|
||||||
|
242
g10/compress-bz2.c
Normal file
242
g10/compress-bz2.c
Normal file
@ -0,0 +1,242 @@
|
|||||||
|
/* compress.c - bzip2 compress filter
|
||||||
|
* Copyright (C) 2003 Free Software Foundation, Inc.
|
||||||
|
*
|
||||||
|
* 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 <string.h>
|
||||||
|
#include <bzlib.h>
|
||||||
|
|
||||||
|
#include "util.h"
|
||||||
|
#include "memory.h"
|
||||||
|
#include "packet.h"
|
||||||
|
#include "filter.h"
|
||||||
|
#include "main.h"
|
||||||
|
#include "options.h"
|
||||||
|
|
||||||
|
/* Note that the code in compress.c is nearly identical to the code
|
||||||
|
here, so if you fix a bug here, look there to see if the matching
|
||||||
|
bug needs to be fixed. I tried to have one set of functions that
|
||||||
|
could do ZIP, ZLIB, and BZIP2, but it became dangerously unreadable
|
||||||
|
with #ifdefs and if(algo) -dshaw */
|
||||||
|
|
||||||
|
static void
|
||||||
|
init_compress( compress_filter_context_t *zfx, bz_stream *bzs )
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
int level;
|
||||||
|
|
||||||
|
if( opt.compress >= 0 && opt.compress <= 9 )
|
||||||
|
level = opt.compress;
|
||||||
|
else if( opt.compress == -1 )
|
||||||
|
level = 6; /* no particular reason, but it seems reasonable */
|
||||||
|
else if( opt.compress == 10 ) /* remove this ! */
|
||||||
|
level = 0;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
log_error("invalid compression level; using default level\n");
|
||||||
|
level = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
if((rc=BZ2_bzCompressInit(bzs,level,0,0))!=BZ_OK)
|
||||||
|
log_fatal("bz2lib problem: %d\n",rc);
|
||||||
|
|
||||||
|
zfx->outbufsize = 8192;
|
||||||
|
zfx->outbuf = m_alloc( zfx->outbufsize );
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_compress(compress_filter_context_t *zfx, bz_stream *bzs, int flush, IOBUF a)
|
||||||
|
{
|
||||||
|
int zrc;
|
||||||
|
unsigned n;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
bzs->next_out = zfx->outbuf;
|
||||||
|
bzs->avail_out = zfx->outbufsize;
|
||||||
|
if( DBG_FILTER )
|
||||||
|
log_debug("enter bzCompress: avail_in=%u, avail_out=%u, flush=%d\n",
|
||||||
|
(unsigned)bzs->avail_in, (unsigned)bzs->avail_out, flush );
|
||||||
|
zrc = BZ2_bzCompress( bzs, flush );
|
||||||
|
if( zrc == BZ_STREAM_END && flush == BZ_FINISH )
|
||||||
|
;
|
||||||
|
else if( zrc != BZ_RUN_OK && zrc != BZ_FINISH_OK )
|
||||||
|
log_fatal("bz2lib deflate problem: rc=%d\n", zrc );
|
||||||
|
|
||||||
|
n = zfx->outbufsize - bzs->avail_out;
|
||||||
|
if( DBG_FILTER )
|
||||||
|
log_debug("leave bzCompress:"
|
||||||
|
" avail_in=%u, avail_out=%u, n=%u, zrc=%d\n",
|
||||||
|
(unsigned)bzs->avail_in, (unsigned)bzs->avail_out,
|
||||||
|
(unsigned)n, zrc );
|
||||||
|
|
||||||
|
if( iobuf_write( a, zfx->outbuf, n ) )
|
||||||
|
{
|
||||||
|
log_debug("bzCompress: iobuf_write failed\n");
|
||||||
|
return G10ERR_WRITE_FILE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while( bzs->avail_in || (flush == BZ_FINISH && zrc != BZ_STREAM_END) );
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
init_uncompress( compress_filter_context_t *zfx, bz_stream *bzs )
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
if((rc=BZ2_bzDecompressInit(bzs,0,0))!=BZ_OK)
|
||||||
|
log_fatal("bz2lib problem: %d\n",rc);
|
||||||
|
|
||||||
|
zfx->inbufsize = 2048;
|
||||||
|
zfx->inbuf = m_alloc( zfx->inbufsize );
|
||||||
|
bzs->avail_in = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_uncompress( compress_filter_context_t *zfx, bz_stream *bzs,
|
||||||
|
IOBUF a, size_t *ret_len )
|
||||||
|
{
|
||||||
|
int zrc;
|
||||||
|
int rc=0;
|
||||||
|
size_t n;
|
||||||
|
int nread, count;
|
||||||
|
int refill = !bzs->avail_in;
|
||||||
|
|
||||||
|
if( DBG_FILTER )
|
||||||
|
log_debug("begin bzDecompress: avail_in=%u, avail_out=%u, inbuf=%u\n",
|
||||||
|
(unsigned)bzs->avail_in, (unsigned)bzs->avail_out,
|
||||||
|
(unsigned)zfx->inbufsize );
|
||||||
|
do
|
||||||
|
{
|
||||||
|
if( bzs->avail_in < zfx->inbufsize && refill )
|
||||||
|
{
|
||||||
|
n = bzs->avail_in;
|
||||||
|
if( !n )
|
||||||
|
bzs->next_in = zfx->inbuf;
|
||||||
|
count = zfx->inbufsize - n;
|
||||||
|
nread = iobuf_read( a, zfx->inbuf + n, count );
|
||||||
|
if( nread == -1 ) nread = 0;
|
||||||
|
n += nread;
|
||||||
|
bzs->avail_in = n;
|
||||||
|
}
|
||||||
|
|
||||||
|
refill = 1;
|
||||||
|
|
||||||
|
if( DBG_FILTER )
|
||||||
|
log_debug("enter bzDecompress: avail_in=%u, avail_out=%u\n",
|
||||||
|
(unsigned)bzs->avail_in, (unsigned)bzs->avail_out);
|
||||||
|
|
||||||
|
zrc=BZ2_bzDecompress(bzs);
|
||||||
|
if( DBG_FILTER )
|
||||||
|
log_debug("leave bzDecompress: avail_in=%u, avail_out=%u, zrc=%d\n",
|
||||||
|
(unsigned)bzs->avail_in, (unsigned)bzs->avail_out, zrc);
|
||||||
|
if( zrc == BZ_STREAM_END )
|
||||||
|
rc = -1; /* eof */
|
||||||
|
else if( zrc != BZ_OK && zrc != BZ_PARAM_ERROR )
|
||||||
|
log_fatal("bz2lib inflate problem: rc=%d\n", zrc );
|
||||||
|
}
|
||||||
|
while( bzs->avail_out && zrc != BZ_STREAM_END && zrc != BZ_PARAM_ERROR );
|
||||||
|
|
||||||
|
/* I'm not completely happy with the two uses of BZ_PARAM_ERROR
|
||||||
|
here. The corresponding zlib function is Z_BUF_ERROR, which
|
||||||
|
covers a narrower scope than BZ_PARAM_ERROR. -dshaw */
|
||||||
|
|
||||||
|
*ret_len = zfx->outbufsize - bzs->avail_out;
|
||||||
|
if( DBG_FILTER )
|
||||||
|
log_debug("do_uncompress: returning %u bytes\n", (unsigned)*ret_len );
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
compress_filter_bz2( void *opaque, int control,
|
||||||
|
IOBUF a, byte *buf, size_t *ret_len)
|
||||||
|
{
|
||||||
|
size_t size = *ret_len;
|
||||||
|
compress_filter_context_t *zfx = opaque;
|
||||||
|
bz_stream *bzs = zfx->opaque;
|
||||||
|
int rc=0;
|
||||||
|
|
||||||
|
if( control == IOBUFCTRL_UNDERFLOW )
|
||||||
|
{
|
||||||
|
if( !zfx->status )
|
||||||
|
{
|
||||||
|
bzs = zfx->opaque = m_alloc_clear( sizeof *bzs );
|
||||||
|
init_uncompress( zfx, bzs );
|
||||||
|
zfx->status = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
bzs->next_out = buf;
|
||||||
|
bzs->avail_out = size;
|
||||||
|
zfx->outbufsize = size; /* needed only for calculation */
|
||||||
|
rc = do_uncompress( zfx, bzs, a, ret_len );
|
||||||
|
}
|
||||||
|
else if( control == IOBUFCTRL_FLUSH )
|
||||||
|
{
|
||||||
|
if( !zfx->status )
|
||||||
|
{
|
||||||
|
PACKET pkt;
|
||||||
|
PKT_compressed cd;
|
||||||
|
|
||||||
|
if( zfx->algo != COMPRESS_ALGO_BZIP2 )
|
||||||
|
BUG();
|
||||||
|
memset( &cd, 0, sizeof cd );
|
||||||
|
cd.len = 0;
|
||||||
|
cd.algorithm = zfx->algo;
|
||||||
|
init_packet( &pkt );
|
||||||
|
pkt.pkttype = PKT_COMPRESSED;
|
||||||
|
pkt.pkt.compressed = &cd;
|
||||||
|
if( build_packet( a, &pkt ))
|
||||||
|
log_bug("build_packet(PKT_COMPRESSED) failed\n");
|
||||||
|
bzs = zfx->opaque = m_alloc_clear( sizeof *bzs );
|
||||||
|
init_compress( zfx, bzs );
|
||||||
|
zfx->status = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
bzs->next_in = buf;
|
||||||
|
bzs->avail_in = size;
|
||||||
|
rc = do_compress( zfx, bzs, BZ_RUN, a );
|
||||||
|
}
|
||||||
|
else if( control == IOBUFCTRL_FREE )
|
||||||
|
{
|
||||||
|
if( zfx->status == 1 )
|
||||||
|
{
|
||||||
|
BZ2_bzDecompressEnd(bzs);
|
||||||
|
m_free(bzs);
|
||||||
|
zfx->opaque = NULL;
|
||||||
|
m_free(zfx->outbuf); zfx->outbuf = NULL;
|
||||||
|
}
|
||||||
|
else if( zfx->status == 2 )
|
||||||
|
{
|
||||||
|
bzs->next_in = buf;
|
||||||
|
bzs->avail_in = 0;
|
||||||
|
do_compress( zfx, bzs, BZ_FINISH, a );
|
||||||
|
BZ2_bzCompressEnd(bzs);
|
||||||
|
m_free(bzs);
|
||||||
|
zfx->opaque = NULL;
|
||||||
|
m_free(zfx->outbuf); zfx->outbuf = NULL;
|
||||||
|
}
|
||||||
|
if (zfx->release)
|
||||||
|
zfx->release (zfx);
|
||||||
|
}
|
||||||
|
else if( control == IOBUFCTRL_DESC )
|
||||||
|
*(char**)buf = "compress_filter";
|
||||||
|
return rc;
|
||||||
|
}
|
@ -1,5 +1,6 @@
|
|||||||
/* compress.c - compress filter
|
/* compress.c - compress filter
|
||||||
* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002,
|
||||||
|
* 2003 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* This file is part of GnuPG.
|
* This file is part of GnuPG.
|
||||||
*
|
*
|
||||||
@ -18,6 +19,12 @@
|
|||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Note that the code in compress-bz2.c is nearly identical to the
|
||||||
|
code here, so if you fix a bug here, look there to see if the
|
||||||
|
matching bug needs to be fixed. I tried to have one set of
|
||||||
|
functions that could do ZIP, ZLIB, and BZIP2, but it became
|
||||||
|
dangerously unreadable with #ifdefs and if(algo) -dshaw */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -37,6 +44,9 @@
|
|||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "options.h"
|
#include "options.h"
|
||||||
|
|
||||||
|
int compress_filter_bz2( void *opaque, int control,
|
||||||
|
IOBUF a, byte *buf, size_t *ret_len);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
init_compress( compress_filter_context_t *zfx, z_stream *zs )
|
init_compress( compress_filter_context_t *zfx, z_stream *zs )
|
||||||
{
|
{
|
||||||
@ -208,7 +218,7 @@ do_uncompress( compress_filter_context_t *zfx, z_stream *zs,
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
compress_filter( void *opaque, int control,
|
compress_filter( void *opaque, int control,
|
||||||
IOBUF a, byte *buf, size_t *ret_len)
|
IOBUF a, byte *buf, size_t *ret_len)
|
||||||
{
|
{
|
||||||
@ -237,10 +247,8 @@ compress_filter( void *opaque, int control,
|
|||||||
if( !zfx->status ) {
|
if( !zfx->status ) {
|
||||||
PACKET pkt;
|
PACKET pkt;
|
||||||
PKT_compressed cd;
|
PKT_compressed cd;
|
||||||
|
if(zfx->algo != COMPRESS_ALGO_ZIP
|
||||||
if( !zfx->algo )
|
&& zfx->algo != COMPRESS_ALGO_ZLIB)
|
||||||
zfx->algo = DEFAULT_COMPRESS_ALGO;
|
|
||||||
if( zfx->algo != 1 && zfx->algo != 2 )
|
|
||||||
BUG();
|
BUG();
|
||||||
memset( &cd, 0, sizeof cd );
|
memset( &cd, 0, sizeof cd );
|
||||||
cd.len = 0;
|
cd.len = 0;
|
||||||
@ -308,12 +316,12 @@ handle_compressed( void *procctx, PKT_compressed *cd,
|
|||||||
compress_filter_context_t *cfx;
|
compress_filter_context_t *cfx;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
if( cd->algorithm < 1 || cd->algorithm > 2 )
|
if(check_compress_algo(cd->algorithm))
|
||||||
return G10ERR_COMPR_ALGO;
|
return G10ERR_COMPR_ALGO;
|
||||||
cfx = m_alloc_clear (sizeof *cfx);
|
cfx = m_alloc_clear (sizeof *cfx);
|
||||||
cfx->algo = cd->algorithm;
|
|
||||||
cfx->release = release_context;
|
cfx->release = release_context;
|
||||||
iobuf_push_filter( cd->buf, compress_filter, cfx );
|
cfx->algo = cd->algorithm;
|
||||||
|
push_compress_filter(cd->buf,cfx,cd->algorithm);
|
||||||
if( callback )
|
if( callback )
|
||||||
rc = callback(cd->buf, passthru );
|
rc = callback(cd->buf, passthru );
|
||||||
else
|
else
|
||||||
@ -322,3 +330,35 @@ handle_compressed( void *procctx, PKT_compressed *cd,
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
push_compress_filter(IOBUF out,compress_filter_context_t *zfx,int algo)
|
||||||
|
{
|
||||||
|
push_compress_filter2(out,zfx,algo,0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
push_compress_filter2(IOBUF out,compress_filter_context_t *zfx,
|
||||||
|
int algo,int rel)
|
||||||
|
{
|
||||||
|
if(algo>0)
|
||||||
|
zfx->algo=algo;
|
||||||
|
else
|
||||||
|
zfx->algo=DEFAULT_COMPRESS_ALGO;
|
||||||
|
|
||||||
|
switch(zfx->algo)
|
||||||
|
{
|
||||||
|
case COMPRESS_ALGO_ZIP:
|
||||||
|
case COMPRESS_ALGO_ZLIB:
|
||||||
|
iobuf_push_filter2(out,compress_filter,zfx,rel);
|
||||||
|
break;
|
||||||
|
|
||||||
|
#ifdef HAVE_BZIP2
|
||||||
|
case COMPRESS_ALGO_BZIP2:
|
||||||
|
iobuf_push_filter2(out,compress_filter_bz2,zfx,rel);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
default:
|
||||||
|
BUG();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -332,8 +332,7 @@ encode_simple( const char *filename, int mode, int use_seskey )
|
|||||||
{
|
{
|
||||||
if (cfx.dek && cfx.dek->use_mdc)
|
if (cfx.dek && cfx.dek->use_mdc)
|
||||||
zfx.new_ctb = 1;
|
zfx.new_ctb = 1;
|
||||||
zfx.algo=default_compress_algo();
|
push_compress_filter(out,&zfx,opt.def_compress_algo);
|
||||||
iobuf_push_filter( out, compress_filter, &zfx );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* do the work */
|
/* do the work */
|
||||||
@ -627,8 +626,7 @@ encode_crypt( const char *filename, STRLIST remusr, int use_symkey )
|
|||||||
{
|
{
|
||||||
if (cfx.dek && cfx.dek->use_mdc)
|
if (cfx.dek && cfx.dek->use_mdc)
|
||||||
zfx.new_ctb = 1;
|
zfx.new_ctb = 1;
|
||||||
zfx.algo = compr_algo;
|
push_compress_filter(out,&zfx,compr_algo);
|
||||||
iobuf_push_filter( out, compress_filter, &zfx );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -114,9 +114,9 @@ do_export( STRLIST users, int secret, unsigned int options )
|
|||||||
iobuf_push_filter( out, armor_filter, &afx );
|
iobuf_push_filter( out, armor_filter, &afx );
|
||||||
}
|
}
|
||||||
if( opt.compress_keys && opt.compress )
|
if( opt.compress_keys && opt.compress )
|
||||||
iobuf_push_filter( out, compress_filter, &zfx );
|
push_compress_filter(out,&zfx,opt.def_compress_algo);
|
||||||
rc = do_export_stream( out, users, secret, NULL, options, &any );
|
|
||||||
|
|
||||||
|
rc = do_export_stream( out, users, secret, NULL, options, &any );
|
||||||
if( rc || !any )
|
if( rc || !any )
|
||||||
iobuf_cancel(out);
|
iobuf_cancel(out);
|
||||||
else
|
else
|
||||||
|
@ -132,8 +132,9 @@ void unarmor_pump_release (UnarmorPump x);
|
|||||||
int unarmor_pump (UnarmorPump x, int c);
|
int unarmor_pump (UnarmorPump x, int c);
|
||||||
|
|
||||||
/*-- compress.c --*/
|
/*-- compress.c --*/
|
||||||
int compress_filter( void *opaque, int control,
|
void push_compress_filter(IOBUF out,compress_filter_context_t *zfx,int algo);
|
||||||
IOBUF chain, byte *buf, size_t *ret_len);
|
void push_compress_filter2(IOBUF out,compress_filter_context_t *zfx,
|
||||||
|
int algo,int rel);
|
||||||
|
|
||||||
/*-- cipher.c --*/
|
/*-- cipher.c --*/
|
||||||
int cipher_filter( void *opaque, int control,
|
int cipher_filter( void *opaque, int control,
|
||||||
|
@ -2485,7 +2485,8 @@ main( int argc, char **argv )
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case aEncrSym:
|
case aEncrSym:
|
||||||
/* This works with PGP 8. It doesn't work with 2 or 6. It
|
/* This works with PGP 8 in the sense that it acts just like a
|
||||||
|
symmetric message. It doesn't work at all with 2 or 6. It
|
||||||
might work with 7, but alas, I don't have a copy to test
|
might work with 7, but alas, I don't have a copy to test
|
||||||
with right now. */
|
with right now. */
|
||||||
if( argc > 1 )
|
if( argc > 1 )
|
||||||
|
14
g10/import.c
14
g10/import.c
@ -364,17 +364,17 @@ read_block( IOBUF a, PACKET **pending_pkt, KBNODE *ret_root )
|
|||||||
/* make a linked list of all packets */
|
/* make a linked list of all packets */
|
||||||
switch( pkt->pkttype ) {
|
switch( pkt->pkttype ) {
|
||||||
case PKT_COMPRESSED:
|
case PKT_COMPRESSED:
|
||||||
if( pkt->pkt.compressed->algorithm < 1
|
if(check_compress_algo(pkt->pkt.compressed->algorithm))
|
||||||
|| pkt->pkt.compressed->algorithm > 2 ) {
|
{
|
||||||
rc = G10ERR_COMPR_ALGO;
|
rc = G10ERR_COMPR_ALGO;
|
||||||
goto ready;
|
goto ready;
|
||||||
}
|
}
|
||||||
{
|
else
|
||||||
|
{
|
||||||
compress_filter_context_t *cfx = m_alloc_clear( sizeof *cfx );
|
compress_filter_context_t *cfx = m_alloc_clear( sizeof *cfx );
|
||||||
cfx->algo = pkt->pkt.compressed->algorithm;
|
|
||||||
pkt->pkt.compressed->buf = NULL;
|
pkt->pkt.compressed->buf = NULL;
|
||||||
iobuf_push_filter2( a, compress_filter, cfx, 1 );
|
push_compress_filter2(a,cfx,pkt->pkt.compressed->algorithm,1);
|
||||||
}
|
}
|
||||||
free_packet( pkt );
|
free_packet( pkt );
|
||||||
init_packet(pkt);
|
init_packet(pkt);
|
||||||
break;
|
break;
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
(i.e. uncompressed) rather than 1 (zip). */
|
(i.e. uncompressed) rather than 1 (zip). */
|
||||||
#define DEFAULT_CIPHER_ALGO CIPHER_ALGO_CAST5
|
#define DEFAULT_CIPHER_ALGO CIPHER_ALGO_CAST5
|
||||||
#define DEFAULT_DIGEST_ALGO DIGEST_ALGO_SHA1
|
#define DEFAULT_DIGEST_ALGO DIGEST_ALGO_SHA1
|
||||||
#define DEFAULT_COMPRESS_ALGO 1
|
#define DEFAULT_COMPRESS_ALGO COMPRESS_ALGO_ZIP
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int header_okay;
|
int header_okay;
|
||||||
|
25
g10/misc.c
25
g10/misc.c
@ -548,17 +548,23 @@ compress_algo_to_string(int algo)
|
|||||||
|
|
||||||
switch(algo)
|
switch(algo)
|
||||||
{
|
{
|
||||||
case 0:
|
case COMPRESS_ALGO_NONE:
|
||||||
s="Uncompressed";
|
s="Uncompressed";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case COMPRESS_ALGO_ZIP:
|
||||||
s="ZIP";
|
s="ZIP";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case COMPRESS_ALGO_ZLIB:
|
||||||
s="ZLIB";
|
s="ZLIB";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef HAVE_BZIP2
|
||||||
|
case COMPRESS_ALGO_BZIP2:
|
||||||
|
s="BZIP2";
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
@ -573,12 +579,20 @@ string_to_compress_algo(const char *string)
|
|||||||
return 1;
|
return 1;
|
||||||
else if(ascii_strcasecmp(string,"zlib")==0)
|
else if(ascii_strcasecmp(string,"zlib")==0)
|
||||||
return 2;
|
return 2;
|
||||||
|
#ifdef HAVE_BZIP2
|
||||||
|
else if(ascii_strcasecmp(string,"bzip2")==0)
|
||||||
|
return 3;
|
||||||
|
#endif
|
||||||
else if(ascii_strcasecmp(string,"z0")==0)
|
else if(ascii_strcasecmp(string,"z0")==0)
|
||||||
return 0;
|
return 0;
|
||||||
else if(ascii_strcasecmp(string,"z1")==0)
|
else if(ascii_strcasecmp(string,"z1")==0)
|
||||||
return 1;
|
return 1;
|
||||||
else if(ascii_strcasecmp(string,"z2")==0)
|
else if(ascii_strcasecmp(string,"z2")==0)
|
||||||
return 2;
|
return 2;
|
||||||
|
#ifdef HAVE_BZIP2
|
||||||
|
else if(ascii_strcasecmp(string,"z3")==0)
|
||||||
|
return 3;
|
||||||
|
#endif
|
||||||
else
|
else
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@ -586,8 +600,13 @@ string_to_compress_algo(const char *string)
|
|||||||
int
|
int
|
||||||
check_compress_algo(int algo)
|
check_compress_algo(int algo)
|
||||||
{
|
{
|
||||||
|
#ifdef HAVE_BZIP2
|
||||||
|
if(algo>=0 && algo<=3)
|
||||||
|
return 0;
|
||||||
|
#else
|
||||||
if(algo>=0 && algo<=2)
|
if(algo>=0 && algo<=2)
|
||||||
return 0;
|
return 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
return G10ERR_COMPR_ALGO;
|
return G10ERR_COMPR_ALGO;
|
||||||
}
|
}
|
||||||
|
10
g10/sign.c
10
g10/sign.c
@ -859,10 +859,7 @@ sign_file( STRLIST filenames, int detached, STRLIST locusr,
|
|||||||
|
|
||||||
/* algo 0 means no compression */
|
/* algo 0 means no compression */
|
||||||
if( compr_algo )
|
if( compr_algo )
|
||||||
{
|
push_compress_filter(out,&zfx,compr_algo);
|
||||||
zfx.algo = compr_algo;
|
|
||||||
iobuf_push_filter( out, compress_filter, &zfx );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Write the one-pass signature packets if needed */
|
/* Write the one-pass signature packets if needed */
|
||||||
@ -1181,10 +1178,7 @@ sign_symencrypt_file (const char *fname, STRLIST locusr)
|
|||||||
|
|
||||||
/* Push the Zip filter */
|
/* Push the Zip filter */
|
||||||
if (opt.compress && default_compress_algo())
|
if (opt.compress && default_compress_algo())
|
||||||
{
|
push_compress_filter(out,&zfx,opt.def_compress_algo);
|
||||||
zfx.algo = default_compress_algo();
|
|
||||||
iobuf_push_filter( out, compress_filter, &zfx );
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Write the one-pass signature packets */
|
/* Write the one-pass signature packets */
|
||||||
/*(current filters: zip - encrypt - armor)*/
|
/*(current filters: zip - encrypt - armor)*/
|
||||||
|
Loading…
Reference in New Issue
Block a user