From 39c2fdd9070f81705f1de927694b8589f69da149 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Mon, 6 Aug 2012 16:07:38 +0200 Subject: QWindowSystemInterface: fix mem leak and race MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There was a race where QGuiApplicationPrivate::processMouseEvent accessed QWindowSystemInterfacePrivate::windowSystemEventQueue without holding QWindowSystemInterfacePrivate::queueMutex. There was a memory leak where QWindowSystemInterfacePrivate::windowSystemEventQueue would not delete events contained in it when it was destroyed. Fix both of these by properly encapsulating the QList/QMutex pair in a small class, WindowSystemEventList, that allows only properly protected access to the internal QList and calls qDeleteAll() in its dtor. Change-Id: Ifaa9968c9272096df2f7109a7a6cf1c8e5fa736c Reviewed-by: David Faure Reviewed-by: Jørgen Lind --- src/gui/kernel/qwindowsysteminterface.cpp | 19 +++---------------- src/gui/kernel/qwindowsysteminterface_p.h | 25 +++++++++++++++++++++++-- 2 files changed, 26 insertions(+), 18 deletions(-) diff --git a/src/gui/kernel/qwindowsysteminterface.cpp b/src/gui/kernel/qwindowsysteminterface.cpp index f97dcdf7f3..23c23ba159 100644 --- a/src/gui/kernel/qwindowsysteminterface.cpp +++ b/src/gui/kernel/qwindowsysteminterface.cpp @@ -58,8 +58,7 @@ QElapsedTimer QWindowSystemInterfacePrivate::eventTime; // Callback functions for plugins: // -QList QWindowSystemInterfacePrivate::windowSystemEventQueue; -QMutex QWindowSystemInterfacePrivate::queueMutex; +QWindowSystemInterfacePrivate::WindowSystemEventList QWindowSystemInterfacePrivate::windowSystemEventQueue; extern QPointer qt_last_mouse_receiver; @@ -330,29 +329,17 @@ QWindowSystemInterfacePrivate::ExposeEvent::ExposeEvent(QWindow *exposed, const int QWindowSystemInterfacePrivate::windowSystemEventsQueued() { - queueMutex.lock(); - int ret = windowSystemEventQueue.count(); - queueMutex.unlock(); - return ret; + return windowSystemEventQueue.count(); } QWindowSystemInterfacePrivate::WindowSystemEvent * QWindowSystemInterfacePrivate::getWindowSystemEvent() { - queueMutex.lock(); - QWindowSystemInterfacePrivate::WindowSystemEvent *ret; - if (windowSystemEventQueue.isEmpty()) - ret = 0; - else - ret = windowSystemEventQueue.takeFirst(); - queueMutex.unlock(); - return ret; + return windowSystemEventQueue.takeFirstOrReturnNull(); } void QWindowSystemInterfacePrivate::queueWindowSystemEvent(QWindowSystemInterfacePrivate::WindowSystemEvent *ev) { - queueMutex.lock(); windowSystemEventQueue.append(ev); - queueMutex.unlock(); QAbstractEventDispatcher *dispatcher = QGuiApplicationPrivate::qt_qpa_core_dispatcher(); if (dispatcher) diff --git a/src/gui/kernel/qwindowsysteminterface_p.h b/src/gui/kernel/qwindowsysteminterface_p.h index 26f4cd68bb..f39e473b29 100644 --- a/src/gui/kernel/qwindowsysteminterface_p.h +++ b/src/gui/kernel/qwindowsysteminterface_p.h @@ -45,6 +45,8 @@ #include #include +#include +#include QT_BEGIN_HEADER @@ -323,8 +325,27 @@ public: qint64 uid; }; - static QList windowSystemEventQueue; - static QMutex queueMutex; + class WindowSystemEventList { + QList impl; + mutable QMutex mutex; + public: + WindowSystemEventList() : impl(), mutex() {} + ~WindowSystemEventList() + { const QMutexLocker locker(&mutex); qDeleteAll(impl); impl.clear(); } + + void prepend(WindowSystemEvent *e) + { const QMutexLocker locker(&mutex); impl.prepend(e); } + WindowSystemEvent *takeFirstOrReturnNull() + { const QMutexLocker locker(&mutex); return impl.empty() ? 0 : impl.takeFirst(); } + void append(WindowSystemEvent *e) + { const QMutexLocker locker(&mutex); impl.append(e); } + int count() const + { const QMutexLocker locker(&mutex); return impl.count(); } + private: + Q_DISABLE_COPY(WindowSystemEventList); + }; + + static WindowSystemEventList windowSystemEventQueue; static int windowSystemEventsQueued(); static WindowSystemEvent * getWindowSystemEvent(); -- cgit v1.2.3