summaryrefslogtreecommitdiffstats
path: root/g10/cipher.c
blob: e458a807c386e6157ce413715b9270e4841f5693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* cipher.c - En-/De-ciphering filter
 *	Copyright (C) 1998,1999 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <assert.h>

#include "errors.h"
#include "iobuf.h"
#include "memory.h"
#include "util.h"
#include "filter.h"
#include "packet.h"
#include "options.h"
#include "main.h"


#define MIN_PARTIAL_SIZE 512


static void
write_header( cipher_filter_context_t *cfx, IOBUF a )
{
    PACKET pkt;
    PKT_encrypted ed;
    byte temp[18];
    int blocksize;
    unsigned nprefix;
    int use_mdc = opt.force_mdc;
    int rc;

    memset( &ed, 0, sizeof ed );
    ed.len = cfx->datalen;
    ed.new_ctb = !ed.len && !opt.rfc1991;
    if( use_mdc ) {
	ed.mdc_method = DIGEST_ALGO_SHA1;
	cfx->mdc_hash = gcry_md_open( DIGEST_ALGO_SHA1, 0 );
	/*md_start_debug( cfx->mdc_hash, "mdccreat" );*/
    }
    init_packet( &pkt );
    pkt.pkttype = use_mdc? PKT_ENCRYPTED_MDC : PKT_ENCRYPTED;
    pkt.pkt.encrypted = &ed;
    if( build_packet( a, &pkt ))
	log_bug("build_packet(ENCR_DATA) failed\n");
    blocksize = gcry_cipher_get_algo_blklen( cfx->dek->algo );
    if( blocksize < 8 || blocksize > 16 )
	log_fatal("unsupported blocksize %d\n", blocksize );
    nprefix = blocksize;
    randomize_buffer( temp, nprefix, 1 );
    temp[nprefix] = temp[nprefix-2];
    temp[nprefix+1] = temp[nprefix-1];
    print_cipher_algo_note( cfx->dek->algo );
    if( gcry_cipher_open( &cfx->cipher_hd,
			  cfx->dek->algo,
			  CIPHER_MODE_CFB,
			  GCRY_CIPHER_SECURE
			  | (cfy->dek->algo >= 100 ?
				0 : GCRY_CIPHER_ENABLE_SYNC) )
			) {
	/* we should never get an error here cause we already checked, that
	 * the algorithm is available. */
	BUG();
    }

/*   log_hexdump( "thekey", cfx->dek->key, cfx->dek->keylen );*/
    rc = gcry_cipher_setkey( cfx->cipher_hd, cfx->dek->key, cfx->dek->keylen );
    if( !rc )
	rc = gcry_cipher_setiv( cfx->cipher_hd, NULL, 0 );
    if( rc )
	log_fatal("set key or IV failed: %s\n", gcry_strerror(rc) );
/*  log_hexdump( "prefix", temp, nprefix+2 ); */
    if( cfx->mdc_hash )
	gcry_md_write( cfx->mdc_hash, temp, nprefix+2 );
    rc = cipher_encrypt( cfx->cipher_hd, temp, nprefix+2, NULL, 0 );
    if( !rc )
	rc = gcry_cipher_sync( cfx->cipher_hd );
    if( rc )
	log_fatal("encrypt failed: %s\n", gcry_strerror(rc) );
    iobuf_write(a, temp, nprefix+2);
    cfx->header=1;
}



/****************
 * This filter is used to en/de-cipher data with a conventional algorithm
 */
int
cipher_filter( void *opaque, int control,
	       IOBUF a, byte *buf, size_t *ret_len)
{
    size_t size = *ret_len;
    cipher_filter_context_t *cfx = opaque;
    int rc=0;

    if( control == IOBUFCTRL_UNDERFLOW ) { /* decrypt */
	rc = -1; /* not yet used */
    }
    else if( control == IOBUFCTRL_FLUSH ) { /* encrypt */
	assert(a);
	if( !cfx->header ) {
	    write_header( cfx, a );
	}
	if( cfx->mdc_hash )
	    gcry_md_write( cfx->mdc_hash, buf, size );
	rc = gcry_cipher_encrypt( cfx->cipher_hd, buf, size, NULL, 0);
	if( rc )
	    log_fatal("encrypt failed: %s\n", gcry_strerror(rc) );
	if( iobuf_write( a, buf, size ) )
	    rc = G10ERR_WRITE_FILE;
    }
    else if( control == IOBUFCTRL_FREE ) {
	if( cfx->mdc_hash ) {
	    byte *hash;
	    int hashlen = gcry_md_get_algo_dlen( gcry_md_get_algo( cfx->mdc_hash ) );
	    hash = gcry_md_read( cfx->mdc_hash, 0 );
	    rc = gcry_cipher_encrypt( cfx->cipher_hd, hash, hashlen, NULL, 0 );
	    if( rc )
		log_fatal("encrypt failed: %s\n", gcry_strerror(rc) );
	    if( iobuf_write( a, hash, hashlen ) )
		rc = G10ERR_WRITE_FILE;
	    gcry_md_close( cfx->mdc_hash ); cfx->mdc_hash = NULL;
	}
	gcry_cipher_close(cfx->cipher_hd);
    }
    else if( control == IOBUFCTRL_DESC ) {
	*(char**)buf = "cipher_filter";
    }
    return rc;
}