SingleApplication/singleapplication.cpp

486 lines
15 KiB
C++
Raw Normal View History

// The MIT License (MIT)
//
// Copyright (c) Itay Grudev 2015 - 2016
//
// 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.
#include <cstdlib>
#include <QtCore/QDir>
2016-08-10 09:42:46 +08:00
#include <QtCore/QProcess>
#include <QtCore/QByteArray>
2016-05-05 02:59:07 +08:00
#include <QtCore/QSemaphore>
#include <QtCore/QSharedMemory>
2016-08-10 09:42:46 +08:00
#include <QtCore/QStandardPaths>
#include <QtCore/QCryptographicHash>
#include <QtCore/QDataStream>
#include <QtNetwork/QLocalServer>
2016-08-10 09:42:46 +08:00
#include <QtNetwork/QLocalSocket>
2012-12-23 06:12:38 +08:00
#ifdef Q_OS_UNIX
#include <signal.h>
#include <unistd.h>
#endif
#ifdef Q_OS_WIN
#include <windows.h>
#include <lmcons.h>
#endif
#include "singleapplication.h"
2016-08-10 09:42:46 +08:00
#include "singleapplication_p.h"
2016-08-10 09:42:46 +08:00
SingleApplicationPrivate::SingleApplicationPrivate( SingleApplication *q_ptr ) : q_ptr( q_ptr ) {
server = nullptr;
socket = nullptr;
}
2016-08-10 09:42:46 +08:00
SingleApplicationPrivate::~SingleApplicationPrivate()
{
if( socket != nullptr ) {
socket->close();
delete socket;
}
memory->lock();
InstancesInfo* inst = static_cast<InstancesInfo*>(memory->data());
if( server != nullptr ) {
server->close();
delete server;
inst->primary = false;
inst->primaryPid = -1;
}
memory->unlock();
delete memory;
2016-08-10 09:42:46 +08:00
}
2016-08-10 09:42:46 +08:00
void SingleApplicationPrivate::genBlockServerName( int timeout )
{
QCryptographicHash appData( QCryptographicHash::Sha256 );
appData.addData( "SingleApplication", 17 );
appData.addData( SingleApplication::app_t::applicationName().toUtf8() );
appData.addData( SingleApplication::app_t::organizationName().toUtf8() );
appData.addData( SingleApplication::app_t::organizationDomain().toUtf8() );
if( ! (options & SingleApplication::Mode::ExcludeAppVersion) ) {
appData.addData( SingleApplication::app_t::applicationVersion().toUtf8() );
}
if( ! (options & SingleApplication::Mode::ExcludeAppPath) ) {
#ifdef Q_OS_WIN
appData.addData( SingleApplication::app_t::applicationFilePath().toLower().toUtf8() );
#else
appData.addData( SingleApplication::app_t::applicationFilePath().toUtf8() );
#endif
}
2016-08-10 09:42:46 +08:00
// User level block requires a user specific data in the hash
if( options & SingleApplication::Mode::User ) {
#ifdef Q_OS_WIN
Q_UNUSED(timeout);
wchar_t username [ UNLEN + 1 ];
// Specifies size of the buffer on input
DWORD usernameLength = UNLEN + 1;
if( GetUserNameW( username, &usernameLength ) ) {
appData.addData( QString::fromWCharArray(username).toUtf8() );
} else {
appData.addData( QStandardPaths::standardLocations( QStandardPaths::HomeLocation ).join("").toUtf8() );
}
2016-08-10 09:42:46 +08:00
#endif
#ifdef Q_OS_UNIX
QProcess process;
process.start( "whoami" );
if( process.waitForFinished( timeout ) &&
process.exitCode() == QProcess::NormalExit) {
appData.addData( process.readLine() );
} else {
appData.addData(
QDir(
QStandardPaths::standardLocations( QStandardPaths::HomeLocation ).first()
).absolutePath().toUtf8()
);
2016-08-10 09:42:46 +08:00
}
#endif
2016-05-05 02:59:07 +08:00
}
2016-08-10 09:42:46 +08:00
// Replace the backslash in RFC 2045 Base64 [a-zA-Z0-9+/=] to comply with
// server naming requirements.
blockServerName = appData.result().toBase64().replace("/", "_");
}
2016-08-10 09:42:46 +08:00
void SingleApplicationPrivate::startPrimary( bool resetMemory )
{
Q_Q(SingleApplication);
2016-05-05 02:59:07 +08:00
#ifdef Q_OS_UNIX
2016-08-10 09:42:46 +08:00
// Handle any further termination signals to ensure the
// QSharedMemory block is deleted even if the process crashes
crashHandler();
2016-05-05 02:59:07 +08:00
#endif
2016-08-10 09:42:46 +08:00
// Successful creation means that no main process exists
// So we start a QLocalServer to listen for connections
QLocalServer::removeServer( blockServerName );
server = new QLocalServer();
// Restrict access to the socket according to the
// SingleApplication::Mode::User flag on User level or no restrictions
if( options & SingleApplication::Mode::User ) {
server->setSocketOptions( QLocalServer::UserAccessOption );
} else {
server->setSocketOptions( QLocalServer::WorldAccessOption );
}
2016-08-10 09:42:46 +08:00
server->listen( blockServerName );
QObject::connect(
server,
&QLocalServer::newConnection,
this,
&SingleApplicationPrivate::slotConnectionEstablished
);
// Reset the number of connections
memory->lock();
InstancesInfo* inst = static_cast<InstancesInfo*>(memory->data());
2016-08-10 09:42:46 +08:00
if( resetMemory ) {
2016-08-10 09:42:46 +08:00
inst->secondary = 0;
2016-05-05 02:59:07 +08:00
}
inst->primary = true;
inst->primaryPid = q->applicationPid();
2016-08-10 09:42:46 +08:00
memory->unlock();
instanceNumber = 0;
}
void SingleApplicationPrivate::startSecondary()
{
2016-05-05 02:59:07 +08:00
#ifdef Q_OS_UNIX
2016-08-10 09:42:46 +08:00
// Handle any further termination signals to ensure the
// QSharedMemory block is deleted even if the process crashes
crashHandler();
2016-05-05 02:59:07 +08:00
#endif
2016-08-10 09:42:46 +08:00
}
2016-05-05 02:59:07 +08:00
void SingleApplicationPrivate::connectToPrimary( int msecs, ConnectionType connectionType )
2016-08-10 09:42:46 +08:00
{
// Connect to the Local Server of the Primary Instance if not already
// connected.
if( socket == nullptr ) {
socket = new QLocalSocket();
}
2016-08-10 09:42:46 +08:00
// If already connected - we are done;
if( socket->state() == QLocalSocket::ConnectedState )
return;
// If not connect
if( socket->state() == QLocalSocket::UnconnectedState ||
socket->state() == QLocalSocket::ClosingState ) {
socket->connectToServer( blockServerName );
}
2016-05-05 02:59:07 +08:00
2016-08-10 09:42:46 +08:00
// Wait for being connected
if( socket->state() == QLocalSocket::ConnectingState ) {
socket->waitForConnected( msecs );
}
// Initialisation message according to the SingleApplication protocol
if( socket->state() == QLocalSocket::ConnectedState ) {
2016-05-05 02:59:07 +08:00
// Notify the parent that a new instance had been started;
QByteArray initMsg;
QDataStream writeStream(&initMsg, QIODevice::WriteOnly);
writeStream.setVersion(QDataStream::Qt_5_6);
writeStream << blockServerName.toLatin1();
writeStream << static_cast<quint8>(connectionType);
writeStream << instanceNumber;
quint16 checksum = qChecksum(initMsg.constData(), static_cast<quint32>(initMsg.length()));
writeStream << checksum;
2016-08-10 09:42:46 +08:00
// The header indicates the message length that follows
QByteArray header;
QDataStream headerStream(&header, QIODevice::WriteOnly);
headerStream.setVersion(QDataStream::Qt_5_6);
headerStream << (quint64) initMsg.length();
socket->write( header );
2016-08-10 09:42:46 +08:00
socket->write( initMsg );
socket->flush();
socket->waitForBytesWritten( msecs );
}
2016-08-10 09:42:46 +08:00
}
qint64 SingleApplicationPrivate::primaryPid()
{
qint64 pid;
memory->lock();
InstancesInfo* inst = static_cast<InstancesInfo*>(memory->data());
pid = inst->primaryPid;
memory->unlock();
return pid;
}
#ifdef Q_OS_UNIX
2016-08-10 09:42:46 +08:00
void SingleApplicationPrivate::crashHandler()
{
// Handle any further termination signals to ensure the
// QSharedMemory block is deleted even if the process crashes
2016-07-10 08:11:55 +08:00
signal( SIGHUP, SingleApplicationPrivate::terminate ); // 1
signal( SIGINT, SingleApplicationPrivate::terminate ); // 2
signal( SIGQUIT, SingleApplicationPrivate::terminate ); // 3
signal( SIGILL, SingleApplicationPrivate::terminate ); // 4
signal( SIGABRT, SingleApplicationPrivate::terminate ); // 6
signal( SIGFPE, SingleApplicationPrivate::terminate ); // 8
signal( SIGBUS, SingleApplicationPrivate::terminate ); // 10
signal( SIGSEGV, SingleApplicationPrivate::terminate ); // 11
signal( SIGSYS, SingleApplicationPrivate::terminate ); // 12
signal( SIGPIPE, SingleApplicationPrivate::terminate ); // 13
signal( SIGALRM, SingleApplicationPrivate::terminate ); // 14
signal( SIGTERM, SingleApplicationPrivate::terminate ); // 15
signal( SIGXCPU, SingleApplicationPrivate::terminate ); // 24
signal( SIGXFSZ, SingleApplicationPrivate::terminate ); // 25
}
2016-08-10 09:42:46 +08:00
void SingleApplicationPrivate::terminate( int signum )
{
delete ((SingleApplication*)QCoreApplication::instance())->d_ptr;
2016-05-05 02:59:07 +08:00
::exit( 128 + signum );
}
#endif
2016-08-10 09:42:46 +08:00
/**
* @brief Executed when a connection has been made to the LocalServer
*/
void SingleApplicationPrivate::slotConnectionEstablished()
{
Q_Q(SingleApplication);
2017-01-25 06:18:55 +08:00
QLocalSocket *nextConnSocket = server->nextPendingConnection();
2016-08-10 09:42:46 +08:00
quint32 instanceId = 0;
ConnectionType connectionType = InvalidConnection;
2017-01-25 06:18:55 +08:00
if( nextConnSocket->waitForReadyRead( 100 ) ) {
// read the fields in same order and format as written
QDataStream headerStream(nextConnSocket);
headerStream.setVersion(QDataStream::Qt_5_6);
// Read the header to know the message length
quint64 msgLen = 0;
headerStream >> msgLen;
if (msgLen >= sizeof(quint16)) {
// Read the message body
QByteArray msgBytes = nextConnSocket->read(msgLen);
QDataStream readStream(msgBytes);
readStream.setVersion(QDataStream::Qt_5_6);
// server name
QByteArray latin1Name;
readStream >> latin1Name;
// connection type
quint8 connType = InvalidConnection;
readStream >> connType;
connectionType = static_cast<ConnectionType>(connType);
// instance id
readStream >> instanceId;
// checksum
quint16 msgChecksum = 0;
readStream >> msgChecksum;
const quint16 actualChecksum = qChecksum(msgBytes.constData(), static_cast<quint32>(msgBytes.length() - sizeof(quint16)));
if (readStream.status() != QDataStream::Ok || QLatin1String(latin1Name) != blockServerName || msgChecksum != actualChecksum) {
connectionType = InvalidConnection;
}
2016-05-05 02:59:07 +08:00
}
}
if( connectionType == InvalidConnection ) {
2017-01-25 06:18:55 +08:00
nextConnSocket->close();
delete nextConnSocket;
2016-08-10 09:42:46 +08:00
return;
}
2016-08-10 09:42:46 +08:00
QObject::connect(
2017-01-25 06:18:55 +08:00
nextConnSocket,
2016-08-10 09:42:46 +08:00
&QLocalSocket::aboutToClose,
this,
2017-01-25 06:18:55 +08:00
[nextConnSocket, instanceId, this]() {
Q_EMIT this->slotClientConnectionClosed( nextConnSocket, instanceId );
2016-08-10 09:42:46 +08:00
}
);
QObject::connect(
2017-01-25 06:18:55 +08:00
nextConnSocket,
2016-08-10 09:42:46 +08:00
&QLocalSocket::readyRead,
this,
2017-01-25 06:18:55 +08:00
[nextConnSocket, instanceId, this]() {
Q_EMIT this->slotDataAvailable( nextConnSocket, instanceId );
2016-08-10 09:42:46 +08:00
}
);
if( connectionType == NewInstance || (
connectionType == SecondaryInstance &&
2016-08-10 09:42:46 +08:00
options & SingleApplication::Mode::SecondaryNotification
)
) {
Q_EMIT q->instanceStarted();
}
2017-01-25 06:18:55 +08:00
if( nextConnSocket->bytesAvailable() > 0 ) {
Q_EMIT this->slotDataAvailable( nextConnSocket, instanceId );
2016-08-10 09:42:46 +08:00
}
}
2017-01-25 06:18:55 +08:00
void SingleApplicationPrivate::slotDataAvailable( QLocalSocket *dataSocket, quint32 instanceId )
2016-08-10 09:42:46 +08:00
{
Q_Q(SingleApplication);
2017-01-25 06:18:55 +08:00
Q_EMIT q->receivedMessage( instanceId, dataSocket->readAll() );
2016-08-10 09:42:46 +08:00
}
2017-01-25 06:18:55 +08:00
void SingleApplicationPrivate::slotClientConnectionClosed( QLocalSocket *closedSocket, quint32 instanceId )
2016-08-10 09:42:46 +08:00
{
2017-01-25 06:18:55 +08:00
if( closedSocket->bytesAvailable() > 0 )
Q_EMIT slotDataAvailable( closedSocket, instanceId );
closedSocket->deleteLater();
2016-08-10 09:42:46 +08:00
}
2012-12-23 06:12:38 +08:00
/**
2015-02-27 03:19:38 +08:00
* @brief Constructor. Checks and fires up LocalServer or closes the program
* if another instance already exists
2012-12-23 06:12:38 +08:00
* @param argc
* @param argv
2016-08-10 09:42:46 +08:00
* @param {bool} allowSecondaryInstances
2012-12-23 06:12:38 +08:00
*/
2016-08-10 09:42:46 +08:00
SingleApplication::SingleApplication( int &argc, char *argv[], bool allowSecondary, Options options, int timeout )
2016-05-05 04:05:59 +08:00
: app_t( argc, argv ), d_ptr( new SingleApplicationPrivate( this ) )
2012-12-23 06:12:38 +08:00
{
Q_D(SingleApplication);
2016-08-10 09:42:46 +08:00
// Store the current mode of the program
d->options = options;
2016-05-05 02:59:07 +08:00
2016-08-10 09:42:46 +08:00
// Generating an application ID used for identifying the shared memory
// block and QLocalServer
d->genBlockServerName( timeout );
2012-12-23 06:12:38 +08:00
// Guarantee thread safe behaviour with a shared memory block. Also by
2016-08-10 09:42:46 +08:00
// explicitly attaching it and then deleting it we make sure that the
// memory is deleted even if the process had crashed on Unix.
#ifdef Q_OS_UNIX
d->memory = new QSharedMemory( d->blockServerName );
d->memory->attach();
delete d->memory;
#endif
2016-08-10 09:42:46 +08:00
d->memory = new QSharedMemory( d->blockServerName );
// Create a shared memory block
if( d->memory->create( sizeof( InstancesInfo ) ) ) {
2016-05-05 02:59:07 +08:00
d->startPrimary( true );
return;
} else {
2016-05-05 02:59:07 +08:00
// Attempt to attach to the memory segment
if( d->memory->attach() ) {
d->memory->lock();
InstancesInfo* inst = static_cast<InstancesInfo*>(d->memory->data());
2016-05-05 02:59:07 +08:00
if( ! inst->primary ) {
d->startPrimary( false );
d->memory->unlock();
return;
}
// Check if another instance can be started
2016-08-10 09:42:46 +08:00
if( allowSecondary ) {
2016-05-05 02:59:07 +08:00
inst->secondary += 1;
2016-08-10 09:42:46 +08:00
d->instanceNumber = inst->secondary;
2016-05-05 02:59:07 +08:00
d->startSecondary();
2016-08-10 09:42:46 +08:00
if( d->options & Mode::SecondaryNotification ) {
d->connectToPrimary( timeout, SingleApplicationPrivate::SecondaryInstance );
2016-08-10 09:42:46 +08:00
}
2016-05-05 02:59:07 +08:00
d->memory->unlock();
return;
}
d->memory->unlock();
}
}
2016-05-05 02:59:07 +08:00
d->connectToPrimary( timeout, SingleApplicationPrivate::NewInstance );
delete d;
2016-08-10 09:42:46 +08:00
::exit( EXIT_SUCCESS );
2012-12-23 06:12:38 +08:00
}
/**
* @brief Destructor
2012-12-23 06:12:38 +08:00
*/
SingleApplication::~SingleApplication()
2012-12-23 06:12:38 +08:00
{
Q_D(SingleApplication);
2016-05-05 02:59:07 +08:00
delete d;
}
2016-05-05 02:59:07 +08:00
bool SingleApplication::isPrimary()
{
Q_D(SingleApplication);
2016-08-10 09:42:46 +08:00
return d->server != nullptr;
2016-05-05 02:59:07 +08:00
}
bool SingleApplication::isSecondary()
{
Q_D(SingleApplication);
2016-08-10 09:42:46 +08:00
return d->server == nullptr;
2012-12-23 06:12:38 +08:00
}
2016-08-10 09:42:46 +08:00
quint32 SingleApplication::instanceId()
2012-12-23 06:12:38 +08:00
{
Q_D(SingleApplication);
2016-08-10 09:42:46 +08:00
return d->instanceNumber;
}
qint64 SingleApplication::primaryPid()
{
Q_D(SingleApplication);
return d->primaryPid();
}
2016-08-10 09:42:46 +08:00
bool SingleApplication::sendMessage( QByteArray message, int timeout )
{
Q_D(SingleApplication);
// Nobody to connect to
if( isPrimary() ) return false;
// Make sure the socket is connected
d->connectToPrimary( timeout, SingleApplicationPrivate::Reconnect );
2016-08-10 09:42:46 +08:00
d->socket->write( message );
bool dataWritten = d->socket->flush();
d->socket->waitForBytesWritten( timeout );
return dataWritten;
2012-12-23 06:12:38 +08:00
}