2013-07-23 15:11:54 +01:00
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-28 22:47:39 +01:00
|
|
|
#include "landevicelink.h"
|
2013-08-12 15:09:52 +01:00
|
|
|
|
2013-08-29 02:48:49 +01:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
2013-09-12 19:49:32 +01:00
|
|
|
#include <netdb.h>
|
2013-08-29 02:48:49 +01:00
|
|
|
|
2013-09-09 17:35:56 +01:00
|
|
|
#include "../linkprovider.h"
|
2013-09-14 16:30:12 +01:00
|
|
|
#include "uploadjob.h"
|
|
|
|
#include "downloadjob.h"
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2013-08-28 22:47:39 +01:00
|
|
|
LanDeviceLink::LanDeviceLink(const QString& d, LinkProvider* a, QTcpSocket* socket)
|
2013-07-23 15:11:54 +01:00
|
|
|
: DeviceLink(d, a)
|
|
|
|
{
|
|
|
|
mSocket = socket;
|
2013-08-29 02:48:49 +01:00
|
|
|
|
|
|
|
int fd = socket->socketDescriptor();
|
|
|
|
int enableKeepAlive = 1;
|
|
|
|
setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &enableKeepAlive, sizeof(enableKeepAlive));
|
|
|
|
|
|
|
|
int maxIdle = 60; /* seconds */
|
|
|
|
setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &maxIdle, sizeof(maxIdle));
|
|
|
|
|
|
|
|
int count = 3; // send up to 3 keepalive packets out, then disconnect if no response
|
2013-09-12 19:49:32 +01:00
|
|
|
setsockopt(fd, getprotobyname("TCP")->p_proto, TCP_KEEPCNT, &count, sizeof(count));
|
2013-08-29 02:48:49 +01:00
|
|
|
|
|
|
|
int interval = 5; // send a keepalive packet out every 2 seconds (after the 5 second idle period)
|
2013-09-12 19:49:32 +01:00
|
|
|
setsockopt(fd, getprotobyname("TCP")->p_proto, TCP_KEEPINTVL, &interval, sizeof(interval));
|
2013-08-29 02:48:49 +01:00
|
|
|
|
2013-08-12 15:09:52 +01:00
|
|
|
connect(mSocket, SIGNAL(disconnected()),
|
|
|
|
this, SLOT(deleteLater()));
|
|
|
|
connect(mSocket, SIGNAL(readyRead()),
|
|
|
|
this, SLOT(dataReceived()));
|
2013-07-23 15:11:54 +01:00
|
|
|
}
|
|
|
|
|
2013-09-13 22:27:16 +01:00
|
|
|
bool LanDeviceLink::sendPackageEncrypted(QCA::PublicKey& key, NetworkPackage& np)
|
2013-07-24 17:42:33 +01:00
|
|
|
{
|
2013-09-14 16:30:12 +01:00
|
|
|
if (np.hasPayload()) {
|
|
|
|
UploadJob* job = new UploadJob(np.payload());
|
|
|
|
job->start();
|
|
|
|
np.setPayloadTransferInfo(job->getTransferInfo());
|
|
|
|
}
|
|
|
|
|
2013-09-13 22:27:16 +01:00
|
|
|
np.encrypt(key);
|
2013-09-14 16:30:12 +01:00
|
|
|
|
2013-07-24 17:42:33 +01:00
|
|
|
int written = mSocket->write(np.serialize());
|
2013-09-13 22:27:16 +01:00
|
|
|
return (written != -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LanDeviceLink::sendPackage(NetworkPackage& np)
|
|
|
|
{
|
2013-09-14 16:30:12 +01:00
|
|
|
if (np.hasPayload()) {
|
|
|
|
UploadJob* job = new UploadJob(np.payload());
|
|
|
|
job->start();
|
|
|
|
np.setPayloadTransferInfo(job->getTransferInfo());
|
|
|
|
}
|
|
|
|
|
2013-09-13 22:27:16 +01:00
|
|
|
int written = mSocket->write(np.serialize());
|
|
|
|
return (written != -1);
|
2013-07-24 17:42:33 +01:00
|
|
|
}
|
|
|
|
|
2013-08-28 22:47:39 +01:00
|
|
|
void LanDeviceLink::dataReceived()
|
2013-07-23 15:11:54 +01:00
|
|
|
{
|
2013-07-26 15:21:19 +01:00
|
|
|
QByteArray data = mSocket->readAll();
|
2013-09-26 23:01:59 +01:00
|
|
|
|
|
|
|
//qDebug() << "LanDeviceLink dataReceived" << data;
|
|
|
|
|
2013-07-26 15:21:19 +01:00
|
|
|
QList<QByteArray> packages = data.split('\n');
|
|
|
|
Q_FOREACH(const QByteArray& package, packages) {
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2013-09-26 23:01:59 +01:00
|
|
|
if (package.length() < 3) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2013-09-18 17:35:50 +01:00
|
|
|
NetworkPackage unserialized(QString::null);
|
|
|
|
NetworkPackage::unserialize(package, &unserialized);
|
|
|
|
if (unserialized.isEncrypted()) {
|
2013-09-13 22:27:16 +01:00
|
|
|
|
2013-09-18 17:35:50 +01:00
|
|
|
//mPrivateKey should always be set when device link is added to device, no null-checking done here
|
2013-09-13 22:27:16 +01:00
|
|
|
NetworkPackage decrypted(QString::null);
|
2013-09-18 17:35:50 +01:00
|
|
|
unserialized.decrypt(mPrivateKey, &decrypted);
|
2013-09-14 16:30:12 +01:00
|
|
|
|
2013-09-18 17:35:50 +01:00
|
|
|
if (decrypted.hasPayloadTransferInfo()) {
|
|
|
|
qDebug() << "HasPayloadTransferInfo";
|
|
|
|
DownloadJob* job = new DownloadJob(mSocket->peerAddress(), decrypted.payloadTransferInfo());
|
2013-09-14 16:30:12 +01:00
|
|
|
job->start();
|
2013-09-20 14:54:30 +01:00
|
|
|
decrypted.setPayload(job->getPayload(), decrypted.payloadSize());
|
2013-09-14 16:30:12 +01:00
|
|
|
}
|
|
|
|
|
2013-09-13 22:27:16 +01:00
|
|
|
Q_EMIT receivedPackage(decrypted);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2013-09-18 17:35:50 +01:00
|
|
|
if (unserialized.hasPayloadTransferInfo()) {
|
2013-09-26 23:01:59 +01:00
|
|
|
qWarning() << "Ignoring unencrypted payload";
|
|
|
|
continue;
|
2013-09-18 17:35:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Q_EMIT receivedPackage(unserialized);
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2013-09-13 22:27:16 +01:00
|
|
|
}
|
2013-07-26 15:21:19 +01:00
|
|
|
|
|
|
|
}
|
2013-09-26 23:01:59 +01:00
|
|
|
|
|
|
|
//qDebug() << "MOAR BYTES" << mSocket->bytesAvailable() << packages.length();
|
|
|
|
|
|
|
|
if (mSocket->bytesAvailable() > 0) {
|
|
|
|
QMetaObject::invokeMethod(this, "dataReceived", Qt::QueuedConnection);
|
|
|
|
}
|
|
|
|
|
2013-07-23 15:11:54 +01:00
|
|
|
}
|
2013-09-14 16:30:12 +01:00
|
|
|
|
|
|
|
void LanDeviceLink::readyRead()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|