>>

Qt / KDE Controlling Debug Messages

5 Jan 2023

Here you can find some simple notes on how to debug Qt / KDE applications. My focus is on OpenBSD as host system but everything here should work on GNU/Linux.

kDebug() and friends have been deprecated in KDE Frameworks 5 so you have to use the recommended logging functions qCDebug(category), qCInfo(category), qCWarning(category) qCCritical(category) to create logs from Qt5/Qt6 applications. Since Qt 5.2 QLoggingCategory is available to configure the category and allows us to control the output.

We can control it as follows and this is also the sequence as they are evaluated.

  • [QLibraryInfo::DataPath]/qtlogging.ini
  • QtProject/qtlogging.ini
  • setFilterRules()
  • QT_LOGGING_CONF
  • QT_LOGGING_RULES

In my default setup I disabled all debug logging in ~/.config/QtProject/qtlogging.ini by a simple rule like this:

[Rules]
*.debug=false

and enable step by step by QT_LOGGING_RULES what I want to see. For example, debug KDE Frameworks export QT_LOGGING_RULES="kf.*.debug=true"

QT_FORCE_STDERR_LOGGING is a other useful environment variable to help you to debug from terminal. This ensure all your logs are going to stderr instead syslog or journald. export QT_FORCE_STDERR_LOGGING=1

A common case is to see default debug messeages without a category like: qDeug() << "Simple deug log message". This is possible due to the simple logging rule QT_LOGGING_RULES="default.debug=true".

The pattern is always the same. Search for Q_DECLARE_LOGGING_CATEGORY to identify the log name and filter it with QT_LOGGING_RULES

Here you can find example: codesearch.debian.net - Q_DECLARE_LOGGING_CATEGORY

You can set the QT_LOGGING_DEBUG environment variable to find out where your logging rules are loaded from.

For more informations checkout QLoggingCategory docs.

OpenBSD KDE Status Report 2022

27 Dec 2022

A lot has happened since the last OpenBSD KDE Status Report in 2021. Let’s split the report in four areas the good, the bad, the plasma and libinput.

% The good

We welcome Qt6 into OpenBSD! Our Telegram client port (net/tdesktop) depends on it and kn@ is actively maintaining the client. tdesktop always quickly goes with the latest Qt6 version. So there is always some pressure for us to keep Qt6 up-to-date. I think this will pay off when KDE switches to Qt6. Besides tdesktop security/qdigidoc4 and net/wireshark also use Qt6 by now.

I have enabled devel/libinotify support in most of the KDE applications and libraries. It brings support for recursive file watching. Some KDE applications are fairly hungry for file descriptors and the default limits may be insufficient.

When crashes occur, it is advisable to increase your file descriptor limits for your $USER. Checkout login.conf(5) and don’t forget to rebuild the login.conf.db file (if necessary):

[ -f /etc/login.conf.db ] && cap_mkdb /etc/login.conf

Note that in addition to ulimits, there is a kernel-level file descriptor limit which may also need to be adjusted. This limit is managed through the kern.maxfiles sysctl(8).

Many cases known to me have happened with net/nextcloudclient. Of course, depending on your file count to sync.

  • Qt 6.4.1
  • Qt 5.15.7
  • Qt Creator 8.0.2
  • KDE Frameworks 5.101.0
    • NEW: KQuickCharts, KCalendarCore, KWayland (Only for dependencies)
    • REMOVED: kdewebkit and kjsembed. This are “KDE Porting Aids” ports, that means it provides code and tilities to ease the transition from kdelibs 4 to KDE Frameworks 5.
  • KDE Applications 22.12.0
    • NEW: KAccounts, kipi-plugins, kirigami-gallery, kontrast, kopeninghours
    • NEW in the KDE Gear familia
  • KMyMoney 5.1.2
  • digiKam (graphics/digikam) 7.9.0
  • Krita (graphics/krita) 5.1.4 + krita-gmic-plugin 3.1.6.1

Besides the list above, many many small and large bugfixes have been made.

% The bad

For a long time there has been a really annoying crash in all KDE applications. For example:

  • You will just copy/paste a file in dolphin file browser.
  • “Save as” in Okular - Universal Document Viewer.

Example trace

#0  FileProtocol::copy (this=0x982b59a6f80, srcUrl=..., destUrl=..., _mode=-1, _flags=...)
    at /usr/ports/pobj/kio-5.101.0/kio-5.101.0/src/ioslaves/file/file_unix.cpp:678
#1  0x00000982554ded53 in KIO::SlaveBase::dispatch (this=0x982b59a6f90, command=<optimized out>,
    data=...) at /usr/ports/pobj/kio-5.101.0/kio-5.101.0/src/core/slavebase.cpp:1364
#2  0x00000982554d8d05 in KIO::SlaveBase::dispatchLoop (this=0x982b59a6f90)
    at /usr/ports/pobj/kio-5.101.0/kio-5.101.0/src/core/slavebase.cpp:339
#3  0x0000098255570803 in KIO::WorkerThread::run (this=0x9832384ca40)
    at /usr/ports/pobj/kio-5.101.0/kio-5.101.0/src/core/workerthread.cpp:62
#4  0x00000982b662028c in QThreadPrivate::start(void*) () from /usr/local/lib/qt5/./libQt5Core.so.4.0
#5  0x00000983214cb0b1 in _rthread_start (v=<optimized out>) at /usr/src/lib/librthread/rthread.c:96
#6  0x00000982d7ad5f6a in __tfork_thread () at /usr/src/lib/libc/arch/amd64/sys/tfork_thread.S:84

cad/qcad core dumped at start time and devel/qbs at build time.

However, the bug hunting continues.

% The Plasma

This will come as a surprise to some, but I was able to port (almost) all KDE Plasma components to OpenBSD. You can find all my work on GitHub in the sizeofvoid/wip-ports repository, branch kde-plasma-wip, directory x11/kde-plasma. I’ve been working on it for a very long time. At some point I was so frustrated that we don’t have UDev and libInput. Read more here: OpenBSD and Wayland @robert fixed the UDev problem for me by import libudev-openbsd; a udev compatible library based.

% libinput - fake it until you make it.

I started to fake lib(open)input a fork of https://gitlab.freedesktop.org/libinput/libinput. It is an attempt to extend libinput so that it works with wscons(4) and kqueue(2) and thus on OpenBSD. For now it’s a stubbed, libinput-1.17.0 compatible API, which is okay since we only need it in conjunction with Wayland which is currently default off.

The good so far, it already starts:

To build WIP kde-plasma you have to clone the repository and build the port:

git clone -b kde-plasma-wip git@github.com:sizeofvoid/wip-ports.git
cd wip-ports/x11/kde-plasma

# Adjust PORTSDIR in /etc/mk.conf
# Example  PORTSDIR_PATH=/usr/ports/mystuff/wip-ports:$(PORTSDIR)

make install

To start KDE Plasma I use the following ~/.xsession. Do not forget to start DBus rcctl enable messagebus && rcctl start messagebus. Everything communicates via DBus.

# Set to 1 to debug plugins
export QT_DEBUG_PLUGINS=0
# Lets be noisy
export QT_LOGGING_RULES="*.debug=true;qt.*=false"

export XDG_SESSION_TYPE="x11"
export QT_QPA_PLATFORM="xcb"
export QT_QPA_PLATFORMTHEME=KDE
export XDG_CURRENT_DESKTOP=KDE
export KSCREEN_BACKEND=QScreen

export KDE_FULL_SESSION=1
export KDE_SESSION_VERSION=5
# See https://github.com/sizeofvoid/wip-ports/commit/13d490ffca9447788b568c3fb486de1b20c6b026
export QT_OPENBSD_SHM_MODE=1

# If your users intend to develop applications against this build,
# ensure that the IDEs they use either set QT_FORCE_STDERR_LOGGING to 1
export QT_FORCE_STDERR_LOGGING=1

# Start KDE Plasma Shell
exec /usr/local/bin/plasmashell --replace > ~/plasma.log 2>&1

Currently it looks like KDE Plasma and applications lose the connection to our X11 server. Applications that start in KDE Plasma starts without a window frame.

Here are the logs for the issue.

Nov 17 18:40:42 fuckup plasmashell: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup kactivitymanagerd: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup kglobalaccel5: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup kglobalaccel5: The X11 connection broke: I/O error (code 1)
Nov 17 18:40:42 fuckup kded5: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup kscreen_backend_launcher: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_contacts_resource: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_control: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_maildir_resource: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_migration_agent: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_akonotes_resource: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_maildispatcher_agent: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadiserver: org.kde.pim.akonadiserver: Control process died, committing suicide!
Nov 17 18:40:42 fuckup akonadi_birthdays_resource: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup baloorunner: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_ical_resource: The X11 connection broke (error 1). Did the X11 server die?
Nov 17 18:40:42 fuckup akonadi_newmailnotifier_agent: The X11 connection broke (error 1). Did the X11 server die?

Anyway, troubleshooting continues here as well.

I hope this blog post could give you a good insight about the current KDE status on OpenBSD. Thanks kn@ for the English proofreading!


As you can imagine, working on such a large number of ports is very time consuming. I am happy about any feedback and of course about any kind of support.

GitHub Sponsors


UPDATE

The “copy & paste” and “save as” issues in Okular and Dolphin are fixed with kio-5.101.0p0 Committed here: https://marc.info/?l=openbsd-ports-cvs&m=167286456813105&w=2

OpenBSD KDE Status Report 2021

23 Jan 2021

OpenBSD has managed to drop KDE3 and KDE4 in the 6.8 -> 6.9 release cycle. That makes me very happy because it was a big piece of work and long discussions. This of course brings questions: Kde Plasma 5 package missing.

After half a year of work, I managed to successfully update the Qt5 stack to the last LTS version 5.15.2. On the whole, the most work was updating QtWebengine. What a monster. With my CPU power at home, I can build it 1-2 times a day which makes tasting a little bit annoying and time intensive.

But today we can be happy about an up-to-date KDE stack in OpenBSD. Currently - at the end of January - our stack is very up-to-date:

  • Qt 5.15.2
  • Qt Creator 4.14.0
  • KDE Frameworks 5.78.0
  • KDE Applications 20.12.1 (Almost everything!)
  • Kdevelop 5.6.1
  • Kirta 4.4.2
  • KMyMoney 5.1.1
  • DigiKam 7.1.0

I try to keep KDE Applications 20.12.x stable until the 6.9 release.

Let’s move on to the topic of KDE Plasma. The Plasma desktop and some other KDE applications have a strong dependence on the Wayland. As long as there is no Wayland under OpenBSD, there will also be no KDE Plasma.

It can be observed that more and more KDE applications already prefer a strong dependency on Wayland. For example Spectacle.

In summery, no OpenBSD Wayland support no KDE Plasma and probably less and less KDE applications.

OpenBSD KDE status 2020

20 May 2020

This short blog post should summarize the KDE/Qt work done in OpenBSD 6.7 and my plans for 6.8.

6.7

The most important achievement was the Qt5 update from 5.9 to 5.13.2. Furthermore, I am very happy that many KDE Applications have made it into the new release. Currently we count 143 KDE5 applications and all KDE Frameworks addon libraries (except Wayland).

The KDE applications are available in version 19.12 and the framework in 5.68.0. In addition, there are some heavyweights in the ports tree:

… and many more exciting KDE/Qt applications.

After the ports-lock

Shortly after the release I committed and announced that I had managed to port the QtWebEngine. All parts are now in the tree and wait until they are unleashed.

It will allow us to port many new applications and give us the opportunity to update a few things. espie@ and tracey@ unbreak kdenlive, which means we have finally a video editor back in OpenBSD.

Next?

As an independent person it is always difficult to plan in the open source environment . Let’s say it like this, I have the following goals for 6.8:

  • Finally enable qtwebengine (easy).
  • Porting the remaining KDE Applications (x11/kde-applications). This is mostly the PIM stuff: Kontact, KMail, KAddressBook KOrganizer https://kontact.kde.org.
  • Get rid of KDE4 (x11/kde4). The conflicts are annoying and nobody uses this stuff anymore. Prove me wrong!

As you can imagine, working on such a large number of ports is very time consuming. I am happy about any feedback and of course about any kind of support.