233933
From a7a7d497af4230430f8a0cc54d8b49cfea260039 Mon Sep 17 00:00:00 2001
233933
From: Xavi Hernandez <xhernandez@redhat.com>
233933
Date: Tue, 25 Jun 2019 18:00:06 +0200
233933
Subject: [PATCH 207/221] glusterd: fix use-after-free of a dict_t
233933
233933
A dict was passed to a function that calls dict_unref() without taking
233933
any additional reference. Given that the same dict is also used after
233933
the function returns, this was causing a use-after-free situation.
233933
233933
To fix the issue, we simply take an additional reference before calling
233933
the function.
233933
233933
Upstream patch:
233933
> BUG: 1723890
233933
> Upstream patch link: https://review.gluster.org/c/glusterfs/+/22943
233933
> Change-Id: I98c6b76b08fe3fa6224edf281a26e9ba1ffe3017
233933
> Signed-off-by: Xavi Hernandez <xhernandez@redhat.com>
233933
233933
Change-Id: I98c6b76b08fe3fa6224edf281a26e9ba1ffe3017
233933
Updates: bz#1722801
233933
Signed-off-by: Xavi Hernandez <xhernandez@redhat.com>
233933
Reviewed-on: https://code.engineering.redhat.com/gerrit/174656
233933
Tested-by: RHGS Build Bot <nigelb@redhat.com>
233933
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
233933
---
233933
 xlators/mgmt/glusterd/src/glusterd-utils.c | 2 +-
233933
 1 file changed, 1 insertion(+), 1 deletion(-)
233933
233933
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c
233933
index c6e9bb0..4c487d0 100644
233933
--- a/xlators/mgmt/glusterd/src/glusterd-utils.c
233933
+++ b/xlators/mgmt/glusterd/src/glusterd-utils.c
233933
@@ -3697,7 +3697,7 @@ glusterd_add_volumes_to_export_dict(dict_t *peer_data, char **buf,
233933
     if (totthread) {
233933
         gf_log(this->name, GF_LOG_INFO,
233933
                "Finished merger of all dictionraies into single one");
233933
-        dict_arr[totthread++] = peer_data;
233933
+        dict_arr[totthread++] = dict_ref(peer_data);
233933
         ret = glusterd_dict_arr_serialize(dict_arr, totthread, buf, length);
233933
         gf_log(this->name, GF_LOG_INFO,
233933
                "Serialize dictionary data return is %d", ret);
233933
-- 
233933
1.8.3.1
233933