diff options
| author | hujianfei <hujianfei@cmss.chinamobile.com> | 2019-02-15 04:07:46 -0500 | 
|---|---|---|
| committer | Amar Tumballi <amarts@redhat.com> | 2019-02-19 16:32:19 +0000 | 
| commit | 09394856e1197db4933e7e814589a3340eb739cd (patch) | |
| tree | 3259df1f93310ef574b01f28c710dc9664093065 | |
| parent | 93e2576953316fdb37bb59b98bea755e799cc421 (diff) | |
glusterfsd: Do not process PROFILE_NFS_INFO if graph is not ready
Otherwise, gnfs will crash in following situation.
Also see commit 2f9e555f.
Reproducible Steps:
1. kill gnfs process
2. service glusterd restart;gluster volume profile [vol] info nfs
dump trace info:
/lib64/libglusterfs.so.0(_gf_msg_backtrace_nomem+0xc2)[0x7fcf5cb6a872]
/lib64/libglusterfs.so.0(gf_print_trace+0x324)[0x7fcf5cb743a4]
/lib64/libc.so.6(+0x35670)[0x7fcf5b1d5670]
/usr/sbin/glusterfs(glusterfs_handle_nfs_profile+0x114)[0x7fcf5d066474]
/lib64/libglusterfs.so.0(synctask_wrap+0x12)[0x7fcf5cba1502]
/lib64/libc.so.6(+0x47110)[0x7fcf5b1e7110]
Fixes: bz#1677559
Change-Id: Id68edb3e4646c39544e0b4c90b5e0a9083b37b0d
Signed-off-by: hujianfei <hujianfei@cmss.chinamobile.com>
| -rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index a78acb602a0..a6c3db5b551 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -1504,6 +1504,11 @@ glusterfs_handle_nfs_profile(rpcsvc_request_t *req)      GF_ASSERT(ctx);      active = ctx->active; +    if (active == NULL) { +        gf_log(THIS->name, GF_LOG_ERROR, "ctx->active returned NULL"); +        ret = -1; +        goto out; +    }      any = active->first;      // is this needed?  | 
