1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-31 22:18:03 +02:00
gnupg/g10/seckey-cert.c

330 lines
8.8 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"
1997-11-24 23:24:04 +01:00
#if BLOWFISH_BLOCKSIZE != 8
#error unsupportted blocksize
#endif
1997-11-18 15:06:00 +01:00
static u16
1997-12-09 13:46:23 +01:00
checksum_u16( unsigned n )
1997-11-18 15:06:00 +01:00
{
1997-12-09 13:46:23 +01:00
u16 a;
a = (n >> 8) & 0xff;
a |= n & 0xff;
return a;
}
static u16
checksum( byte *p, unsigned n )
{
u16 a;
1997-11-18 15:06:00 +01:00
for(a=0; n; n-- )
a += *p++;
return a;
}
1997-11-24 23:24:04 +01:00
static int
1997-12-01 11:33:23 +01:00
check_elg( PKT_secret_cert *cert )
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;
1997-11-18 15:06:00 +01:00
int res;
1997-12-09 13:46:23 +01:00
unsigned nbytes;
1997-11-18 15:06:00 +01:00
u32 keyid[2];
1997-11-24 23:24:04 +01:00
ELG_secret_key skey;
1998-01-02 21:40:10 +01:00
char save_iv[8];
1997-11-18 15:06:00 +01:00
1997-11-24 23:24:04 +01:00
if( cert->d.elg.is_protected ) { /* remove the protection */
DEK *dek = NULL;
1997-12-09 13:46:23 +01:00
MPI test_x;
1997-11-24 23:24:04 +01:00
BLOWFISH_context *blowfish_ctx=NULL;
1998-02-24 19:50:46 +01:00
switch( cert->d.elg.protect.algo ) {
1998-01-16 22:15:24 +01:00
case CIPHER_ALGO_NONE: BUG(); break;
1997-11-24 23:24:04 +01:00
case CIPHER_ALGO_BLOWFISH:
keyid_from_skc( cert, keyid );
1998-02-24 19:50:46 +01:00
if( cert->d.elg.protect.s2k == 1
|| cert->d.elg.protect.s2k == 3 )
dek = get_passphrase_hash( keyid, NULL,
cert->d.elg.protect.salt );
else
dek = get_passphrase_hash( keyid, NULL, NULL );
1997-11-24 23:24:04 +01:00
blowfish_ctx = m_alloc_secure( sizeof *blowfish_ctx );
1997-12-09 13:46:23 +01:00
blowfish_setkey( blowfish_ctx, dek->key, dek->keylen );
m_free(dek); /* pw is in secure memory, so m_free() burns it */
blowfish_setiv( blowfish_ctx, NULL );
1998-02-24 19:50:46 +01:00
memcpy(save_iv, cert->d.elg.protect.iv, 8 );
1997-11-24 23:24:04 +01:00
blowfish_decode_cfb( blowfish_ctx,
1998-02-24 19:50:46 +01:00
cert->d.elg.protect.iv,
cert->d.elg.protect.iv, 8 );
1998-02-02 15:36:06 +01:00
mpi_set_secure(cert->d.elg.x );
1998-02-24 19:50:46 +01:00
/*fixme: maybe it is better to set the buffer secure with a
1998-02-02 15:36:06 +01:00
* new get_buffer_secure() function */
1997-12-09 13:46:23 +01:00
buffer = mpi_get_buffer( cert->d.elg.x, &nbytes, NULL );
csum = checksum_u16( nbytes*8 );
blowfish_decode_cfb( blowfish_ctx, buffer, buffer, nbytes );
csum += checksum( buffer, nbytes );
test_x = mpi_alloc_secure( mpi_get_nlimbs(cert->d.elg.x) );
mpi_set_buffer( test_x, buffer, nbytes, 0 );
m_free( buffer );
1997-11-24 23:24:04 +01:00
m_free( blowfish_ctx );
/* now let's see wether we have used the right passphrase */
1997-12-09 13:46:23 +01:00
if( csum != cert->d.elg.csum ) {
mpi_free(test_x);
1998-02-24 19:50:46 +01:00
memcpy( cert->d.elg.protect.iv, save_iv, 8 );
1997-11-24 23:24:04 +01:00
return G10ERR_BAD_PASS;
1997-12-09 13:46:23 +01:00
}
1997-11-18 15:06:00 +01:00
1997-11-24 23:24:04 +01:00
skey.p = cert->d.elg.p;
skey.g = cert->d.elg.g;
skey.y = cert->d.elg.y;
1997-12-09 13:46:23 +01:00
skey.x = test_x;
1997-11-24 23:24:04 +01:00
res = elg_check_secret_key( &skey );
memset( &skey, 0, sizeof skey );
1997-12-09 13:46:23 +01:00
if( !res ) {
mpi_free(test_x);
1998-02-24 19:50:46 +01:00
memcpy( cert->d.elg.protect.iv, save_iv, 8 );
1997-11-24 23:24:04 +01:00
return G10ERR_BAD_PASS;
1997-12-09 13:46:23 +01:00
}
mpi_set(cert->d.elg.x, test_x);
mpi_free(test_x);
cert->d.elg.is_protected = 0;
1997-11-24 23:24:04 +01:00
break;
default:
return G10ERR_CIPHER_ALGO; /* unsupport protection algorithm */
}
}
1997-12-09 13:46:23 +01:00
else { /* not protected */
buffer = mpi_get_buffer( cert->d.elg.x, &nbytes, NULL );
csum = checksum_u16( nbytes*8 );
csum += checksum( buffer, nbytes );
m_free( buffer );
if( csum != cert->d.elg.csum )
return G10ERR_CHECKSUM;
}
return 0;
}
static int
protect_elg( PKT_secret_cert *cert, DEK *dek )
{
byte *buffer;
unsigned nbytes;
if( !cert->d.elg.is_protected ) { /* add the protection */
BLOWFISH_context *blowfish_ctx=NULL;
1998-02-24 19:50:46 +01:00
switch( cert->d.elg.protect.algo ) {
1998-01-16 22:15:24 +01:00
case CIPHER_ALGO_NONE: BUG(); break;
1997-12-09 13:46:23 +01:00
case CIPHER_ALGO_BLOWFISH:
blowfish_ctx = m_alloc_secure( sizeof *blowfish_ctx );
blowfish_setkey( blowfish_ctx, dek->key, dek->keylen );
blowfish_setiv( blowfish_ctx, NULL );
blowfish_encode_cfb( blowfish_ctx,
1998-02-24 19:50:46 +01:00
cert->d.elg.protect.iv,
cert->d.elg.protect.iv, 8 );
1997-12-09 13:46:23 +01:00
buffer = mpi_get_buffer( cert->d.elg.x, &nbytes, NULL );
blowfish_encode_cfb( blowfish_ctx, buffer, buffer, nbytes );
mpi_set_buffer( cert->d.elg.x, buffer, nbytes, 0 );
m_free( buffer );
m_free( blowfish_ctx );
cert->d.elg.is_protected = 1;
break;
default:
return G10ERR_CIPHER_ALGO; /* unsupport protection algorithm */
}
1997-11-24 23:24:04 +01:00
}
return 0;
}
#ifdef HAVE_RSA_CIPHER
static int
1997-12-01 11:33:23 +01:00
check_rsa( PKT_secret_cert *cert )
1997-11-24 23:24:04 +01:00
{
1997-12-09 13:46:23 +01:00
byte *buffer;
1998-01-16 22:15:24 +01:00
u16 csum=0;
1997-11-24 23:24:04 +01:00
int res;
1997-12-09 13:46:23 +01:00
unsigned nbytes;
1997-11-24 23:24:04 +01:00
u32 keyid[2];
1997-12-09 13:46:23 +01:00
RSA_secret_key skey;
1997-11-18 15:06:00 +01:00
if( cert->d.rsa.is_protected ) { /* remove the protection */
DEK *dek = NULL;
BLOWFISH_context *blowfish_ctx=NULL;
switch( cert->d.rsa.protect_algo ) {
1997-12-09 13:46:23 +01:00
/* FIXME: use test variables to check for the correct key */
1998-01-16 22:15:24 +01:00
case CIPHER_ALGO_NONE: BUG(); break;
1997-11-18 15:06:00 +01:00
case CIPHER_ALGO_BLOWFISH:
1997-11-24 23:24:04 +01:00
keyid_from_skc( cert, keyid );
1997-11-18 15:06:00 +01:00
dek = get_passphrase_hash( keyid, NULL );
1997-11-24 12:04:11 +01:00
blowfish_ctx = m_alloc_secure( sizeof *blowfish_ctx );
1997-12-09 13:46:23 +01:00
blowfish_setkey( blowfish_ctx, dek->key, dek->keylen );
m_free(dek); /* pw is in secure memory, so m_free() burns it */
blowfish_setiv( blowfish_ctx, NULL );
1997-11-24 12:04:11 +01:00
blowfish_decode_cfb( blowfish_ctx,
cert->d.rsa.protect.blowfish.iv,
cert->d.rsa.protect.blowfish.iv, 8 );
1997-12-09 13:46:23 +01:00
csum = 0;
#define X(a) do { \
1998-02-02 15:36:06 +01:00
mpi_set_secure(cert->d.rsa.rsa_##a); \
1997-12-09 13:46:23 +01:00
buffer = mpi_get_buffer( cert->d.rsa.rsa_##a, &nbytes, NULL );\
csum += checksum_u16( nbytes*8 ); \
blowfish_decode_cfb( blowfish_ctx, buffer, buffer, nbytes ); \
csum += checksum( buffer, nbytes ); \
mpi_set_buffer(cert->d.rsa.rsa_##a, buffer, nbytes, 0 ); \
m_free( buffer ); \
} while(0)
1997-11-18 15:06:00 +01:00
X(d);
X(p);
X(q);
X(u);
#undef X
1997-12-09 13:46:23 +01:00
cert->d.rsa.is_protected = 0;
m_free( blowfish_ctx );
1997-11-18 15:06:00 +01:00
/* now let's see wether we have used the right passphrase */
1997-12-09 13:46:23 +01:00
if( csum != cert->d.rsa.csum )
1997-11-18 15:06:00 +01:00
return G10ERR_BAD_PASS;
1997-12-09 13:46:23 +01:00
skey.d = cert->d.rsa.rsa_d;
skey.p = cert->d.rsa.rsa_p;
skey.q = cert->d.rsa.rsa_q;
skey.u = cert->d.rsa.rsa_u;
res = rsa_check_secret_key( &skey );
memset( &skey, 0, sizeof skey );
if( !res )
1997-11-18 15:06:00 +01:00
return G10ERR_BAD_PASS;
break;
default:
1997-12-09 13:46:23 +01:00
return G10ERR_CIPHER_ALGO; /* unsupported protection algorithm */
1997-11-18 15:06:00 +01:00
}
}
1997-12-09 13:46:23 +01:00
else { /* not protected */
csum =0;
buffer = mpi_get_buffer( cert->d.rsa.rsa_d, &nbytes, NULL );
csum += checksum_u16( nbytes*8 );
csum += checksum( buffer, nbytes );
m_free( buffer );
buffer = mpi_get_buffer( cert->d.rsa.rsa_p, &nbytes, NULL );
csum += checksum_u16( nbytes*8 );
csum += checksum( buffer, nbytes );
m_free( buffer );
buffer = mpi_get_buffer( cert->d.rsa.rsa_q, &nbytes, NULL );
csum += checksum_u16( nbytes*8 );
csum += checksum( buffer, nbytes );
m_free( buffer );
buffer = mpi_get_buffer( cert->d.rsa.rsa_u, &nbytes, NULL );
csum += checksum_u16( nbytes*8 );
csum += checksum( buffer, nbytes );
m_free( buffer );
if( csum != cert->d.rsa.csum )
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
#endif /*HAVE_RSA_CIPHER*/
1997-11-18 15:06:00 +01:00
1997-11-24 23:24:04 +01:00
/****************
* Check the secret key certificate
1997-12-09 13:46:23 +01:00
* Ask up to 3 time for a correct passphrase
1997-11-24 23:24:04 +01:00
*/
int
1997-12-01 11:33:23 +01:00
check_secret_key( PKT_secret_cert *cert )
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 )
log_error("Invalid passphrase; please try again ...\n");
if( cert->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
rc = check_elg( cert );
#ifdef HAVE_RSA_CIPHER
else if( cert->pubkey_algo == PUBKEY_ALGO_RSA )
rc = check_rsa( cert );
#endif
else
rc = G10ERR_PUBKEY_ALGO;
1998-01-02 21:40:10 +01:00
if( get_passphrase_fd() != -1 )
break;
1997-12-09 13:46:23 +01:00
}
return rc;
}
1998-01-06 22:01:36 +01:00
/****************
* check wether the secret key is protected.
* Returns: 0 not protected, -1 on error or the protection algorithm
*/
int
is_secret_key_protected( PKT_secret_cert *cert )
{
if( cert->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
1998-02-24 19:50:46 +01:00
return cert->d.elg.is_protected? cert->d.elg.protect.algo : 0;
1998-01-06 22:01:36 +01:00
#ifdef HAVE_RSA_CIPHER
else if( cert->pubkey_algo == PUBKEY_ALGO_RSA )
return cert->d.rsa.is_protected? cert->d.rsa.protect_algo : 0;
#endif
else
return -1; /* unsupported */
}
1997-12-09 13:46:23 +01:00
/****************
* Protect the secret key certificate with the passphrase from DEK
*/
int
protect_secret_key( PKT_secret_cert *cert, DEK *dek )
{
if( !dek )
return 0;
1997-11-24 23:24:04 +01:00
if( cert->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
1997-12-09 13:46:23 +01:00
return protect_elg( cert, dek );
1997-11-24 23:24:04 +01:00
else
return G10ERR_PUBKEY_ALGO;
}
1997-11-18 15:06:00 +01:00