1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/*
ksmserver - the KDE session management server
SPDX-FileCopyrightText: 2000 Matthias Ettrich <ettrich@kde.org>
SPDX-FileCopyrightText: 2005 Lubos Lunak <l.lunak@kde.org>
SPDX-FileContributor: Oswald Buddenhagen <ob6@inf.tu-dresden.de>
some code taken from the dcopserver (part of the KDE libraries), which is
SPDX-FileCopyrightText: 1999 Matthias Ettrich <ettrich@kde.org>
SPDX-FileCopyrightText: 1999 Preston Brown <pbrown@kde.org>
SPDX-License-Identifier: MIT
*/
#include <QDebug>
#include <QElapsedTimer>
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
#include <private/qtx11extras_p.h>
#else
#include <QX11Info>
#endif
#include <config-workspace.h>
#include <ksmserver_debug.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#include "server.h"
#include <unistd.h>
#include <KSharedConfig>
#include <KX11Extras>
#include <kconfig.h>
#include <kconfiggroup.h>
#include <kshell.h>
#include <kwindowsystem.h>
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
/*
* Legacy session management
*/
#ifndef NO_LEGACY_SESSION_MANAGEMENT
static WindowMap *windowMapPtr = nullptr;
static Atom wm_save_yourself = XNone;
static Atom wm_protocols = XNone;
static Atom wm_client_leader = XNone;
static Atom sm_client_id = XNone;
static int winsErrorHandler(Display *, XErrorEvent *ev)
{
if (windowMapPtr) {
WindowMap::Iterator it = windowMapPtr->find(ev->resourceid);
if (it != windowMapPtr->end())
(*it).type = SM_ERROR;
}
return 0;
}
void KSMServer::performLegacySessionSave()
{
qCDebug(KSMSERVER) << "Saving legacy session apps";
if (state == ClosingSubSession)
return; // FIXME implement later
KSharedConfig::Ptr config = KSharedConfig::openConfig();
config->reparseConfiguration(); // config may have changed in the KControl module
KConfigGroup cg(config, "General");
int wmSaveYourselfTimeout = cg.readEntry("legacySaveTimeoutSecs", 4) * 1000;
// Setup error handler
legacyWindows.clear();
windowMapPtr = &legacyWindows;
XErrorHandler oldHandler = XSetErrorHandler(winsErrorHandler);
// Compute set of leader windows that need legacy session management
// and determine which style (WM_COMMAND or WM_SAVE_YOURSELF)
if (wm_save_yourself == (Atom)XNone) {
Atom atoms[4];
const char *const names[] = {"WM_SAVE_YOURSELF", "WM_PROTOCOLS", "WM_CLIENT_LEADER", "SM_CLIENT_ID"};
XInternAtoms(QX11Info::display(), const_cast<char **>(names), 4, False, atoms);
wm_save_yourself = atoms[0];
wm_protocols = atoms[1];
wm_client_leader = atoms[2];
sm_client_id = atoms[3];
}
const QList<WId> windows = KX11Extras::windows();
for (QList<WId>::ConstIterator it = windows.begin(); it != windows.end(); ++it) {
WId leader = windowWmClientLeader(*it);
if (!legacyWindows.contains(leader) && windowSessionId(*it, leader).isEmpty()) {
SMType wtype = SM_WMCOMMAND;
int nprotocols = 0;
Atom *protocols = nullptr;
if (XGetWMProtocols(QX11Info::display(), leader, &protocols, &nprotocols)) {
for (int i = 0; i < nprotocols; i++)
if (protocols[i] == wm_save_yourself) {
wtype = SM_WMSAVEYOURSELF;
break;
}
XFree((void *)protocols);
}
SMData data;
data.type = wtype;
XClassHint classHint;
if (XGetClassHint(QX11Info::display(), leader, &classHint)) {
data.wmclass1 = QString::fromLocal8Bit(classHint.res_name);
data.wmclass2 = QString::fromLocal8Bit(classHint.res_class);
XFree(classHint.res_name);
XFree(classHint.res_class);
}
legacyWindows.insert(leader, data);
}
}
// Open fresh display for sending WM_SAVE_YOURSELF
XSync(QX11Info::display(), False);
Display *newdisplay = XOpenDisplay(DisplayString(QX11Info::display()));
if (!newdisplay) {
windowMapPtr = nullptr;
XSetErrorHandler(oldHandler);
return;
}
WId root = DefaultRootWindow(newdisplay);
XGrabKeyboard(newdisplay, root, False, GrabModeAsync, GrabModeAsync, CurrentTime);
XGrabPointer(newdisplay, root, False, Button1Mask | Button2Mask | Button3Mask, GrabModeAsync, GrabModeAsync, XNone, XNone, CurrentTime);
// Send WM_SAVE_YOURSELF messages
XEvent ev;
int awaiting_replies = 0;
for (WindowMap::Iterator it = legacyWindows.begin(); it != legacyWindows.end(); ++it) {
if ((*it).type == SM_WMSAVEYOURSELF) {
WId w = it.key();
awaiting_replies += 1;
memset(&ev, 0, sizeof(ev));
ev.xclient.type = ClientMessage;
ev.xclient.window = w;
ev.xclient.message_type = wm_protocols;
ev.xclient.format = 32;
ev.xclient.data.l[0] = wm_save_yourself;
ev.xclient.data.l[1] = QX11Info::appTime();
XSelectInput(newdisplay, w, PropertyChangeMask | StructureNotifyMask);
XSendEvent(newdisplay, w, False, 0, &ev);
qCDebug(KSMSERVER) << "sent >save yourself< to legacy app " << (*it).wmclass1 << (*it).wmclass2;
}
}
// Wait for change in WM_COMMAND with timeout
XFlush(newdisplay);
QElapsedTimer start;
while (awaiting_replies > 0) {
if (XPending(newdisplay)) {
/* Process pending event */
XNextEvent(newdisplay, &ev);
if ((ev.xany.type == UnmapNotify) || (ev.xany.type == PropertyNotify && ev.xproperty.atom == XA_WM_COMMAND)) {
WindowMap::Iterator it = legacyWindows.find(ev.xany.window);
if (it != legacyWindows.end() && (*it).type != SM_WMCOMMAND) {
awaiting_replies -= 1;
if ((*it).type != SM_ERROR)
(*it).type = SM_WMCOMMAND;
}
}
} else {
/* Check timeout */
int msecs = start.elapsed();
if (msecs >= wmSaveYourselfTimeout) {
qCDebug(KSMSERVER) << "legacy timeout expired";
break;
}
/* Wait for more events */
fd_set fds;
FD_ZERO(&fds);
int fd = ConnectionNumber(newdisplay);
FD_SET(fd, &fds);
struct timeval tmwait;
tmwait.tv_sec = (wmSaveYourselfTimeout - msecs) / 1000;
tmwait.tv_usec = ((wmSaveYourselfTimeout - msecs) % 1000) * 1000;
::select(fd + 1, &fds, nullptr, &fds, &tmwait);
}
}
// Terminate work in new display
XAllowEvents(newdisplay, ReplayPointer, CurrentTime);
XAllowEvents(newdisplay, ReplayKeyboard, CurrentTime);
XSync(newdisplay, False);
XCloseDisplay(newdisplay);
// Restore old error handler
XSync(QX11Info::display(), False);
XSetErrorHandler(oldHandler);
for (WindowMap::Iterator it = legacyWindows.begin(); it != legacyWindows.end(); ++it) {
if ((*it).type != SM_ERROR) {
WId w = it.key();
(*it).wmCommand = windowWmCommand(w);
(*it).wmClientMachine = windowWmClientMachine(w);
}
}
qCDebug(KSMSERVER) << "Done saving " << legacyWindows.count() << " legacy session apps";
}
/*!
Stores legacy session management data
*/
void KSMServer::storeLegacySession(KConfig *config)
{
if (state == ClosingSubSession)
return; // FIXME implement later
// Write LegacySession data
config->deleteGroup(QStringLiteral("Legacy") + sessionGroup);
KConfigGroup group(config, QStringLiteral("Legacy") + sessionGroup);
int count = 0;
for (WindowMap::ConstIterator it = legacyWindows.constBegin(); it != legacyWindows.constEnd(); ++it) {
if ((*it).type != SM_ERROR) {
if (excludeApps.contains((*it).wmclass1.toLower()) || excludeApps.contains((*it).wmclass2.toLower()))
continue;
if (!(*it).wmCommand.isEmpty() && !(*it).wmClientMachine.isEmpty()) {
count++;
QString n = QString::number(count);
group.writeEntry(QStringLiteral("command") + n, (*it).wmCommand);
group.writeEntry(QStringLiteral("clientMachine") + n, (*it).wmClientMachine);
}
}
}
group.writeEntry("count", count);
}
/*!
Restores legacy session management data (i.e. restart applications)
*/
void KSMServer::restoreLegacySession(KConfig *config)
{
if (config->hasGroup(QStringLiteral("Legacy") + sessionGroup)) {
KConfigGroup group(config, QStringLiteral("Legacy") + sessionGroup);
restoreLegacySessionInternal(&group);
}
}
void KSMServer::restoreLegacySessionInternal(KConfigGroup *config, char sep)
{
int count = config->readEntry("count", 0);
for (int i = 1; i <= count; i++) {
QString n = QString::number(i);
QStringList wmCommand = (sep == ',') ? // why is this named "wmCommand"?
config->readEntry(QStringLiteral("command") + n, QStringList())
: KShell::splitArgs(config->readEntry(QStringLiteral("command") + n, QString())); // close enough(?)
if (wmCommand.isEmpty())
continue;
startApplication(wmCommand,
config->readEntry(QStringLiteral("clientMachine") + n, QString()),
config->readEntry(QStringLiteral("userId") + n, QString()));
}
}
static QByteArray getQCStringProperty(WId w, Atom prop)
{
Atom type;
int format, status;
unsigned long nitems = 0;
unsigned long extra = 0;
unsigned char *data = nullptr;
QByteArray result = "";
status = XGetWindowProperty(QX11Info::display(), w, prop, 0, 10000, false, XA_STRING, &type, &format, &nitems, &extra, &data);
if (status == Success) {
if (data)
result = (char *)data;
XFree(data);
}
return result;
}
static QStringList getQStringListProperty(WId w, Atom prop)
{
Atom type;
int format, status;
unsigned long nitems = 0;
unsigned long extra = 0;
unsigned char *data = nullptr;
QStringList result;
status = XGetWindowProperty(QX11Info::display(), w, prop, 0, 10000, false, XA_STRING, &type, &format, &nitems, &extra, &data);
if (status == Success) {
if (!data)
return result;
for (int i = 0; i < (int)nitems; i++) {
result << QLatin1String((const char *)data + i);
while (data[i])
i++;
}
XFree(data);
}
return result;
}
QStringList KSMServer::windowWmCommand(WId w)
{
QStringList ret = getQStringListProperty(w, XA_WM_COMMAND);
// hacks here
if (ret.count() == 1) {
QString command = ret.first();
// Mozilla is launched using wrapper scripts, so it's launched using "mozilla",
// but the actual binary is "mozilla-bin" or "<path>/mozilla-bin", and that's what
// will be also in WM_COMMAND - using this "mozilla-bin" doesn't work at all though
if (command.endsWith(QLatin1String("mozilla-bin")))
return QStringList() << QStringLiteral("mozilla");
if (command.endsWith(QLatin1String("firefox-bin")))
return QStringList() << QStringLiteral("firefox");
if (command.endsWith(QLatin1String("thunderbird-bin")))
return QStringList() << QStringLiteral("thunderbird");
if (command.endsWith(QLatin1String("sunbird-bin")))
return QStringList() << QStringLiteral("sunbird");
if (command.endsWith(QLatin1String("seamonkey-bin")))
return QStringList() << QStringLiteral("seamonkey");
}
return ret;
}
QString KSMServer::windowWmClientMachine(WId w)
{
QByteArray result = getQCStringProperty(w, XA_WM_CLIENT_MACHINE);
if (result.isEmpty()) {
result = "localhost";
} else {
// special name for the local machine (localhost)
char hostnamebuf[80];
if (gethostname(hostnamebuf, sizeof hostnamebuf) >= 0) {
hostnamebuf[sizeof(hostnamebuf) - 1] = 0;
if (result == hostnamebuf)
result = "localhost";
if (char *dot = strchr(hostnamebuf, '.')) {
*dot = '\0';
if (result == hostnamebuf)
result = "localhost";
}
}
}
return QLatin1String(result);
}
WId KSMServer::windowWmClientLeader(WId w)
{
Atom type;
int format, status;
unsigned long nitems = 0;
unsigned long extra = 0;
unsigned char *data = nullptr;
Window result = w;
status = XGetWindowProperty(QX11Info::display(), w, wm_client_leader, 0, 10000, false, XA_WINDOW, &type, &format, &nitems, &extra, &data);
if (status == Success) {
if (data && nitems > 0)
result = *((Window *)data);
XFree(data);
}
return result;
}
/*
Returns sessionId for this client,
taken either from its window or from the leader window.
*/
QByteArray KSMServer::windowSessionId(WId w, WId leader)
{
QByteArray result = getQCStringProperty(w, sm_client_id);
if (result.isEmpty() && leader != (WId)None && leader != w)
result = getQCStringProperty(leader, sm_client_id);
return result;
}
#endif
|