|
|
233933 |
From 58070aa568ffbaac267b02428e974b2459ae13b0 Mon Sep 17 00:00:00 2001
|
|
|
233933 |
From: Susant Palai <spalai@redhat.com>
|
|
|
233933 |
Date: Tue, 18 Jun 2019 16:43:43 +0530
|
|
|
233933 |
Subject: [PATCH 197/221] :posix: fix crash in posix_cs_set_state
|
|
|
233933 |
|
|
|
233933 |
> Fixes: bz#1721474
|
|
|
233933 |
> Change-Id: Ic2a53fa3d1e9e23424c6898e0986f80d52c5e3f6
|
|
|
233933 |
> Signed-off-by: Susant Palai <spalai@redhat.com>
|
|
|
233933 |
(cherry-pick of https://review.gluster.org/#/c/glusterfs/+/22892/)
|
|
|
233933 |
|
|
|
233933 |
BUG: 1721477
|
|
|
233933 |
Change-Id: Ic2a53fa3d1e9e23424c6898e0986f80d52c5e3f6
|
|
|
233933 |
Signed-off-by: Susant Palai <spalai@redhat.com>
|
|
|
233933 |
Reviewed-on: https://code.engineering.redhat.com/gerrit/173936
|
|
|
233933 |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
233933 |
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
|
|
|
233933 |
---
|
|
|
233933 |
xlators/storage/posix/src/posix-helpers.c | 5 +++++
|
|
|
233933 |
xlators/storage/posix/src/posix-inode-fd-ops.c | 7 ++++---
|
|
|
233933 |
2 files changed, 9 insertions(+), 3 deletions(-)
|
|
|
233933 |
|
|
|
233933 |
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c
|
|
|
233933 |
index aecf4f8..849db3d 100644
|
|
|
233933 |
--- a/xlators/storage/posix/src/posix-helpers.c
|
|
|
233933 |
+++ b/xlators/storage/posix/src/posix-helpers.c
|
|
|
233933 |
@@ -3235,6 +3235,11 @@ posix_cs_set_state(xlator_t *this, dict_t **rsp, gf_cs_obj_state state,
|
|
|
233933 |
char *value = NULL;
|
|
|
233933 |
size_t xattrsize = 0;
|
|
|
233933 |
|
|
|
233933 |
+ if (!rsp) {
|
|
|
233933 |
+ ret = -1;
|
|
|
233933 |
+ goto out;
|
|
|
233933 |
+ }
|
|
|
233933 |
+
|
|
|
233933 |
if (!(*rsp)) {
|
|
|
233933 |
*rsp = dict_new();
|
|
|
233933 |
if (!(*rsp)) {
|
|
|
233933 |
diff --git a/xlators/storage/posix/src/posix-inode-fd-ops.c b/xlators/storage/posix/src/posix-inode-fd-ops.c
|
|
|
233933 |
index 7ca4d26..b92c411 100644
|
|
|
233933 |
--- a/xlators/storage/posix/src/posix-inode-fd-ops.c
|
|
|
233933 |
+++ b/xlators/storage/posix/src/posix-inode-fd-ops.c
|
|
|
233933 |
@@ -1028,6 +1028,7 @@ posix_glfallocate(call_frame_t *frame, xlator_t *this, fd_t *fd,
|
|
|
233933 |
struct iatt statpost = {
|
|
|
233933 |
0,
|
|
|
233933 |
};
|
|
|
233933 |
+ dict_t *rsp_xdata = NULL;
|
|
|
233933 |
|
|
|
233933 |
#ifdef FALLOC_FL_KEEP_SIZE
|
|
|
233933 |
if (keep_size)
|
|
|
233933 |
@@ -1035,15 +1036,15 @@ posix_glfallocate(call_frame_t *frame, xlator_t *this, fd_t *fd,
|
|
|
233933 |
#endif /* FALLOC_FL_KEEP_SIZE */
|
|
|
233933 |
|
|
|
233933 |
ret = posix_do_fallocate(frame, this, fd, flags, offset, len, &statpre,
|
|
|
233933 |
- &statpost, xdata, NULL);
|
|
|
233933 |
+ &statpost, xdata, &rsp_xdata);
|
|
|
233933 |
if (ret < 0)
|
|
|
233933 |
goto err;
|
|
|
233933 |
|
|
|
233933 |
- STACK_UNWIND_STRICT(fallocate, frame, 0, 0, &statpre, &statpost, NULL);
|
|
|
233933 |
+ STACK_UNWIND_STRICT(fallocate, frame, 0, 0, &statpre, &statpost, rsp_xdata);
|
|
|
233933 |
return 0;
|
|
|
233933 |
|
|
|
233933 |
err:
|
|
|
233933 |
- STACK_UNWIND_STRICT(fallocate, frame, -1, -ret, NULL, NULL, NULL);
|
|
|
233933 |
+ STACK_UNWIND_STRICT(fallocate, frame, -1, -ret, NULL, NULL, rsp_xdata);
|
|
|
233933 |
return 0;
|
|
|
233933 |
}
|
|
|
233933 |
|
|
|
233933 |
--
|
|
|
233933 |
1.8.3.1
|
|
|
233933 |
|