Blame SOURCES/idle-monitor-reset-fix.patch

1a3082
From 35333114a991440d671e3642170aa080df45a171 Mon Sep 17 00:00:00 2001
1a3082
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
1a3082
Date: Mon, 16 Sep 2019 16:17:48 +0200
1a3082
Subject: [PATCH 1/3] idle-monitor: Make helper function static
1a3082
1a3082
It wasn't used outside the file, so no reason to not have it static.
1a3082
1a3082
https://gitlab.gnome.org/GNOME/mutter/merge_requests/799
1a3082
---
1a3082
 src/backends/meta-idle-monitor-private.h | 1 -
1a3082
 src/backends/meta-idle-monitor.c         | 8 ++++----
1a3082
 2 files changed, 4 insertions(+), 5 deletions(-)
1a3082
1a3082
diff --git a/src/backends/meta-idle-monitor-private.h b/src/backends/meta-idle-monitor-private.h
1a3082
index 93948b14b..cc08f8c8e 100644
1a3082
--- a/src/backends/meta-idle-monitor-private.h
1a3082
+++ b/src/backends/meta-idle-monitor-private.h
1a3082
@@ -54,7 +54,6 @@ struct _MetaIdleMonitorClass
1a3082
   GObjectClass parent_class;
1a3082
 };
1a3082
 
1a3082
-void _meta_idle_monitor_watch_fire (MetaIdleMonitorWatch *watch);
1a3082
 void meta_idle_monitor_reset_idletime (MetaIdleMonitor *monitor);
1a3082
 
1a3082
 #endif /* META_IDLE_MONITOR_PRIVATE_H */
1a3082
diff --git a/src/backends/meta-idle-monitor.c b/src/backends/meta-idle-monitor.c
1a3082
index e83d6c778..de1c7e0ba 100644
1a3082
--- a/src/backends/meta-idle-monitor.c
1a3082
+++ b/src/backends/meta-idle-monitor.c
1a3082
@@ -54,8 +54,8 @@ static GParamSpec *obj_props[PROP_LAST];
1a3082
 
1a3082
 G_DEFINE_TYPE (MetaIdleMonitor, meta_idle_monitor, G_TYPE_OBJECT)
1a3082
 
1a3082
-void
1a3082
-_meta_idle_monitor_watch_fire (MetaIdleMonitorWatch *watch)
1a3082
+static void
1a3082
+meta_idle_monitor_watch_fire (MetaIdleMonitorWatch *watch)
1a3082
 {
1a3082
   MetaIdleMonitor *monitor;
1a3082
   guint id;
1a3082
@@ -324,7 +324,7 @@ idle_monitor_dispatch_timeout (GSource     *source,
1a3082
   if (ready_time > now)
1a3082
     return G_SOURCE_CONTINUE;
1a3082
 
1a3082
-  _meta_idle_monitor_watch_fire (watch);
1a3082
+  meta_idle_monitor_watch_fire (watch);
1a3082
   g_source_set_ready_time (watch->timeout_source, -1);
1a3082
 
1a3082
   return G_SOURCE_CONTINUE;
1a3082
@@ -511,7 +511,7 @@ meta_idle_monitor_reset_idletime (MetaIdleMonitor *monitor)
1a3082
 
1a3082
       if (watch->timeout_msec == 0)
1a3082
         {
1a3082
-          _meta_idle_monitor_watch_fire ((MetaIdleMonitorWatch *) watch);
1a3082
+          meta_idle_monitor_watch_fire ((MetaIdleMonitorWatch *) watch);
1a3082
         }
1a3082
       else
1a3082
         {
1a3082
-- 
1a3082
2.23.0
1a3082
1a3082
1a3082
From 07276cf94d84489d450c17b7dec5a8075c60440a Mon Sep 17 00:00:00 2001
1a3082
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
1a3082
Date: Mon, 16 Sep 2019 16:36:05 +0200
1a3082
Subject: [PATCH 2/3] idle-monitor: Remove redundant type cast
1a3082
1a3082
No need to type cast a `MetaIdleMonitorWatch *` to a
1a3082
`MetaIdleMonitorWatch *`.
1a3082
1a3082
https://gitlab.gnome.org/GNOME/mutter/merge_requests/799
1a3082
---
1a3082
 src/backends/meta-idle-monitor.c | 2 +-
1a3082
 1 file changed, 1 insertion(+), 1 deletion(-)
1a3082
1a3082
diff --git a/src/backends/meta-idle-monitor.c b/src/backends/meta-idle-monitor.c
1a3082
index de1c7e0ba..e5124abc1 100644
1a3082
--- a/src/backends/meta-idle-monitor.c
1a3082
+++ b/src/backends/meta-idle-monitor.c
1a3082
@@ -511,7 +511,7 @@ meta_idle_monitor_reset_idletime (MetaIdleMonitor *monitor)
1a3082
 
1a3082
       if (watch->timeout_msec == 0)
1a3082
         {
1a3082
-          meta_idle_monitor_watch_fire ((MetaIdleMonitorWatch *) watch);
1a3082
+          meta_idle_monitor_watch_fire (watch);
1a3082
         }
1a3082
       else
1a3082
         {
1a3082
-- 
1a3082
2.23.0
1a3082
1a3082
1a3082
From 73c1f387765ef528c7323e6e7ca3c05899cfcc4a Mon Sep 17 00:00:00 2001
1a3082
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
1a3082
Date: Mon, 16 Sep 2019 16:36:51 +0200
1a3082
Subject: [PATCH 3/3] idle-monitor: Reset timeout before firing watch
1a3082
1a3082
The watch might be removed during firing, meaning the source is
1a3082
destroyed after returning. Avoid use-after-free by unsetting the timeout
1a3082
before firing. Returning G_SOURCE_CONTINUE in that case is harmless, as
1a3082
source is destroyed.
1a3082
1a3082
Fixes: https://gitlab.gnome.org/GNOME/mutter/issues/796
1a3082
1a3082
https://gitlab.gnome.org/GNOME/mutter/merge_requests/799
1a3082
---
1a3082
 src/backends/meta-idle-monitor.c | 3 ++-
1a3082
 1 file changed, 2 insertions(+), 1 deletion(-)
1a3082
1a3082
diff --git a/src/backends/meta-idle-monitor.c b/src/backends/meta-idle-monitor.c
1a3082
index e5124abc1..9fa481742 100644
1a3082
--- a/src/backends/meta-idle-monitor.c
1a3082
+++ b/src/backends/meta-idle-monitor.c
1a3082
@@ -324,9 +324,10 @@ idle_monitor_dispatch_timeout (GSource     *source,
1a3082
   if (ready_time > now)
1a3082
     return G_SOURCE_CONTINUE;
1a3082
 
1a3082
-  meta_idle_monitor_watch_fire (watch);
1a3082
   g_source_set_ready_time (watch->timeout_source, -1);
1a3082
 
1a3082
+  meta_idle_monitor_watch_fire (watch);
1a3082
+
1a3082
   return G_SOURCE_CONTINUE;
1a3082
 }
1a3082
 
1a3082
-- 
1a3082
2.23.0
1a3082