2010-08-07 09:10:44 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Database.h"
|
|
|
|
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
#include <QtCore/QXmlStreamReader>
|
|
|
|
|
2011-07-08 07:57:02 -04:00
|
|
|
#include "core/Group.h"
|
|
|
|
#include "core/Metadata.h"
|
2012-05-09 14:29:21 -04:00
|
|
|
#include "core/Tools.h"
|
2011-06-29 10:39:39 -04:00
|
|
|
#include "crypto/Random.h"
|
2011-06-29 10:47:05 -04:00
|
|
|
#include "format/KeePass2.h"
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2012-04-24 18:12:23 -04:00
|
|
|
QHash<Uuid, Database*> Database::m_uuidMap;
|
|
|
|
|
2010-08-13 12:08:06 -04:00
|
|
|
Database::Database()
|
2012-04-23 13:44:43 -04:00
|
|
|
: m_metadata(new Metadata(this))
|
|
|
|
, m_cipher(KeePass2::CIPHER_AES)
|
|
|
|
, m_compressionAlgo(CompressionGZip)
|
|
|
|
, m_transformRounds(50000)
|
|
|
|
, m_hasKey(false)
|
2012-04-24 18:12:23 -04:00
|
|
|
, m_uuid(Uuid::random())
|
2010-08-07 09:10:44 -04:00
|
|
|
{
|
2011-07-09 15:54:01 -04:00
|
|
|
setRootGroup(new Group());
|
2011-12-27 09:47:06 -05:00
|
|
|
rootGroup()->setUuid(Uuid::random());
|
2011-06-29 10:47:05 -04:00
|
|
|
|
2012-04-24 18:12:23 -04:00
|
|
|
m_uuidMap.insert(m_uuid, this);
|
|
|
|
|
2012-04-11 09:57:11 -04:00
|
|
|
connect(m_metadata, SIGNAL(modified()), this, SIGNAL(modified()));
|
2012-05-14 11:04:05 -04:00
|
|
|
connect(m_metadata, SIGNAL(nameTextChanged()), this, SIGNAL(nameTextChanged()));
|
2010-08-07 09:10:44 -04:00
|
|
|
}
|
|
|
|
|
2012-04-24 18:12:23 -04:00
|
|
|
Database::~Database()
|
|
|
|
{
|
|
|
|
m_uuidMap.remove(m_uuid);
|
|
|
|
}
|
|
|
|
|
2010-08-12 15:38:59 -04:00
|
|
|
Group* Database::rootGroup()
|
|
|
|
{
|
|
|
|
return m_rootGroup;
|
|
|
|
}
|
|
|
|
|
2010-08-15 09:03:47 -04:00
|
|
|
const Group* Database::rootGroup() const
|
|
|
|
{
|
|
|
|
return m_rootGroup;
|
|
|
|
}
|
|
|
|
|
2010-08-12 15:38:59 -04:00
|
|
|
void Database::setRootGroup(Group* group)
|
|
|
|
{
|
2011-07-09 15:54:01 -04:00
|
|
|
Q_ASSERT(group);
|
2011-07-08 07:57:02 -04:00
|
|
|
|
2010-08-12 15:38:59 -04:00
|
|
|
m_rootGroup = group;
|
2011-07-09 15:54:01 -04:00
|
|
|
m_rootGroup->setParent(this);
|
2010-08-12 15:38:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Metadata* Database::metadata()
|
|
|
|
{
|
|
|
|
return m_metadata;
|
|
|
|
}
|
|
|
|
|
2010-09-19 15:22:24 -04:00
|
|
|
const Metadata* Database::metadata() const
|
2010-08-12 15:38:59 -04:00
|
|
|
{
|
2010-09-19 15:22:24 -04:00
|
|
|
return m_metadata;
|
2010-08-12 15:38:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Entry* Database::resolveEntry(const Uuid& uuid)
|
|
|
|
{
|
|
|
|
return recFindEntry(uuid, m_rootGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
Entry* Database::recFindEntry(const Uuid& uuid, Group* group)
|
|
|
|
{
|
|
|
|
Q_FOREACH (Entry* entry, group->entries()) {
|
2012-04-18 18:25:57 -04:00
|
|
|
if (entry->uuid() == uuid) {
|
2010-08-12 15:38:59 -04:00
|
|
|
return entry;
|
2012-04-18 18:25:57 -04:00
|
|
|
}
|
2010-08-12 15:38:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Q_FOREACH (Group* child, group->children()) {
|
|
|
|
Entry* result = recFindEntry(uuid, child);
|
2012-04-18 18:25:57 -04:00
|
|
|
if (result) {
|
2010-08-12 15:38:59 -04:00
|
|
|
return result;
|
2012-04-18 18:25:57 -04:00
|
|
|
}
|
2010-08-12 15:38:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Group* Database::resolveGroup(const Uuid& uuid)
|
|
|
|
{
|
|
|
|
return recFindGroup(uuid, m_rootGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
Group* Database::recFindGroup(const Uuid& uuid, Group* group)
|
|
|
|
{
|
2012-04-18 18:25:57 -04:00
|
|
|
if (group->uuid() == uuid) {
|
2010-08-12 15:38:59 -04:00
|
|
|
return group;
|
2012-04-18 18:25:57 -04:00
|
|
|
}
|
2010-08-12 15:38:59 -04:00
|
|
|
|
|
|
|
Q_FOREACH (Group* child, group->children()) {
|
2010-09-13 17:16:28 -04:00
|
|
|
Group* result = recFindGroup(uuid, child);
|
2012-04-18 18:25:57 -04:00
|
|
|
if (result) {
|
2010-09-13 17:16:28 -04:00
|
|
|
return result;
|
2012-04-18 18:25:57 -04:00
|
|
|
}
|
2010-08-12 15:38:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-08-25 07:52:59 -04:00
|
|
|
|
|
|
|
QList<DeletedObject> Database::deletedObjects()
|
|
|
|
{
|
|
|
|
return m_deletedObjects;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Database::addDeletedObject(const DeletedObject& delObj)
|
|
|
|
{
|
2012-05-15 18:04:10 -04:00
|
|
|
Q_ASSERT(delObj.deletionTime.timeSpec() == Qt::UTC);
|
2010-08-25 07:52:59 -04:00
|
|
|
m_deletedObjects.append(delObj);
|
|
|
|
}
|
2010-09-25 06:41:00 -04:00
|
|
|
|
2012-04-21 18:29:39 -04:00
|
|
|
void Database::addDeletedObject(const Uuid& uuid)
|
|
|
|
{
|
|
|
|
DeletedObject delObj;
|
2012-05-09 14:29:21 -04:00
|
|
|
delObj.deletionTime = Tools::currentDateTimeUtc();
|
2012-04-21 18:29:39 -04:00
|
|
|
delObj.uuid = uuid;
|
|
|
|
|
|
|
|
addDeletedObject(delObj);
|
|
|
|
}
|
|
|
|
|
2010-09-25 06:41:00 -04:00
|
|
|
Uuid Database::cipher() const
|
|
|
|
{
|
|
|
|
return m_cipher;
|
|
|
|
}
|
|
|
|
|
|
|
|
Database::CompressionAlgorithm Database::compressionAlgo() const
|
|
|
|
{
|
|
|
|
return m_compressionAlgo;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray Database::transformSeed() const
|
|
|
|
{
|
|
|
|
return m_transformSeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
quint64 Database::transformRounds() const
|
|
|
|
{
|
|
|
|
return m_transformRounds;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray Database::transformedMasterKey() const
|
|
|
|
{
|
|
|
|
return m_transformedMasterKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Database::setCipher(const Uuid& cipher)
|
|
|
|
{
|
|
|
|
Q_ASSERT(!cipher.isNull());
|
|
|
|
|
|
|
|
m_cipher = cipher;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Database::setCompressionAlgo(Database::CompressionAlgorithm algo)
|
|
|
|
{
|
|
|
|
Q_ASSERT(static_cast<quint32>(algo) <= CompressionAlgorithmMax);
|
|
|
|
|
|
|
|
m_compressionAlgo = algo;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Database::setTransformRounds(quint64 rounds)
|
|
|
|
{
|
|
|
|
m_transformRounds = rounds;
|
|
|
|
}
|
|
|
|
|
2012-04-11 09:57:11 -04:00
|
|
|
void Database::setKey(const CompositeKey& key, const QByteArray& transformSeed, bool updateChangedTime)
|
2010-09-25 06:41:00 -04:00
|
|
|
{
|
2012-04-19 10:20:20 -04:00
|
|
|
m_key = key;
|
2011-06-29 10:39:39 -04:00
|
|
|
m_transformSeed = transformSeed;
|
|
|
|
m_transformedMasterKey = key.transform(transformSeed, transformRounds());
|
2012-04-16 15:03:35 -04:00
|
|
|
m_hasKey = true;
|
2012-04-11 09:57:11 -04:00
|
|
|
if (updateChangedTime) {
|
2012-05-09 14:29:21 -04:00
|
|
|
m_metadata->setMasterKeyChanged(Tools::currentDateTimeUtc());
|
2012-04-11 09:57:11 -04:00
|
|
|
}
|
2012-04-11 07:52:12 -04:00
|
|
|
Q_EMIT modified();
|
2011-06-29 10:39:39 -04:00
|
|
|
}
|
2010-09-25 06:41:00 -04:00
|
|
|
|
2011-06-29 10:39:39 -04:00
|
|
|
void Database::setKey(const CompositeKey& key)
|
|
|
|
{
|
|
|
|
setKey(key, Random::randomArray(32));
|
2010-09-25 06:41:00 -04:00
|
|
|
}
|
2012-04-16 15:03:35 -04:00
|
|
|
|
2012-04-19 10:20:20 -04:00
|
|
|
void Database::updateKey(quint64 rounds)
|
|
|
|
{
|
|
|
|
if (m_transformRounds != rounds) {
|
|
|
|
m_transformRounds = rounds;
|
|
|
|
m_transformedMasterKey = m_key.transform(m_transformSeed, transformRounds());
|
2012-05-09 14:29:21 -04:00
|
|
|
m_metadata->setMasterKeyChanged(Tools::currentDateTimeUtc());
|
2012-04-19 10:20:20 -04:00
|
|
|
Q_EMIT modified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-16 15:03:35 -04:00
|
|
|
bool Database::hasKey()
|
|
|
|
{
|
|
|
|
return m_hasKey;
|
|
|
|
}
|
2012-04-18 15:59:00 -04:00
|
|
|
|
2012-04-21 13:06:28 -04:00
|
|
|
void Database::createRecycleBin()
|
|
|
|
{
|
|
|
|
Group* recycleBin = new Group();
|
|
|
|
recycleBin->setUuid(Uuid::random());
|
|
|
|
recycleBin->setName(tr("Recycle Bin"));
|
|
|
|
recycleBin->setIcon(43);
|
2012-05-13 12:17:44 -04:00
|
|
|
recycleBin->setSearchingEnabled(Group::Disable);
|
|
|
|
recycleBin->setAutoTypeEnabled(Group::Disable);
|
2012-04-21 13:06:28 -04:00
|
|
|
recycleBin->setParent(rootGroup());
|
|
|
|
m_metadata->setRecycleBin(recycleBin);
|
|
|
|
}
|
|
|
|
|
2012-04-18 15:59:00 -04:00
|
|
|
void Database::recycleEntry(Entry* entry)
|
|
|
|
{
|
|
|
|
if (m_metadata->recycleBinEnabled()) {
|
|
|
|
if (!m_metadata->recycleBin()) {
|
2012-04-21 13:06:28 -04:00
|
|
|
createRecycleBin();
|
2012-04-18 15:59:00 -04:00
|
|
|
}
|
2012-04-18 17:17:29 -04:00
|
|
|
entry->setGroup(metadata()->recycleBin());
|
2012-04-18 15:59:00 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
delete entry;
|
|
|
|
}
|
|
|
|
}
|
2012-04-21 13:06:28 -04:00
|
|
|
|
|
|
|
void Database::recycleGroup(Group* group)
|
|
|
|
{
|
|
|
|
if (m_metadata->recycleBinEnabled()) {
|
|
|
|
if (!m_metadata->recycleBin()) {
|
|
|
|
createRecycleBin();
|
|
|
|
}
|
|
|
|
group->setParent(metadata()->recycleBin());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
delete group;
|
|
|
|
}
|
|
|
|
}
|
2012-04-24 18:12:23 -04:00
|
|
|
|
|
|
|
Uuid Database::uuid()
|
|
|
|
{
|
|
|
|
return m_uuid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Database* Database::databaseByUuid(const Uuid& uuid)
|
|
|
|
{
|
|
|
|
return m_uuidMap.value(uuid, 0);
|
|
|
|
}
|