2014-11-19 02:23:05 +00:00
/*
* Copyright ( C ) 2008 , 2009 , 2010 , 2011 , 2012 , 2013 Rolf Eike Beer < kde @ opensource . sf - tec . de >
*/
/***************************************************************************
* *
* This program 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 . *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include "kgpggeneratekey.h"
2014-11-23 18:39:17 +00:00
# include "misc.h"
2014-11-19 02:23:05 +00:00
# include "gpgproc.h"
# include <KLocale>
# include <KMessageBox>
# include <QApplication>
KGpgGenerateKey : : KGpgGenerateKey ( QObject * parent , const QString & name , const QString & email , const QString & comment ,
const KgpgCore : : KgpgKeyAlgo & algorithm , const uint size , const unsigned int expire ,
const char expireunit , const KgpgCore : : KgpgSubKeyType capabilities )
: KGpgTransaction ( parent ) ,
m_name ( name ) ,
m_email ( email ) ,
m_comment ( comment ) ,
m_algorithm ( algorithm ) ,
m_capabilities ( capabilities ) ,
m_size ( size ) ,
m_expire ( expire ) ,
m_expireunit ( expireunit )
{
Q_ASSERT ( ( expireunit = = ' d ' ) | | ( expireunit = = ' w ' ) | |
( expireunit = = ' m ' ) | | ( expireunit = = ' y ' ) ) ;
addArgument ( QLatin1String ( " --status-fd=1 " ) ) ;
addArgument ( QLatin1String ( " --command-fd=0 " ) ) ;
addArgument ( QLatin1String ( " --no-verbose " ) ) ;
addArgument ( QLatin1String ( " --gen-key " ) ) ;
addArgument ( QLatin1String ( " --batch " ) ) ;
getProcess ( ) - > setOutputChannelMode ( KProcess : : SeparateChannels ) ;
}
KGpgGenerateKey : : ~ KGpgGenerateKey ( )
{
}
bool
KGpgGenerateKey : : preStart ( )
{
if ( ! m_email . isEmpty ( ) & & ! KPIMUtils : : isValidSimpleAddress ( m_email ) ) {
setSuccess ( TS_INVALID_EMAIL ) ;
return false ;
}
m_fingerprint . clear ( ) ;
setSuccess ( TS_MSG_SEQUENCE ) ;
setDescription ( i18n ( " Generating New Key for %1 " , m_name ) ) ;
return true ;
}
void
KGpgGenerateKey : : postStart ( )
{
QByteArray keymessage = " Key-Type: " ;
switch ( m_algorithm ) {
case KgpgCore : : ALGO_RSA :
keymessage . append ( " RSA " ) ;
break ;
case KgpgCore : : ALGO_RSA_RSA :
keymessage . append ( " RSA \n Subkey-Type: RSA " ) ;
break ;
case KgpgCore : : ALGO_DSA_ELGAMAL :
keymessage . append ( " DSA \n Subkey-Type: ELG-E " ) ;
break ;
default :
Q_ASSERT ( m_algorithm = = KgpgCore : : ALGO_RSA ) ;
return ;
}
const QByteArray keylen = QByteArray : : number ( m_size ) ;
keymessage . append ( " \n Key-Length: " ) ;
keymessage . append ( keylen ) ;
keymessage . append ( " \n Subkey-Length: " ) ;
keymessage . append ( keylen ) ;
keymessage . append ( " \n Name-Real: " ) ;
keymessage . append ( m_name . toUtf8 ( ) ) ;
if ( ! m_email . isEmpty ( ) ) {
keymessage . append ( " \n Name-Email: " ) ;
keymessage . append ( m_email . toAscii ( ) ) ;
}
if ( ! m_comment . isEmpty ( ) ) {
keymessage . append ( " \n Name-Comment: " ) ;
keymessage . append ( m_comment . toUtf8 ( ) ) ;
}
if ( m_expire ! = 0 ) {
keymessage . append ( " \n Expire-Date: " ) ;
keymessage . append ( QByteArray : : number ( m_expire ) ) ;
keymessage . append ( m_expireunit ) ;
}
if ( m_capabilities ) {
keymessage . append ( " \n Key-Usage: " ) ;
QStringList usage ;
#if 0
// GnuPG always adds cert, but it does not allow this to be
// explicitly specified
if ( m_capabilities & KgpgCore : : SKT_CERTIFICATION )
usage < < QLatin1String ( " cert " ) ;
# endif
if ( m_capabilities & KgpgCore : : SKT_AUTHENTICATION )
usage < < QLatin1String ( " auth " ) ;
if ( m_capabilities & KgpgCore : : SKT_ENCRYPTION )
usage < < QLatin1String ( " encrypt " ) ;
if ( m_capabilities & KgpgCore : : SKT_SIGNATURE )
usage < < QLatin1String ( " sign " ) ;
keymessage . append ( usage . join ( QLatin1String ( " " ) ) . toAscii ( ) ) ;
}
keymessage . append ( " \n Passphrase: " ) ;
write ( keymessage , false ) ;
QString passdlgmessage ;
if ( ! m_email . isEmpty ( ) ) {
passdlgmessage = i18n ( " <p><b>Enter passphrase for %1 <%2></b>:<br />Passphrase should include non alphanumeric characters and random sequences.</p> " ,
m_name , m_email ) ;
} else {
passdlgmessage = i18n ( " <p><b>Enter passphrase for %1</b>:<br />Passphrase should include non alphanumeric characters and random sequences.</p> " ,
m_name ) ;
}
QApplication : : restoreOverrideCursor ( ) ;
askNewPassphrase ( passdlgmessage ) ;
}
bool
KGpgGenerateKey : : nextLine ( const QString & line )
{
QString msg = i18n ( " Generating Key " ) ;
if ( ! line . startsWith ( QLatin1String ( " [GNUPG:] " ) ) )
return false ;
int result = false ;
if ( line . contains ( QLatin1String ( " PROGRESS " ) ) ) {
const QStringList parts = line . mid ( 18 ) . split ( QLatin1Char ( ' ' ) ) ;
if ( parts . count ( ) > = 4 ) {
const QString p0 ( parts . at ( 0 ) ) ;
if ( p0 = = QLatin1String ( " primegen " ) ) {
msg = i18n ( " Generating prime numbers " ) ;
} else if ( p0 = = QLatin1String ( " pk_dsa " ) ) {
msg = i18n ( " Generating DSA key " ) ;
} else if ( p0 = = QLatin1String ( " pk_elg " ) ) {
msg = i18n ( " Generating ElGamal key " ) ;
} else if ( p0 = = QLatin1String ( " need_entropy " ) ) {
msg = i18n ( " Waiting for entropy " ) ;
// This message is currenlty not displayed. Nevertheless it's
// included here so string freeze is not broken if it will be
// displayed later on.
QString msglong = i18n ( " The entropy pool ran empty. The key generation process is stalled until enough entropy is present. You can generate entropy e.g. by moving the mouse or typing at the keyboard. The easiest way is by using another application until the key generation continues. " ) ;
}
if ( parts . at ( 3 ) ! = QLatin1String ( " 0 " ) )
emit infoProgress ( parts . at ( 2 ) . toUInt ( ) , parts . at ( 3 ) . toUInt ( ) ) ;
}
} else if ( line . contains ( QLatin1String ( " GOOD_PASSPHRASE " ) ) ) {
setSuccess ( TS_MSG_SEQUENCE ) ;
} else if ( line . contains ( QLatin1String ( " KEY_CREATED " ) ) ) {
m_fingerprint = line . right ( 40 ) ;
setSuccess ( TS_OK ) ;
result = true ;
} else if ( line . contains ( QLatin1String ( " NEED_PASSPHRASE " ) ) ) {
setSuccess ( TS_USER_ABORTED ) ;
} else if ( line . contains ( QLatin1String ( " GET_ " ) ) ) {
setSuccess ( TS_MSG_SEQUENCE ) ;
result = true ;
} else if ( line . contains ( QLatin1String ( " KEY_NOT_CREATED " ) ) ) {
result = true ;
}
emit statusMessage ( msg ) ;
return result ;
}
void
KGpgGenerateKey : : finish ( )
{
switch ( getSuccess ( ) ) {
case TS_BAD_PASSPHRASE :
emit statusMessage ( i18n ( " Bad passphrase. Cannot generate a new key pair. " ) ) ;
break ;
case TS_USER_ABORTED :
emit statusMessage ( i18n ( " Aborted by the user. Cannot generate a new key pair. " ) ) ;
break ;
case TS_INVALID_EMAIL :
emit statusMessage ( i18n ( " The email address is not valid. Cannot generate a new key pair. " ) ) ;
break ;
case TS_INVALID_NAME :
emit statusMessage ( i18n ( " The name is not accepted by gpg. Cannot generate a new key pair. " ) ) ;
break ;
case TS_OK :
emit statusMessage ( i18n ( " Key %1 generated " , getFingerprint ( ) ) ) ;
break ;
default :
{
QStringList errorLines ;
while ( getProcess ( ) - > hasLineStandardError ( ) ) {
QByteArray b ;
getProcess ( ) - > readLineStandardError ( & b ) ;
errorLines < < QString : : fromUtf8 ( b ) ;
}
m_errorOutput = errorLines . join ( QLatin1String ( " \n " ) ) ;
emit statusMessage ( i18n ( " gpg process did not finish. Cannot generate a new key pair. " ) ) ;
}
}
}
void
KGpgGenerateKey : : newPassphraseEntered ( )
{
QApplication : : setOverrideCursor ( Qt : : BusyCursor ) ;
write ( " %commit " ) ;
}
QString
KGpgGenerateKey : : getName ( ) const
{
return m_name ;
}
QString
KGpgGenerateKey : : getEmail ( ) const
{
return m_email ;
}
QString
KGpgGenerateKey : : getFingerprint ( ) const
{
return m_fingerprint ;
}
QString
KGpgGenerateKey : : gpgErrorMessage ( ) const
{
return m_errorOutput ;
}
2015-02-27 11:02:43 +00:00
# include "moc_kgpggeneratekey.cpp"