mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
cd22d4454d
* Support Philips Hue APIv2 and refactoring * Fix MDNSBrower - if timeout during host resolvment occurs * Hue API v2 - Migrate database * Fix macOS build * Handle network timeout before any other error * Address CodeQL findings * Clean-up and Fixes * Only getProperties, if username is available * Option to layout by entertainment area center * Fix Wizard --------- Co-authored-by: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com>
167 lines
3.4 KiB
C++
167 lines
3.4 KiB
C++
#ifndef PROVIDERUDPSSL_H
|
|
#define PROVIDERUDPSSL_H
|
|
|
|
#include <leddevice/LedDevice.h>
|
|
#include <utils/Logger.h>
|
|
|
|
// Qt includes
|
|
#include <QMutex>
|
|
#include <QMutexLocker>
|
|
#include <QHostInfo>
|
|
#include <QThread>
|
|
|
|
//----------- mbedtls
|
|
#if defined(USE_MBEDTLS3)
|
|
#include <mbedtls/build_info.h>
|
|
#else
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
#include <mbedtls/config.h>
|
|
#else
|
|
#include MBEDTLS_CONFIG_FILE
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
|
#include <mbedtls/platform.h>
|
|
#endif
|
|
|
|
#include <string.h>
|
|
#include <cstring>
|
|
#include <chrono>
|
|
|
|
#include <mbedtls/net_sockets.h>
|
|
#include <mbedtls/ssl_ciphersuites.h>
|
|
#include <mbedtls/entropy.h>
|
|
#include <mbedtls/timing.h>
|
|
#include <mbedtls/ctr_drbg.h>
|
|
#include <mbedtls/error.h>
|
|
#include <mbedtls/debug.h>
|
|
|
|
class ProviderUdpSSL : public LedDevice
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
///
|
|
/// @brief Constructs an UDP SSL LED-device
|
|
///
|
|
ProviderUdpSSL(const QJsonObject &deviceConfig);
|
|
|
|
///
|
|
/// @brief Destructor of the LED-device
|
|
///
|
|
~ProviderUdpSSL() override;
|
|
|
|
///
|
|
QString _hostName;
|
|
QHostAddress _address;
|
|
int _port;
|
|
|
|
protected:
|
|
|
|
///
|
|
/// @brief Initialise the UDP-SSL device's configuration and network address details
|
|
///
|
|
/// @param[in] deviceConfig the JSON device configuration
|
|
/// @return True, if success#endif // PROVIDERUDP_H
|
|
///
|
|
bool init(const QJsonObject &deviceConfig) override;
|
|
|
|
///
|
|
/// @brief Opens the output device.
|
|
///
|
|
/// @return Zero on success (i.e. device is ready), else negative
|
|
///
|
|
int open() override;
|
|
|
|
///
|
|
/// @brief Closes the output device.
|
|
///
|
|
/// @return Zero on success (i.e. device is closed), else negative
|
|
///
|
|
int close() override;
|
|
|
|
///
|
|
/// @brief Initialise device's network details
|
|
///
|
|
/// @return True, if success
|
|
///
|
|
bool initNetwork();
|
|
|
|
///
|
|
/// @brief Start astreaming connection
|
|
///
|
|
/// @return True, if success
|
|
///
|
|
bool startConnection();
|
|
|
|
///
|
|
/// @brief Stop the streaming connection
|
|
///
|
|
void stopConnection();
|
|
|
|
///
|
|
/// Writes the given bytes/bits to the UDP-device and sleeps the latch time to ensure that the
|
|
/// values are latched.
|
|
///
|
|
/// @param[in] data The data
|
|
///
|
|
void writeBytes(QByteArray data, bool flush = false);
|
|
|
|
///
|
|
/// Writes the given bytes/bits to the UDP-device and sleeps the latch time to ensure that the
|
|
/// values are latched.
|
|
///
|
|
/// @param[in] size The length of the data
|
|
/// @param[in] data The data
|
|
///
|
|
void writeBytes(unsigned int size, const uint8_t* data, bool flush = false);
|
|
|
|
///
|
|
/// get ciphersuites list from mbedtls_ssl_list_ciphersuites
|
|
///
|
|
/// @return const int * array
|
|
///
|
|
virtual const int * getCiphersuites() const;
|
|
|
|
void setPSKidentity(const QString& pskIdentity);
|
|
|
|
private:
|
|
|
|
bool initConnection();
|
|
|
|
bool seedingRNG();
|
|
bool setupStructure();
|
|
|
|
bool setupPSK();
|
|
bool startSSLHandshake();
|
|
|
|
QString errorMsg(int ret);
|
|
void closeSSLNotify();
|
|
void freeSSLConnection();
|
|
|
|
mbedtls_net_context client_fd;
|
|
mbedtls_entropy_context entropy;
|
|
mbedtls_ssl_context ssl;
|
|
mbedtls_ssl_config conf;
|
|
mbedtls_x509_crt cacert;
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
|
mbedtls_timing_delay_context timer;
|
|
|
|
QString _transport_type;
|
|
QString _custom;
|
|
int _ssl_port;
|
|
QString _server_name;
|
|
QString _psk;
|
|
QString _psk_identity;
|
|
|
|
int _handshake_attempts;
|
|
uint32_t _handshake_timeout_min;
|
|
uint32_t _handshake_timeout_max;
|
|
|
|
bool _streamReady;
|
|
bool _streamPaused;
|
|
};
|
|
|
|
#endif // PROVIDERUDPSSL_H
|