2011-11-13 13:55:20 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
2017-06-09 21:40:36 +00:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-11-13 13:55:20 +00: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 07:21:15 +00:00
|
|
|
#include "DatabaseOpenWidget.h"
|
|
|
|
|
#include "ui_DatabaseOpenWidget.h"
|
2011-11-13 13:55:20 +00:00
|
|
|
|
2021-07-12 02:10:29 +00:00
|
|
|
#include "config-keepassx.h"
|
2011-12-26 00:21:29 +00:00
|
|
|
#include "gui/FileDialog.h"
|
2020-10-06 00:41:00 +00:00
|
|
|
#include "gui/Icons.h"
|
2018-03-31 20:01:30 +00:00
|
|
|
#include "gui/MainWindow.h"
|
2013-10-08 20:09:20 +00:00
|
|
|
#include "gui/MessageBox.h"
|
2021-04-23 03:07:49 +00:00
|
|
|
#include "keys/ChallengeResponseKey.h"
|
2011-12-24 18:19:52 +00:00
|
|
|
#include "keys/FileKey.h"
|
2017-02-21 00:06:32 +00:00
|
|
|
|
2021-07-12 02:10:29 +00:00
|
|
|
#ifdef Q_OS_MACOS
|
|
|
|
|
#include "touchid/TouchID.h"
|
|
|
|
|
#endif
|
2014-05-26 07:49:28 +00:00
|
|
|
|
2019-06-22 16:00:31 +00:00
|
|
|
#include <QDesktopServices>
|
|
|
|
|
#include <QFont>
|
2011-11-13 13:55:20 +00:00
|
|
|
|
2020-06-06 13:54:57 +00:00
|
|
|
namespace
|
|
|
|
|
{
|
|
|
|
|
constexpr int clearFormsDelay = 30000;
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-28 07:21:15 +00:00
|
|
|
DatabaseOpenWidget::DatabaseOpenWidget(QWidget* parent)
|
2017-03-10 19:42:59 +00:00
|
|
|
: DialogyWidget(parent)
|
|
|
|
|
, m_ui(new Ui::DatabaseOpenWidget())
|
|
|
|
|
, m_db(nullptr)
|
2011-11-13 13:55:20 +00:00
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
|
2015-01-19 23:14:59 +00:00
|
|
|
m_ui->messageWidget->setHidden(true);
|
|
|
|
|
|
2020-06-06 13:54:57 +00:00
|
|
|
m_hideTimer.setInterval(clearFormsDelay);
|
|
|
|
|
m_hideTimer.setSingleShot(true);
|
|
|
|
|
connect(&m_hideTimer, &QTimer::timeout, this, [this] {
|
|
|
|
|
// Reset the password field after being hidden for a set time
|
|
|
|
|
m_ui->editPassword->setText("");
|
|
|
|
|
m_ui->editPassword->setShowPassword(false);
|
|
|
|
|
});
|
|
|
|
|
|
2019-06-22 16:00:31 +00:00
|
|
|
QFont font;
|
|
|
|
|
font.setPointSize(font.pointSize() + 4);
|
2012-07-02 16:47:12 +00:00
|
|
|
font.setBold(true);
|
|
|
|
|
m_ui->labelHeadline->setFont(font);
|
2019-06-22 16:00:31 +00:00
|
|
|
m_ui->labelHeadline->setText(tr("Unlock KeePassXC Database"));
|
|
|
|
|
|
2011-12-24 18:19:52 +00:00
|
|
|
connect(m_ui->buttonBrowseFile, SIGNAL(clicked()), SLOT(browseKeyFile()));
|
|
|
|
|
|
2012-04-05 17:03:55 +00:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(openDatabase()));
|
2011-12-24 18:19:52 +00:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject()));
|
2017-01-15 01:08:48 +00:00
|
|
|
|
2020-10-06 00:41:00 +00:00
|
|
|
m_ui->hardwareKeyLabelHelp->setIcon(icons()->icon("system-help").pixmap(QSize(12, 12)));
|
2019-06-22 16:00:31 +00:00
|
|
|
connect(m_ui->hardwareKeyLabelHelp, SIGNAL(clicked(bool)), SLOT(openHardwareKeyHelp()));
|
2020-10-06 00:41:00 +00:00
|
|
|
m_ui->keyFileLabelHelp->setIcon(icons()->icon("system-help").pixmap(QSize(12, 12)));
|
2019-11-06 10:10:02 +00:00
|
|
|
connect(m_ui->keyFileLabelHelp, SIGNAL(clicked(bool)), SLOT(openKeyFileHelp()));
|
2019-06-22 16:00:31 +00:00
|
|
|
|
2017-02-21 00:06:32 +00:00
|
|
|
#ifdef WITH_XC_YUBIKEY
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->hardwareKeyProgress->setVisible(false);
|
|
|
|
|
QSizePolicy sp = m_ui->hardwareKeyProgress->sizePolicy();
|
2017-02-21 00:06:32 +00:00
|
|
|
sp.setRetainSizeWhenHidden(true);
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->hardwareKeyProgress->setSizePolicy(sp);
|
2017-02-21 00:06:32 +00:00
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
connect(m_ui->buttonRedetectYubikey, SIGNAL(clicked()), SLOT(pollHardwareKey()));
|
|
|
|
|
connect(YubiKey::instance(), SIGNAL(detectComplete(bool)), SLOT(hardwareKeyResponse(bool)), Qt::QueuedConnection);
|
|
|
|
|
|
|
|
|
|
connect(YubiKey::instance(), &YubiKey::userInteractionRequest, this, [this] {
|
|
|
|
|
// Show the press notification if we are in an independent window (e.g., DatabaseOpenDialog)
|
|
|
|
|
if (window() != getMainWindow()) {
|
|
|
|
|
m_ui->messageWidget->showMessage(tr("Please touch the button on your YubiKey!"),
|
|
|
|
|
MessageWidget::Information,
|
|
|
|
|
MessageWidget::DisableAutoHide);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
connect(YubiKey::instance(), &YubiKey::challengeCompleted, this, [this] { m_ui->messageWidget->hide(); });
|
2017-02-21 00:06:32 +00:00
|
|
|
#else
|
2019-10-25 17:35:16 +00:00
|
|
|
m_ui->hardwareKeyLabel->setVisible(false);
|
|
|
|
|
m_ui->hardwareKeyLabelHelp->setVisible(false);
|
2017-02-21 00:06:32 +00:00
|
|
|
m_ui->buttonRedetectYubikey->setVisible(false);
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->challengeResponseCombo->setVisible(false);
|
|
|
|
|
m_ui->hardwareKeyProgress->setVisible(false);
|
2017-02-21 00:06:32 +00:00
|
|
|
#endif
|
2017-02-20 19:24:38 +00:00
|
|
|
|
2018-04-04 15:39:26 +00:00
|
|
|
#ifndef WITH_XC_TOUCHID
|
2019-06-22 16:00:31 +00:00
|
|
|
m_ui->touchIDContainer->setVisible(false);
|
2018-04-04 15:39:26 +00:00
|
|
|
#else
|
|
|
|
|
if (!TouchID::getInstance().isAvailable()) {
|
|
|
|
|
m_ui->checkTouchID->setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2012-06-28 07:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DatabaseOpenWidget::~DatabaseOpenWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-26 14:37:25 +00:00
|
|
|
void DatabaseOpenWidget::showEvent(QShowEvent* event)
|
|
|
|
|
{
|
|
|
|
|
DialogyWidget::showEvent(event);
|
|
|
|
|
m_ui->editPassword->setFocus();
|
2020-06-06 13:54:57 +00:00
|
|
|
m_hideTimer.stop();
|
2016-11-26 14:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
2017-10-08 01:25:42 +00:00
|
|
|
void DatabaseOpenWidget::hideEvent(QHideEvent* event)
|
|
|
|
|
{
|
|
|
|
|
DialogyWidget::hideEvent(event);
|
|
|
|
|
|
2020-06-06 13:54:57 +00:00
|
|
|
// Schedule form clearing if we are hidden
|
2020-04-06 12:42:20 +00:00
|
|
|
if (!isVisible()) {
|
2020-06-06 13:54:57 +00:00
|
|
|
m_hideTimer.start();
|
2018-11-23 12:49:55 +00:00
|
|
|
}
|
2017-10-08 01:25:42 +00:00
|
|
|
}
|
|
|
|
|
|
2012-07-06 16:50:52 +00:00
|
|
|
void DatabaseOpenWidget::load(const QString& filename)
|
2012-06-28 07:21:15 +00:00
|
|
|
{
|
2020-06-06 13:54:57 +00:00
|
|
|
clearForms();
|
|
|
|
|
|
2012-06-28 07:21:15 +00:00
|
|
|
m_filename = filename;
|
2019-06-22 16:00:31 +00:00
|
|
|
m_ui->fileNameLabel->setRawText(m_filename);
|
2011-12-25 19:36:45 +00:00
|
|
|
|
2020-04-25 23:31:38 +00:00
|
|
|
if (config()->get(Config::RememberLastKeyFiles).toBool()) {
|
2020-04-06 12:42:20 +00:00
|
|
|
auto lastKeyFiles = config()->get(Config::LastKeyFiles).toHash();
|
2015-03-15 03:06:53 +00:00
|
|
|
if (lastKeyFiles.contains(m_filename)) {
|
2020-06-06 13:54:57 +00:00
|
|
|
m_ui->keyFileLineEdit->setText(lastKeyFiles[m_filename].toString());
|
2015-03-15 03:06:53 +00:00
|
|
|
}
|
2011-12-25 19:36:45 +00:00
|
|
|
}
|
2012-04-22 18:57:42 +00:00
|
|
|
|
2020-04-25 23:31:38 +00:00
|
|
|
QHash<QString, QVariant> useTouchID = config()->get(Config::UseTouchID).toHash();
|
2018-04-04 15:39:26 +00:00
|
|
|
m_ui->checkTouchID->setChecked(useTouchID.value(m_filename, false).toBool());
|
2020-04-06 12:42:20 +00:00
|
|
|
|
|
|
|
|
#ifdef WITH_XC_YUBIKEY
|
|
|
|
|
// Only auto-poll for hardware keys if we previously used one with this database file
|
|
|
|
|
if (config()->get(Config::RememberLastKeyFiles).toBool()) {
|
|
|
|
|
auto lastChallengeResponse = config()->get(Config::LastChallengeResponse).toHash();
|
|
|
|
|
if (lastChallengeResponse.contains(m_filename)) {
|
|
|
|
|
pollHardwareKey();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2011-11-13 13:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
2017-09-23 15:43:29 +00:00
|
|
|
void DatabaseOpenWidget::clearForms()
|
|
|
|
|
{
|
2020-06-06 13:54:57 +00:00
|
|
|
m_ui->editPassword->setText("");
|
|
|
|
|
m_ui->editPassword->setShowPassword(false);
|
|
|
|
|
m_ui->keyFileLineEdit->clear();
|
2020-12-04 13:01:36 +00:00
|
|
|
m_ui->keyFileLineEdit->setShowPassword(false);
|
2020-06-06 13:54:57 +00:00
|
|
|
m_ui->checkTouchID->setChecked(false);
|
|
|
|
|
m_ui->challengeResponseCombo->clear();
|
|
|
|
|
m_db.reset();
|
2017-09-23 15:43:29 +00:00
|
|
|
}
|
|
|
|
|
|
2018-11-22 10:47:31 +00:00
|
|
|
QSharedPointer<Database> DatabaseOpenWidget::database()
|
2011-11-13 13:55:20 +00:00
|
|
|
{
|
2012-04-05 17:03:55 +00:00
|
|
|
return m_db;
|
2011-11-13 13:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
QString DatabaseOpenWidget::filename()
|
|
|
|
|
{
|
|
|
|
|
return m_filename;
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-28 07:21:15 +00:00
|
|
|
void DatabaseOpenWidget::enterKey(const QString& pw, const QString& keyFile)
|
2012-04-24 09:47:16 +00:00
|
|
|
{
|
2019-03-27 02:23:16 +00:00
|
|
|
m_ui->editPassword->setText(pw);
|
2020-06-06 13:54:57 +00:00
|
|
|
m_ui->keyFileLineEdit->setText(keyFile);
|
2012-04-24 09:47:16 +00:00
|
|
|
openDatabase();
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-28 07:21:15 +00:00
|
|
|
void DatabaseOpenWidget::openDatabase()
|
2011-11-13 13:55:20 +00:00
|
|
|
{
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->messageWidget->hide();
|
|
|
|
|
|
2020-07-01 23:16:40 +00:00
|
|
|
QSharedPointer<CompositeKey> databaseKey = buildDatabaseKey();
|
|
|
|
|
if (!databaseKey) {
|
2017-10-05 18:44:05 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2012-10-12 10:12:00 +00:00
|
|
|
|
2019-04-01 22:01:58 +00:00
|
|
|
m_ui->editPassword->setShowPassword(false);
|
2018-03-10 14:01:53 +00:00
|
|
|
QCoreApplication::processEvents();
|
|
|
|
|
|
2018-11-22 10:47:31 +00:00
|
|
|
m_db.reset(new Database());
|
|
|
|
|
QString error;
|
2019-11-18 13:17:26 +00:00
|
|
|
|
2012-10-12 10:12:00 +00:00
|
|
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
2019-11-18 13:17:26 +00:00
|
|
|
m_ui->passwordFormFrame->setEnabled(false);
|
|
|
|
|
QCoreApplication::processEvents();
|
2020-07-01 23:16:40 +00:00
|
|
|
bool ok = m_db->open(m_filename, databaseKey, &error, false);
|
2012-10-12 10:12:00 +00:00
|
|
|
QApplication::restoreOverrideCursor();
|
2019-11-18 13:17:26 +00:00
|
|
|
m_ui->passwordFormFrame->setEnabled(true);
|
|
|
|
|
|
2020-01-20 14:47:02 +00:00
|
|
|
if (ok) {
|
|
|
|
|
#ifdef WITH_XC_TOUCHID
|
2020-04-25 23:31:38 +00:00
|
|
|
QHash<QString, QVariant> useTouchID = config()->get(Config::UseTouchID).toHash();
|
2020-01-20 14:47:02 +00:00
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-25 23:31:38 +00:00
|
|
|
config()->set(Config::UseTouchID, useTouchID);
|
2020-01-20 14:47:02 +00:00
|
|
|
#endif
|
|
|
|
|
emit dialogFinished(true);
|
|
|
|
|
clearForms();
|
|
|
|
|
} else {
|
2019-06-22 16:00:31 +00: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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-20 14:47:02 +00:00
|
|
|
|
2019-06-22 16:00:31 +00:00
|
|
|
m_retryUnlockWithEmptyPassword = false;
|
2019-04-05 12:31:37 +00:00
|
|
|
m_ui->messageWidget->showMessage(error, MessageWidget::MessageType::Error);
|
2019-11-08 22:56:24 +00:00
|
|
|
// Focus on the password field and select the input for easy retry
|
|
|
|
|
m_ui->editPassword->selectAll();
|
|
|
|
|
m_ui->editPassword->setFocus();
|
2018-04-04 15:39:26 +00:00
|
|
|
|
|
|
|
|
#ifdef WITH_XC_TOUCHID
|
|
|
|
|
// unable to unlock database, reset TouchID for the current database
|
|
|
|
|
TouchID::getInstance().reset(m_filename);
|
|
|
|
|
#endif
|
2012-10-12 10:12:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-01 23:16:40 +00:00
|
|
|
QSharedPointer<CompositeKey> DatabaseOpenWidget::buildDatabaseKey()
|
2012-10-12 10:12:00 +00:00
|
|
|
{
|
2020-07-01 23:16:40 +00:00
|
|
|
auto databaseKey = QSharedPointer<CompositeKey>::create();
|
2012-04-05 17:03:55 +00:00
|
|
|
|
2019-06-22 16:00:31 +00:00
|
|
|
if (!m_ui->editPassword->text().isEmpty() || m_retryUnlockWithEmptyPassword) {
|
2020-07-01 23:16:40 +00:00
|
|
|
databaseKey->addKey(QSharedPointer<PasswordKey>::create(m_ui->editPassword->text()));
|
2011-11-13 13:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-04 15:39:26 +00:00
|
|
|
#ifdef WITH_XC_TOUCHID
|
|
|
|
|
// check if TouchID is available and enabled for unlocking the database
|
2019-02-24 23:31:55 +00:00
|
|
|
if (m_ui->checkTouchID->isChecked() && TouchID::getInstance().isAvailable()
|
|
|
|
|
&& m_ui->editPassword->text().isEmpty()) {
|
|
|
|
|
// clear empty password from composite key
|
2020-07-01 23:16:40 +00:00
|
|
|
databaseKey->clear();
|
2019-02-24 23:31:55 +00:00
|
|
|
|
2018-04-04 15:39:26 +00:00
|
|
|
// try to get, decrypt and use PasswordKey
|
2021-04-04 12:56:00 +00:00
|
|
|
QByteArray passwordKey;
|
|
|
|
|
if (TouchID::getInstance().getKey(m_filename, passwordKey)) {
|
2018-04-04 15:39:26 +00:00
|
|
|
// check if the user cancelled the operation
|
2021-04-04 12:56:00 +00:00
|
|
|
if (passwordKey.isNull()) {
|
2018-04-04 15:39:26 +00:00
|
|
|
return QSharedPointer<CompositeKey>();
|
2021-04-04 12:56:00 +00:00
|
|
|
}
|
2018-10-28 10:39:15 +00:00
|
|
|
|
2021-04-04 12:56:00 +00:00
|
|
|
databaseKey->addKey(PasswordKey::fromRawKey(passwordKey));
|
2018-04-04 15:39:26 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
auto lastKeyFiles = config()->get(Config::LastKeyFiles).toHash();
|
2019-06-22 16:00:31 +00:00
|
|
|
lastKeyFiles.remove(m_filename);
|
2011-12-25 19:36:45 +00:00
|
|
|
|
2019-06-22 16:00:31 +00:00
|
|
|
auto key = QSharedPointer<FileKey>::create();
|
2020-06-06 13:54:57 +00:00
|
|
|
QString keyFilename = m_ui->keyFileLineEdit->text();
|
|
|
|
|
if (!keyFilename.isEmpty()) {
|
2011-12-24 18:19:52 +00:00
|
|
|
QString errorMsg;
|
2018-05-13 21:21:43 +00:00
|
|
|
if (!key->load(keyFilename, &errorMsg)) {
|
2019-04-05 12:31:37 +00:00
|
|
|
m_ui->messageWidget->showMessage(tr("Failed to open key file: %1").arg(errorMsg), MessageWidget::Error);
|
2018-05-13 21:21:43 +00:00
|
|
|
return {};
|
2011-12-24 18:19:52 +00:00
|
|
|
}
|
2020-12-10 00:28:01 +00:00
|
|
|
if (key->type() != FileKey::KeePass2XMLv2 && key->type() != FileKey::Hashed
|
|
|
|
|
&& !config()->get(Config::Messages_NoLegacyKeyFileWarning).toBool()) {
|
2017-12-27 13:20:28 +00:00
|
|
|
QMessageBox legacyWarning;
|
2020-12-10 00:28:01 +00:00
|
|
|
legacyWarning.setWindowTitle(tr("Old key file format"));
|
|
|
|
|
legacyWarning.setText(tr("You are using an old key file format which KeePassXC may<br>"
|
|
|
|
|
"stop supporting in the future.<br><br>"
|
|
|
|
|
"Please consider generating a new key file by going to:<br>"
|
2021-02-15 00:15:10 +00:00
|
|
|
"<strong>Database > Database Security > Change Key File.</strong><br>"));
|
2017-12-27 13:20:28 +00: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")));
|
|
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
connect(legacyWarning.checkBox(), &QCheckBox::stateChanged, this, [](int state) {
|
2020-04-25 23:31:38 +00:00
|
|
|
config()->set(Config::Messages_NoLegacyKeyFileWarning, state == Qt::CheckState::Checked);
|
2017-12-27 13:20:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
legacyWarning.exec();
|
|
|
|
|
}
|
2020-07-01 23:16:40 +00:00
|
|
|
databaseKey->addKey(key);
|
2020-04-06 12:42:20 +00:00
|
|
|
lastKeyFiles.insert(m_filename, keyFilename);
|
2017-02-20 21:07:01 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-25 23:31:38 +00:00
|
|
|
if (config()->get(Config::RememberLastKeyFiles).toBool()) {
|
|
|
|
|
config()->set(Config::LastKeyFiles, lastKeyFiles);
|
2015-03-15 03:06:53 +00:00
|
|
|
}
|
2011-12-24 18:19:52 +00:00
|
|
|
|
2017-02-21 00:06:32 +00:00
|
|
|
#ifdef WITH_XC_YUBIKEY
|
2020-04-06 12:42:20 +00:00
|
|
|
auto lastChallengeResponse = config()->get(Config::LastChallengeResponse).toHash();
|
2019-06-22 16:00:31 +00:00
|
|
|
lastChallengeResponse.remove(m_filename);
|
2014-05-26 07:49:28 +00:00
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
int selectionIndex = m_ui->challengeResponseCombo->currentIndex();
|
2019-06-22 16:00:31 +00:00
|
|
|
if (selectionIndex > 0) {
|
2020-04-06 12:42:20 +00:00
|
|
|
auto slot = m_ui->challengeResponseCombo->itemData(selectionIndex).value<YubiKeySlot>();
|
2021-04-23 03:07:49 +00:00
|
|
|
auto crKey = QSharedPointer<ChallengeResponseKey>(new ChallengeResponseKey(slot));
|
2020-07-01 23:16:40 +00:00
|
|
|
databaseKey->addChallengeResponseKey(crKey);
|
2020-04-06 12:42:20 +00:00
|
|
|
|
|
|
|
|
// Qt doesn't read custom types in settings so stuff into a QString
|
|
|
|
|
lastChallengeResponse.insert(m_filename, QStringLiteral("%1:%2").arg(slot.first).arg(slot.second));
|
2019-06-22 16:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-25 23:31:38 +00:00
|
|
|
if (config()->get(Config::RememberLastKeyFiles).toBool()) {
|
|
|
|
|
config()->set(Config::LastChallengeResponse, lastChallengeResponse);
|
2014-05-26 07:49:28 +00:00
|
|
|
}
|
2017-02-21 00:06:32 +00:00
|
|
|
#endif
|
2014-05-26 07:49:28 +00:00
|
|
|
|
2020-07-01 23:16:40 +00:00
|
|
|
return databaseKey;
|
2011-11-13 13:55:20 +00:00
|
|
|
}
|
2011-11-16 17:46:09 +00:00
|
|
|
|
2012-06-28 07:21:15 +00:00
|
|
|
void DatabaseOpenWidget::reject()
|
|
|
|
|
{
|
2018-11-22 10:47:31 +00:00
|
|
|
emit dialogFinished(false);
|
2012-06-28 07:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::browseKeyFile()
|
2011-12-24 18:19:52 +00:00
|
|
|
{
|
2020-12-10 00:28:01 +00:00
|
|
|
QString filters = QString("%1 (*);;%2 (*.keyx; *.key)").arg(tr("All files"), tr("Key files"));
|
2011-12-26 00:21:29 +00:00
|
|
|
QString filename = fileDialog()->getOpenFileName(this, tr("Select key file"), QString(), filters);
|
2011-12-24 18:19:52 +00:00
|
|
|
|
2019-11-06 10:10:02 +00:00
|
|
|
if (QFileInfo(filename).canonicalFilePath() == QFileInfo(m_filename).canonicalFilePath()) {
|
2019-11-18 06:57:04 +00: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 10:10:02 +00:00
|
|
|
filename = "";
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-24 18:19:52 +00:00
|
|
|
if (!filename.isEmpty()) {
|
2020-06-06 13:54:57 +00:00
|
|
|
m_ui->keyFileLineEdit->setText(filename);
|
2011-12-24 18:19:52 +00:00
|
|
|
}
|
|
|
|
|
}
|
2014-05-26 07:49:28 +00:00
|
|
|
|
2020-06-06 13:54:57 +00:00
|
|
|
void DatabaseOpenWidget::clearKeyFileText()
|
2019-06-22 16:00:31 +00:00
|
|
|
{
|
2020-06-06 13:54:57 +00:00
|
|
|
m_ui->keyFileLineEdit->clear();
|
2020-12-04 13:01:36 +00:00
|
|
|
m_ui->keyFileLineEdit->setShowPassword(false);
|
2019-06-22 16:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
void DatabaseOpenWidget::pollHardwareKey()
|
2017-02-20 21:07:01 +00:00
|
|
|
{
|
2020-04-06 12:42:20 +00:00
|
|
|
if (m_pollingHardwareKey) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_ui->challengeResponseCombo->clear();
|
|
|
|
|
m_ui->challengeResponseCombo->addItem(tr("Detecting hardware keys…"));
|
|
|
|
|
|
2017-02-20 21:07:01 +00:00
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(false);
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->challengeResponseCombo->setEnabled(false);
|
|
|
|
|
m_ui->hardwareKeyProgress->setVisible(true);
|
|
|
|
|
m_pollingHardwareKey = true;
|
2017-02-23 22:52:36 +00:00
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
YubiKey::instance()->findValidKeys();
|
2017-02-20 21:07:01 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
void DatabaseOpenWidget::hardwareKeyResponse(bool found)
|
2014-05-26 07:49:28 +00:00
|
|
|
{
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->challengeResponseCombo->clear();
|
|
|
|
|
m_ui->buttonRedetectYubikey->setEnabled(true);
|
|
|
|
|
m_ui->hardwareKeyProgress->setVisible(false);
|
|
|
|
|
m_pollingHardwareKey = false;
|
2017-02-20 21:07:01 +00:00
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
if (!found) {
|
|
|
|
|
m_ui->challengeResponseCombo->addItem(tr("No hardware keys detected"));
|
|
|
|
|
m_ui->challengeResponseCombo->setEnabled(false);
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->challengeResponseCombo->addItem(tr("Select hardware key…"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
YubiKeySlot lastUsedSlot;
|
2020-04-25 23:31:38 +00:00
|
|
|
if (config()->get(Config::RememberLastKeyFiles).toBool()) {
|
2020-04-06 12:42:20 +00:00
|
|
|
auto lastChallengeResponse = config()->get(Config::LastChallengeResponse).toHash();
|
2017-02-20 21:07:01 +00:00
|
|
|
if (lastChallengeResponse.contains(m_filename)) {
|
2020-04-06 12:42:20 +00:00
|
|
|
// Qt doesn't read custom types in settings so extract from QString
|
|
|
|
|
auto split = lastChallengeResponse.value(m_filename).toString().split(":");
|
|
|
|
|
if (split.size() > 1) {
|
|
|
|
|
lastUsedSlot = YubiKeySlot(split[0].toUInt(), split[1].toInt());
|
|
|
|
|
}
|
2017-02-20 21:07:01 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
int selectedIndex = 0;
|
|
|
|
|
for (auto& slot : YubiKey::instance()->foundKeys()) {
|
|
|
|
|
// add detected YubiKey to combo box
|
|
|
|
|
m_ui->challengeResponseCombo->addItem(YubiKey::instance()->getDisplayName(slot), QVariant::fromValue(slot));
|
|
|
|
|
// Select this YubiKey + Slot if we used it in the past
|
|
|
|
|
if (lastUsedSlot == slot) {
|
|
|
|
|
selectedIndex = m_ui->challengeResponseCombo->count() - 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-08 01:25:42 +00:00
|
|
|
|
2020-04-06 12:42:20 +00:00
|
|
|
m_ui->challengeResponseCombo->setCurrentIndex(selectedIndex);
|
|
|
|
|
m_ui->challengeResponseCombo->setEnabled(true);
|
2014-05-26 07:49:28 +00:00
|
|
|
}
|
2019-06-22 16:00:31 +00:00
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::openHardwareKeyHelp()
|
|
|
|
|
{
|
2019-11-06 10:10:02 +00:00
|
|
|
QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs#faq-cat-yubikey"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DatabaseOpenWidget::openKeyFileHelp()
|
|
|
|
|
{
|
|
|
|
|
QDesktopServices::openUrl(QUrl("https://keepassxc.org/docs#faq-cat-keyfile"));
|
|
|
|
|
}
|