strawberry-audio-player-win.../3rdparty/singleapplication/singleapplication_p.cpp

506 lines
14 KiB
C++
Raw Normal View History

// The MIT License (MIT)
//
2020-10-05 21:31:03 +02:00
// Copyright (c) Itay Grudev 2015 - 2020
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// W A R N I N G !!!
// -----------------
//
// This is a modified version of SingleApplication,
// The original version is at:
//
// https://github.com/itay-grudev/SingleApplication
//
//
#include "config.h"
#include <QtGlobal>
#include <cstdlib>
#include <cstddef>
#ifdef Q_OS_UNIX
# include <unistd.h>
# include <sys/types.h>
# include <pwd.h>
#endif
2022-02-06 00:07:15 +01:00
#ifdef Q_OS_WIN
# ifndef NOMINMAX
# define NOMINMAX 1
# endif
# include <windows.h>
# include <lmcons.h>
#endif
2020-10-05 21:31:03 +02:00
#include <QObject>
#include <QThread>
2020-02-08 03:40:30 +01:00
#include <QIODevice>
#include <QSharedMemory>
#include <QByteArray>
#include <QDataStream>
#include <QCryptographicHash>
#include <QLocalServer>
#include <QLocalSocket>
2020-10-05 21:31:03 +02:00
#include <QElapsedTimer>
2022-01-29 01:33:40 +01:00
#include <QRandomGenerator>
#include "singleapplication_t.h"
#include "singleapplication_p.h"
SingleApplicationPrivateClass::SingleApplicationPrivateClass(SingleApplicationClass *ptr)
2020-10-05 21:31:03 +02:00
: q_ptr(ptr),
memory_(nullptr),
socket_(nullptr),
server_(nullptr),
instanceNumber_(-1) {}
SingleApplicationPrivateClass::~SingleApplicationPrivateClass() {
if (socket_ != nullptr && socket_->isOpen()) {
2020-10-05 21:31:03 +02:00
socket_->close();
}
if (memory_ != nullptr) {
memory_->lock();
if (server_ != nullptr) {
server_->close();
InstancesInfo *instance = static_cast<InstancesInfo*>(memory_->data());
2022-02-06 00:07:15 +01:00
instance->primary = false;
instance->primaryPid = -1;
instance->primaryUser[0] = '\0';
instance->checksum = blockChecksum();
2020-10-05 21:31:03 +02:00
}
memory_->unlock();
if (memory_->isAttached()) {
memory_->detach();
}
2020-10-05 21:31:03 +02:00
}
}
QString SingleApplicationPrivateClass::getUsername() {
2020-10-05 21:31:03 +02:00
#ifdef Q_OS_UNIX
QString username;
#if defined(HAVE_GETEUID) && defined(HAVE_GETPWUID)
struct passwd *pw = getpwuid(geteuid());
if (pw) {
username = QString::fromLocal8Bit(pw->pw_name);
}
2020-10-05 21:31:03 +02:00
#endif
if (username.isEmpty()) {
username = qEnvironmentVariable("USER");
}
return username;
#endif
2020-10-05 21:31:03 +02:00
#ifdef Q_OS_WIN
wchar_t username[UNLEN + 1];
// Specifies size of the buffer on input
DWORD usernameLength = UNLEN + 1;
if (GetUserNameW(username, &usernameLength)) {
return QString::fromWCharArray(username);
}
2020-10-05 21:31:03 +02:00
return qEnvironmentVariable("USERNAME");
#endif
}
void SingleApplicationPrivateClass::genBlockServerName() {
QCryptographicHash appData(QCryptographicHash::Sha256);
appData.addData("SingleApplication");
appData.addData(SingleApplicationClass::applicationName().toUtf8());
appData.addData(SingleApplicationClass::organizationName().toUtf8());
appData.addData(SingleApplicationClass::organizationDomain().toUtf8());
if (!(options_ & SingleApplicationClass::Mode::ExcludeAppVersion)) {
appData.addData(SingleApplicationClass::applicationVersion().toUtf8());
}
if (!(options_ & SingleApplicationClass::Mode::ExcludeAppPath)) {
2022-02-06 00:07:15 +01:00
#if defined(Q_OS_UNIX)
const QByteArray appImagePath = qgetenv("APPIMAGE");
if (appImagePath.isEmpty()) {
appData.addData(SingleApplicationClass::applicationFilePath().toUtf8());
2022-02-06 00:07:15 +01:00
}
else {
appData.addData(appImagePath);
2023-03-02 22:56:17 +01:00
}
2022-02-06 00:07:15 +01:00
#elif defined(Q_OS_WIN)
appData.addData(SingleApplicationClass::applicationFilePath().toLower().toUtf8());
#else
appData.addData(SingleApplicationClass::applicationFilePath().toUtf8());
#endif
}
// User level block requires a user specific data in the hash
if (options_ & SingleApplicationClass::Mode::User) {
2020-10-05 21:31:03 +02:00
appData.addData(getUsername().toUtf8());
}
// Replace the backslash in RFC 2045 Base64 [a-zA-Z0-9+/=] to comply with server naming requirements.
2020-10-05 21:31:03 +02:00
blockServerName_ = appData.result().toBase64().replace("/", "_");
}
void SingleApplicationPrivateClass::initializeMemoryBlock() const {
2022-02-06 00:07:15 +01:00
InstancesInfo *instance = static_cast<InstancesInfo*>(memory_->data());
instance->primary = false;
instance->secondary = 0;
instance->primaryPid = -1;
instance->primaryUser[0] = '\0';
instance->checksum = blockChecksum();
2020-10-05 21:31:03 +02:00
}
void SingleApplicationPrivateClass::startPrimary() {
2020-10-05 21:31:03 +02:00
// Reset the number of connections
2022-02-06 00:07:15 +01:00
InstancesInfo *instance = static_cast<InstancesInfo*>(memory_->data());
2020-10-05 21:31:03 +02:00
2022-02-06 00:07:15 +01:00
instance->primary = true;
instance->primaryPid = QCoreApplication::applicationPid();
qstrncpy(instance->primaryUser, getUsername().toUtf8().data(), sizeof(instance->primaryUser));
instance->checksum = blockChecksum();
2020-10-05 21:31:03 +02:00
instanceNumber_ = 0;
// Successful creation means that no main process exists
// So we start a QLocalServer to listen for connections
2020-10-05 21:31:03 +02:00
QLocalServer::removeServer(blockServerName_);
server_ = new QLocalServer(this);
2020-10-05 21:31:03 +02:00
// Restrict access to the socket according to the SingleApplication::Mode::User flag on User level or no restrictions
if (options_ & SingleApplicationClass::Mode::User) {
2020-10-05 21:31:03 +02:00
server_->setSocketOptions(QLocalServer::UserAccessOption);
}
else {
2020-10-05 21:31:03 +02:00
server_->setSocketOptions(QLocalServer::WorldAccessOption);
}
2020-10-05 21:31:03 +02:00
server_->listen(blockServerName_);
QObject::connect(server_, &QLocalServer::newConnection, this, &SingleApplicationPrivateClass::slotConnectionEstablished);
2020-10-05 21:31:03 +02:00
}
void SingleApplicationPrivateClass::startSecondary() {
2020-10-05 21:31:03 +02:00
2022-02-06 00:07:15 +01:00
InstancesInfo *instance = static_cast<InstancesInfo*>(memory_->data());
2020-10-05 21:31:03 +02:00
2022-02-06 00:07:15 +01:00
instance->secondary += 1;
instance->checksum = blockChecksum();
instanceNumber_ = instance->secondary;
}
bool SingleApplicationPrivateClass::connectToPrimary(const int timeout, const ConnectionType connectionType) {
// Connect to the Local Server of the Primary Instance if not already connected.
2020-10-05 21:31:03 +02:00
if (socket_ == nullptr) {
socket_ = new QLocalSocket(this);
}
2020-10-05 21:31:03 +02:00
if (socket_->state() == QLocalSocket::ConnectedState) return true;
QElapsedTimer time;
time.start();
2020-10-05 21:31:03 +02:00
if (socket_->state() != QLocalSocket::ConnectedState) {
forever {
randomSleep();
2021-08-23 21:21:08 +02:00
if (socket_->state() != QLocalSocket::ConnectingState) {
2020-10-05 21:31:03 +02:00
socket_->connectToServer(blockServerName_);
2021-08-23 21:21:08 +02:00
}
2020-10-05 21:31:03 +02:00
if (socket_->state() == QLocalSocket::ConnectingState) {
2021-03-21 18:53:02 +01:00
socket_->waitForConnected(static_cast<int>(timeout - time.elapsed()));
2020-10-05 21:31:03 +02:00
}
// If connected break out of the loop
if (socket_->state() == QLocalSocket::ConnectedState) break;
// If elapsed time since start is longer than the method timeout return
if (time.elapsed() >= timeout) return false;
}
}
// Initialization message according to the SingleApplication protocol
2020-10-05 21:31:03 +02:00
QByteArray initMsg;
QDataStream writeStream(&initMsg, QIODevice::WriteOnly);
writeStream.setVersion(QDataStream::Qt_5_8);
2020-10-05 21:31:03 +02:00
writeStream << blockServerName_.toLatin1();
writeStream << static_cast<quint8>(connectionType);
writeStream << instanceNumber_;
2020-09-04 21:54:59 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
2022-02-06 00:07:15 +01:00
quint16 checksum = qChecksum(QByteArray(initMsg, static_cast<quint32>(initMsg.length())));
2020-09-04 21:54:59 +02:00
#else
2020-10-05 21:31:03 +02:00
quint16 checksum = qChecksum(initMsg.constData(), static_cast<quint32>(initMsg.length()));
2020-09-04 21:54:59 +02:00
#endif
2020-10-05 21:31:03 +02:00
writeStream << checksum;
2022-02-06 00:07:15 +01:00
return writeConfirmedMessage(static_cast<int>(timeout - time.elapsed()), initMsg);
}
void SingleApplicationPrivateClass::writeAck(QLocalSocket *sock) {
2022-02-06 00:07:15 +01:00
sock->putChar('\n');
}
bool SingleApplicationPrivateClass::writeConfirmedMessage(const int timeout, const QByteArray &msg) const {
2022-02-06 00:07:15 +01:00
QElapsedTimer time;
time.start();
// Frame 1: The header indicates the message length that follows
2020-10-05 21:31:03 +02:00
QByteArray header;
QDataStream headerStream(&header, QIODevice::WriteOnly);
headerStream.setVersion(QDataStream::Qt_5_8);
2022-02-06 00:07:15 +01:00
headerStream << static_cast<quint64>(msg.length());
if (!writeConfirmedFrame(static_cast<int>(timeout - time.elapsed()), header)) {
return false;
}
// Frame 2: The message
return writeConfirmedFrame(static_cast<int>(timeout - time.elapsed()), msg);
}
2020-02-29 21:50:10 +01:00
bool SingleApplicationPrivateClass::writeConfirmedFrame(const int timeout, const QByteArray &msg) const {
2022-02-06 00:07:15 +01:00
socket_->write(msg);
2020-10-05 21:31:03 +02:00
socket_->flush();
2022-02-06 00:07:15 +01:00
bool result = socket_->waitForReadyRead(timeout);
if (result) {
socket_->read(1);
return true;
}
return false;
}
quint16 SingleApplicationPrivateClass::blockChecksum() const {
2020-09-04 21:54:59 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
2020-10-05 21:31:03 +02:00
quint16 checksum = qChecksum(QByteArray(static_cast<const char*>(memory_->constData()), offsetof(InstancesInfo, checksum)));
2020-09-04 21:54:59 +02:00
#else
2020-10-05 21:31:03 +02:00
quint16 checksum = qChecksum(static_cast<const char*>(memory_->constData()), offsetof(InstancesInfo, checksum));
2020-09-04 21:54:59 +02:00
#endif
return checksum;
2020-10-05 21:31:03 +02:00
}
qint64 SingleApplicationPrivateClass::primaryPid() const {
2020-10-05 21:31:03 +02:00
memory_->lock();
2022-02-06 00:07:15 +01:00
InstancesInfo *instance = static_cast<InstancesInfo*>(memory_->data());
qint64 pid = instance->primaryPid;
2020-10-05 21:31:03 +02:00
memory_->unlock();
return pid;
2020-10-05 21:31:03 +02:00
}
QString SingleApplicationPrivateClass::primaryUser() const {
2020-10-05 21:31:03 +02:00
memory_->lock();
2022-02-06 00:07:15 +01:00
InstancesInfo *instance = static_cast<InstancesInfo*>(memory_->data());
QByteArray username = instance->primaryUser;
2020-10-05 21:31:03 +02:00
memory_->unlock();
return QString::fromUtf8(username);
}
/**
* @brief Executed when a connection has been made to the LocalServer
*/
void SingleApplicationPrivateClass::slotConnectionEstablished() {
2020-10-05 21:31:03 +02:00
QLocalSocket *nextConnSocket = server_->nextPendingConnection();
connectionMap_.insert(nextConnSocket, ConnectionInfo());
QObject::connect(nextConnSocket, &QLocalSocket::aboutToClose, this, [this, nextConnSocket]() {
2022-02-06 00:07:15 +01:00
const ConnectionInfo &info = connectionMap_[nextConnSocket];
2021-03-21 04:36:54 +01:00
slotClientConnectionClosed(nextConnSocket, info.instanceId);
2020-10-05 21:31:03 +02:00
});
2022-02-06 00:07:15 +01:00
QObject::connect(nextConnSocket, &QLocalSocket::disconnected, nextConnSocket, &QLocalSocket::deleteLater);
QObject::connect(nextConnSocket, &QLocalSocket::destroyed, this, [this, nextConnSocket]() {
2020-10-05 21:31:03 +02:00
connectionMap_.remove(nextConnSocket);
});
QObject::connect(nextConnSocket, &QLocalSocket::readyRead, this, [this, nextConnSocket]() {
2022-02-06 00:07:15 +01:00
const ConnectionInfo &info = connectionMap_[nextConnSocket];
2020-10-05 21:31:03 +02:00
switch (info.stage) {
2022-02-06 00:07:15 +01:00
case StageInitHeader:
readMessageHeader(nextConnSocket, StageInitBody);
2020-10-05 21:31:03 +02:00
break;
2022-02-06 00:07:15 +01:00
case StageInitBody:
2020-10-05 21:31:03 +02:00
readInitMessageBody(nextConnSocket);
break;
2022-02-06 00:07:15 +01:00
case StageConnectedHeader:
readMessageHeader(nextConnSocket, StageConnectedBody);
break;
case StageConnectedBody:
slotDataAvailable(nextConnSocket, info.instanceId);
2020-10-05 21:31:03 +02:00
break;
default:
break;
2023-03-02 22:56:17 +01:00
}
2020-10-05 21:31:03 +02:00
});
}
void SingleApplicationPrivateClass::readMessageHeader(QLocalSocket *sock, const SingleApplicationPrivateClass::ConnectionStage nextStage) {
2020-10-05 21:31:03 +02:00
if (!connectionMap_.contains(sock)) {
return;
}
2020-06-15 17:59:02 +02:00
if (sock->bytesAvailable() < static_cast<qint64>(sizeof(quint64))) {
return;
}
QDataStream headerStream(sock);
2020-10-05 21:31:03 +02:00
headerStream.setVersion(QDataStream::Qt_5_8);
// Read the header to know the message length
quint64 msgLen = 0;
headerStream >> msgLen;
2020-10-05 21:31:03 +02:00
ConnectionInfo &info = connectionMap_[sock];
2022-02-06 00:07:15 +01:00
info.stage = nextStage;
info.msgLen = msgLen;
2022-02-06 00:07:15 +01:00
writeAck(sock);
2020-10-05 21:31:03 +02:00
}
bool SingleApplicationPrivateClass::isFrameComplete(QLocalSocket *sock) {
2020-10-05 21:31:03 +02:00
if (!connectionMap_.contains(sock)) {
2022-02-06 00:07:15 +01:00
return false;
}
2022-02-06 00:07:15 +01:00
const ConnectionInfo &info = connectionMap_[sock];
2022-02-06 04:18:59 +01:00
return (sock->bytesAvailable() >= static_cast<qint64>(info.msgLen));
2022-02-06 00:07:15 +01:00
}
void SingleApplicationPrivateClass::readInitMessageBody(QLocalSocket *sock) {
2022-02-06 00:07:15 +01:00
Q_Q(SingleApplicationClass);
2022-02-06 00:07:15 +01:00
if (!isFrameComplete(sock)) {
return;
}
// Read the message body
2022-02-06 00:07:15 +01:00
QByteArray msgBytes = sock->readAll();
QDataStream readStream(msgBytes);
2020-10-05 21:31:03 +02:00
readStream.setVersion(QDataStream::Qt_5_8);
// server name
QByteArray latin1Name;
readStream >> latin1Name;
// connection type
quint8 connTypeVal = InvalidConnection;
readStream >> connTypeVal;
const ConnectionType connectionType = static_cast<ConnectionType>(connTypeVal);
// instance id
quint32 instanceId = 0;
readStream >> instanceId;
// checksum
quint16 msgChecksum = 0;
readStream >> msgChecksum;
2020-09-04 21:54:59 +02:00
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
2020-10-05 21:31:03 +02:00
const quint16 actualChecksum = qChecksum(QByteArray(msgBytes, static_cast<quint32>(msgBytes.length() - sizeof(quint16))));
2020-09-04 21:54:59 +02:00
#else
const quint16 actualChecksum = qChecksum(msgBytes.constData(), static_cast<quint32>(msgBytes.length() - sizeof(quint16)));
2020-09-04 21:54:59 +02:00
#endif
2020-10-05 21:31:03 +02:00
bool isValid = readStream.status() == QDataStream::Ok && QLatin1String(latin1Name) == blockServerName_ && msgChecksum == actualChecksum;
if (!isValid) {
sock->close();
return;
}
2022-02-06 00:07:15 +01:00
ConnectionInfo &info = connectionMap_[sock];
info.instanceId = instanceId;
2022-02-06 00:07:15 +01:00
info.stage = StageConnectedHeader;
if (connectionType == NewInstance || (connectionType == SecondaryInstance && options_ & SingleApplicationClass::Mode::SecondaryNotification)) {
2022-02-06 00:07:15 +01:00
emit q->instanceStarted();
}
2022-02-06 00:07:15 +01:00
writeAck(sock);
2020-10-05 21:31:03 +02:00
}
void SingleApplicationPrivateClass::slotDataAvailable(QLocalSocket *dataSocket, const quint32 instanceId) {
Q_Q(SingleApplicationClass);
2022-02-06 00:07:15 +01:00
if (!isFrameComplete(dataSocket)) {
return;
}
const QByteArray message = dataSocket->readAll();
writeAck(dataSocket);
ConnectionInfo &info = connectionMap_[dataSocket];
info.stage = StageConnectedHeader;
emit q->receivedMessage(instanceId, message);
2020-10-05 21:31:03 +02:00
}
void SingleApplicationPrivateClass::slotClientConnectionClosed(QLocalSocket *closedSocket, const quint32 instanceId) {
2020-10-05 21:31:03 +02:00
if (closedSocket->bytesAvailable() > 0) {
2021-03-21 04:36:54 +01:00
slotDataAvailable(closedSocket, instanceId);
2020-10-05 21:31:03 +02:00
}
}
void SingleApplicationPrivateClass::randomSleep() {
2020-10-05 21:31:03 +02:00
2021-06-20 23:49:04 +02:00
QThread::msleep(QRandomGenerator::global()->bounded(8U, 18U));
2020-10-05 21:31:03 +02:00
}