Blame SOURCES/0321-daemon-Fix-double-closed-fd-race-condition.patch

06486d
From f74212ae0052b00828bcf7201ca3afa4dead4530 Mon Sep 17 00:00:00 2001
06486d
From: Martin Kutlak <mkutlak@redhat.com>
06486d
Date: Thu, 20 Sep 2018 16:49:28 +0200
06486d
Subject: [PATCH] daemon: Fix double closed fd race condition
06486d
06486d
When a communication channel is set up between abrtd and abrt-server it uses
06486d
abrt_gio_channel_unix_new(). In that function there is a call g_io_channel_set_close_on_unref() [1].
06486d
This function sets whether to close a file/socket/whatever associated with the channel when channel
06486d
recieves a final unref and is to be destroyed.
06486d
06486d
Calling a close() on fd associated with the channel before/after g_io_channel_unref()
06486d
created a double close() race condition when ABRT was processing a lot of crashes at the same time.
06486d
06486d
Thank you benzea for the patch.
06486d
06486d
Related rhbz#1655241
06486d
06486d
1 - https://developer.gnome.org/glib/stable/glib-IO-Channels.html#g-io-channel-get-close-on-unref
06486d
06486d
(cherry picked from github.com/abrt/abrt/commit/d965a43042b11eaed00ca49fcb060592082c398c)
06486d
06486d
Signed-off-by: Martin Kutlak <mkutlak@redhat.com>
06486d
---
06486d
 src/daemon/abrt-server.c | 1 -
06486d
 src/daemon/abrtd.c       | 4 +---
06486d
 2 files changed, 1 insertion(+), 4 deletions(-)
06486d
06486d
diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c
06486d
index 76186db76..e1dfc4af8 100644
06486d
--- a/src/daemon/abrt-server.c
06486d
+++ b/src/daemon/abrt-server.c
06486d
@@ -294,7 +294,6 @@ static int run_post_create(const char *dirname)
06486d
     g_main_loop_unref(context.main_loop);
06486d
     g_io_channel_unref(channel_signal);
06486d
     close(g_signal_pipe[1]);
06486d
-    close(g_signal_pipe[0]);
06486d
 
06486d
     log_notice("Waiting finished");
06486d
 
06486d
diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c
06486d
index fc4f01e22..0c63e7260 100644
06486d
--- a/src/daemon/abrtd.c
06486d
+++ b/src/daemon/abrtd.c
06486d
@@ -109,7 +109,6 @@ static void stop_abrt_server(struct abrt_server_proc *proc)
06486d
 
06486d
 static void dispose_abrt_server(struct abrt_server_proc *proc)
06486d
 {
06486d
-    close(proc->fdout);
06486d
     free(proc->dirname);
06486d
 
06486d
     if (proc->watch_id > 0)
06486d
@@ -226,8 +225,7 @@ static gboolean abrt_server_output_cb(GIOChannel *channel, GIOCondition conditio
06486d
     GList *item = g_list_find_custom(s_processes, &fdout, (GCompareFunc)abrt_server_compare_fdout);
06486d
     if (item == NULL)
06486d
     {
06486d
-        log_warning("Closing a pipe fd (%d) without a process assigned", fdout);
06486d
-        close(fdout);
06486d
+        log_warning("Removing an input channel fd (%d) without a process assigned", fdout);
06486d
         return FALSE;
06486d
     }
06486d
 
06486d
-- 
06486d
2.17.2
06486d