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
|
|
|
|
|
|
|
#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>
|
2023-04-28 13:32:31 +01:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
#include <QNetworkConfigurationManager>
|
|
|
|
#include <QNetworkSession>
|
|
|
|
#else
|
|
|
|
#include <QNetworkInformation>
|
|
|
|
#endif
|
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"
|
2023-07-13 13:56:02 +01:00
|
|
|
#ifdef KDECONNECT_MDNS
|
2023-07-10 17:40:57 +01:00
|
|
|
#include "mdnsdiscovery.h"
|
|
|
|
#endif
|
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
|
|
|
|
2023-06-22 10:53:42 +01:00
|
|
|
void sendUdpIdentityPacket(const QList<QHostAddress> &addresses);
|
|
|
|
|
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;
|
2023-06-27 12:10:59 +01:00
|
|
|
void onLinkDestroyed(const QString &deviceId, DeviceLink *oldPtr) override;
|
2016-06-20 08:05:02 +01:00
|
|
|
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 sslErrors(const QList<QSslError> &errors);
|
2023-07-31 08:57:44 +01:00
|
|
|
void combinedOnNetworkChange();
|
2013-08-07 10:29:56 +01:00
|
|
|
|
|
|
|
private:
|
2023-06-27 12:10:59 +01:00
|
|
|
void addLink(QSslSocket *socket, const DeviceInfo &deviceInfo);
|
2020-08-18 15:55:48 +01:00
|
|
|
QList<QHostAddress> getBroadcastAddresses();
|
2023-06-25 21:50:47 +01:00
|
|
|
void sendUdpIdentityPacket(QUdpSocket &socket, const QList<QHostAddress> &addresses);
|
2023-06-22 10:53:42 +01:00
|
|
|
void broadcastUdpIdentityPacket();
|
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;
|
2023-08-04 09:25:45 +01:00
|
|
|
QMap<QString, qint64> m_lastConnectionTime;
|
2017-09-03 20:39:44 +01:00
|
|
|
const bool m_testMode;
|
2023-07-31 08:57:44 +01:00
|
|
|
QTimer m_combineNetworkChangeTimer;
|
2023-06-22 10:53:42 +01:00
|
|
|
|
2023-07-13 13:56:02 +01:00
|
|
|
#ifdef KDECONNECT_MDNS
|
2023-06-22 10:53:42 +01:00
|
|
|
MdnsDiscovery m_mdnsDiscovery;
|
2023-07-10 17:40:57 +01:00
|
|
|
#endif
|
2013-08-07 10:29:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|