2014-11-18 12:18:24 +08:00
/*
2014-12-04 02:00:37 +08:00
Copyright ( C ) 2014 by Project Tox < https : //tox.im>
2014-11-18 12:18:24 +08:00
2014-12-04 02:00:37 +08:00
This file is part of qTox , a Qt - based graphical interface for Tox .
2014-11-18 12:18:24 +08:00
2014-12-04 02:00:37 +08:00
This program is libre software : you can redistribute it and / or modify
2014-11-18 12:18:24 +08:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program 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 COPYING file for more details .
*/
/* This file is part of the Core class, but was separated for my sanity */
2014-12-04 02:00:37 +08:00
/* The load function delegates to loadEncrypted here, and the save function */
/* was permanently moved here to handle encryption */
2014-11-18 12:18:24 +08:00
# include "core.h"
2015-02-07 02:01:31 +08:00
# include "src/widget/gui.h"
2014-11-18 12:18:24 +08:00
# include <tox/tox.h>
# include <tox/toxencryptsave.h>
# include "src/misc/settings.h"
# include "misc/cstring.h"
# include "historykeeper.h"
# include <QApplication>
# include <QDebug>
# include <QSaveFile>
# include <QFile>
2015-01-28 08:28:44 +08:00
# include <QThread>
2014-11-18 12:18:24 +08:00
void Core : : setPassword ( QString & password , PasswordType passtype , uint8_t * salt )
{
2014-12-09 06:40:20 +08:00
clearPassword ( passtype ) ;
2014-11-18 12:18:24 +08:00
if ( password . isEmpty ( ) )
return ;
2014-12-09 06:40:20 +08:00
pwsaltedkeys [ passtype ] = new uint8_t [ tox_pass_key_length ( ) ] ;
2014-11-18 12:18:24 +08:00
CString str ( password ) ;
if ( salt )
tox_derive_key_with_salt ( str . data ( ) , str . size ( ) , salt , pwsaltedkeys [ passtype ] ) ;
else
tox_derive_key_from_pass ( str . data ( ) , str . size ( ) , pwsaltedkeys [ passtype ] ) ;
password . clear ( ) ;
}
2015-01-16 11:41:10 +08:00
# include <algorithm>
2014-11-27 23:38:23 +08:00
void Core : : useOtherPassword ( PasswordType type )
{
clearPassword ( type ) ;
2015-01-16 11:41:10 +08:00
pwsaltedkeys [ type ] = new uint8_t [ tox_pass_key_length ( ) ] ;
PasswordType other = ( type = = ptMain ) ? ptHistory : ptMain ;
std : : copy ( pwsaltedkeys [ other ] , pwsaltedkeys [ other ] + tox_pass_key_length ( ) , pwsaltedkeys [ type ] ) ;
2014-11-27 23:38:23 +08:00
}
2014-11-18 12:18:24 +08:00
void Core : : clearPassword ( PasswordType passtype )
{
2014-12-10 09:06:09 +08:00
delete [ ] pwsaltedkeys [ passtype ] ;
pwsaltedkeys [ passtype ] = nullptr ;
2014-11-18 12:18:24 +08:00
}
2015-01-28 04:16:28 +08:00
// part of a hack, see core.h
void Core : : saveCurrentInformation ( )
{
if ( pwsaltedkeys [ ptMain ] )
{
backupkeys [ ptMain ] = new uint8_t [ tox_pass_key_length ( ) ] ;
std : : copy ( pwsaltedkeys [ ptMain ] , pwsaltedkeys [ ptMain ] + tox_pass_key_length ( ) , backupkeys [ ptMain ] ) ;
}
if ( pwsaltedkeys [ ptHistory ] )
{
backupkeys [ ptHistory ] = new uint8_t [ tox_pass_key_length ( ) ] ;
std : : copy ( pwsaltedkeys [ ptHistory ] , pwsaltedkeys [ ptHistory ] + tox_pass_key_length ( ) , backupkeys [ ptHistory ] ) ;
}
backupProfile = new QString ( Settings : : getInstance ( ) . getCurrentProfile ( ) ) ;
}
QString Core : : loadOldInformation ( )
{
QString out ;
if ( backupProfile )
{
out = * backupProfile ;
delete backupProfile ;
backupProfile = nullptr ;
}
backupProfile = nullptr ;
clearPassword ( ptMain ) ;
clearPassword ( ptHistory ) ;
// we can just copy the pointer, as long as we null out backupkeys
// (if backupkeys was null anyways, then this is a null-op)
pwsaltedkeys [ ptMain ] = backupkeys [ ptMain ] ;
pwsaltedkeys [ ptHistory ] = backupkeys [ ptHistory ] ;
backupkeys [ ptMain ] = nullptr ;
backupkeys [ ptHistory ] = nullptr ;
return out ;
}
2014-11-18 12:18:24 +08:00
QByteArray Core : : encryptData ( const QByteArray & data , PasswordType passtype )
{
if ( ! pwsaltedkeys [ passtype ] )
return QByteArray ( ) ;
uint8_t encrypted [ data . size ( ) + tox_pass_encryption_extra_length ( ) ] ;
if ( tox_pass_key_encrypt ( reinterpret_cast < const uint8_t * > ( data . data ( ) ) , data . size ( ) , pwsaltedkeys [ passtype ] , encrypted ) = = - 1 )
{
qWarning ( ) < < " Core::encryptData: encryption failed " ;
return QByteArray ( ) ;
}
return QByteArray ( reinterpret_cast < char * > ( encrypted ) , data . size ( ) + tox_pass_encryption_extra_length ( ) ) ;
}
QByteArray Core : : decryptData ( const QByteArray & data , PasswordType passtype )
{
if ( ! pwsaltedkeys [ passtype ] )
return QByteArray ( ) ;
int sz = data . size ( ) - tox_pass_encryption_extra_length ( ) ;
uint8_t decrypted [ sz ] ;
int decr_size = tox_pass_key_decrypt ( reinterpret_cast < const uint8_t * > ( data . data ( ) ) , data . size ( ) , pwsaltedkeys [ passtype ] , decrypted ) ;
if ( decr_size ! = sz )
{
qWarning ( ) < < " Core::decryptData: decryption failed " ;
return QByteArray ( ) ;
}
return QByteArray ( reinterpret_cast < char * > ( decrypted ) , sz ) ;
}
bool Core : : isPasswordSet ( PasswordType passtype )
{
if ( pwsaltedkeys [ passtype ] )
return true ;
return false ;
}
QByteArray Core : : getSaltFromFile ( QString filename )
{
QFile file ( filename ) ;
2014-12-10 08:08:38 +08:00
if ( ! file . open ( QIODevice : : ReadOnly ) )
{
2015-01-20 11:49:41 +08:00
qWarning ( ) < < " Core: file " < < filename < < " doesn't exist " ;
2014-12-10 08:08:38 +08:00
return QByteArray ( ) ;
}
2014-11-18 12:18:24 +08:00
QByteArray data = file . read ( tox_pass_encryption_extra_length ( ) ) ;
file . close ( ) ;
uint8_t * salt = new uint8_t [ tox_pass_salt_length ( ) ] ;
int err = tox_get_salt ( reinterpret_cast < uint8_t * > ( data . data ( ) ) , salt ) ;
if ( err )
{
qWarning ( ) < < " Core: can't get salt from " < < filename < < " header " ;
return QByteArray ( ) ;
}
QByteArray res = QByteArray : : fromRawData ( reinterpret_cast < const char * > ( salt ) , tox_pass_salt_length ( ) ) ;
return res ;
}
2014-11-18 14:34:31 +08:00
bool Core : : loadEncryptedSave ( QByteArray & data )
{
if ( ! Settings : : getInstance ( ) . getEncryptTox ( ) )
2015-02-07 02:01:31 +08:00
GUI : : showWarning ( tr ( " Encryption error " ) , tr ( " The .tox file is encrypted, but encryption was not checked, continuing regardless. " ) ) ;
2014-11-18 14:34:31 +08:00
int error = - 1 ;
2015-01-20 11:59:27 +08:00
QString a ( tr ( " Please enter the password for the %1 profile. " , " used in load() when no pw is already set " ).arg(Settings::getInstance().getCurrentProfile())) ;
2014-11-18 14:34:31 +08:00
QString b ( tr ( " The previous password is incorrect; please try again: " , " used on retries in load() " ) ) ;
QString dialogtxt ;
if ( pwsaltedkeys [ ptMain ] ) // password set, try it
{
error = tox_encrypted_key_load ( tox , reinterpret_cast < uint8_t * > ( data . data ( ) ) , data . size ( ) , pwsaltedkeys [ ptMain ] ) ;
if ( ! error )
{
Settings : : getInstance ( ) . setEncryptTox ( true ) ;
return true ;
}
2015-02-04 01:58:37 +08:00
dialogtxt = tr ( " The profile password failed. Please try another? " , " used only when pw set before load() doesn't work " ) ;
2014-11-18 14:34:31 +08:00
}
else
dialogtxt = a ;
uint8_t salt [ tox_pass_salt_length ( ) ] ;
tox_get_salt ( reinterpret_cast < uint8_t * > ( data . data ( ) ) , salt ) ;
2014-12-06 08:18:43 +08:00
2014-11-18 14:34:31 +08:00
do
{
2015-02-07 02:01:31 +08:00
QString pw = GUI : : passwordDialog ( tr ( " Change profile " ) , dialogtxt ) ;
2014-11-18 14:34:31 +08:00
2014-12-06 08:18:43 +08:00
if ( pw . isEmpty ( ) )
2014-11-18 14:34:31 +08:00
{
clearPassword ( ptMain ) ;
return false ;
}
2014-12-06 08:18:43 +08:00
else
setPassword ( pw , ptMain , salt ) ;
2014-11-18 14:34:31 +08:00
error = tox_encrypted_key_load ( tox , reinterpret_cast < uint8_t * > ( data . data ( ) ) , data . size ( ) , pwsaltedkeys [ ptMain ] ) ;
2015-01-23 21:05:46 +08:00
dialogtxt = a + " \n " + b ;
2014-11-18 14:34:31 +08:00
} while ( error ! = 0 ) ;
Settings : : getInstance ( ) . setEncryptTox ( true ) ;
return true ;
}
void Core : : checkEncryptedHistory ( )
{
2015-01-20 11:49:41 +08:00
QString path = HistoryKeeper : : getHistoryPath ( ) ;
bool exists = QFile : : exists ( path ) ;
2014-11-18 14:34:31 +08:00
2015-01-20 11:49:41 +08:00
QByteArray salt = getSaltFromFile ( path ) ;
if ( exists & & salt . size ( ) = = 0 )
2014-11-18 14:34:31 +08:00
{ // maybe we should handle this better
2015-02-07 02:01:31 +08:00
GUI : : showWarning ( tr ( " Encrypted chat history " ) , tr ( " No encrypted chat history file found, or it was corrupted. \n History will be disabled! " ) ) ;
2014-11-18 14:34:31 +08:00
Settings : : getInstance ( ) . setEncryptLogs ( false ) ;
Settings : : getInstance ( ) . setEnableLogging ( false ) ;
2015-01-28 07:25:41 +08:00
HistoryKeeper : : resetInstance ( ) ;
2014-11-18 14:34:31 +08:00
return ;
}
2015-02-04 01:58:37 +08:00
QString a ( tr ( " Please enter the password for the chat history for the %1 profile. " , " used in load() when no hist pw set " ).arg(Settings::getInstance().getCurrentProfile())) ;
2014-11-18 14:34:31 +08:00
QString b ( tr ( " The previous password is incorrect; please try again: " , " used on retries in load() " ) ) ;
2015-02-05 06:11:21 +08:00
QString c ( tr ( " \n Disabling chat history now will leave the encrypted history intact (but not usable) ; if you later remember the password , you may re - enable encryption from the Privacy tab with the correct password to use the history . " , " part of history password dialog " ));
2014-11-18 14:34:31 +08:00
QString dialogtxt ;
if ( pwsaltedkeys [ ptHistory ] )
{
2015-01-20 11:49:41 +08:00
if ( ! exists | | HistoryKeeper : : checkPassword ( ) )
2014-11-18 14:34:31 +08:00
return ;
2015-02-04 01:58:37 +08:00
dialogtxt = tr ( " The chat history password failed. Please try another? " , " used only when pw set before load() doesn't work " ) ;
2014-11-18 14:34:31 +08:00
}
else
dialogtxt = a ;
2015-02-04 08:22:05 +08:00
dialogtxt + = " \n " + c ;
2014-11-18 14:34:31 +08:00
2014-12-10 08:40:05 +08:00
if ( pwsaltedkeys [ ptMain ] )
{
useOtherPassword ( ptHistory ) ;
2015-01-20 11:49:41 +08:00
if ( ! exists | | HistoryKeeper : : checkPassword ( ) )
{
2015-02-04 01:58:37 +08:00
qDebug ( ) < < " Core: using main password for chat history " ;
2014-12-10 08:40:05 +08:00
return ;
2015-01-20 11:49:41 +08:00
}
2014-12-10 08:40:05 +08:00
clearPassword ( ptHistory ) ;
}
2014-11-18 14:34:31 +08:00
bool error = true ;
do
{
2015-02-07 02:01:31 +08:00
QString pw = GUI : : passwordDialog ( tr ( " Disable chat history " ) , dialogtxt ) ;
2014-11-18 14:34:31 +08:00
2014-12-06 08:18:43 +08:00
if ( pw . isEmpty ( ) )
2014-11-18 14:34:31 +08:00
{
clearPassword ( ptHistory ) ;
Settings : : getInstance ( ) . setEncryptLogs ( false ) ;
Settings : : getInstance ( ) . setEnableLogging ( false ) ;
2015-01-28 07:25:41 +08:00
HistoryKeeper : : resetInstance ( ) ;
2014-11-18 14:34:31 +08:00
return ;
}
2014-12-06 08:18:43 +08:00
else
setPassword ( pw , ptHistory , reinterpret_cast < uint8_t * > ( salt . data ( ) ) ) ;
2014-11-18 14:34:31 +08:00
2015-01-20 11:49:41 +08:00
error = exists & & ! HistoryKeeper : : checkPassword ( ) ;
2015-02-04 08:22:05 +08:00
dialogtxt = a + " \n " + c + " \n " + b ;
2014-11-18 14:34:31 +08:00
} while ( error ) ;
}
void Core : : saveConfiguration ( const QString & path )
{
2015-01-28 08:28:44 +08:00
if ( QThread : : currentThread ( ) ! = coreThread )
return ( void ) QMetaObject : : invokeMethod ( this , " saveConfiguration " , Q_ARG ( const QString & , path ) ) ;
2015-01-23 22:18:46 +08:00
if ( ! isReady ( ) )
2014-11-18 14:34:31 +08:00
{
qWarning ( ) < < " Core::saveConfiguration: Tox not started, aborting! " ;
return ;
}
QSaveFile configurationFile ( path ) ;
if ( ! configurationFile . open ( QIODevice : : WriteOnly ) ) {
qCritical ( ) < < " File " < < path < < " cannot be opened " ;
return ;
}
qDebug ( ) < < " Core: writing tox_save to " < < path ;
uint32_t fileSize ; bool encrypt = Settings : : getInstance ( ) . getEncryptTox ( ) ;
if ( encrypt )
fileSize = tox_encrypted_size ( tox ) ;
else
fileSize = tox_size ( tox ) ;
2015-02-06 08:27:07 +08:00
if ( fileSize > 0 & & fileSize < = std : : numeric_limits < int32_t > : : max ( ) ) {
2014-11-18 14:34:31 +08:00
uint8_t * data = new uint8_t [ fileSize ] ;
if ( encrypt )
{
if ( ! pwsaltedkeys [ ptMain ] )
{
// probably zero chance event
2015-02-07 02:01:31 +08:00
GUI : : showWarning ( tr ( " NO Password " ) , tr ( " Encryption is enabled, but there is no password! Encryption will be disabled. " ) ) ;
2014-12-05 04:21:48 +08:00
Settings : : getInstance ( ) . setEncryptTox ( false ) ;
2014-11-18 14:34:31 +08:00
tox_save ( tox , data ) ;
}
else
{
int ret = tox_encrypted_key_save ( tox , data , pwsaltedkeys [ ptMain ] ) ;
if ( ret = = - 1 )
{
qCritical ( ) < < " Core::saveConfiguration: encryption of save file failed!!! " ;
return ;
}
}
}
else
tox_save ( tox , data ) ;
configurationFile . write ( reinterpret_cast < char * > ( data ) , fileSize ) ;
configurationFile . commit ( ) ;
delete [ ] data ;
}
2015-01-27 09:22:38 +08:00
Settings : : getInstance ( ) . save ( ) ;
2014-11-18 14:34:31 +08:00
}