mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
161 lines
5.7 KiB
C++
161 lines
5.7 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Kai Uwe Broulik <kde@broulik.de>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#include "updatelaunchenvjob.h"
|
|
#include "libkworkspace_debug.h"
|
|
|
|
#include <klauncher_interface.h>
|
|
#include <startup_interface.h>
|
|
|
|
class Q_DECL_HIDDEN UpdateLaunchEnvJob::Private
|
|
{
|
|
public:
|
|
explicit Private(UpdateLaunchEnvJob *q);
|
|
void monitorReply(const QDBusPendingReply<> &reply);
|
|
|
|
static bool isPosixName(const QString &name);
|
|
static bool isSystemdApprovedValue(const QString &value);
|
|
|
|
UpdateLaunchEnvJob *q;
|
|
QProcessEnvironment environment;
|
|
int pendingReplies = 0;
|
|
};
|
|
|
|
UpdateLaunchEnvJob::Private::Private(UpdateLaunchEnvJob *q)
|
|
: q(q)
|
|
{
|
|
}
|
|
|
|
void UpdateLaunchEnvJob::Private::monitorReply(const QDBusPendingReply<> &reply)
|
|
{
|
|
++pendingReplies;
|
|
|
|
auto *watcher = new QDBusPendingCallWatcher(reply, q);
|
|
QObject::connect(watcher, &QDBusPendingCallWatcher::finished, q, [this](QDBusPendingCallWatcher *watcher) {
|
|
watcher->deleteLater();
|
|
--pendingReplies;
|
|
|
|
if (pendingReplies == 0) {
|
|
q->emitResult();
|
|
}
|
|
});
|
|
}
|
|
|
|
UpdateLaunchEnvJob::UpdateLaunchEnvJob(const QString &varName, const QString &value)
|
|
: d(new Private(this))
|
|
{
|
|
d->environment.insert(varName, value);
|
|
start();
|
|
}
|
|
|
|
UpdateLaunchEnvJob::UpdateLaunchEnvJob(const QProcessEnvironment &environment)
|
|
: d(new Private(this))
|
|
{
|
|
d->environment = environment;
|
|
start();
|
|
}
|
|
|
|
UpdateLaunchEnvJob::~UpdateLaunchEnvJob()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
void UpdateLaunchEnvJob::start()
|
|
{
|
|
qDBusRegisterMetaType<QMap<QString, QString>>();
|
|
QMap<QString, QString> dbusActivationEnv;
|
|
QStringList systemdUpdates;
|
|
|
|
for (const auto &varName : d->environment.keys()) {
|
|
if (!Private::isPosixName(varName)) {
|
|
qCWarning(LIBKWORKSPACE_DEBUG) << "Skipping syncing of environment variable " << varName << "as name contains unsupported characters";
|
|
continue;
|
|
}
|
|
const QString value = d->environment.value(varName);
|
|
|
|
// KLauncher; remove this in KF6 (by then KInit will be gone)
|
|
org::kde::KLauncher klauncher(QStringLiteral("org.kde.klauncher5"), QStringLiteral("/KLauncher"), QDBusConnection::sessionBus());
|
|
auto klauncherReply = klauncher.setLaunchEnv(varName, value);
|
|
d->monitorReply(klauncherReply);
|
|
|
|
// plasma-session
|
|
org::kde::Startup startup(QStringLiteral("org.kde.Startup"), QStringLiteral("/Startup"), QDBusConnection::sessionBus());
|
|
auto startupReply = startup.updateLaunchEnv(varName, value);
|
|
d->monitorReply(startupReply);
|
|
|
|
// DBus-activation environment
|
|
dbusActivationEnv.insert(varName, value);
|
|
|
|
// _user_ systemd env
|
|
// Systemd has stricter parsing of valid environment variables
|
|
// https://github.com/systemd/systemd/issues/16704
|
|
// validate here
|
|
if (!Private::isSystemdApprovedValue(value)) {
|
|
qCWarning(LIBKWORKSPACE_DEBUG) << "Skipping syncing of environment variable " << varName << "as value contains unsupported characters";
|
|
continue;
|
|
}
|
|
const QString updateString = varName + QStringLiteral("=") + value;
|
|
systemdUpdates.append(updateString);
|
|
}
|
|
|
|
// DBus-activation environment
|
|
QDBusMessage dbusActivationMsg = QDBusMessage::createMethodCall(QStringLiteral("org.freedesktop.DBus"),
|
|
QStringLiteral("/org/freedesktop/DBus"),
|
|
QStringLiteral("org.freedesktop.DBus"),
|
|
QStringLiteral("UpdateActivationEnvironment"));
|
|
dbusActivationMsg.setArguments({QVariant::fromValue(dbusActivationEnv)});
|
|
|
|
auto dbusActivationReply = QDBusConnection::sessionBus().asyncCall(dbusActivationMsg);
|
|
d->monitorReply(dbusActivationReply);
|
|
|
|
// _user_ systemd env
|
|
QDBusMessage systemdActivationMsg = QDBusMessage::createMethodCall(QStringLiteral("org.freedesktop.systemd1"),
|
|
QStringLiteral("/org/freedesktop/systemd1"),
|
|
QStringLiteral("org.freedesktop.systemd1.Manager"),
|
|
QStringLiteral("SetEnvironment"));
|
|
systemdActivationMsg.setArguments({systemdUpdates});
|
|
|
|
auto systemdActivationReply = QDBusConnection::sessionBus().asyncCall(systemdActivationMsg);
|
|
d->monitorReply(systemdActivationReply);
|
|
}
|
|
|
|
bool UpdateLaunchEnvJob::Private::isPosixName(const QString &name)
|
|
{
|
|
// Posix says characters like % should be 'tolerated', but it gives issues in practice.
|
|
// https://bugzilla.redhat.com/show_bug.cgi?id=1754395
|
|
// https://bugzilla.redhat.com/show_bug.cgi?id=1879216
|
|
// Ensure systemd compat by only allowing alphanumerics and _ in names.
|
|
bool first = true;
|
|
for (const QChar c : name) {
|
|
if (first && !c.isLetter() && c != QChar('_')) {
|
|
return false;
|
|
} else if (first) {
|
|
first = false;
|
|
} else if (!c.isLetterOrNumber() && c != QChar('_')) {
|
|
return false;
|
|
}
|
|
}
|
|
return !first;
|
|
}
|
|
|
|
bool UpdateLaunchEnvJob::Private::isSystemdApprovedValue(const QString &value)
|
|
{
|
|
// systemd code checks that a value contains no control characters except \n \t
|
|
// effectively copied from systemd's string_has_cc
|
|
for (const char &it : value.toLatin1()) {
|
|
if (it == QLatin1Char('\n') || it == QLatin1Char('\t')) {
|
|
continue;
|
|
}
|
|
if (it > 0 && it < ' ') {
|
|
return false;
|
|
}
|
|
if (it == 127) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|