2011-11-13 08:55:20 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
2017-06-09 17:40:36 -04:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-11-13 08:55:20 -05:00
|
|
|
*
|
|
|
|
* 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 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-06-28 03:21:15 -04:00
|
|
|
#include "DatabaseOpenWidget.h"
|
|
|
|
#include "ui_DatabaseOpenWidget.h"
|
2011-11-13 08:55:20 -05:00
|
|
|
|
2011-12-25 14:36:45 -05:00
|
|
|
#include "core/Config.h"
|
2012-06-28 03:21:15 -04:00
|
|
|
#include "core/Database.h"
|
2014-01-12 11:08:36 -05:00
|
|
|
#include "core/FilePath.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "crypto/Random.h"
|
|
|
|
#include "format/KeePass2Reader.h"
|
2011-12-25 19:21:29 -05:00
|
|
|
#include "gui/FileDialog.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "gui/MainWindow.h"
|
2013-10-08 16:09:20 -04:00
|
|
|
#include "gui/MessageBox.h"
|
2011-12-24 13:19:52 -05:00
|
|
|
#include "keys/FileKey.h"
|
2011-11-13 08:55:20 -05:00
|
|
|
#include "keys/PasswordKey.h"
|
2017-02-20 19:06:32 -05:00
|
|
|
#include "keys/YkChallengeResponseKey.h"
|
2018-04-04 11:39:26 -04:00
|
|
|
#include "touchid/TouchID.h"
|
2017-02-20 19:06:32 -05:00
|
|
|
|
|
|
|
#include "config-keepassx.h"
|
2014-05-26 03:49:28 -04:00
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QFont>
|
2019-06-25 01:45:22 -04:00
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QtConcurrentRun>
|
2011-11-13 08:55:20 -05:00
|
|
|
|
2012-06-28 03:21:15 -04:00
|
|
|
DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent)
|
2017-03-10 14:42:59 -05:00
|
|
|
: DialogyWidget(parent)
|
|
|
|
, m_ui(new Ui::DatabaseOpenWidget())
|
|
|
|
, m_db(nullptr)
|
2011-11-13 08:55:20 -05:00
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
2015-01-19 18:14:59 -05:00
|
|
|
m_ui->messageWidget->setHidden(true);
|
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
QFont font;
|
|
|
|
font.setPointSize(font.pointSize() + 4);
|
2012-07-02 12:47:12 -04:00
|
|
|
font.setBold(true);
|
|
|
|
m_ui->labelHeadline->setFont(font);
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->labelHeadline->setText(tr("Unlock KeePassXC Database"));
|
|
|
|
|
|
|
|
m_ui->comboKeyFile->lineEdit()->addAction(m_ui->keyFileClearIcon, QLineEdit::TrailingPosition);
|
2012-07-02 12:47:12 -04:00
|
|
|
|
2014-01-12 11:08:36 -05:00
|
|
|
m_ui->buttonTogglePassword->setIcon(filePath()->onOffIcon("actions", "password-show"));
|
2018-03-31 16:01:30 -04:00
|
|
|
connect(m_ui->buttonTogglePassword, SIGNAL(toggled(bool)), m_ui->editPassword, SLOT(setShowPassword(bool)));
|
2019-11-08 17:56:24 -05:00
|
|
|
connect(m_ui->buttonTogglePassword, SIGNAL(toggled(bool)), m_ui->editPassword, SLOT(setFocus()));
|
2011-12-24 13:19:52 -05:00
|
|
|
connect(m_ui->buttonBrowseFile, SIGNAL(clicked()), SLOT(browseKeyFile()));
|
|
|
|
|
2012-04-05 13:03:55 -04:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(openDatabase()));
|
2011-12-24 13:19:52 -05:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject()));
|
2017-01-14 20:08:48 -05:00
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->hardwareKeyLabelHelp->setIcon(filePath()->icon("actions", "system-help").pixmap(QSize(12, 12)));
|
|
|
|
connect(m_ui->hardwareKeyLabelHelp, SIGNAL(clicked(bool)), SLOT(openHardwareKeyHelp()));
|
2019-11-06 05:10:02 -05:00
|
|
|
m_ui->keyFileLabelHelp->setIcon(filePath()->icon("actions", "system-help").pixmap(QSize(12, 12)));
|
|
|
|
connect(m_ui->keyFileLabelHelp, SIGNAL(clicked(bool)), SLOT(openKeyFileHelp()));
|
2019-06-22 12:00:31 -04:00
|
|
|
|
|
|
|
connect(m_ui->comboKeyFile->lineEdit(), SIGNAL(textChanged(QString)), SLOT(handleKeyFileComboEdited()));
|
|
|
|
connect(m_ui->comboKeyFile, SIGNAL(currentIndexChanged(int)), SLOT(handleKeyFileComboChanged()));
|
|
|
|
m_ui->keyFileClearIcon->setIcon(filePath()->icon("actions", "edit-clear-locationbar-rtl"));
|
|
|
|
m_ui->keyFileClearIcon->setVisible(false);
|
|
|
|
connect(m_ui->keyFileClearIcon, SIGNAL(triggered(bool)), SLOT(clearKeyFileEdit()));
|
|
|
|
|
2017-02-20 19:06:32 -05:00
|
|
|
#ifdef WITH_XC_YUBIKEY
|
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
|
|
|
QSizePolicy sp = m_ui->yubikeyProgress->sizePolicy();
|
|
|
|
sp.setRetainSizeWhenHidden(true);
|
|
|
|
m_ui->yubikeyProgress->setSizePolicy(sp);
|
|
|
|
|
2017-02-20 16:07:01 -05:00
|
|
|
connect(m_ui->buttonRedetectYubikey, SIGNAL(clicked()), SLOT(pollYubikey()));
|
2017-02-20 19:06:32 -05:00
|
|
|
#else
|
2019-10-25 13:35:16 -04:00
|
|
|
m_ui->hardwareKeyLabel->setVisible(false);
|
|
|
|
m_ui->hardwareKeyLabelHelp->setVisible(false);
|
2017-02-20 19:06:32 -05:00
|
|
|
m_ui->buttonRedetectYubikey->setVisible(false);
|
|
|
|
m_ui->comboChallengeResponse->setVisible(false);
|
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
|
|
|
#endif
|
2017-02-20 14:24:38 -05:00
|
|
|
|
2018-04-04 11:39:26 -04:00
|
|
|
#ifndef WITH_XC_TOUCHID
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->touchIDContainer->setVisible(false);
|
2018-04-04 11:39:26 -04:00
|
|
|
#else
|
|
|
|
if (!TouchID::getInstance().isAvailable()) {
|
|
|
|
m_ui->checkTouchID->setVisible(false);
|
|
|
|
}
|
|
|
|
#endif
|
2012-06-28 03:21:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
DatabaseOpenWidget::~DatabaseOpenWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-26 09:37:25 -05:00
|
|
|
void DatabaseOpenWidget::showEvent(QShowEvent* event)
|
|
|
|
{
|
|
|
|
DialogyWidget::showEvent(event);
|
|
|
|
m_ui->editPassword->setFocus();
|
2017-02-20 20:19:11 -05:00
|
|
|
|
|
|
|
#ifdef WITH_XC_YUBIKEY
|
2017-10-24 09:25:38 -04:00
|
|
|
// showEvent() may be called twice, so make sure we are only polling once
|
|
|
|
if (!m_yubiKeyBeingPolled) {
|
2018-10-31 23:27:38 -04:00
|
|
|
// clang-format off
|
2018-11-22 05:47:31 -05:00
|
|
|
connect(YubiKey::instance(), SIGNAL(detected(int,bool)), SLOT(yubikeyDetected(int,bool)), Qt::QueuedConnection);
|
2017-10-24 09:25:38 -04:00
|
|
|
connect(YubiKey::instance(), SIGNAL(detectComplete()), SLOT(yubikeyDetectComplete()), Qt::QueuedConnection);
|
|
|
|
connect(YubiKey::instance(), SIGNAL(notFound()), SLOT(noYubikeyFound()), Qt::QueuedConnection);
|
2018-10-31 23:27:38 -04:00
|
|
|
// clang-format on
|
2017-10-24 09:25:38 -04:00
|
|
|
|
|
|
|
pollYubikey();
|
|
|
|
m_yubiKeyBeingPolled = true;
|
|
|
|
}
|
2017-02-20 20:19:11 -05:00
|
|
|
#endif
|
2016-11-26 09:37:25 -05:00
|
|
|
}
|
|
|
|
|
2017-10-07 21:25:42 -04:00
|
|
|
void DatabaseOpenWidget::hideEvent(QHideEvent* event)
|
|
|
|
{
|
|
|
|
DialogyWidget::hideEvent(event);
|
|
|
|
|
|
|
|
#ifdef WITH_XC_YUBIKEY
|
|
|
|
// Don't listen to any Yubikey events if we are hidden
|
2018-10-28 10:47:24 -04:00
|
|
|
disconnect(YubiKey::instance(), nullptr, this, nullptr);
|
2017-10-24 09:25:38 -04:00
|
|
|
m_yubiKeyBeingPolled = false;
|
2017-10-07 21:25:42 -04:00
|
|
|
#endif
|
2018-11-23 07:49:55 -05:00
|
|
|
|
|
|
|
if (isVisible()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearForms();
|
2017-10-07 21:25:42 -04:00
|
|
|
}
|
|
|
|
|
2012-07-06 12:50:52 -04:00
|
|
|
void DatabaseOpenWidget::load(const QString& filename)
|
2012-06-28 03:21:15 -04:00
|
|
|
{
|
|
|
|
m_filename = filename;
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->fileNameLabel->setRawText(m_filename);
|
2011-12-25 14:36:45 -05:00
|
|
|
|
2019-11-06 05:10:02 -05:00
|
|
|
m_ui->comboKeyFile->addItem(tr("Select key file..."), -1);
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->comboKeyFile->setCurrentIndex(0);
|
|
|
|
m_ui->keyFileClearIcon->setVisible(false);
|
|
|
|
m_keyFileComboEdited = false;
|
2012-07-02 12:47:12 -04:00
|
|
|
|
2015-04-14 17:10:37 -04:00
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
2015-03-14 23:06:53 -04:00
|
|
|
QHash<QString, QVariant> lastKeyFiles = config()->get("LastKeyFiles").toHash();
|
|
|
|
if (lastKeyFiles.contains(m_filename)) {
|
|
|
|
m_ui->comboKeyFile->addItem(lastKeyFiles[m_filename].toString());
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->comboKeyFile->setCurrentIndex(1);
|
2015-03-14 23:06:53 -04:00
|
|
|
}
|
2011-12-25 14:36:45 -05:00
|
|
|
}
|
2012-04-22 14:57:42 -04:00
|
|
|
|
2018-04-04 11:39:26 -04:00
|
|
|
QHash<QString, QVariant> useTouchID = config()->get("UseTouchID").toHash();
|
|
|
|
m_ui->checkTouchID->setChecked(useTouchID.value(m_filename, false).toBool());
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
|
|
|
|
2017-09-23 11:43:29 -04:00
|
|
|
void DatabaseOpenWidget::clearForms()
|
|
|
|
{
|
2018-11-23 07:49:55 -05:00
|
|
|
m_ui->editPassword->setText("");
|
2017-09-23 11:43:29 -04:00
|
|
|
m_ui->comboKeyFile->clear();
|
2018-11-23 07:49:55 -05:00
|
|
|
m_ui->comboKeyFile->setEditText("");
|
2018-04-04 11:39:26 -04:00
|
|
|
m_ui->checkTouchID->setChecked(false);
|
2017-09-23 11:43:29 -04:00
|
|
|
m_ui->buttonTogglePassword->setChecked(false);
|
2018-11-22 05:47:31 -05:00
|
|
|
m_db.reset();
|
2017-09-23 11:43:29 -04:00
|
|
|
}
|
|
|
|
|
2018-11-22 05:47:31 -05:00
|
|
|
QSharedPointer<Database> DatabaseOpenWidget::database()
|
2011-11-13 08:55:20 -05:00
|
|
|
{
|
2012-04-05 13:03:55 -04:00
|
|
|
return m_db;
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
|
|
|
|
2012-06-28 03:21:15 -04:00
|
|
|
void DatabaseOpenWidget::enterKey(const QString& pw, const QString& keyFile)
|
2012-04-24 05:47:16 -04:00
|
|
|
{
|
2019-03-26 22:23:16 -04:00
|
|
|
m_ui->editPassword->setText(pw);
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->comboKeyFile->setCurrentIndex(-1);
|
2019-03-26 22:23:16 -04:00
|
|
|
m_ui->comboKeyFile->setEditText(keyFile);
|
2012-04-24 05:47:16 -04:00
|
|
|
openDatabase();
|
|
|
|
}
|
|
|
|
|
2012-06-28 03:21:15 -04:00
|
|
|
void DatabaseOpenWidget::openDatabase()
|
2011-11-13 08:55:20 -05:00
|
|
|
{
|
2017-10-21 08:00:25 -04:00
|
|
|
QSharedPointer<CompositeKey> masterKey = databaseKey();
|
2018-11-22 05:47:31 -05:00
|
|
|
if (!masterKey) {
|
2017-10-05 14:44:05 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-10-12 06:12:00 -04:00
|
|
|
|
2019-04-01 18:01:58 -04:00
|
|
|
m_ui->editPassword->setShowPassword(false);
|
2019-06-23 14:01:58 -04:00
|
|
|
m_ui->buttonTogglePassword->setChecked(false);
|
2018-03-10 09:01:53 -05:00
|
|
|
QCoreApplication::processEvents();
|
|
|
|
|
2018-11-22 05:47:31 -05:00
|
|
|
m_db.reset(new Database());
|
|
|
|
QString error;
|
2019-11-18 08:17:26 -05:00
|
|
|
|
2012-10-12 06:12:00 -04:00
|
|
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
2019-11-18 08:17:26 -05:00
|
|
|
m_ui->passwordFormFrame->setEnabled(false);
|
|
|
|
QCoreApplication::processEvents();
|
2018-11-22 05:47:31 -05:00
|
|
|
bool ok = m_db->open(m_filename, masterKey, &error, false);
|
2012-10-12 06:12:00 -04:00
|
|
|
QApplication::restoreOverrideCursor();
|
2019-11-18 08:17:26 -05:00
|
|
|
m_ui->passwordFormFrame->setEnabled(true);
|
|
|
|
|
2018-11-22 05:47:31 -05:00
|
|
|
if (!ok) {
|
2019-06-22 12:00:31 -04:00
|
|
|
if (m_ui->editPassword->text().isEmpty() && !m_retryUnlockWithEmptyPassword) {
|
|
|
|
QScopedPointer<QMessageBox> msgBox(new QMessageBox(this));
|
|
|
|
msgBox->setIcon(QMessageBox::Critical);
|
|
|
|
msgBox->setWindowTitle(tr("Unlock failed and no password given"));
|
|
|
|
msgBox->setText(tr("Unlocking the database failed and you did not enter a password.\n"
|
|
|
|
"Do you want to retry with an \"empty\" password instead?\n\n"
|
|
|
|
"To prevent this error from appearing, you must go to "
|
|
|
|
"\"Database Settings / Security\" and reset your password."));
|
|
|
|
auto btn = msgBox->addButton(tr("Retry with empty password"), QMessageBox::ButtonRole::AcceptRole);
|
|
|
|
msgBox->setDefaultButton(btn);
|
|
|
|
msgBox->addButton(QMessageBox::Cancel);
|
|
|
|
msgBox->exec();
|
|
|
|
|
|
|
|
if (msgBox->clickedButton() == btn) {
|
|
|
|
m_retryUnlockWithEmptyPassword = true;
|
|
|
|
openDatabase();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_retryUnlockWithEmptyPassword = false;
|
2019-04-05 08:31:37 -04:00
|
|
|
m_ui->messageWidget->showMessage(error, MessageWidget::MessageType::Error);
|
2019-11-08 17:56:24 -05:00
|
|
|
// Focus on the password field and select the input for easy retry
|
|
|
|
m_ui->editPassword->selectAll();
|
|
|
|
m_ui->editPassword->setFocus();
|
2018-11-22 05:47:31 -05:00
|
|
|
return;
|
|
|
|
}
|
2012-10-12 06:12:00 -04:00
|
|
|
|
|
|
|
if (m_db) {
|
2018-04-04 11:39:26 -04:00
|
|
|
#ifdef WITH_XC_TOUCHID
|
|
|
|
QHash<QString, QVariant> useTouchID = config()->get("UseTouchID").toHash();
|
|
|
|
|
|
|
|
// check if TouchID can & should be used to unlock the database next time
|
|
|
|
if (m_ui->checkTouchID->isChecked() && TouchID::getInstance().isAvailable()) {
|
|
|
|
// encrypt and store key blob
|
|
|
|
if (TouchID::getInstance().storeKey(m_filename, PasswordKey(m_ui->editPassword->text()).rawKey())) {
|
|
|
|
useTouchID.insert(m_filename, true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// when TouchID not available or unchecked, reset for the current database
|
|
|
|
TouchID::getInstance().reset(m_filename);
|
|
|
|
useTouchID.insert(m_filename, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
config()->set("UseTouchID", useTouchID);
|
|
|
|
#endif
|
|
|
|
|
2015-01-19 18:14:59 -05:00
|
|
|
if (m_ui->messageWidget->isVisible()) {
|
|
|
|
m_ui->messageWidget->animatedHide();
|
|
|
|
}
|
2018-11-22 05:47:31 -05:00
|
|
|
emit dialogFinished(true);
|
2017-10-05 14:44:05 -04:00
|
|
|
} else {
|
2019-04-05 08:31:37 -04:00
|
|
|
m_ui->messageWidget->showMessage(error, MessageWidget::Error);
|
2018-11-23 07:49:55 -05:00
|
|
|
m_ui->editPassword->setText("");
|
2018-04-04 11:39:26 -04:00
|
|
|
|
|
|
|
#ifdef WITH_XC_TOUCHID
|
|
|
|
// unable to unlock database, reset TouchID for the current database
|
|
|
|
TouchID::getInstance().reset(m_filename);
|
|
|
|
#endif
|
2012-10-12 06:12:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-21 08:00:25 -04:00
|
|
|
QSharedPointer<CompositeKey> DatabaseOpenWidget::databaseKey()
|
2012-10-12 06:12:00 -04:00
|
|
|
{
|
2017-10-21 08:00:25 -04:00
|
|
|
auto masterKey = QSharedPointer<CompositeKey>::create();
|
2012-04-05 13:03:55 -04:00
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
if (!m_ui->editPassword->text().isEmpty() || m_retryUnlockWithEmptyPassword) {
|
2018-05-13 17:21:43 -04:00
|
|
|
masterKey->addKey(QSharedPointer<PasswordKey>::create(m_ui->editPassword->text()));
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
|
|
|
|
2018-04-04 11:39:26 -04:00
|
|
|
#ifdef WITH_XC_TOUCHID
|
|
|
|
// check if TouchID is available and enabled for unlocking the database
|
2019-02-24 18:31:55 -05:00
|
|
|
if (m_ui->checkTouchID->isChecked() && TouchID::getInstance().isAvailable()
|
|
|
|
&& m_ui->editPassword->text().isEmpty()) {
|
|
|
|
// clear empty password from composite key
|
|
|
|
masterKey->clear();
|
|
|
|
|
2018-04-04 11:39:26 -04:00
|
|
|
// try to get, decrypt and use PasswordKey
|
|
|
|
QSharedPointer<QByteArray> passwordKey = TouchID::getInstance().getKey(m_filename);
|
|
|
|
if (passwordKey != NULL) {
|
|
|
|
// check if the user cancelled the operation
|
|
|
|
if (passwordKey.isNull())
|
|
|
|
return QSharedPointer<CompositeKey>();
|
2018-10-28 06:39:15 -04:00
|
|
|
|
2018-04-04 11:39:26 -04:00
|
|
|
masterKey->addKey(PasswordKey::fromRawKey(*passwordKey));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-18 18:25:57 -04:00
|
|
|
QHash<QString, QVariant> lastKeyFiles = config()->get("LastKeyFiles").toHash();
|
2019-06-22 12:00:31 -04:00
|
|
|
lastKeyFiles.remove(m_filename);
|
2011-12-25 14:36:45 -05:00
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
auto key = QSharedPointer<FileKey>::create();
|
|
|
|
QString keyFilename = m_ui->comboKeyFile->currentText();
|
|
|
|
if (!m_ui->comboKeyFile->currentText().isEmpty() && m_keyFileComboEdited) {
|
2011-12-24 13:19:52 -05:00
|
|
|
QString errorMsg;
|
2018-05-13 17:21:43 -04:00
|
|
|
if (!key->load(keyFilename, &errorMsg)) {
|
2019-04-05 08:31:37 -04:00
|
|
|
m_ui->messageWidget->showMessage(tr("Failed to open key file: %1").arg(errorMsg), MessageWidget::Error);
|
2018-05-13 17:21:43 -04:00
|
|
|
return {};
|
2011-12-24 13:19:52 -05:00
|
|
|
}
|
2018-05-13 17:21:43 -04:00
|
|
|
if (key->type() != FileKey::Hashed && !config()->get("Messages/NoLegacyKeyFileWarning").toBool()) {
|
2017-12-27 08:20:28 -05:00
|
|
|
QMessageBox legacyWarning;
|
|
|
|
legacyWarning.setWindowTitle(tr("Legacy key file format"));
|
|
|
|
legacyWarning.setText(tr("You are using a legacy key file format which may become\n"
|
2018-03-31 16:01:30 -04:00
|
|
|
"unsupported in the future.\n\n"
|
|
|
|
"Please consider generating a new key file."));
|
2017-12-27 08:20:28 -05:00
|
|
|
legacyWarning.setIcon(QMessageBox::Icon::Warning);
|
|
|
|
legacyWarning.addButton(QMessageBox::Ok);
|
|
|
|
legacyWarning.setDefaultButton(QMessageBox::Ok);
|
|
|
|
legacyWarning.setCheckBox(new QCheckBox(tr("Don't show this warning again")));
|
|
|
|
|
2019-06-25 01:45:22 -04:00
|
|
|
connect(legacyWarning.checkBox(), &QCheckBox::stateChanged, [](int state) {
|
2017-12-27 08:20:28 -05:00
|
|
|
config()->set("Messages/NoLegacyKeyFileWarning", state == Qt::CheckState::Checked);
|
|
|
|
});
|
|
|
|
|
|
|
|
legacyWarning.exec();
|
|
|
|
}
|
2017-10-05 14:44:05 -04:00
|
|
|
masterKey->addKey(key);
|
2011-12-25 14:36:45 -05:00
|
|
|
lastKeyFiles[m_filename] = keyFilename;
|
2017-02-20 16:07:01 -05:00
|
|
|
}
|
|
|
|
|
2015-04-14 17:10:37 -04:00
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
2015-03-14 23:06:53 -04:00
|
|
|
config()->set("LastKeyFiles", lastKeyFiles);
|
|
|
|
}
|
2011-12-24 13:19:52 -05:00
|
|
|
|
2017-02-20 19:06:32 -05:00
|
|
|
#ifdef WITH_XC_YUBIKEY
|
2019-06-22 12:00:31 -04:00
|
|
|
QHash<QString, QVariant> lastChallengeResponse = config()->get("LastChallengeResponse").toHash();
|
|
|
|
lastChallengeResponse.remove(m_filename);
|
2014-05-26 03:49:28 -04:00
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
int selectionIndex = m_ui->comboChallengeResponse->currentIndex();
|
|
|
|
if (selectionIndex > 0) {
|
2017-03-10 14:42:59 -05:00
|
|
|
int comboPayload = m_ui->comboChallengeResponse->itemData(selectionIndex).toInt();
|
2014-05-26 03:49:28 -04:00
|
|
|
|
2017-03-10 14:42:59 -05:00
|
|
|
// read blocking mode from LSB and slot index number from second LSB
|
|
|
|
bool blocking = comboPayload & 1;
|
2017-10-05 14:44:05 -04:00
|
|
|
int slot = comboPayload >> 1;
|
2019-06-22 12:00:31 -04:00
|
|
|
auto crKey = QSharedPointer<YkChallengeResponseKey>(new YkChallengeResponseKey(slot, blocking));
|
|
|
|
masterKey->addChallengeResponseKey(crKey);
|
|
|
|
lastChallengeResponse[m_filename] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
|
|
|
config()->set("LastChallengeResponse", lastChallengeResponse);
|
2014-05-26 03:49:28 -04:00
|
|
|
}
|
2017-02-20 19:06:32 -05:00
|
|
|
#endif
|
2014-05-26 03:49:28 -04:00
|
|
|
|
2012-10-12 06:12:00 -04:00
|
|
|
return masterKey;
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
2011-11-16 12:46:09 -05:00
|
|
|
|
2012-06-28 03:21:15 -04:00
|
|
|
void DatabaseOpenWidget::reject()
|
|
|
|
{
|
2018-11-22 05:47:31 -05:00
|
|
|
emit dialogFinished(false);
|
2012-06-28 03:21:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::browseKeyFile()
|
2011-12-24 13:19:52 -05:00
|
|
|
{
|
|
|
|
QString filters = QString("%1 (*);;%2 (*.key)").arg(tr("All files"), tr("Key files"));
|
2017-11-16 10:04:30 -05:00
|
|
|
if (!config()->get("RememberLastKeyFiles").toBool()) {
|
|
|
|
fileDialog()->setNextForgetDialog();
|
|
|
|
}
|
2011-12-25 19:21:29 -05:00
|
|
|
QString filename = fileDialog()->getOpenFileName(this, tr("Select key file"), QString(), filters);
|
2011-12-24 13:19:52 -05:00
|
|
|
|
2019-11-06 05:10:02 -05:00
|
|
|
if (QFileInfo(filename).canonicalFilePath() == QFileInfo(m_filename).canonicalFilePath()) {
|
2019-11-18 01:57:04 -05:00
|
|
|
MessageBox::warning(this,
|
|
|
|
tr("Cannot use database file as key file"),
|
|
|
|
tr("You cannot use your database file as a key file.\nIf you do not have a key file, "
|
|
|
|
"please leave the field empty."),
|
|
|
|
MessageBox::Button::Ok);
|
2019-11-06 05:10:02 -05:00
|
|
|
filename = "";
|
|
|
|
}
|
|
|
|
|
2011-12-24 13:19:52 -05:00
|
|
|
if (!filename.isEmpty()) {
|
2019-06-22 12:00:31 -04:00
|
|
|
m_ui->comboKeyFile->setCurrentIndex(-1);
|
|
|
|
m_ui->comboKeyFile->setEditText(filename);
|
2011-12-24 13:19:52 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-26 03:49:28 -04:00
|
|
|
|
2019-06-22 12:00:31 -04:00
|
|
|
void DatabaseOpenWidget::clearKeyFileEdit()
|
|
|
|
{
|
|
|
|
m_ui->comboKeyFile->setCurrentIndex(0);
|
|
|
|
// make sure that handler is called even if 0 was the current index already
|
|
|
|
handleKeyFileComboChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::handleKeyFileComboEdited()
|
|
|
|
{
|
|
|
|
m_keyFileComboEdited = true;
|
|
|
|
m_ui->keyFileClearIcon->setVisible(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::handleKeyFileComboChanged()
|
|
|
|
{
|
|
|
|
m_keyFileComboEdited = m_ui->comboKeyFile->currentIndex() != 0;
|
|
|
|
m_ui->keyFileClearIcon->setVisible(m_keyFileComboEdited);
|
|
|
|
}
|
|
|
|
|
2017-02-20 16:07:01 -05:00
|
|
|
void DatabaseOpenWidget::pollYubikey()
|
|
|
|
{
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(false);
|
|
|
|
m_ui->comboChallengeResponse->setEnabled(false);
|
|
|
|
m_ui->comboChallengeResponse->clear();
|
2019-04-01 18:01:58 -04:00
|
|
|
m_ui->comboChallengeResponse->addItem(tr("Select slot..."), -1);
|
2017-02-20 17:20:32 -05:00
|
|
|
m_ui->yubikeyProgress->setVisible(true);
|
2017-02-23 17:52:36 -05:00
|
|
|
|
|
|
|
// YubiKey init is slow, detect asynchronously to not block the UI
|
2017-02-20 16:07:01 -05:00
|
|
|
QtConcurrent::run(YubiKey::instance(), &YubiKey::detect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::yubikeyDetected(int slot, bool blocking)
|
2014-05-26 03:49:28 -04:00
|
|
|
{
|
|
|
|
YkChallengeResponseKey yk(slot, blocking);
|
2017-03-10 14:42:59 -05:00
|
|
|
// add detected YubiKey to combo box and encode blocking mode in LSB, slot number in second LSB
|
2017-02-23 17:52:36 -05:00
|
|
|
m_ui->comboChallengeResponse->addItem(yk.getName(), QVariant((slot << 1) | blocking));
|
2017-02-20 16:07:01 -05:00
|
|
|
|
|
|
|
if (config()->get("RememberLastKeyFiles").toBool()) {
|
|
|
|
QHash<QString, QVariant> lastChallengeResponse = config()->get("LastChallengeResponse").toHash();
|
|
|
|
if (lastChallengeResponse.contains(m_filename)) {
|
2019-03-26 22:23:16 -04:00
|
|
|
m_ui->comboChallengeResponse->setCurrentIndex(1);
|
2017-02-20 16:07:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 21:25:42 -04:00
|
|
|
void DatabaseOpenWidget::yubikeyDetectComplete()
|
|
|
|
{
|
|
|
|
m_ui->comboChallengeResponse->setEnabled(true);
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(true);
|
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
2017-10-24 09:25:38 -04:00
|
|
|
m_yubiKeyBeingPolled = false;
|
2017-10-07 21:25:42 -04:00
|
|
|
}
|
|
|
|
|
2017-02-20 16:07:01 -05:00
|
|
|
void DatabaseOpenWidget::noYubikeyFound()
|
|
|
|
{
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(true);
|
2017-02-20 17:20:32 -05:00
|
|
|
m_ui->yubikeyProgress->setVisible(false);
|
2017-10-24 09:25:38 -04:00
|
|
|
m_yubiKeyBeingPolled = false;
|
2014-05-26 03:49:28 -04:00
|
|
|
}
|
2019-06-22 12:00:31 -04:00
|
|
|
|
|
|
|
void DatabaseOpenWidget::openHardwareKeyHelp()
|
|
|
|
{
|
2019-11-06 05:10:02 -05:00
|
|
|
QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs#faq-cat-yubikey"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::openKeyFileHelp()
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs#faq-cat-keyfile"));
|
|
|
|
}
|