1997-11-18 15:06:00 +01:00
|
|
|
/* passphrase.c - Get a passphrase
|
|
|
|
* Copyright (c) 1997 by Werner Koch (dd9jn)
|
|
|
|
*
|
|
|
|
* This file is part of G10.
|
|
|
|
*
|
|
|
|
* G10 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.
|
|
|
|
*
|
|
|
|
* G10 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>
|
1998-01-16 22:15:24 +01:00
|
|
|
#include <unistd.h>
|
1997-11-18 15:06:00 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include "util.h"
|
|
|
|
#include "memory.h"
|
1998-01-02 21:40:10 +01:00
|
|
|
#include "options.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
#include "ttyio.h"
|
|
|
|
#include "cipher.h"
|
1997-12-20 18:23:29 +01:00
|
|
|
#include "keydb.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-01-02 21:40:10 +01:00
|
|
|
static int pwfd = -1;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
static int hash_passphrase( DEK *dek, char *pw );
|
|
|
|
|
1998-01-02 21:40:10 +01:00
|
|
|
void
|
|
|
|
set_passphrase_fd( int fd )
|
|
|
|
{
|
|
|
|
pwfd = fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
get_passphrase_fd()
|
|
|
|
{
|
|
|
|
return pwfd;
|
|
|
|
}
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* Get a passphrase for the secret key with KEYID, display TEXT
|
|
|
|
* if the user needs to enter the passphrase.
|
|
|
|
* Returns: m_alloced md5 passphrase hash; caller must free
|
|
|
|
*/
|
|
|
|
DEK *
|
|
|
|
get_passphrase_hash( u32 *keyid, char *text )
|
|
|
|
{
|
1998-01-02 21:40:10 +01:00
|
|
|
char *pw;
|
1997-11-18 15:06:00 +01:00
|
|
|
DEK *dek;
|
|
|
|
|
1998-01-02 21:40:10 +01:00
|
|
|
if( keyid && !opt.batch ) {
|
1997-12-20 18:23:29 +01:00
|
|
|
char *ustr;
|
1998-01-02 21:40:10 +01:00
|
|
|
tty_printf("Need a pass phrase to unlock the secret key for:\n");
|
|
|
|
tty_printf(" \"" );
|
1997-12-20 18:23:29 +01:00
|
|
|
ustr = get_user_id_string( keyid );
|
|
|
|
tty_print_string( ustr, strlen(ustr) );
|
|
|
|
m_free(ustr);
|
1998-01-02 21:40:10 +01:00
|
|
|
tty_printf("\"\n\n");
|
1997-12-20 18:23:29 +01:00
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1998-01-02 21:40:10 +01:00
|
|
|
if( pwfd != -1 ) { /* read the passphrase from the given descriptor */
|
|
|
|
int i, len;
|
|
|
|
|
|
|
|
if( !opt.batch )
|
|
|
|
tty_printf("Reading from file descriptor %d ...", pwfd );
|
|
|
|
for( pw = NULL, i = len = 100; ; i++ ) {
|
|
|
|
if( i >= len-1 ) {
|
|
|
|
char *pw2 = pw;
|
|
|
|
len += 100;
|
|
|
|
pw = m_alloc_secure( len );
|
|
|
|
if( pw2 )
|
|
|
|
memcpy(pw, pw2, i );
|
|
|
|
i=0;
|
|
|
|
}
|
|
|
|
if( read( pwfd, pw+i, 1) != 1 || pw[i] == '\n' )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pw[i] = 0;
|
|
|
|
if( !opt.batch )
|
|
|
|
tty_printf("\b\b\b \n" );
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
1998-01-02 21:40:10 +01:00
|
|
|
else if( opt.batch )
|
|
|
|
log_fatal("Can't query password in batchmode\n");
|
|
|
|
else {
|
1997-11-18 15:06:00 +01:00
|
|
|
pw = tty_get_hidden("Enter pass phrase: " );
|
1998-01-02 21:40:10 +01:00
|
|
|
tty_kill_prompt();
|
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
dek = m_alloc_secure( sizeof *dek );
|
|
|
|
dek->algo = CIPHER_ALGO_BLOWFISH;
|
|
|
|
if( hash_passphrase( dek, pw ) )
|
|
|
|
log_bug("get_passphrase_hash\n");
|
|
|
|
m_free(pw); /* is allocated in secure memory, so it will be burned */
|
|
|
|
return dek;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* This function is used to construct a DEK from a user input.
|
|
|
|
* It uses the default CIPHER
|
1997-12-09 13:46:23 +01:00
|
|
|
* Returns: 0 = okay, -1 No passphrase entered, > 0 error
|
1997-11-18 15:06:00 +01:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
make_dek_from_passphrase( DEK *dek, int mode )
|
|
|
|
{
|
|
|
|
char *pw, *pw2;
|
|
|
|
int rc=0;
|
|
|
|
|
|
|
|
pw = tty_get_hidden("Enter pass phrase: " );
|
|
|
|
tty_kill_prompt();
|
|
|
|
if( mode == 2 ) {
|
|
|
|
pw2 = tty_get_hidden("Repeat pass phrase: " );
|
1998-01-02 21:40:10 +01:00
|
|
|
tty_kill_prompt();
|
1997-11-18 15:06:00 +01:00
|
|
|
if( strcmp(pw, pw2) ) {
|
|
|
|
m_free(pw2);
|
|
|
|
m_free(pw);
|
|
|
|
return G10ERR_PASSPHRASE;
|
|
|
|
}
|
|
|
|
m_free(pw2);
|
|
|
|
}
|
1997-12-09 13:46:23 +01:00
|
|
|
if( !*pw )
|
|
|
|
rc = -1;
|
|
|
|
else
|
|
|
|
rc = hash_passphrase( dek, pw );
|
1997-11-18 15:06:00 +01:00
|
|
|
m_free(pw);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
hash_passphrase( DEK *dek, char *pw )
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
dek->keylen = 0;
|
1997-11-24 12:04:11 +01:00
|
|
|
if( dek->algo == CIPHER_ALGO_BLOWFISH ) {
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
md = md_open(DIGEST_ALGO_RMD160, 1);
|
|
|
|
md_write( md, pw, strlen(pw) );
|
|
|
|
md_final( md );
|
1997-11-18 15:06:00 +01:00
|
|
|
dek->keylen = 20;
|
1998-01-12 11:18:17 +01:00
|
|
|
memcpy( dek->key, md_read(md,0), dek->keylen );
|
|
|
|
md_close(md);
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
rc = G10ERR_UNSUPPORTED;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|