60 lines
2.2 KiB
Diff
60 lines
2.2 KiB
Diff
From 4186f81596a481a5c0c5a707fc9b2358ee8f49f0 Mon Sep 17 00:00:00 2001
|
|
From: nik-redhat <nladha@redhat.com>
|
|
Date: Fri, 3 Jul 2020 17:18:33 +0530
|
|
Subject: [PATCH 599/610] afr: null dereference & nagative value
|
|
|
|
Added a check for NULL before dereferencing
|
|
the object as it may be NULL in few cases
|
|
inside the funtion. Also, added a check for
|
|
the negative value of gfid_idx.
|
|
|
|
CID: 1430140
|
|
CID: 1430145
|
|
|
|
>Change-Id: Ib7d23459b48bbc471dbcccab6d20572261882d11
|
|
>Updates: #1060
|
|
>Signed-off-by: nik-redhat <nladha@redhat.com>
|
|
|
|
Upstream link: https://review.gluster.org/c/glusterfs/+/24671
|
|
BUG: 1997447
|
|
|
|
Change-Id: I7e705a106d97001b67f5cde8589413c0c24ee507
|
|
Signed-off-by: nik-redhat <nladha@redhat.com>
|
|
Reviewed-on: https://code.engineering.redhat.com/gerrit/c/rhs-glusterfs/+/280085
|
|
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
---
|
|
xlators/cluster/afr/src/afr-self-heal-common.c | 2 +-
|
|
xlators/cluster/afr/src/afr-self-heal-name.c | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c
|
|
index 0954d2c..cbd5117 100644
|
|
--- a/xlators/cluster/afr/src/afr-self-heal-common.c
|
|
+++ b/xlators/cluster/afr/src/afr-self-heal-common.c
|
|
@@ -140,7 +140,7 @@ heal:
|
|
}
|
|
}
|
|
out:
|
|
- if (gfid_idx && (*gfid_idx == -1) && (ret == 0)) {
|
|
+ if (gfid_idx && (*gfid_idx == -1) && (ret == 0) && local) {
|
|
ret = -afr_final_errno(local, priv);
|
|
}
|
|
loc_wipe(&loc);
|
|
diff --git a/xlators/cluster/afr/src/afr-self-heal-name.c b/xlators/cluster/afr/src/afr-self-heal-name.c
|
|
index 9ec2066..c5ab8d7 100644
|
|
--- a/xlators/cluster/afr/src/afr-self-heal-name.c
|
|
+++ b/xlators/cluster/afr/src/afr-self-heal-name.c
|
|
@@ -353,7 +353,7 @@ __afr_selfheal_name_do(call_frame_t *frame, xlator_t *this, inode_t *parent,
|
|
ret = __afr_selfheal_assign_gfid(this, parent, pargfid, bname, inode,
|
|
replies, gfid, locked_on, source, sources,
|
|
is_gfid_absent, &gfid_idx);
|
|
- if (ret)
|
|
+ if (ret || (gfid_idx < 0))
|
|
return ret;
|
|
|
|
ret = __afr_selfheal_name_impunge(frame, this, parent, pargfid, bname,
|
|
--
|
|
1.8.3.1
|
|
|