2013-01-07 07:07:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
2013-01-07 07:07:27 +00:00
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2013-01-07 07:07:27 +00:00
|
|
|
*********************************************************************/
|
|
|
|
// own
|
|
|
|
#include "client_machine.h"
|
2014-12-05 10:42:15 +00:00
|
|
|
#include "utils.h"
|
2014-04-10 11:15:16 +00:00
|
|
|
// KF5
|
2015-02-17 12:59:04 +00:00
|
|
|
#include <NETWM>
|
2013-01-07 07:07:27 +00:00
|
|
|
// Qt
|
|
|
|
#include <QtConcurrentRun>
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
// system
|
|
|
|
#include <unistd.h>
|
2013-02-02 23:28:42 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2013-01-07 07:07:27 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
namespace KWin {
|
|
|
|
|
|
|
|
static QByteArray getHostName()
|
|
|
|
{
|
|
|
|
#ifdef HOST_NAME_MAX
|
|
|
|
char hostnamebuf[HOST_NAME_MAX];
|
|
|
|
#else
|
|
|
|
char hostnamebuf[256];
|
|
|
|
#endif
|
|
|
|
if (gethostname(hostnamebuf, sizeof hostnamebuf) >= 0) {
|
|
|
|
hostnamebuf[sizeof(hostnamebuf)-1] = 0;
|
|
|
|
return QByteArray(hostnamebuf);
|
|
|
|
}
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
GetAddrInfo::GetAddrInfo(const QByteArray &hostName, QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_resolving(false)
|
|
|
|
, m_resolved(false)
|
|
|
|
, m_ownResolved(false)
|
|
|
|
, m_hostName(hostName)
|
|
|
|
, m_addressHints(new addrinfo)
|
Use nullptr everywhere
Summary:
Because KWin is a very old project, we use three kinds of null pointer
literals: 0, NULL, and nullptr. Since C++11, it's recommended to use
nullptr keyword.
This change converts all usages of 0 and NULL literal to nullptr. Even
though it breaks git history, we need to do it in order to have consistent
code as well to ease code reviews (it's very tempting for some people to
add unrelated changes to their patches, e.g. converting NULL to nullptr).
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson, romangg
Reviewed By: #kwin, davidedmundson, romangg
Subscribers: romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D23618
2019-09-19 14:46:54 +00:00
|
|
|
, m_address(nullptr)
|
|
|
|
, m_ownAddress(nullptr)
|
2013-01-07 07:07:27 +00:00
|
|
|
, m_watcher(new QFutureWatcher<int>(this))
|
|
|
|
, m_ownAddressWatcher(new QFutureWatcher<int>(this))
|
|
|
|
{
|
|
|
|
// watcher will be deleted together with the GetAddrInfo once the future
|
|
|
|
// got canceled or finished
|
|
|
|
connect(m_watcher, SIGNAL(canceled()), SLOT(deleteLater()));
|
|
|
|
connect(m_watcher, SIGNAL(finished()), SLOT(slotResolved()));
|
|
|
|
connect(m_ownAddressWatcher, SIGNAL(canceled()), SLOT(deleteLater()));
|
|
|
|
connect(m_ownAddressWatcher, SIGNAL(finished()), SLOT(slotOwnAddressResolved()));
|
|
|
|
}
|
|
|
|
|
|
|
|
GetAddrInfo::~GetAddrInfo()
|
|
|
|
{
|
|
|
|
if (m_watcher && m_watcher->isRunning()) {
|
|
|
|
m_watcher->cancel();
|
2014-12-01 22:14:57 +00:00
|
|
|
m_watcher->waitForFinished();
|
2013-01-07 07:07:27 +00:00
|
|
|
}
|
|
|
|
if (m_ownAddressWatcher && m_ownAddressWatcher->isRunning()) {
|
|
|
|
m_ownAddressWatcher->cancel();
|
2014-12-01 22:14:57 +00:00
|
|
|
m_ownAddressWatcher->waitForFinished();
|
2013-01-07 07:07:27 +00:00
|
|
|
}
|
|
|
|
if (m_address) {
|
|
|
|
freeaddrinfo(m_address);
|
|
|
|
}
|
|
|
|
if (m_ownAddress) {
|
|
|
|
freeaddrinfo(m_ownAddress);
|
|
|
|
}
|
|
|
|
delete m_addressHints;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetAddrInfo::resolve()
|
|
|
|
{
|
|
|
|
if (m_resolving) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_resolving = true;
|
|
|
|
memset(m_addressHints, 0, sizeof(*m_addressHints));
|
|
|
|
m_addressHints->ai_family = PF_UNSPEC;
|
|
|
|
m_addressHints->ai_socktype = SOCK_STREAM;
|
|
|
|
m_addressHints->ai_flags |= AI_CANONNAME;
|
|
|
|
|
2014-03-27 14:47:15 +00:00
|
|
|
m_watcher->setFuture(QtConcurrent::run(getaddrinfo, m_hostName.constData(), nullptr, m_addressHints, &m_address));
|
2015-09-30 07:51:31 +00:00
|
|
|
m_ownAddressWatcher->setFuture(QtConcurrent::run([this] {
|
|
|
|
// needs to be performed in a lambda as getHostName() returns a temporary value which would
|
|
|
|
// get destroyed in the main thread before the getaddrinfo thread is able to read it
|
|
|
|
return getaddrinfo(getHostName().constData(), nullptr, m_addressHints, &m_ownAddress);
|
|
|
|
}));
|
2013-01-07 07:07:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GetAddrInfo::slotResolved()
|
|
|
|
{
|
|
|
|
if (resolved(m_watcher)) {
|
|
|
|
m_resolved = true;
|
|
|
|
compare();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetAddrInfo::slotOwnAddressResolved()
|
|
|
|
{
|
|
|
|
if (resolved(m_ownAddressWatcher)) {
|
|
|
|
m_ownResolved = true;
|
|
|
|
compare();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetAddrInfo::resolved(QFutureWatcher< int >* watcher)
|
|
|
|
{
|
|
|
|
if (!watcher->isFinished()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (watcher->result() != 0) {
|
2014-12-05 10:42:15 +00:00
|
|
|
qCDebug(KWIN_CORE) << "getaddrinfo failed with error:" << gai_strerror(watcher->result());
|
2013-01-07 07:07:27 +00:00
|
|
|
// call failed;
|
|
|
|
deleteLater();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetAddrInfo::compare()
|
|
|
|
{
|
|
|
|
if (!m_resolved || !m_ownResolved) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
addrinfo *address = m_address;
|
|
|
|
while (address) {
|
|
|
|
if (address->ai_canonname && m_hostName == QByteArray(address->ai_canonname).toLower()) {
|
|
|
|
addrinfo *ownAddress = m_ownAddress;
|
|
|
|
bool localFound = false;
|
|
|
|
while (ownAddress) {
|
|
|
|
if (ownAddress->ai_canonname && QByteArray(ownAddress->ai_canonname).toLower() == m_hostName) {
|
|
|
|
localFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ownAddress = ownAddress->ai_next;
|
|
|
|
}
|
|
|
|
if (localFound) {
|
|
|
|
emit local();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
address = address->ai_next;
|
|
|
|
}
|
|
|
|
deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ClientMachine::ClientMachine(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_localhost(false)
|
|
|
|
, m_resolved(false)
|
|
|
|
, m_resolving(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ClientMachine::~ClientMachine()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientMachine::resolve(xcb_window_t window, xcb_window_t clientLeader)
|
|
|
|
{
|
|
|
|
if (m_resolved) {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-17 12:59:04 +00:00
|
|
|
QByteArray name = NETWinInfo(connection(), window, rootWindow(), NET::Properties(), NET::WM2ClientMachine).clientMachine();
|
2013-01-07 07:07:27 +00:00
|
|
|
if (name.isEmpty() && clientLeader && clientLeader != window) {
|
2015-02-17 12:59:04 +00:00
|
|
|
name = NETWinInfo(connection(), clientLeader, rootWindow(), NET::Properties(), NET::WM2ClientMachine).clientMachine();
|
2013-01-07 07:07:27 +00:00
|
|
|
}
|
|
|
|
if (name.isEmpty()) {
|
|
|
|
name = localhost();
|
|
|
|
}
|
|
|
|
if (name == localhost()) {
|
|
|
|
setLocal();
|
|
|
|
}
|
|
|
|
m_hostName = name;
|
|
|
|
checkForLocalhost();
|
|
|
|
m_resolved = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientMachine::checkForLocalhost()
|
|
|
|
{
|
|
|
|
if (isLocal()) {
|
|
|
|
// nothing to do
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QByteArray host = getHostName();
|
|
|
|
|
|
|
|
if (!host.isEmpty()) {
|
|
|
|
host = host.toLower();
|
|
|
|
const QByteArray lowerHostName(m_hostName.toLower());
|
|
|
|
if (host == lowerHostName) {
|
|
|
|
setLocal();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (char *dot = strchr(host.data(), '.')) {
|
|
|
|
*dot = '\0';
|
|
|
|
if (host == lowerHostName) {
|
|
|
|
setLocal();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_resolving = true;
|
|
|
|
// check using information from get addr info
|
|
|
|
// GetAddrInfo gets automatically destroyed once it finished or not
|
|
|
|
GetAddrInfo *info = new GetAddrInfo(lowerHostName, this);
|
|
|
|
connect(info, SIGNAL(local()), SLOT(setLocal()));
|
|
|
|
connect(info, SIGNAL(destroyed(QObject*)), SLOT(resolveFinished()));
|
|
|
|
info->resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientMachine::setLocal()
|
|
|
|
{
|
|
|
|
m_localhost = true;
|
|
|
|
emit localhostChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientMachine::resolveFinished()
|
|
|
|
{
|
|
|
|
m_resolving = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|