2013-08-07 10:29:56 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-08-07 10:29:56 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-08-07 10:29:56 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-28 22:47:39 +01:00
|
|
|
#ifndef LANLINKPROVIDER_H
|
|
|
|
#define LANLINKPROVIDER_H
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QNetworkSession>
|
2013-08-07 10:29:56 +01:00
|
|
|
#include <QObject>
|
2015-07-05 14:23:53 +01:00
|
|
|
#include <QSslSocket>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QTcpServer>
|
2016-07-05 13:13:48 +01:00
|
|
|
#include <QTimer>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QUdpSocket>
|
2016-06-10 14:07:33 +01:00
|
|
|
|
2016-07-05 13:27:53 +01:00
|
|
|
#include "backends/linkprovider.h"
|
2022-09-10 22:23:52 +01:00
|
|
|
#include "kdeconnectcore_export.h"
|
2015-07-05 14:23:53 +01:00
|
|
|
#include "landevicelink.h"
|
2022-09-10 22:23:52 +01:00
|
|
|
#include "server.h"
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class KDECONNECTCORE_EXPORT LanLinkProvider : public LinkProvider
|
2013-08-07 10:29:56 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-06-05 16:14:50 +01:00
|
|
|
/**
|
|
|
|
* @param testMode Some special overrides needed while testing
|
|
|
|
* @param udpBroadcastPort Port which should be used for *sending* identity packets
|
|
|
|
* @param udpListenPort Port which should be used for *receiving* identity packets
|
|
|
|
*/
|
2022-09-10 22:23:52 +01:00
|
|
|
LanLinkProvider(bool testMode = false, quint16 udpBroadcastPort = UDP_PORT, quint16 udpListenPort = UDP_PORT);
|
2016-06-20 08:05:02 +01:00
|
|
|
~LanLinkProvider() override;
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QString name() override
|
|
|
|
{
|
|
|
|
return QStringLiteral("LanLinkProvider");
|
|
|
|
}
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
static void configureSslSocket(QSslSocket *socket, const QString &deviceId, bool isDeviceTrusted);
|
|
|
|
static void configureSocket(QSslSocket *socket);
|
2016-06-22 13:25:12 +01:00
|
|
|
|
2019-06-05 16:14:50 +01:00
|
|
|
/**
|
|
|
|
* This is the default UDP port both for broadcasting and receiving identity packets
|
|
|
|
*/
|
2017-02-14 22:03:59 +00:00
|
|
|
const static quint16 UDP_PORT = 1716;
|
|
|
|
const static quint16 MIN_TCP_PORT = 1716;
|
|
|
|
const static quint16 MAX_TCP_PORT = 1764;
|
2016-08-08 18:38:58 +01:00
|
|
|
|
2013-08-07 10:29:56 +01:00
|
|
|
public Q_SLOTS:
|
2016-06-20 08:05:02 +01:00
|
|
|
void onNetworkChange() override;
|
|
|
|
void onStart() override;
|
|
|
|
void onStop() override;
|
2019-05-04 14:10:27 +01:00
|
|
|
void tcpSocketConnected();
|
2015-07-05 14:23:53 +01:00
|
|
|
void encrypted();
|
2019-05-26 19:36:35 +01:00
|
|
|
void connectError(QAbstractSocket::SocketError socketError);
|
2013-08-07 10:29:56 +01:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
2019-05-04 14:10:27 +01:00
|
|
|
void udpBroadcastReceived();
|
2015-07-09 23:27:27 +01:00
|
|
|
void newConnection();
|
2013-08-07 10:29:56 +01:00
|
|
|
void dataReceived();
|
2022-09-10 22:23:52 +01:00
|
|
|
void deviceLinkDestroyed(QObject *destroyedDeviceLink);
|
|
|
|
void sslErrors(const QList<QSslError> &errors);
|
2016-06-02 11:18:51 +01:00
|
|
|
void broadcastToNetwork();
|
2013-08-07 10:29:56 +01:00
|
|
|
|
|
|
|
private:
|
2022-09-10 22:23:52 +01:00
|
|
|
void onNetworkConfigurationChanged(const QNetworkConfiguration &config);
|
|
|
|
void addLink(const QString &deviceId, QSslSocket *socket, NetworkPacket *receivedPacket, LanDeviceLink::ConnectionStarted connectionOrigin);
|
2020-08-18 15:55:48 +01:00
|
|
|
QList<QHostAddress> getBroadcastAddresses();
|
2022-09-10 22:23:52 +01:00
|
|
|
void sendBroadcasts(QUdpSocket &socket, const NetworkPacket &np, const QList<QHostAddress> &addresses);
|
2015-07-05 14:23:53 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
Server *m_server;
|
2017-09-03 20:39:44 +01:00
|
|
|
QUdpSocket m_udpSocket;
|
|
|
|
quint16 m_tcpPort;
|
2013-08-07 10:29:56 +01:00
|
|
|
|
2019-06-05 16:14:50 +01:00
|
|
|
quint16 m_udpBroadcastPort;
|
|
|
|
quint16 m_udpListenPort;
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QMap<QString, LanDeviceLink *> m_links;
|
2013-08-08 03:11:20 +01:00
|
|
|
|
|
|
|
struct PendingConnect {
|
2022-09-10 22:23:52 +01:00
|
|
|
NetworkPacket *np;
|
2013-08-08 03:11:20 +01:00
|
|
|
QHostAddress sender;
|
|
|
|
};
|
2022-09-10 22:23:52 +01:00
|
|
|
QMap<QSslSocket *, PendingConnect> m_receivedIdentityPackets;
|
2015-09-08 08:05:06 +01:00
|
|
|
QNetworkConfiguration m_lastConfig;
|
2017-09-03 20:39:44 +01:00
|
|
|
const bool m_testMode;
|
|
|
|
QTimer m_combineBroadcastsTimer;
|
2013-08-07 10:29:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|