mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
* Remove individual feature flags in favor of a single `KPXC_MINIMAL` flag that removes advanced features from the build. Basic features are no longer guarded by feature flags. * Basic features: Auto-Type, Yubikey, KeeShare * Advanced features include: Browser (and passkeys), SSH Agent, and Secret Service * Networking, Documentation, and Update Checking remain as feature flags to accommodate various distro requirements. This change also cleans up the main CMakeLists.txt by re-arranging some content and placing macros into a dedicated include file. The minimum CMake version was bumped to 3.16.0 to conform to our minimum Ubuntu support of Focal (20.04). This also allows us to default to C++20, we fall back to C++17 for Qt versions less than 5.15.0 due to lack of support. Lastly this change removes the KEEPASSXC_BUILD_TYPE="PreRelease" which is never used. We only support "Snapshot" and "Release" now.
235 lines
8.7 KiB
C++
235 lines
8.7 KiB
C++
/*
|
|
* Copyright (C) 2025 KeePassXC Team <team@keepassxc.org>
|
|
* Copyright (C) 2017 Sami Vänttinen <sami.vanttinen@protonmail.com>
|
|
* Copyright (C) 2013 Francois Ferrand
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSXC_BROWSERSERVICE_H
|
|
#define KEEPASSXC_BROWSERSERVICE_H
|
|
|
|
#include "BrowserAccessControlDialog.h"
|
|
#include "config-keepassx.h"
|
|
#include "core/Entry.h"
|
|
#include "gui/PasswordGeneratorWidget.h"
|
|
|
|
class QLocalSocket;
|
|
|
|
typedef QPair<QString, QString> StringPair;
|
|
typedef QList<StringPair> StringPairList;
|
|
|
|
enum
|
|
{
|
|
max_length = 16 * 1024
|
|
};
|
|
|
|
struct KeyPairMessage
|
|
{
|
|
QLocalSocket* socket;
|
|
QString nonce;
|
|
QString publicKey;
|
|
QString secretKey;
|
|
};
|
|
|
|
struct EntryParameters
|
|
{
|
|
QString dbid;
|
|
QString title;
|
|
QString login;
|
|
QString password;
|
|
QString realm;
|
|
QString hash;
|
|
QString siteUrl;
|
|
QString formUrl;
|
|
bool httpAuth;
|
|
};
|
|
|
|
class DatabaseWidget;
|
|
class BrowserHost;
|
|
class BrowserAction;
|
|
|
|
class BrowserService : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BrowserService();
|
|
static BrowserService* instance();
|
|
|
|
void setEnabled(bool enabled);
|
|
|
|
QString getKey(const QString& id);
|
|
QString storeKey(const QString& key);
|
|
QString getDatabaseHash(bool legacy = false);
|
|
|
|
bool isDatabaseOpened() const;
|
|
bool openDatabase(bool triggerUnlock);
|
|
void lockDatabase();
|
|
|
|
QJsonObject getDatabaseGroups();
|
|
QJsonArray getDatabaseEntries();
|
|
QJsonObject createNewGroup(const QString& groupName, bool isPasskeysGroup = false);
|
|
QString getCurrentTotp(const QString& uuid);
|
|
void showPasswordGenerator(const KeyPairMessage& keyPairMessage);
|
|
bool isPasswordGeneratorRequested() const;
|
|
QSharedPointer<Database> getDatabase(const QUuid& rootGroupUuid = {});
|
|
QSharedPointer<Database> selectedDatabase();
|
|
QList<QSharedPointer<Database>> getOpenDatabases();
|
|
|
|
QJsonObject showPasskeysRegisterPrompt(const QJsonObject& publicKeyOptions,
|
|
const QString& origin,
|
|
const QString& groupName,
|
|
const StringPairList& keyList);
|
|
QJsonObject showPasskeysAuthenticationPrompt(const QJsonObject& publicKeyOptions,
|
|
const QString& origin,
|
|
const StringPairList& keyList);
|
|
void addPasskeyToGroup(const QSharedPointer<Database>& db,
|
|
Group* group,
|
|
const QString& url,
|
|
const QString& rpId,
|
|
const QString& rpName,
|
|
const QString& username,
|
|
const QString& credentialId,
|
|
const QString& userHandle,
|
|
const QString& privateKey);
|
|
void addPasskeyToEntry(Entry* entry,
|
|
const QString& rpId,
|
|
const QString& rpName,
|
|
const QString& username,
|
|
const QString& credentialId,
|
|
const QString& userHandle,
|
|
const QString& privateKey);
|
|
|
|
void addEntry(const EntryParameters& entryParameters,
|
|
const QString& group,
|
|
const QString& groupUuid,
|
|
const bool downloadFavicon,
|
|
const QSharedPointer<Database>& selectedDb = {});
|
|
bool updateEntry(const EntryParameters& entryParameters, const QString& uuid);
|
|
bool deleteEntry(const QString& uuid);
|
|
void removePluginData(Entry* entry) const;
|
|
QJsonArray findEntries(const EntryParameters& entryParameters, const StringPairList& keyList, bool* entriesFound);
|
|
void requestGlobalAutoType(const QString& search);
|
|
|
|
static QString decodeCustomDataRestrictKey(const QString& key);
|
|
|
|
static const QString KEEPASSXCBROWSER_NAME;
|
|
static const QString KEEPASSXCBROWSER_OLD_NAME;
|
|
static const QString OPTION_SKIP_AUTO_SUBMIT;
|
|
static const QString OPTION_HIDE_ENTRY;
|
|
static const QString OPTION_ONLY_HTTP_AUTH;
|
|
static const QString OPTION_NOT_HTTP_AUTH;
|
|
static const QString OPTION_OMIT_WWW;
|
|
static const QString ADDITIONAL_URL;
|
|
static const QString OPTION_RESTRICT_KEY;
|
|
|
|
signals:
|
|
void requestUnlock();
|
|
void passwordGenerated(QLocalSocket* socket, const QString& password, const QString& nonce);
|
|
|
|
public slots:
|
|
void databaseLocked(DatabaseWidget* dbWidget);
|
|
void databaseUnlocked(DatabaseWidget* dbWidget);
|
|
void activeDatabaseChanged(DatabaseWidget* dbWidget);
|
|
|
|
private slots:
|
|
void processClientMessage(QLocalSocket* socket, const QJsonObject& message);
|
|
void handleDatabaseUnlockDialogFinished(bool accepted, DatabaseWidget* dbWidget);
|
|
|
|
private:
|
|
enum Access
|
|
{
|
|
Denied,
|
|
Unknown,
|
|
Allowed
|
|
};
|
|
|
|
enum WindowState
|
|
{
|
|
Normal,
|
|
Minimized,
|
|
Hidden
|
|
};
|
|
|
|
QList<Entry*> searchEntries(const QSharedPointer<Database>& db,
|
|
const QString& siteUrl,
|
|
const QString& formUrl,
|
|
const QStringList& keys = {},
|
|
bool passkey = false);
|
|
QList<Entry*>
|
|
searchEntries(const QString& siteUrl, const QString& formUrl, const StringPairList& keyList, bool passkey = false);
|
|
QList<Entry*> sortEntries(QList<Entry*>& entries, const QString& siteUrl, const QString& formUrl);
|
|
QList<Entry*> confirmEntries(QList<Entry*>& entriesToConfirm,
|
|
const EntryParameters& entryParameters,
|
|
const QString& siteHost,
|
|
const QString& formUrl,
|
|
const bool httpAuth);
|
|
QJsonObject prepareEntry(const Entry* entry);
|
|
void allowEntry(Entry* entry, const QString& siteHost, const QString& formUrl, const QString& realm);
|
|
void denyEntry(Entry* entry, const QString& siteHost, const QString& formUrl, const QString& realm);
|
|
QJsonArray getChildrenFromGroup(Group* group);
|
|
Access checkAccess(const Entry* entry, const QString& siteHost, const QString& formHost, const QString& realm);
|
|
Group* getDefaultEntryGroup(const QSharedPointer<Database>& selectedDb = {});
|
|
int sortPriority(const QStringList& urls, const QString& siteUrl, const QString& formUrl);
|
|
bool removeFirstDomain(QString& hostname);
|
|
bool
|
|
shouldIncludeEntry(Entry* entry, const QString& url, const QString& submitUrl, const bool omitWwwSubdomain = false);
|
|
|
|
QList<Entry*> getPasskeyEntries(const QString& rpId, const StringPairList& keyList);
|
|
QList<Entry*>
|
|
getPasskeyEntriesWithUserHandle(const QString& rpId, const QString& userId, const StringPairList& keyList);
|
|
QList<Entry*>
|
|
getPasskeyAllowedEntries(const QJsonObject& assertionOptions, const QString& rpId, const StringPairList& keyList);
|
|
bool isPasskeyCredentialExcluded(const QJsonArray& excludeCredentials,
|
|
const QString& rpId,
|
|
const StringPairList& keyList);
|
|
QJsonObject getPasskeyError(int errorCode) const;
|
|
|
|
bool handleURL(const QString& entryUrl,
|
|
const QString& siteUrl,
|
|
const QString& formUrl,
|
|
const bool omitWwwSubdomain = false,
|
|
const bool allowWildcards = false);
|
|
bool handleURLWithWildcards(const QUrl& entryQUrl, const QString& siteUrl);
|
|
QString getDatabaseRootUuid();
|
|
QString getDatabaseRecycleBinUuid();
|
|
void hideWindow() const;
|
|
void raiseWindow(const bool force = false);
|
|
void updateWindowState();
|
|
|
|
QPointer<BrowserHost> m_browserHost;
|
|
QHash<QString, QSharedPointer<BrowserAction>> m_browserClients;
|
|
|
|
bool m_dialogActive;
|
|
bool m_bringToFrontRequested;
|
|
WindowState m_prevWindowState;
|
|
QUuid m_keepassBrowserUUID;
|
|
|
|
QPointer<DatabaseWidget> m_currentDatabaseWidget;
|
|
QPointer<PasswordGeneratorWidget> m_passwordGenerator;
|
|
|
|
Q_DISABLE_COPY(BrowserService);
|
|
|
|
friend class TestBrowser;
|
|
friend class TestPasskeys;
|
|
};
|
|
|
|
static inline BrowserService* browserService()
|
|
{
|
|
return BrowserService::instance();
|
|
}
|
|
|
|
#endif // KEEPASSXC_BROWSERSERVICE_H
|