2014-10-10 19:26:50 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2014 Albert Vaca <albertvaka@gmail.com>
|
2014-10-10 19:26:50 +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
|
2014-10-10 19:26:50 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dbushelper.h"
|
2019-06-18 02:21:31 +01:00
|
|
|
#include "core_debug.h"
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QCoreApplication>
|
2019-06-18 02:21:31 +01:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QFile>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QProcess>
|
2023-04-19 20:22:58 +01:00
|
|
|
#include <QRegularExpression>
|
2019-07-30 14:46:18 +01:00
|
|
|
#include <QStandardPaths>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QUrl>
|
2019-06-18 02:21:31 +01:00
|
|
|
|
|
|
|
#include "kdeconnectconfig.h"
|
|
|
|
|
|
|
|
#ifdef Q_OS_MAC
|
2024-09-21 10:27:24 +01:00
|
|
|
#include <KLocalizedString>
|
2019-07-09 20:42:08 +01:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegularExpressionMatch>
|
2024-09-21 10:27:24 +01:00
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QThread>
|
2019-06-18 02:21:31 +01:00
|
|
|
#endif
|
2014-10-10 19:26:50 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
namespace DBusHelper
|
|
|
|
{
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void filterNonExportableCharacters(QString &s)
|
2014-10-10 19:26:50 +01:00
|
|
|
{
|
2023-04-19 20:22:58 +01:00
|
|
|
static QRegularExpression regexp(QStringLiteral("[^A-Za-z0-9_]"), QRegularExpression::CaseInsensitiveOption);
|
2022-09-10 22:23:52 +01:00
|
|
|
s.replace(regexp, QLatin1String("_"));
|
2014-10-10 19:26:50 +01:00
|
|
|
}
|
|
|
|
|
2022-04-12 06:40:03 +01:00
|
|
|
#ifdef Q_OS_MAC
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
const QString PrivateDbusAddr = QStringLiteral("unix:tmpdir=/tmp");
|
|
|
|
const QString PrivateDBusAddressPath = QStringLiteral("/tmp/private_dbus_address");
|
|
|
|
const QString DBUS_LAUNCHD_SESSION_BUS_SOCKET = QStringLiteral("DBUS_LAUNCHD_SESSION_BUS_SOCKET");
|
|
|
|
|
|
|
|
QProcess *m_dbusProcess = nullptr;
|
|
|
|
|
|
|
|
void setLaunchctlEnv(const QString &env)
|
2019-06-18 02:21:31 +01:00
|
|
|
{
|
2024-09-21 10:27:24 +01:00
|
|
|
QProcess setLaunchdDBusEnv;
|
|
|
|
setLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
|
|
|
setLaunchdDBusEnv.setArguments({QStringLiteral("setenv"), DBUS_LAUNCHD_SESSION_BUS_SOCKET, env});
|
|
|
|
setLaunchdDBusEnv.start();
|
|
|
|
setLaunchdDBusEnv.waitForFinished();
|
2019-06-18 02:21:31 +01:00
|
|
|
}
|
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
void unsetLaunchctlEnv()
|
2019-07-09 20:42:08 +01:00
|
|
|
{
|
|
|
|
QProcess unsetLaunchdDBusEnv;
|
|
|
|
unsetLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
2024-09-21 10:27:24 +01:00
|
|
|
unsetLaunchdDBusEnv.setArguments({QStringLiteral("unsetenv"), DBUS_LAUNCHD_SESSION_BUS_SOCKET});
|
2019-07-09 20:42:08 +01:00
|
|
|
unsetLaunchdDBusEnv.start();
|
|
|
|
unsetLaunchdDBusEnv.waitForFinished();
|
|
|
|
}
|
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
void stopDBusDaemon()
|
2019-06-18 02:21:31 +01:00
|
|
|
{
|
2024-09-21 10:27:24 +01:00
|
|
|
if (m_dbusProcess != nullptr) {
|
|
|
|
m_dbusProcess->terminate();
|
|
|
|
m_dbusProcess->waitForFinished();
|
|
|
|
delete m_dbusProcess;
|
|
|
|
m_dbusProcess = nullptr;
|
|
|
|
unsetLaunchctlEnv();
|
|
|
|
}
|
|
|
|
}
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
int startDBusDaemon()
|
|
|
|
{
|
|
|
|
if (m_dbusProcess) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
qAddPostRoutine(stopDBusDaemon);
|
|
|
|
|
|
|
|
// Unset launchctl env and private dbus addr file, avoid block
|
|
|
|
unsetLaunchctlEnv();
|
|
|
|
QFile privateDBusAddressFile(PrivateDBusAddressPath);
|
|
|
|
if (privateDBusAddressFile.exists()) {
|
|
|
|
privateDBusAddressFile.resize(0);
|
|
|
|
}
|
2019-07-30 14:46:18 +01:00
|
|
|
|
|
|
|
QString kdeconnectDBusConfiguration;
|
2022-09-10 22:23:52 +01:00
|
|
|
QString dbusDaemonExecutable = QStandardPaths::findExecutable(QStringLiteral("dbus-daemon"), {QCoreApplication::applicationDirPath()});
|
2019-07-30 14:46:18 +01:00
|
|
|
if (!dbusDaemonExecutable.isNull()) {
|
|
|
|
kdeconnectDBusConfiguration = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("dbus-1/session.conf"));
|
|
|
|
} else {
|
|
|
|
// macOS Debug env
|
2023-07-31 05:08:37 +01:00
|
|
|
dbusDaemonExecutable = QLatin1String(qgetenv("craftRoot")) + QLatin1String("/../bin/dbus-daemon");
|
|
|
|
kdeconnectDBusConfiguration = QLatin1String(qgetenv("craftRoot")) + QLatin1String("/../share/dbus-1/session.conf");
|
2019-07-30 14:46:18 +01:00
|
|
|
}
|
2024-09-21 10:27:24 +01:00
|
|
|
m_dbusProcess = new QProcess();
|
2019-07-30 14:46:18 +01:00
|
|
|
m_dbusProcess->setProgram(dbusDaemonExecutable);
|
|
|
|
m_dbusProcess->setArguments({QStringLiteral("--print-address"),
|
2022-09-10 22:23:52 +01:00
|
|
|
QStringLiteral("--nofork"),
|
2024-09-21 10:27:24 +01:00
|
|
|
QStringLiteral("--config-file"),
|
|
|
|
kdeconnectDBusConfiguration,
|
|
|
|
QStringLiteral("--address"),
|
|
|
|
PrivateDbusAddr});
|
2019-07-30 14:46:18 +01:00
|
|
|
m_dbusProcess->setWorkingDirectory(QCoreApplication::applicationDirPath());
|
2024-09-21 10:27:24 +01:00
|
|
|
m_dbusProcess->setStandardOutputFile(PrivateDBusAddressPath);
|
2019-06-18 02:21:31 +01:00
|
|
|
m_dbusProcess->start();
|
2024-09-21 10:27:24 +01:00
|
|
|
m_dbusProcess->waitForStarted();
|
2019-07-09 20:42:08 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
QFile dbusAddressFile(PrivateDBusAddressPath);
|
|
|
|
|
|
|
|
if (!dbusAddressFile.open(QFile::ReadOnly | QFile::Text)) {
|
|
|
|
qCCritical(KDECONNECT_CORE) << "Private DBus enabled but error read private dbus address conf";
|
|
|
|
return -1;
|
2019-07-09 20:42:08 +01:00
|
|
|
}
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
QTextStream in(&dbusAddressFile);
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "Waiting for private dbus";
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
int retry = 0;
|
|
|
|
QString addr = in.readLine();
|
|
|
|
while (addr.length() == 0 && retry < 150) {
|
|
|
|
qCDebug(KDECONNECT_CORE) << "Retry reading private DBus address";
|
|
|
|
QThread::msleep(100);
|
|
|
|
retry++;
|
|
|
|
addr = in.readLine(); // Read until first not empty line
|
|
|
|
}
|
2019-07-09 20:42:08 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
if (addr.length() == 0) {
|
|
|
|
qCCritical(KDECONNECT_CORE) << "Private DBus enabled but read private dbus address failed";
|
|
|
|
return -2;
|
2019-06-18 02:21:31 +01:00
|
|
|
}
|
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "Private dbus address: " << addr;
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
QRegularExpressionMatch path;
|
|
|
|
if (!addr.contains(QRegularExpression(QStringLiteral("path=(?<path>/tmp/dbus-[A-Za-z0-9]+)")), &path)) {
|
|
|
|
qCCritical(KDECONNECT_CORE) << "Fail to parse dbus address";
|
|
|
|
return -3;
|
|
|
|
}
|
2019-06-18 02:21:31 +01:00
|
|
|
|
2024-09-21 10:27:24 +01:00
|
|
|
QString dbusAddress = path.captured(QStringLiteral("path"));
|
|
|
|
qCDebug(KDECONNECT_CORE) << "DBus address: " << dbusAddress;
|
|
|
|
if (dbusAddress.isEmpty()) {
|
|
|
|
qCCritical(KDECONNECT_CORE) << "Fail to extract dbus address";
|
|
|
|
return -4;
|
|
|
|
}
|
|
|
|
|
|
|
|
setLaunchctlEnv(dbusAddress);
|
|
|
|
|
|
|
|
if (!QDBusConnection::sessionBus().isConnected()) {
|
|
|
|
qCCritical(KDECONNECT_CORE) << "Invalid env:" << dbusAddress;
|
|
|
|
return -5;
|
|
|
|
}
|
|
|
|
|
|
|
|
qCDebug(KDECONNECT_CORE) << "Private D-Bus daemon launched and connected.";
|
|
|
|
return 0;
|
2015-08-21 17:38:54 +01:00
|
|
|
}
|
2024-09-21 10:27:24 +01:00
|
|
|
|
|
|
|
#endif // Q_OS_MAC
|
|
|
|
|
|
|
|
} // namespace DBusHelper
|