221 lines
7 KiB
C++
221 lines
7 KiB
C++
/**
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
|
*
|
|
* 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 of
|
|
* the License or (at your option) version 3 or any later version
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
* defined in Section 14 of 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 "networkpackage.h"
|
|
#include "core_debug.h"
|
|
|
|
#include <QMetaObject>
|
|
#include <QMetaProperty>
|
|
#include <QByteArray>
|
|
#include <QDataStream>
|
|
#include <QDateTime>
|
|
#include <QJsonDocument>
|
|
//#include <QtCrypto>
|
|
#include <QDebug>
|
|
|
|
#include "dbushelper.h"
|
|
#include "filetransferjob.h"
|
|
#include "pluginloader.h"
|
|
#include "kdeconnectconfig.h"
|
|
|
|
//const QCA::EncryptionAlgorithm NetworkPackage::EncryptionAlgorithm = QCA::EME_PKCS1v15;
|
|
const int NetworkPackage::ProtocolVersion = 6;
|
|
|
|
NetworkPackage::NetworkPackage(const QString& type)
|
|
{
|
|
mId = QString::number(QDateTime::currentMSecsSinceEpoch());
|
|
mType = type;
|
|
mBody = QVariantMap();
|
|
mPayload = QSharedPointer<QIODevice>();
|
|
mPayloadSize = 0;
|
|
}
|
|
|
|
void NetworkPackage::createIdentityPackage(NetworkPackage* np)
|
|
{
|
|
KdeConnectConfig* config = KdeConnectConfig::instance();
|
|
const QString id = config->deviceId();
|
|
np->mId = QString::number(QDateTime::currentMSecsSinceEpoch());
|
|
np->mType = PACKAGE_TYPE_IDENTITY;
|
|
np->mPayload = QSharedPointer<QIODevice>();
|
|
np->mPayloadSize = 0;
|
|
np->set("deviceId", id);
|
|
np->set("deviceName", config->name());
|
|
np->set("deviceType", config->deviceType());
|
|
np->set("protocolVersion", NetworkPackage::ProtocolVersion);
|
|
np->set("IncomingCapabilities", PluginLoader::instance()->incomingInterfaces());
|
|
np->set("OutgoingCapabilities", PluginLoader::instance()->outgoingInterfaces());
|
|
|
|
//qCDebug(KDECONNECT_CORE) << "createIdentityPackage" << np->serialize();
|
|
}
|
|
|
|
QVariantMap qobject2qvariant(const QObject* object)
|
|
{
|
|
QVariantMap map;
|
|
auto metaObject = object->metaObject();
|
|
for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) {
|
|
const char *name = metaObject->property(i).name();
|
|
map.insert(QString::fromLatin1(name), object->property(name));
|
|
}
|
|
|
|
return map;
|
|
}
|
|
|
|
QByteArray NetworkPackage::serialize() const
|
|
{
|
|
//Object -> QVariant
|
|
//QVariantMap variant;
|
|
//variant["id"] = mId;
|
|
//variant["type"] = mType;
|
|
//variant["body"] = mBody;
|
|
QVariantMap variant = qobject2qvariant(this);
|
|
|
|
if (hasPayload()) {
|
|
//qCDebug(KDECONNECT_CORE) << "Serializing payloadTransferInfo";
|
|
variant["payloadSize"] = payloadSize();
|
|
variant["payloadTransferInfo"] = mPayloadTransferInfo;
|
|
}
|
|
|
|
//QVariant -> json
|
|
auto jsonDocument = QJsonDocument::fromVariant(variant);
|
|
QByteArray json = jsonDocument.toJson(QJsonDocument::Compact);
|
|
if (json.isEmpty()) {
|
|
qCDebug(KDECONNECT_CORE) << "Serialization error:";
|
|
} else {
|
|
/*if (!isEncrypted()) {
|
|
//qCDebug(KDECONNECT_CORE) << "Serialized package:" << json;
|
|
}*/
|
|
json.append('\n');
|
|
}
|
|
|
|
return json;
|
|
}
|
|
|
|
void qvariant2qobject(const QVariantMap& variant, QObject* object)
|
|
{
|
|
for ( QVariantMap::const_iterator iter = variant.begin(); iter != variant.end(); ++iter )
|
|
{
|
|
const int propertyIndex = object->metaObject()->indexOfProperty(iter.key().toLatin1());
|
|
if (propertyIndex < 0) {
|
|
qCWarning(KDECONNECT_CORE) << "missing property" << object << iter.key();
|
|
continue;
|
|
}
|
|
|
|
QMetaProperty property = object->metaObject()->property(propertyIndex);
|
|
bool ret = property.write(object, *iter);
|
|
if (!ret) {
|
|
qCWarning(KDECONNECT_CORE) << "couldn't set" << object << "->" << property.name() << '=' << *iter;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool NetworkPackage::unserialize(const QByteArray& a, NetworkPackage* np)
|
|
{
|
|
//Json -> QVariant
|
|
QJsonParseError parseError;
|
|
auto parser = QJsonDocument::fromJson(a, &parseError);
|
|
if (parser.isNull()) {
|
|
qCDebug(KDECONNECT_CORE) << "Unserialization error:" << parseError.errorString();
|
|
return false;
|
|
}
|
|
|
|
auto variant = parser.toVariant().toMap();
|
|
qvariant2qobject(variant, np);
|
|
|
|
/*if (!np->isEncrypted()) {
|
|
//qCDebug(KDECONNECT_CORE) << "Unserialized: " << a;
|
|
}*/
|
|
|
|
np->mPayloadSize = variant["payloadSize"].toInt(); //Will return 0 if was not present, which is ok
|
|
if (np->mPayloadSize == -1) {
|
|
np->mPayloadSize = np->get<int>("size", -1);
|
|
}
|
|
np->mPayloadTransferInfo = variant["payloadTransferInfo"].toMap(); //Will return an empty qvariantmap if was not present, which is ok
|
|
|
|
//Ids containing characters that are not allowed as dbus paths would make app crash
|
|
if (np->mBody.contains("deviceId"))
|
|
{
|
|
QString deviceId = np->get<QString>("deviceId");
|
|
DbusHelper::filterNonExportableCharacters(deviceId);
|
|
np->set("deviceId", deviceId);
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
/*
|
|
void NetworkPackage::encrypt(QCA::PublicKey& key)
|
|
{
|
|
|
|
QByteArray serialized = serialize();
|
|
|
|
int chunkSize = key.maximumEncryptSize(NetworkPackage::EncryptionAlgorithm);
|
|
|
|
QStringList chunks;
|
|
while (!serialized.isEmpty()) {
|
|
const QByteArray chunk = serialized.left(chunkSize);
|
|
serialized = serialized.mid(chunkSize);
|
|
const QByteArray encryptedChunk = key.encrypt(chunk, NetworkPackage::EncryptionAlgorithm).toByteArray();
|
|
chunks.append( encryptedChunk.toBase64() );
|
|
}
|
|
|
|
//qCDebug(KDECONNECT_CORE) << chunks.size() << "chunks";
|
|
|
|
mId = QString::number(QDateTime::currentMSecsSinceEpoch());
|
|
mType = PACKAGE_TYPE_ENCRYPTED;
|
|
mBody = QVariantMap();
|
|
mBody["data"] = chunks;
|
|
|
|
}
|
|
|
|
bool NetworkPackage::decrypt(QCA::PrivateKey& key, NetworkPackage* out) const
|
|
{
|
|
|
|
const QStringList chunks = mBody["data"].toStringList();
|
|
|
|
QByteArray decryptedJson;
|
|
Q_FOREACH(const QString& chunk, chunks) {
|
|
const QByteArray encryptedChunk = QByteArray::fromBase64(chunk.toLatin1());
|
|
QCA::SecureArray decryptedChunk;
|
|
bool success = key.decrypt(encryptedChunk, &decryptedChunk, NetworkPackage::EncryptionAlgorithm);
|
|
if (!success) {
|
|
return false;
|
|
}
|
|
decryptedJson.append(decryptedChunk.toByteArray());
|
|
}
|
|
|
|
bool success = unserialize(decryptedJson, out);
|
|
|
|
if (!success) {
|
|
return false;
|
|
}
|
|
|
|
if (hasPayload()) {
|
|
out->mPayload = mPayload;
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
*/
|
|
FileTransferJob* NetworkPackage::createPayloadTransferJob(const QUrl &destination) const
|
|
{
|
|
return new FileTransferJob(payload(), payloadSize(), destination);
|
|
}
|
|
|