Skip to content

Commit b8dfb9c

Browse files
committed
Add support for gzip compressed databases.
1 parent f0e711a commit b8dfb9c

13 files changed

+1290
-11
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ find_package(Automoc4 REQUIRED)
4949

5050
find_package(Libgcrypt REQUIRED)
5151

52+
find_package(ZLIB REQUIRED)
53+
5254
add_subdirectory(src)
5355
if( WITH_TESTS )
5456
add_subdirectory(tests)

COPYING

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ Files: share/icons/entries/*.png
3030
Copyright: 2003-2004, David Vignoni <[email protected]>
3131
License: LGPL-2.1
3232

33+
Files: src/streams/qtiocompressor.*, src/streams/QtIOCompressor
34+
Copyright: 2009, Nokia Corporation and/or its subsidiary(-ies)
35+
License: LGPL-2.1 or GPL-3
36+
3337
Files: tests/modeltest.*
3438
Copyright: 2007, Trolltech ASA
3539
License: GPL-2

LICENSE.LGPL

+502
Large diffs are not rendered by default.

LICENSE.NOKIA-LGPL-EXCEPTION

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Nokia Qt LGPL Exception version 1.1
2+
3+
As an additional permission to the GNU Lesser General Public License
4+
version 2.1, the object code form of a "work that uses the Library"
5+
may incorporate material from a header file that is part of the
6+
Library. You may distribute such object code under terms of your
7+
choice, provided that:
8+
(i) the header files of the Library have not been modified; and
9+
(ii) the incorporated material is limited to numerical parameters,
10+
data structure layouts, accessors, macros, inline functions and
11+
templates; and
12+
(iii) you comply with the terms of Section 6 of the GNU
13+
Lesser General Public License version 2.1.
14+
15+
Moreover, you may apply this exception to a modified version of the
16+
Library, provided that such modification does not involve copying
17+
material from the Library into the modified Library?s header files
18+
unless such material is limited to (i) numerical parameters; (ii) data
19+
structure layouts; (iii) accessors; and (iv) small macros, templates
20+
and inline functions of five lines or less in length.
21+
22+
Furthermore, you are not required to apply this additional permission
23+
to a modified version of the Library.

src/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ set(keepassx_SOURCES
4343
keys/PasswordKey.cpp
4444
streams/HashedBlockStream.cpp
4545
streams/LayeredStream.cpp
46+
streams/qtiocompressor.cpp
4647
streams/SymmetricCipherStream.cpp
4748
)
4849

@@ -55,4 +56,4 @@ qt4_wrap_ui(keepassx_SOURCES ${keepassx_FORMS})
5556
automoc4_add_library( keepassx_core STATIC ${keepassx_SOURCES} )
5657

5758
automoc4_add_executable( ${PROGNAME} WIN32 MACOSX_BUNDLE main.cpp )
58-
target_link_libraries( ${PROGNAME} keepassx_core ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${LIBGCRYPT_LIBS} )
59+
target_link_libraries( ${PROGNAME} keepassx_core ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${LIBGCRYPT_LIBS} ${ZLIB_LIBRARIES} )

src/format/KeePass2Reader.cpp

+17-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
#include <QtCore/QFile>
2222
#include <QtCore/QIODevice>
2323

24-
#include "KeePass2.h"
2524
#include "KeePass2XmlReader.h"
2625
#include "crypto/CryptoHash.h"
2726
#include "streams/HashedBlockStream.h"
27+
#include "streams/QtIOCompressor"
2828
#include "streams/SymmetricCipherStream.h"
2929

3030
const QSysInfo::Endian KeePass2Reader::BYTEORDER = QSysInfo::LittleEndian;
@@ -80,8 +80,22 @@ Database* KeePass2Reader::readDatabase(QIODevice* device, const CompositeKey& ke
8080
HashedBlockStream hashedStream(&cipherStream);
8181
hashedStream.open(QIODevice::ReadOnly);
8282

83+
QIODevice* xmlDevice;
84+
QScopedPointer<QtIOCompressor> ioCompressor;
85+
86+
if (m_compression == KeePass2::CompressionNone) {
87+
xmlDevice = &hashedStream;
88+
}
89+
else {
90+
ioCompressor.reset(new QtIOCompressor(&hashedStream));
91+
ioCompressor->setStreamFormat(QtIOCompressor::GzipFormat);
92+
ioCompressor->open(QIODevice::ReadOnly);
93+
xmlDevice = ioCompressor.data();
94+
}
95+
8396
KeePass2XmlReader xmlReader;
84-
Database* db = xmlReader.readDatabase(&hashedStream);
97+
Database* db = xmlReader.readDatabase(xmlDevice);
98+
// TODO forward error messages from xmlReader
8599
return db;
86100
}
87101

@@ -208,7 +222,7 @@ void KeePass2Reader::setCompressionFlags(const QByteArray& data)
208222
raiseError("");
209223
}
210224
else {
211-
m_compression = id;
225+
m_compression = static_cast<KeePass2::CompressionAlgorithm>(id);
212226
}
213227
}
214228
}

src/format/KeePass2Reader.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "core/Endian.h"
2424
#include "core/Uuid.h"
2525
#include "keys/CompositeKey.h"
26+
#include "format/KeePass2.h"
2627

2728
class Database;
2829

@@ -59,7 +60,7 @@ class KeePass2Reader
5960
bool m_headerEnd;
6061

6162
Uuid m_cipher;
62-
int m_compression;
63+
KeePass2::CompressionAlgorithm m_compression;
6364
QByteArray m_masterSeed;
6465
QByteArray m_transformSeed;
6566
quint64 m_transformRounds;

src/streams/QtIOCompressor

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#include "qtiocompressor.h"

0 commit comments

Comments
 (0)