Blame SOURCES/dleyna-core-Don-t-remove-a-queue-more-than-once.patch

a470fa
From 1b5282d8303177cebf8496656da1dada29517e9d Mon Sep 17 00:00:00 2001
a470fa
From: Debarshi Ray <debarshir@freedesktop.org>
a470fa
Date: Fri, 4 Dec 2020 02:17:48 +0100
a470fa
Subject: [PATCH] Don't remove a queue more than once
a470fa
a470fa
Currently, the dleyna_task_processor_remove_queues_for_sink and
a470fa
dleyna_task_processor_remove_queues_for_source APIs can corrupt the
a470fa
memory of the hash table of queues in the processor.
a470fa
a470fa
These APIs iterate through the queues in the hash table using
a470fa
g_hash_table_foreach_remove, and let the callbacks return TRUE when a
a470fa
queue is to be removed. Unfortunately, the callbacks use prv_cancel,
a470fa
which might have already removed the queue using g_hash_table_remove.
a470fa
It happens specifically for queues that have no current_task and have
a470fa
the DLEYNA_TASK_QUEUE_FLAG_AUTO_REMOVE flag set.
a470fa
a470fa
dleyna-renderer-service has such a queue, whose task_delete_cb handler
a470fa
is set to dleyna_gasync_task_delete_cb. When dleyna-renderer-service
a470fa
loses it's last D-Bus client, it first invokes
a470fa
dleyna_task_processor_remove_queues_for_source, followed by
a470fa
dleyna_task_processor_set_quitting. The former corrupts the hash
a470fa
table. The latter invokes prv_cancel_all_queues, which again goes
a470fa
through the hash table and tries to remove them. This leads to crashes
a470fa
with backtraces containing dleyna_gasync_task_delete_cb, GPtrArray,
a470fa
prv_task_cancel_and_free_cb, or similar code paths originating from
a470fa
prv_cancel_only.
a470fa
a470fa
Here's an example:
a470fa
a470fa
%0  prv_task_cancel_and_free_cb (data=0x56246f2425f0,
a470fa
                                 user_data=<optimized out>)
a470fa
    at libdleyna/core/task-processor.c:180
a470fa
%1  g_ptr_array_foreach (array=0x56246f68b5a0,
a470fa
                         func=0x7f41d2335850 <prv_task_cancel_and_free_cb>,
a470fa
                         user_data=0x56246f4ea1a0)
a470fa
    at ../glib/garray.c:2091
a470fa
%2  prv_cancel_only (queue_id=<optimized out>,
a470fa
                     task_queue=0x56246f4ea1a0)
a470fa
    at libdleyna/core/task-processor.c:193
a470fa
%3  prv_cancel_cb (key=<optimized out>,
a470fa
                   value=0x56246f4ea1a0,
a470fa
                   user_data=<optimized out>)
a470fa
    at libdleyna/core/task-processor.c:229
a470fa
%4  g_hash_table_foreach_remove_or_steal (hash_table=0x56246f1e82a0,
a470fa
                                          func=func@entry=0x7f41d2335c10 <prv_cancel_cb>,
a470fa
                                          user_data=user_data@entry=0x0,
a470fa
                                          notify=notify@entry=1)
a470fa
    at ../glib/ghash.c:1947
a470fa
%5  g_hash_table_foreach_remove (hash_table=<optimized out>,
a470fa
                                 func=func@entry=0x7f41d2335c10 <prv_cancel_cb>,
a470fa
                                 user_data=user_data@entry=0x0)
a470fa
    at ../glib/ghash.c:1993
a470fa
%6  prv_cancel_all_queues (processor=0x56246f1f3510)
a470fa
    at libdleyna/core/task-processor.c:244
a470fa
%7  dleyna_task_processor_set_quitting (processor=0x56246f1f3510)
a470fa
    at libdleyna/core/task-processor.c:259
a470fa
%8  prv_lost_client (connection=<optimized out>,
a470fa
                     name=0x56246f24e5d0 ":1.47515",
a470fa
                     user_data=<optimized out>)
a470fa
    at src/connector-dbus.c:283
a470fa
%9  actually_do_call (call_type=CALL_TYPE_NAME_VANISHED,
a470fa
                      name_owner=<optimized out>,
a470fa
                      connection=<optimized out>,
a470fa
                      client=0x56246f24efb0)
a470fa
    at ../gio/gdbusnamewatching.c:171
a470fa
%10 actually_do_call (call_type=CALL_TYPE_NAME_VANISHED,
a470fa
                      name_owner=<optimized out>,
a470fa
                      connection=<optimized out>,
a470fa
                      client=0x56246f24efb0)
a470fa
    at ../gio/gdbusnamewatching.c:149
a470fa
%11 do_call (client=0x56246f24efb0, call_type=CALL_TYPE_NAME_VANISHED)
a470fa
    at ../gio/gdbusnamewatching.c:224
a470fa
%12 call_vanished_handler (client=0x56246f24efb0)
a470fa
    at ../gio/gdbusnamewatching.c:249
a470fa
%13 call_vanished_handler (client=0x56246f24efb0)
a470fa
    at ../gio/gdbusnamewatching.c:242
a470fa
%14 on_name_owner_changed (connection=<optimized out>,
a470fa
                           sender_name=0x56246f24a260 "org.freedesktop.DBus",
a470fa
                           object_path=0x56246f7ad950 "/org/freedesktop/DBus",
a470fa
                           interface_name=0x56246f27a2a0 "org.freedesktop.DBus",
a470fa
                           signal_name=<optimized out>,
a470fa
                           parameters=0x56246f21ee90, user_data=0x1)
a470fa
    at ../gio/gdbusnamewatching.c:352
a470fa
%15 emit_signal_instance_in_idle_cb (data=data@entry=0x56246f236950)
a470fa
    at ../gio/gdbusconnection.c:3777
a470fa
%16 g_idle_dispatch (source=source@entry=0x56246f7080a0,
a470fa
                     callback=0x7f41d1e1e640 <emit_signal_instance_in_idle_cb>,
a470fa
                     user_data=0x56246f236950)
a470fa
    at ../glib/gmain.c:5836
a470fa
%17 g_main_dispatch (context=0x56246f1f2920) at ../glib/gmain.c:3325
a470fa
%18 g_main_context_dispatch (context=0x56246f1f2920)
a470fa
    at ../glib/gmain.c:4043
a470fa
%19 g_main_context_iterate.constprop.0 (context=0x56246f1f2920,
a470fa
                                        block=block@entry=1,
a470fa
                                        dispatch=dispatch@entry=1,
a470fa
                                        self=<optimized out>)
a470fa
    at ../glib/gmain.c:4119
a470fa
%20 g_main_loop_run (loop=0x56246f2337a0) at ../glib/gmain.c:4317
a470fa
%21 dleyna_main_loop_start (server=<optimized out>,
a470fa
                            control_point=<optimized out>,
a470fa
                            user_data=<optimized out>)
a470fa
    at libdleyna/core/main-loop.c:154
a470fa
%22 __libc_start_main (main=0x56246d8b40d0 <main>,
a470fa
                       argc=1,
a470fa
                       argv=0x7ffd4b757768,
a470fa
                       init=<optimized out>,
a470fa
                       fini=<optimized out>,
a470fa
                       rtld_fini=<optimized out>,
a470fa
                       stack_end=0x7ffd4b757758)
a470fa
    at ../csu/libc-start.c:314
a470fa
%23 _start ()
a470fa
a470fa
Looking at the innards of the task_queue, it's seen that all the
a470fa
function pointers have the same value, which doesn't match with the
a470fa
reality of the code and is indicative of a memory error:
a470fa
a470fa
(gdb) print *task_queue
a470fa
$2 = {tasks = 0x56210d62385a,
a470fa
  task_process_cb = 0x9595959595959595,
a470fa
  task_cancel_cb = 0x9595959595959595,
a470fa
  task_delete_cb = 0x9595959595959595,
a470fa
  task_queue_finally_cb = 0x9595959595959595,
a470fa
  current_task = 0x9595959595959595,
a470fa
  idle_id = 2509608341,
a470fa
  defer_remove = -1785358955,
a470fa
  flags = 2509608341,
a470fa
  user_data = 0x9595959595959595,
a470fa
  cancelled = -1785358955}
a470fa
a470fa
Based on initial work done by Robert Tiemann.
a470fa
a470fa
https://bugzilla.redhat.com/show_bug.cgi?id=1903139
a470fa
https://github.com/phako/dleyna-core/pull/1
a470fa
---
a470fa
 libdleyna/core/task-processor.c | 4 ++--
a470fa
 1 file changed, 2 insertions(+), 2 deletions(-)
a470fa
a470fa
diff --git a/libdleyna/core/task-processor.c b/libdleyna/core/task-processor.c
a470fa
index 39529a3dc967..f50dd569ed61 100644
a470fa
--- a/libdleyna/core/task-processor.c
a470fa
+++ b/libdleyna/core/task-processor.c
a470fa
@@ -285,7 +285,7 @@ static gboolean prv_free_queue_for_source(gpointer key, gpointer value,
a470fa
 
a470fa
 	if (!strcmp(source, queue_key->source) && !queue->defer_remove) {
a470fa
 		queue->defer_remove = (queue->current_task != NULL);
a470fa
-		prv_cancel(queue_key, queue);
a470fa
+		prv_cancel_only(queue_key, queue);
a470fa
 
a470fa
 		if (!queue->defer_remove) {
a470fa
 			DLEYNA_LOG_DEBUG("Removing queue <%s,%s>",
a470fa
@@ -320,7 +320,7 @@ static gboolean prv_free_queue_for_sink(gpointer key, gpointer value,
a470fa
 
a470fa
 	if (!strcmp(sink, queue_key->sink) && !queue->defer_remove) {
a470fa
 		queue->defer_remove = (queue->current_task != NULL);
a470fa
-		prv_cancel(queue_key, queue);
a470fa
+		prv_cancel_only(queue_key, queue);
a470fa
 
a470fa
 		if (!queue->defer_remove) {
a470fa
 			DLEYNA_LOG_DEBUG("Removing queue <%s,%s>",
a470fa
-- 
a470fa
2.28.0
a470fa