keepassxc/src/core/Database.h

164 lines
5.0 KiB
C++
Raw Normal View History

2010-08-07 15:10:44 +02:00
/*
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
2017-06-09 23:40:36 +02:00
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
2010-08-07 15:10:44 +02: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/>.
*/
#ifndef KEEPASSX_DATABASE_H
#define KEEPASSX_DATABASE_H
#include <QDateTime>
#include <QHash>
2015-07-22 17:03:59 +02:00
#include <QObject>
2010-08-07 15:10:44 +02:00
#include "crypto/kdf/Kdf.h"
2011-07-08 13:57:02 +02:00
#include "core/Uuid.h"
#include "keys/CompositeKey.h"
2011-07-08 13:57:02 +02:00
class Entry;
enum class EntryReferenceType;
2011-07-08 13:57:02 +02:00
class Group;
2010-08-07 15:10:44 +02:00
class Metadata;
2012-06-24 17:53:01 +02:00
class QTimer;
class QIODevice;
2010-08-07 15:10:44 +02:00
struct DeletedObject
{
Uuid uuid;
QDateTime deletionTime;
};
Q_DECLARE_TYPEINFO(DeletedObject, Q_MOVABLE_TYPE);
class Database : public QObject
2010-08-07 15:10:44 +02:00
{
Q_OBJECT
2010-08-07 15:10:44 +02:00
public:
enum CompressionAlgorithm
{
CompressionNone = 0,
CompressionGZip = 1
};
static const quint32 CompressionAlgorithmMax = CompressionGZip;
2013-11-22 10:28:11 +01:00
struct DatabaseData
{
Uuid cipher;
CompressionAlgorithm compressionAlgo;
QByteArray transformedMasterKey;
QSharedPointer<Kdf> kdf;
2013-11-22 10:28:11 +01:00
CompositeKey key;
bool hasKey;
QByteArray masterSeed;
QByteArray challengeResponseKey;
QVariantMap publicCustomData;
2013-11-22 10:28:11 +01:00
};
2010-08-13 18:08:06 +02:00
Database();
~Database() override;
2010-08-07 15:10:44 +02:00
Group* rootGroup();
2010-08-15 15:03:47 +02:00
const Group* rootGroup() const;
2011-07-08 13:57:02 +02:00
/**
* Sets group as the root group and takes ownership of it.
* Warning: Be careful when calling this method as it doesn't
* emit any notifications so e.g. models aren't updated.
2015-05-06 19:38:43 +03:00
* The caller is responsible for cleaning up the previous
root group.
2011-07-08 13:57:02 +02:00
*/
void setRootGroup(Group* group);
2011-07-08 13:57:02 +02:00
Metadata* metadata();
2010-09-19 21:22:24 +02:00
const Metadata* metadata() const;
Entry* resolveEntry(const Uuid& uuid);
Entry* resolveEntry(const QString& text, EntryReferenceType referenceType);
Group* resolveGroup(const Uuid& uuid);
QList<DeletedObject> deletedObjects();
void addDeletedObject(const DeletedObject& delObj);
void addDeletedObject(const Uuid& uuid);
2010-08-07 15:10:44 +02:00
Uuid cipher() const;
Database::CompressionAlgorithm compressionAlgo() const;
QSharedPointer<Kdf> kdf() const;
QByteArray transformedMasterKey() const;
const CompositeKey& key() const;
QByteArray challengeResponseKey() const;
bool challengeMasterSeed(const QByteArray& masterSeed);
void setCipher(const Uuid& cipher);
void setCompressionAlgo(Database::CompressionAlgorithm algo);
void setKdf(QSharedPointer<Kdf> kdf);
bool setKey(const CompositeKey& key, bool updateChangedTime = true,
bool updateTransformSalt = false);
bool hasKey() const;
bool verifyKey(const CompositeKey& key) const;
QVariantMap& publicCustomData();
const QVariantMap& publicCustomData() const;
void setPublicCustomData(const QVariantMap& customData);
void recycleEntry(Entry* entry);
2012-04-21 19:06:28 +02:00
void recycleGroup(Group* group);
2017-04-21 17:33:06 +03:00
void emptyRecycleBin();
2012-06-24 17:53:01 +02:00
void setEmitModified(bool value);
void merge(const Database* other);
QString saveToFile(QString filePath, bool atomic = true, bool backup = false);
/**
* Returns a unique id that is only valid as long as the Database exists.
*/
Uuid uuid();
bool changeKdf(QSharedPointer<Kdf> kdf);
static Database* databaseByUuid(const Uuid& uuid);
2017-03-12 13:47:05 -04:00
static Database* openDatabaseFile(QString fileName, CompositeKey key);
static Database* unlockFromStdin(QString databaseFilename, QString keyFilename = QString(""));
signals:
void groupDataChanged(Group* group);
void groupAboutToAdd(Group* group, int index);
void groupAdded();
void groupAboutToRemove(Group* group);
void groupRemoved();
void groupAboutToMove(Group* group, Group* toGroup, int index);
void groupMoved();
void nameTextChanged();
2012-04-11 13:52:12 +02:00
void modified();
2012-06-24 17:53:01 +02:00
void modifiedImmediate();
private slots:
2012-06-24 17:53:01 +02:00
void startModifiedTimer();
2010-08-15 15:03:47 +02:00
2010-08-07 15:10:44 +02:00
private:
Entry* findEntryRecursive(const Uuid& uuid, Group* group);
Entry* findEntryRecursive(const QString& text, EntryReferenceType referenceType, Group* group);
Group* findGroupRecursive(const Uuid& uuid, Group* group);
2010-08-07 15:10:44 +02:00
2012-04-21 19:06:28 +02:00
void createRecycleBin();
QString writeDatabase(QIODevice* device);
bool backupDatabase(QString filePath);
2012-04-21 19:06:28 +02:00
2012-04-23 19:44:43 +02:00
Metadata* const m_metadata;
2010-08-07 15:10:44 +02:00
Group* m_rootGroup;
QList<DeletedObject> m_deletedObjects;
2012-06-24 17:53:01 +02:00
QTimer* m_timer;
2013-11-22 10:28:11 +01:00
DatabaseData m_data;
2012-06-24 17:53:01 +02:00
bool m_emitModified;
Uuid m_uuid;
static QHash<Uuid, Database*> m_uuidMap;
2010-08-07 15:10:44 +02:00
};
#endif // KEEPASSX_DATABASE_H