mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
259becea04
* whitespaces + typo fixes * JS / LGTM fixes * SSDP Handler crash fix * MessageForwarder handlePriorityChanges Slave fixes * use aboutToQuit Signal * complete rewriten Hue Entertainment API structure combined Philips Hue and Entertainment API with new MbedTLS based SSL UDP Provider * add required cross-compile submodules * logical rebuild fn: initLeds, setLights + new logs -more detailed checks and error handling inside iniLeds and setLights - logical script procedure before ProviderUdpSSL init - first steps for multiple ProviderUdpSSL usage - better fallback support to old RestAPI, if entertainment api is not supported - just 4 u LordGrey: new log fn for cosmetic config outputs ;) * add OSX CompileHowTo - undo from CrossCompileHowTo * whitespace fixes * lightID toString fix * fix unsigned int E-API + debug output * bugfixes, reworked black signal detection, wizard: - change device config field light-ids from int to string -> real unsigned int fix - add signal detection brightness minimum threshold value 0.0 for 0% brightness - 1.0 for 100% brightness to count for blacklight signal detection reason: input may not 100% black, like mine - i have a deep dark gray input signal -> my threshold value is set to 0.005 for 0.5% minimum brightness = 1 (from max 255) to count as black - wizard optimations, with fallback without entertainment support (beta state) - whitespace fixes * cleanup + minor fixes * change fixed Hue UPD SSL config to _devConfig paras * Hotfix SSL Connection, new light models, wizard: - Fix UPD SSL Connection failed Problems - add new supported gamut C light models: LCG002, LCA001, LCA002, LCA003 - wizard: extend fallback support to classic mode + hints * whitespace, typo fix * uncheck useEntertainmentAPI, if noAPISupport detected + hint * coredump fix -> add _blackLightsTimer nullptr init * code cleanup / remove old debugs + whitespacefixes * add gamut C LCP001, LCP002 * SSL UDP config made more flexible + remove qDebug -> switch to hyerion.ng _log -> replace logCommand with verbose -> code cleanups etc... * extended mbedtls debugging infos * add adjustable ssl timeout settings * error handling * streamdebugger bugfixes * UPDSSL psk / psk_identity bugfixes! + hue wizard fn typo fix + - verbose option available without dependencies - whitespace fixes * Philips Hue Assistant now recognizes non-original bridges better... + Added note if no clientkey is set when using the entertainment API + User creation (+ clientkey) for non-original bridges can now also be used + Minor changes and bug fixes * CMAKE mbedTLS detection * minor bug fixes + code cleanups * FindMbedTLS.cmake remove Path-Hints + wizard.js: ajax timeout handling Test - content_grabber.js: run relevant code only, if V4L2_AVAIL is true: conf_grabber don't displays other devices, if V4L2 is not available * compile mbedtls via cmake as static lib * remove libmbedtls-dev from compileHowto / scripts * Fix Windows build * Fix windows build (part 2) * removed unnecessary osx x11 include directory path * QTimer Shutdown bugfix * cmake win32 fix + minor bugfixes * cmake debug msg used mbedtls libs * Bugfix: noSignalDetection wasn't switchedOn again if no signal was previously detected * Some code fixes based on alerts from lgtm.com Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
211 lines
4.8 KiB
C++
211 lines
4.8 KiB
C++
#pragma once
|
|
|
|
#include <leddevice/LedDevice.h>
|
|
#include <utils/Logger.h>
|
|
|
|
// Qt includes
|
|
#include <QMutex>
|
|
#include <QMutexLocker>
|
|
#include <QHostInfo>
|
|
#include <QThread>
|
|
|
|
//----------- mbedtls
|
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
|
#include <mbedtls/config.h>
|
|
#else
|
|
#include MBEDTLS_CONFIG_FILE
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
|
#include <mbedtls/platform.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#define mbedtls_time time
|
|
#define mbedtls_time_t time_t
|
|
#define mbedtls_printf printf
|
|
#define mbedtls_fprintf fprintf
|
|
#define mbedtls_snprintf snprintf
|
|
#define mbedtls_calloc calloc
|
|
#define mbedtls_free free
|
|
#define mbedtls_exit exit
|
|
#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
|
|
#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
|
|
#endif
|
|
|
|
#include <string.h>
|
|
#include <cstring>
|
|
|
|
#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>
|
|
|
|
#define READ_TIMEOUT_MS 1000
|
|
#define MAX_RETRY 5
|
|
|
|
//----------- END mbedtls
|
|
|
|
const ushort MAX_PORT_SSL = 65535;
|
|
|
|
class ProviderUdpSSL : public LedDevice
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
///
|
|
/// Constructs specific LedDevice
|
|
///
|
|
ProviderUdpSSL();
|
|
|
|
///
|
|
/// Destructor of the LedDevice; closes the output device if it is open
|
|
///
|
|
virtual ~ProviderUdpSSL() override;
|
|
|
|
///
|
|
/// Sets configuration
|
|
///
|
|
/// @param deviceConfig the json device config
|
|
/// @return true if success
|
|
virtual bool init(const QJsonObject &deviceConfig) override;
|
|
|
|
public slots:
|
|
///
|
|
/// Closes the output device.
|
|
/// Includes switching-off the device and stopping refreshes
|
|
///
|
|
virtual void close() override;
|
|
|
|
protected:
|
|
|
|
///
|
|
/// Initialise device's network details
|
|
///
|
|
/// @return True if success
|
|
///
|
|
bool initNetwork();
|
|
|
|
///
|
|
/// Opens and configures the output device
|
|
///
|
|
/// @return Zero on succes else negative
|
|
///
|
|
int open() override;
|
|
|
|
///
|
|
/// 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(const unsigned size, const uint8_t *data);
|
|
|
|
///
|
|
/// get ciphersuites list from mbedtls_ssl_list_ciphersuites
|
|
///
|
|
/// @return const int * array
|
|
///
|
|
virtual const int * getCiphersuites();
|
|
|
|
void sslLog(const QString &msg, const char* errorType = "debug");
|
|
void sslLog(const char* msg, const char* errorType = "debug");
|
|
void configLog(const char* msg, const char* type, ...);
|
|
|
|
/**
|
|
* Debug callback for mbed TLS
|
|
* Just prints on the USB serial port
|
|
*/
|
|
static void ProviderUdpSSLDebug(void *ctx, int level, const char *file, int line, const char *str)
|
|
{
|
|
const char *p, *basename;
|
|
(void) ctx;
|
|
/* Extract basename from file */
|
|
for(p = basename = file; *p != '\0'; p++)
|
|
{
|
|
if(*p == '/' || *p == '\\')
|
|
{
|
|
basename = p + 1;
|
|
}
|
|
}
|
|
mbedtls_printf("%s:%04d: |%d| %s", basename, line, level, str);
|
|
}
|
|
|
|
/**
|
|
* Certificate verification callback for mbed TLS
|
|
* Here we only use it to display information on each cert in the chain
|
|
*/
|
|
static int ProviderUdpSSLVerify(void *data, mbedtls_x509_crt *crt, int depth, uint32_t *flags)
|
|
{
|
|
const uint32_t buf_size = 1024;
|
|
char *buf = new char[buf_size];
|
|
(void) data;
|
|
|
|
mbedtls_printf("\nVerifying certificate at depth %d:\n", depth);
|
|
mbedtls_x509_crt_info(buf, buf_size - 1, " ", crt);
|
|
mbedtls_printf("%s", buf);
|
|
|
|
if (*flags == 0)
|
|
mbedtls_printf("No verification issue for this certificate\n");
|
|
else
|
|
{
|
|
mbedtls_x509_crt_verify_info(buf, buf_size, " ! ", *flags);
|
|
mbedtls_printf("%s\n", buf);
|
|
}
|
|
|
|
delete[] buf;
|
|
return 0;
|
|
}
|
|
|
|
///
|
|
/// closeSSLNotify and freeSSLConnection
|
|
///
|
|
void closeSSLConnection();
|
|
|
|
private:
|
|
|
|
bool buildConnection();
|
|
bool initConnection();
|
|
bool seedingRNG();
|
|
bool setupStructure();
|
|
bool startUPDConnection();
|
|
bool setupPSK();
|
|
bool startSSLHandshake();
|
|
void handleReturn(int ret);
|
|
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;
|
|
|
|
QMutex _hueMutex;
|
|
QString _transport_type;
|
|
QString _custom;
|
|
QHostAddress _address;
|
|
QString _defaultHost;
|
|
int _port;
|
|
int _ssl_port;
|
|
QString _server_name;
|
|
QString _psk;
|
|
QString _psk_identity;
|
|
uint32_t _read_timeout;
|
|
uint32_t _handshake_timeout_min;
|
|
uint32_t _handshake_timeout_max;
|
|
unsigned int _handshake_attempts;
|
|
int _retry_left;
|
|
bool _stopConnection;
|
|
bool _debugStreamer;
|
|
int _debugLevel;
|
|
};
|