1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00
gnupg/g10/encode.c

501 lines
14 KiB
C
Raw Normal View History

1997-11-24 12:04:11 +01:00
/* encode.c - encode data
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
* This file is part of GnuPG.
1997-11-18 15:06:00 +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.
*
* 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 <errno.h>
#include <assert.h>
#include "options.h"
#include "packet.h"
#include "errors.h"
#include "iobuf.h"
#include "keydb.h"
#include "memory.h"
#include "util.h"
#include "main.h"
1997-11-21 15:53:57 +01:00
#include "filter.h"
1998-08-05 18:51:59 +02:00
#include "trustdb.h"
1998-07-06 12:23:57 +02:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
static int encode_simple( const char *filename, int mode );
1998-06-29 14:30:57 +02:00
static int write_pubkey_enc_from_list( PK_LIST pk_list, DEK *dek, IOBUF out );
1997-11-18 15:06:00 +01:00
1997-12-31 13:32:54 +01:00
1997-11-18 15:06:00 +01:00
/****************
1998-04-14 19:51:16 +02:00
* Encode FILENAME with only the symmetric cipher. Take input from
1997-11-18 15:06:00 +01:00
* stdin if FILENAME is NULL.
*/
int
encode_symmetric( const char *filename )
{
return encode_simple( filename, 1 );
}
/****************
1998-04-14 19:51:16 +02:00
* Encode FILENAME as a literal data packet only. Take input from
1997-11-18 15:06:00 +01:00
* stdin if FILENAME is NULL.
*/
int
encode_store( const char *filename )
{
return encode_simple( filename, 0 );
}
1997-11-18 15:06:00 +01:00
static int
encode_simple( const char *filename, int mode )
{
IOBUF inp, out;
PACKET pkt;
PKT_plaintext *pt = NULL;
1998-05-04 20:49:26 +02:00
STRING2KEY *s2k = NULL;
1997-11-18 15:06:00 +01:00
int rc = 0;
u32 filesize;
cipher_filter_context_t cfx;
1997-11-19 14:12:23 +01:00
armor_filter_context_t afx;
1997-11-23 16:38:27 +01:00
compress_filter_context_t zfx;
text_filter_context_t tfx;
1998-09-28 21:25:31 +02:00
int do_compress = opt.compress && !opt.rfc1991;
1997-11-18 15:06:00 +01:00
memset( &cfx, 0, sizeof cfx);
1997-11-19 14:12:23 +01:00
memset( &afx, 0, sizeof afx);
1997-11-23 16:38:27 +01:00
memset( &zfx, 0, sizeof zfx);
memset( &tfx, 0, sizeof tfx);
1998-08-11 19:29:34 +02:00
init_packet(&pkt);
1997-11-18 15:06:00 +01:00
/* prepare iobufs */
if( !(inp = iobuf_open(filename)) ) {
1998-07-06 12:23:57 +02:00
log_error(_("%s: can't open: %s\n"), filename? filename: "[stdin]",
1997-11-18 15:06:00 +01:00
strerror(errno) );
return G10ERR_OPEN_FILE;
}
if( opt.textmode )
iobuf_push_filter( inp, text_filter, &tfx );
1997-11-18 15:06:00 +01:00
cfx.dek = NULL;
if( mode ) {
1998-05-04 20:49:26 +02:00
s2k = m_alloc_clear( sizeof *s2k );
1998-09-28 21:25:31 +02:00
s2k->mode = opt.rfc1991? 0:opt.s2k_mode;
1998-05-15 20:49:19 +02:00
s2k->hash_algo = opt.def_digest_algo ? opt.def_digest_algo
1998-09-28 21:25:31 +02:00
: opt.s2k_digest_algo;
cfx.dek = passphrase_to_dek( NULL, 0,
1998-08-05 18:51:59 +02:00
opt.def_cipher_algo ? opt.def_cipher_algo
1998-09-28 21:25:31 +02:00
: opt.s2k_cipher_algo , s2k, 2 );
1998-05-04 20:49:26 +02:00
if( !cfx.dek || !cfx.dek->keylen ) {
rc = G10ERR_PASSPHRASE;
1997-11-18 15:06:00 +01:00
m_free(cfx.dek);
1998-05-04 20:49:26 +02:00
m_free(s2k);
1997-11-18 15:06:00 +01:00
iobuf_close(inp);
1998-07-06 12:23:57 +02:00
log_error(_("error creating passphrase: %s\n"), g10_errstr(rc) );
1997-11-18 15:06:00 +01:00
return rc;
}
}
1998-08-11 19:29:34 +02:00
if( (rc = open_outfile( filename, opt.armor? 1:0, &out )) ) {
1997-11-18 15:06:00 +01:00
iobuf_close(inp);
m_free(cfx.dek);
1998-05-04 20:49:26 +02:00
m_free(s2k);
1998-08-11 19:29:34 +02:00
return rc;
1997-11-18 15:06:00 +01:00
}
if( opt.armor )
1997-11-19 14:12:23 +01:00
iobuf_push_filter( out, armor_filter, &afx );
1998-10-16 18:00:17 +02:00
#ifdef ENABLE_COMMENT_PACKETS
1998-08-11 19:29:34 +02:00
else {
1998-05-26 15:38:00 +02:00
write_comment( out, "#created by GNUPG v" VERSION " ("
1998-02-16 21:05:02 +01:00
PRINTABLE_OS_NAME ")");
1998-08-11 19:29:34 +02:00
if( opt.comment_string )
write_comment( out, opt.comment_string );
}
1998-10-16 18:00:17 +02:00
#endif
1998-06-11 09:16:50 +02:00
if( s2k && !opt.rfc1991 ) {
1998-05-04 20:49:26 +02:00
PKT_symkey_enc *enc = m_alloc_clear( sizeof *enc );
enc->version = 4;
enc->cipher_algo = cfx.dek->algo;
enc->s2k = *s2k;
pkt.pkttype = PKT_SYMKEY_ENC;
pkt.pkt.symkey_enc = enc;
if( (rc = build_packet( out, &pkt )) )
log_error("build symkey packet failed: %s\n", g10_errstr(rc) );
m_free(enc);
}
1997-11-18 15:06:00 +01:00
if (!opt.no_literal) {
/* setup the inner packet */
if( filename || opt.set_filename ) {
char *s = make_basename( opt.set_filename ? opt.set_filename
: filename );
pt = m_alloc( sizeof *pt + strlen(s) - 1 );
pt->namelen = strlen(s);
memcpy(pt->name, s, pt->namelen );
m_free(s);
}
else { /* no filename */
pt = m_alloc( sizeof *pt - 1 );
pt->namelen = 0;
}
1997-11-18 15:06:00 +01:00
}
/* pgp5 has problems to decrypt symmetrically encrypted data from
* GnuPG if the filelength is in the inner packet. It works
* when only partial length headers are use. Until we have
* tracked this problem down. We use this temporary fix
* (fixme: remove the && !mode )
*/
if( filename && !opt.textmode && !mode ) {
1998-08-11 19:29:34 +02:00
if( !(filesize = iobuf_get_filelength(inp)) )
1998-11-10 13:59:59 +01:00
log_info(_("%s: WARNING: empty file\n"), filename );
1998-08-11 19:29:34 +02:00
}
else
filesize = opt.set_filesize ? opt.set_filesize : 0; /* stdin */
if (!opt.no_literal) {
pt->timestamp = make_timestamp();
pt->mode = opt.textmode? 't' : 'b';
pt->len = filesize;
pt->buf = inp;
pkt.pkttype = PKT_PLAINTEXT;
pkt.pkt.plaintext = pt;
cfx.datalen = filesize && !do_compress ? calc_packet_length( &pkt ) : 0;
}
else
cfx.datalen = filesize && !do_compress ? filesize : 0;
1997-11-18 15:06:00 +01:00
/* register the cipher filter */
if( mode )
iobuf_push_filter( out, cipher_filter, &cfx );
1998-05-26 15:38:00 +02:00
/* register the compress filter */
1998-09-28 21:25:31 +02:00
if( do_compress )
1998-05-26 15:38:00 +02:00
iobuf_push_filter( out, compress_filter, &zfx );
1997-11-18 15:06:00 +01:00
/* do the work */
if (!opt.no_literal) {
if( (rc = build_packet( out, &pkt )) )
log_error("build_packet failed: %s\n", g10_errstr(rc) );
}
else {
/* user requested not to create a literal packet,
* so we copy the plain data */
byte copy_buffer[4096];
int bytes_copied;
while ((bytes_copied = iobuf_read(inp, copy_buffer, 4096)) != -1)
if (iobuf_write(out, copy_buffer, bytes_copied) == -1) {
rc = G10ERR_WRITE_FILE;
log_error("copying input to output failed: %s\n", g10_errstr(rc) );
break;
}
memset(copy_buffer, 0, 4096); /* burn buffer */
}
1997-11-18 15:06:00 +01:00
/* finish the stuff */
iobuf_close(inp);
if (rc)
iobuf_cancel(out);
else
iobuf_close(out); /* fixme: check returncode */
if (pt)
pt->buf = NULL;
1997-11-18 15:06:00 +01:00
free_packet(&pkt);
m_free(cfx.dek);
1998-05-04 20:49:26 +02:00
m_free(s2k);
1997-11-18 15:06:00 +01:00
return rc;
}
/****************
* Encrypt the file with the given userids (or ask if none
* is supplied).
*/
int
encode_crypt( const char *filename, STRLIST remusr )
{
1997-12-31 13:32:54 +01:00
IOBUF inp = NULL, out = NULL;
1997-11-18 15:06:00 +01:00
PACKET pkt;
1998-01-13 20:04:23 +01:00
PKT_plaintext *pt = NULL;
1997-12-31 13:32:54 +01:00
int rc = 0;
1997-11-18 15:06:00 +01:00
u32 filesize;
cipher_filter_context_t cfx;
1997-11-19 14:12:23 +01:00
armor_filter_context_t afx;
1997-11-23 16:38:27 +01:00
compress_filter_context_t zfx;
text_filter_context_t tfx;
1998-06-29 14:30:57 +02:00
PK_LIST pk_list;
1998-09-28 21:25:31 +02:00
int do_compress = opt.compress && !opt.rfc1991;
1997-11-18 15:06:00 +01:00
1997-11-18 15:06:00 +01:00
memset( &cfx, 0, sizeof cfx);
1997-11-19 14:12:23 +01:00
memset( &afx, 0, sizeof afx);
1997-11-23 16:38:27 +01:00
memset( &zfx, 0, sizeof zfx);
memset( &tfx, 0, sizeof tfx);
1998-08-11 19:29:34 +02:00
init_packet(&pkt);
1997-11-18 15:06:00 +01:00
1998-07-06 12:23:57 +02:00
if( (rc=build_pk_list( remusr, &pk_list, PUBKEY_USAGE_ENC)) )
1997-12-31 13:32:54 +01:00
return rc;
1997-11-18 15:06:00 +01:00
/* prepare iobufs */
if( !(inp = iobuf_open(filename)) ) {
1998-07-06 12:23:57 +02:00
log_error(_("can't open %s: %s\n"), filename? filename: "[stdin]",
1997-11-18 15:06:00 +01:00
strerror(errno) );
1997-12-31 13:32:54 +01:00
rc = G10ERR_OPEN_FILE;
goto leave;
1997-11-18 15:06:00 +01:00
}
else if( opt.verbose )
log_info(_("reading from `%s'\n"), filename? filename: "[stdin]");
1997-11-18 15:06:00 +01:00
if( opt.textmode )
iobuf_push_filter( inp, text_filter, &tfx );
1998-08-11 19:29:34 +02:00
if( (rc = open_outfile( filename, opt.armor? 1:0, &out )) )
1997-12-31 13:32:54 +01:00
goto leave;
1998-08-11 19:29:34 +02:00
1997-11-18 15:06:00 +01:00
if( opt.armor )
1997-11-19 14:12:23 +01:00
iobuf_push_filter( out, armor_filter, &afx );
1998-10-16 18:00:17 +02:00
#ifdef ENABLE_COMMENT_PACKETS
1998-08-11 19:29:34 +02:00
else {
1998-05-26 15:38:00 +02:00
write_comment( out, "#created by GNUPG v" VERSION " ("
1998-02-16 21:05:02 +01:00
PRINTABLE_OS_NAME ")");
1998-08-11 19:29:34 +02:00
if( opt.comment_string )
write_comment( out, opt.comment_string );
}
1998-10-16 18:00:17 +02:00
#endif
1997-11-18 15:06:00 +01:00
/* create a session key */
cfx.dek = m_alloc_secure( sizeof *cfx.dek );
1998-08-05 18:51:59 +02:00
if( !opt.def_cipher_algo ) { /* try to get it from the prefs */
cfx.dek->algo = select_algo_from_prefs( pk_list, PREFTYPE_SYM );
if( cfx.dek->algo == -1 )
cfx.dek->algo = DEFAULT_CIPHER_ALGO;
}
else
cfx.dek->algo = opt.def_cipher_algo;
1997-11-18 15:06:00 +01:00
make_session_key( cfx.dek );
if( DBG_CIPHER )
log_hexdump("DEK is: ", cfx.dek->key, cfx.dek->keylen );
1998-06-29 14:30:57 +02:00
rc = write_pubkey_enc_from_list( pk_list, cfx.dek, out );
1998-01-02 21:40:10 +01:00
if( rc )
goto leave;
1997-11-18 15:06:00 +01:00
if (!opt.no_literal)
/* setup the inner packet */
if( filename || opt.set_filename ) {
char *s = make_basename( opt.set_filename ? opt.set_filename : filename );
pt = m_alloc( sizeof *pt + strlen(s) - 1 );
pt->namelen = strlen(s);
memcpy(pt->name, s, pt->namelen );
m_free(s);
}
else { /* no filename */
pt = m_alloc( sizeof *pt - 1 );
pt->namelen = 0;
}
if( filename && !opt.textmode ) {
1998-08-11 19:29:34 +02:00
if( !(filesize = iobuf_get_filelength(inp)) )
1998-11-10 13:59:59 +01:00
log_info(_("%s: WARNING: empty file\n"), filename );
1998-08-11 19:29:34 +02:00
}
else
filesize = opt.set_filesize ? opt.set_filesize : 0; /* stdin */
if (!opt.no_literal) {
pt->timestamp = make_timestamp();
pt->mode = opt.textmode ? 't' : 'b';
pt->len = filesize;
pt->new_ctb = !pt->len && !opt.rfc1991;
pt->buf = inp;
pkt.pkttype = PKT_PLAINTEXT;
pkt.pkt.plaintext = pt;
cfx.datalen = filesize && !do_compress? calc_packet_length( &pkt ) : 0;
}
else
cfx.datalen = filesize && !do_compress ? filesize : 0;
1997-11-18 15:06:00 +01:00
/* register the cipher filter */
iobuf_push_filter( out, cipher_filter, &cfx );
1998-05-26 15:38:00 +02:00
/* register the compress filter */
1998-09-28 21:25:31 +02:00
if( do_compress ) {
1998-08-05 18:51:59 +02:00
int compr_algo = select_algo_from_prefs( pk_list, PREFTYPE_COMPR );
if( !compr_algo )
; /* don't use compression */
else {
if( compr_algo == 1 )
zfx.algo = 1; /* default is 2 */
iobuf_push_filter( out, compress_filter, &zfx );
}
}
1997-11-18 15:06:00 +01:00
/* do the work */
if (!opt.no_literal) {
if( (rc = build_packet( out, &pkt )) )
log_error("build_packet failed: %s\n", g10_errstr(rc) );
}
else {
/* user requested not to create a literal packet, so we copy the plain data */
byte copy_buffer[4096];
int bytes_copied;
while ((bytes_copied = iobuf_read(inp, copy_buffer, 4096)) != -1)
if (iobuf_write(out, copy_buffer, bytes_copied) == -1) {
rc = G10ERR_WRITE_FILE;
log_error("copying input to output failed: %s\n", g10_errstr(rc) );
break;
}
memset(copy_buffer, 0, 4096); /* burn buffer */
}
1997-11-18 15:06:00 +01:00
/* finish the stuff */
1997-12-31 13:32:54 +01:00
leave:
1997-11-18 15:06:00 +01:00
iobuf_close(inp);
1997-12-31 13:32:54 +01:00
if( rc )
iobuf_cancel(out);
else
iobuf_close(out); /* fixme: check returncode */
1998-01-13 20:04:23 +01:00
if( pt )
pt->buf = NULL;
1997-11-18 15:06:00 +01:00
free_packet(&pkt);
m_free(cfx.dek);
1998-06-29 14:30:57 +02:00
release_pk_list( pk_list );
1997-11-18 15:06:00 +01:00
return rc;
}
1997-12-31 13:32:54 +01:00
/****************
* Filter to do a complete public key encryption.
*/
int
encrypt_filter( void *opaque, int control,
IOBUF a, byte *buf, size_t *ret_len)
{
size_t size = *ret_len;
encrypt_filter_context_t *efx = opaque;
int rc=0;
if( control == IOBUFCTRL_UNDERFLOW ) { /* decrypt */
1998-01-16 22:15:24 +01:00
BUG(); /* not used */
1997-12-31 13:32:54 +01:00
}
else if( control == IOBUFCTRL_FLUSH ) { /* encrypt */
1998-01-02 21:40:10 +01:00
if( !efx->header_okay ) {
efx->cfx.dek = m_alloc_secure( sizeof *efx->cfx.dek );
1998-08-05 18:51:59 +02:00
if( !opt.def_cipher_algo ) { /* try to get it from the prefs */
efx->cfx.dek->algo =
select_algo_from_prefs( efx->pk_list, PREFTYPE_SYM );
if( efx->cfx.dek->algo == -1 )
efx->cfx.dek->algo = DEFAULT_CIPHER_ALGO;
}
else
efx->cfx.dek->algo = opt.def_cipher_algo;
1998-01-02 21:40:10 +01:00
make_session_key( efx->cfx.dek );
if( DBG_CIPHER )
log_hexdump("DEK is: ",
efx->cfx.dek->key, efx->cfx.dek->keylen );
1998-06-29 14:30:57 +02:00
rc = write_pubkey_enc_from_list( efx->pk_list, efx->cfx.dek, a );
1998-01-02 21:40:10 +01:00
if( rc )
return rc;
iobuf_push_filter( a, cipher_filter, &efx->cfx );
efx->header_okay = 1;
}
rc = iobuf_write( a, buf, size );
1997-12-31 13:32:54 +01:00
}
else if( control == IOBUFCTRL_FREE ) {
}
else if( control == IOBUFCTRL_DESC ) {
*(char**)buf = "encrypt_filter";
}
return rc;
}
1998-01-02 21:40:10 +01:00
/****************
1998-06-29 14:30:57 +02:00
* Write pubkey-enc packets from the list of PKs to OUT.
1998-01-02 21:40:10 +01:00
*/
static int
1998-06-29 14:30:57 +02:00
write_pubkey_enc_from_list( PK_LIST pk_list, DEK *dek, IOBUF out )
1998-01-02 21:40:10 +01:00
{
PACKET pkt;
1998-06-29 14:30:57 +02:00
PKT_public_key *pk;
1998-01-02 21:40:10 +01:00
PKT_pubkey_enc *enc;
int rc;
1998-06-29 14:30:57 +02:00
for( ; pk_list; pk_list = pk_list->next ) {
1998-06-13 08:59:14 +02:00
MPI frame;
1998-01-02 21:40:10 +01:00
1998-06-29 14:30:57 +02:00
pk = pk_list->pk;
print_pubkey_algo_note( pk->pubkey_algo );
1998-01-02 21:40:10 +01:00
enc = m_alloc_clear( sizeof *enc );
1998-06-29 14:30:57 +02:00
enc->pubkey_algo = pk->pubkey_algo;
keyid_from_pk( pk, enc->keyid );
1998-09-11 07:47:32 +02:00
enc->throw_keyid = opt.throw_keyid;
/* Okay, what's going on: We have the session key somewhere in
* the structure DEK and want to encode this session key in
* an integer value of n bits. pubkey_nbits gives us the
* number of bits we have to use. We then encode the session
* key in some way and we get it back in the big intger value
* FRAME. Then we use FRAME, the public key PK->PKEY and the
* algorithm number PK->PUBKEY_ALGO and pass it to pubkey_encrypt
* which returns the encrypted value in the array ENC->DATA.
* This array has a size which depends on the used algorithm
* (e.g. 2 for ElGamal). We don't need frame anymore because we
* have everything now in enc->data which is the passed to
* build_packet()
*/
1998-06-29 14:30:57 +02:00
frame = encode_session_key( dek, pubkey_nbits( pk->pubkey_algo,
pk->pkey ) );
rc = pubkey_encrypt( pk->pubkey_algo, enc->data, frame, pk->pkey );
1998-06-13 08:59:14 +02:00
mpi_free( frame );
if( rc )
log_error("pubkey_encrypt failed: %s\n", g10_errstr(rc) );
else {
if( opt.verbose ) {
char *ustr = get_user_id_string( enc->keyid );
log_info(_("%s/%s encrypted for: %s\n"),
pubkey_algo_to_string(enc->pubkey_algo),
cipher_algo_to_string(dek->algo), ustr );
1998-06-13 08:59:14 +02:00
m_free(ustr);
}
/* and write it */
init_packet(&pkt);
pkt.pkttype = PKT_PUBKEY_ENC;
pkt.pkt.pubkey_enc = enc;
rc = build_packet( out, &pkt );
if( rc )
log_error("build_packet(pubkey_enc) failed: %s\n", g10_errstr(rc));
}
1998-01-02 21:40:10 +01:00
free_pubkey_enc(enc);
1998-06-13 08:59:14 +02:00
if( rc )
1998-01-02 21:40:10 +01:00
return rc;
}
return 0;
}
1997-11-18 15:06:00 +01:00