1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-09 23:39:51 +02:00
gnupg/g10/seckey-cert.c

215 lines
6.2 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* seckey-cert.c - secret key certifucate packet handling
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +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-02-24 19:50:46 +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>
#include "util.h"
#include "memory.h"
#include "packet.h"
#include "mpi.h"
#include "keydb.h"
#include "cipher.h"
1998-04-07 20:16:10 +02:00
#include "main.h"
#include "options.h"
1998-05-29 13:53:54 +02:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
1997-11-24 23:24:04 +01:00
static int
1998-06-29 14:30:57 +02:00
do_check( PKT_secret_key *sk )
1997-11-18 15:06:00 +01:00
{
1997-12-09 13:46:23 +01:00
byte *buffer;
1998-01-16 22:15:24 +01:00
u16 csum=0;
int i, res;
1997-12-09 13:46:23 +01:00
unsigned nbytes;
1997-11-18 15:06:00 +01:00
1998-06-29 14:30:57 +02:00
if( sk->is_protected ) { /* remove the protection */
1997-11-24 23:24:04 +01:00
DEK *dek = NULL;
1998-04-09 13:19:09 +02:00
u32 keyid[2];
1998-04-07 20:16:10 +02:00
CIPHER_HANDLE cipher_hd=NULL;
1998-06-29 14:30:57 +02:00
PKT_secret_key *save_sk;
1998-04-09 13:19:09 +02:00
char save_iv[8];
1997-11-24 23:24:04 +01:00
1998-06-29 14:30:57 +02:00
if( sk->protect.algo == CIPHER_ALGO_NONE )
1998-06-09 17:14:06 +02:00
BUG();
1998-06-29 14:30:57 +02:00
if( check_cipher_algo( sk->protect.algo ) )
1998-06-09 17:14:06 +02:00
return G10ERR_CIPHER_ALGO; /* unsupported protection algorithm */
1998-07-29 21:35:05 +02:00
if( cipher_get_blocksize( sk->protect.algo ) != 8 )
return G10ERR_CIPHER_ALGO; /* unsupported protection algorithm */
1998-06-29 14:30:57 +02:00
keyid_from_sk( sk, keyid );
dek = passphrase_to_dek( keyid, sk->protect.algo,
&sk->protect.s2k, 0 );
cipher_hd = cipher_open( sk->protect.algo,
1998-06-09 17:14:06 +02:00
CIPHER_MODE_AUTO_CFB, 1);
cipher_setkey( cipher_hd, dek->key, dek->keylen );
cipher_setiv( cipher_hd, NULL );
m_free(dek);
1998-06-29 14:30:57 +02:00
save_sk = copy_secret_key( NULL, sk );
memcpy(save_iv, sk->protect.iv, 8 );
cipher_decrypt( cipher_hd, sk->protect.iv, sk->protect.iv, 8 );
csum = 0;
1998-06-29 14:30:57 +02:00
for(i=pubkey_get_npkey(sk->pubkey_algo);
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
buffer = mpi_get_secure_buffer( sk->skey[i], &nbytes, NULL );
cipher_sync( cipher_hd );
1998-06-29 14:30:57 +02:00
assert( mpi_is_protected(sk->skey[i]) );
1998-06-09 17:14:06 +02:00
cipher_decrypt( cipher_hd, buffer, buffer, nbytes );
1998-06-29 14:30:57 +02:00
mpi_set_buffer( sk->skey[i], buffer, nbytes, 0 );
mpi_clear_protect_flag( sk->skey[i] );
csum += checksum_mpi( sk->skey[i] );
1998-06-09 17:14:06 +02:00
m_free( buffer );
}
1998-07-29 21:35:05 +02:00
if( opt.emulate_bugs & EMUBUG_GPGCHKSUM ) {
1998-06-29 14:30:57 +02:00
csum = sk->csum;
1998-06-09 17:14:06 +02:00
}
cipher_close( cipher_hd );
/* now let's see whether we have used the right passphrase */
1998-06-29 14:30:57 +02:00
if( csum != sk->csum ) {
copy_secret_key( sk, save_sk );
free_secret_key( save_sk );
memcpy( sk->protect.iv, save_iv, 8 );
return G10ERR_BAD_PASS;
1998-06-09 17:14:06 +02:00
}
/* the checksum may fail, so we also check the key itself */
1998-06-29 14:30:57 +02:00
res = pubkey_check_secret_key( sk->pubkey_algo, sk->skey );
1998-06-13 08:59:14 +02:00
if( res ) {
1998-06-29 14:30:57 +02:00
copy_secret_key( sk, save_sk );
free_secret_key( save_sk );
memcpy( sk->protect.iv, save_iv, 8 );
1998-06-09 17:14:06 +02:00
return G10ERR_BAD_PASS;
}
1998-06-29 14:30:57 +02:00
free_secret_key( save_sk );
sk->is_protected = 0;
1997-11-24 23:24:04 +01:00
}
else { /* not protected, assume it is okay if the checksum is okay */
csum = 0;
1998-06-29 14:30:57 +02:00
for(i=pubkey_get_npkey(sk->pubkey_algo);
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
csum += checksum_mpi( sk->skey[i] );
1998-03-09 22:44:06 +01:00
}
1998-06-29 14:30:57 +02:00
if( csum != sk->csum )
1998-06-13 08:59:14 +02:00
return G10ERR_CHECKSUM;
1997-11-18 15:06:00 +01:00
}
1997-12-09 13:46:23 +01:00
1997-11-18 15:06:00 +01:00
return 0;
}
1997-11-24 23:24:04 +01:00
1997-11-18 15:06:00 +01:00
1997-11-24 23:24:04 +01:00
/****************
1998-06-29 14:30:57 +02:00
* Check the secret key
1998-04-14 19:51:16 +02:00
* Ask up to 3 times for a correct passphrase
1997-11-24 23:24:04 +01:00
*/
int
1998-06-29 14:30:57 +02:00
check_secret_key( PKT_secret_key *sk )
1997-11-24 23:24:04 +01:00
{
1997-12-09 13:46:23 +01:00
int rc = G10ERR_BAD_PASS;
int i;
for(i=0; i < 3 && rc == G10ERR_BAD_PASS; i++ ) {
if( i )
1998-05-29 13:53:54 +02:00
log_error(_("Invalid passphrase; please try again ...\n"));
1998-06-29 14:30:57 +02:00
rc = do_check( sk );
1998-06-13 19:00:02 +02:00
#if 0 /* set to 1 to enable the workaround */
1998-06-29 14:30:57 +02:00
if( rc == G10ERR_BAD_PASS && sk->is_protected
&& sk->protect.algo == CIPHER_ALGO_BLOWFISH
&& sk->pubkey_algo != PUBKEY_ALGO_ELGAMAL ) {
1998-06-13 19:00:02 +02:00
/* Workaround for a bug in 0.2.16 which still used
* a 160 bit key for BLOWFISH. */
log_info("trying workaround for 0.2.16 passphrase bug ...\n");
log_info("If you don't need this, uncomment it in g10/seckey-cert.c\n\n");
1998-06-29 14:30:57 +02:00
sk->protect.algo = CIPHER_ALGO_BLOWFISH160;
rc = do_check( sk );
1998-06-13 19:00:02 +02:00
if( rc )
rc = G10ERR_BAD_PASS;
1998-06-29 14:30:57 +02:00
sk->protect.algo = CIPHER_ALGO_BLOWFISH;
1998-04-09 13:19:09 +02:00
}
1998-06-13 19:00:02 +02:00
#endif
1998-01-02 21:40:10 +01:00
if( get_passphrase_fd() != -1 )
break;
1997-12-09 13:46:23 +01:00
}
1998-05-26 15:38:00 +02:00
1997-12-09 13:46:23 +01:00
return rc;
}
1998-01-06 22:01:36 +01:00
/****************
1998-04-14 19:51:16 +02:00
* check whether the secret key is protected.
1998-01-06 22:01:36 +01:00
* Returns: 0 not protected, -1 on error or the protection algorithm
*/
int
1998-06-29 14:30:57 +02:00
is_secret_key_protected( PKT_secret_key *sk )
1998-01-06 22:01:36 +01:00
{
1998-06-29 14:30:57 +02:00
return sk->is_protected? sk->protect.algo : 0;
1998-04-02 12:30:03 +02:00
}
1997-12-09 13:46:23 +01:00
/****************
1998-06-29 14:30:57 +02:00
* Protect the secret key with the passphrase from DEK
1997-12-09 13:46:23 +01:00
*/
int
1998-06-29 14:30:57 +02:00
protect_secret_key( PKT_secret_key *sk, DEK *dek )
1997-12-09 13:46:23 +01:00
{
int i, rc = 0;
byte *buffer;
unsigned nbytes;
u16 csum;
1998-04-02 12:30:03 +02:00
1997-12-09 13:46:23 +01:00
if( !dek )
return 0;
1998-06-29 14:30:57 +02:00
if( !sk->is_protected ) { /* okay, apply the protection */
1998-04-07 20:16:10 +02:00
CIPHER_HANDLE cipher_hd=NULL;
1998-04-02 12:30:03 +02:00
1998-06-29 14:30:57 +02:00
if( check_cipher_algo( sk->protect.algo ) )
1998-07-29 21:35:05 +02:00
rc = G10ERR_CIPHER_ALGO; /* unsupport protection algorithm */
else if( cipher_get_blocksize( sk->protect.algo ) != 8 )
1998-06-09 17:14:06 +02:00
rc = G10ERR_CIPHER_ALGO; /* unsupport protection algorithm */
else {
1998-06-29 14:30:57 +02:00
cipher_hd = cipher_open( sk->protect.algo,
1998-04-07 20:16:10 +02:00
CIPHER_MODE_AUTO_CFB, 1 );
cipher_setkey( cipher_hd, dek->key, dek->keylen );
cipher_setiv( cipher_hd, NULL );
1998-06-29 14:30:57 +02:00
cipher_encrypt( cipher_hd, sk->protect.iv, sk->protect.iv, 8 );
/* NOTE: we always recalculate the checksum because there are some
* test releases which calculated it wrong */
csum = 0;
1998-06-29 14:30:57 +02:00
for(i=pubkey_get_npkey(sk->pubkey_algo);
i < pubkey_get_nskey(sk->pubkey_algo); i++ ) {
csum += checksum_mpi_counted_nbits( sk->skey[i] );
buffer = mpi_get_buffer( sk->skey[i], &nbytes, NULL );
cipher_sync( cipher_hd );
1998-06-29 14:30:57 +02:00
assert( !mpi_is_protected(sk->skey[i]) );
cipher_encrypt( cipher_hd, buffer, buffer, nbytes );
1998-06-29 14:30:57 +02:00
mpi_set_buffer( sk->skey[i], buffer, nbytes, 0 );
mpi_set_protect_flag( sk->skey[i] );
m_free( buffer );
}
1998-06-29 14:30:57 +02:00
sk->csum = csum;
sk->is_protected = 1;
1998-04-07 20:16:10 +02:00
cipher_close( cipher_hd );
1998-04-02 12:30:03 +02:00
}
}
return rc;
1997-11-24 23:24:04 +01:00
}
1997-11-18 15:06:00 +01:00