Blob Blame History Raw
From: Dai Ngo <dai.ngo@oracle.com>
Date: Tue, 31 Jan 2023 11:12:29 -0800
Subject: [PATCH] NFSD: fix problems with cleanup on errors in nfsd4_copy
Git-commit: 81e722978ad21072470b73d8f6a50ad62c7d5b7d
Patch-mainline: v6.3
References: git-fixes bsc#1210725

When nfsd4_copy fails to allocate memory for async_copy->cp_src, or
nfs4_init_copy_state fails, it calls cleanup_async_copy to do the
cleanup for the async_copy which causes page fault since async_copy
is not yet initialized.

This patche rearranges the order of initializing the fields in
async_copy and adds checks in cleanup_async_copy to skip un-initialized
fields.

Fixes: ce0887ac96d3 ("NFSD add nfs4 inter ssc to nfsd4_copy")
Fixes: 87689df69491 ("NFSD: Shrink size of struct nfsd4_copy")
Signed-off-by: Dai Ngo <dai.ngo@oracle.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Acked-by: NeilBrown <neilb@suse.com>

---
 fs/nfsd/nfs4proc.c  |   12 ++++++++----
 fs/nfsd/nfs4state.c |    5 +++--
 2 files changed, 11 insertions(+), 6 deletions(-)

--- a/fs/nfsd/nfs4proc.c
+++ b/fs/nfsd/nfs4proc.c
@@ -1596,9 +1596,12 @@ static void cleanup_async_copy(struct nf
 	nfsd_file_put(copy->nf_dst);
 	if (copy->cp_intra)
 		nfsd_file_put(copy->nf_src);
-	spin_lock(&copy->cp_clp->async_lock);
-	list_del(&copy->copies);
-	spin_unlock(&copy->cp_clp->async_lock);
+	if (copy->cp_clp) {
+		spin_lock(&copy->cp_clp->async_lock);
+		if (!list_empty(&copy->copies))
+			list_del_init(&copy->copies);
+		spin_unlock(&copy->cp_clp->async_lock);
+	}
 	nfs4_put_copy(copy);
 }
 
@@ -1678,9 +1681,10 @@ nfsd4_copy(struct svc_rqst *rqstp, struc
 		async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
 		if (!async_copy)
 			goto out_err;
+		INIT_LIST_HEAD(&async_copy->copies);
+		refcount_set(&async_copy->refcount, 1);
 		if (!nfs4_init_copy_state(nn, copy))
 			goto out_err;
-		refcount_set(&async_copy->refcount, 1);
 		memcpy(&copy->cp_res.cb_stateid, &copy->cp_stateid.stid,
 			sizeof(copy->cp_res.cb_stateid));
 		dup_copy_fields(copy, async_copy);
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -892,7 +892,6 @@ static int nfs4_init_cp_state(struct nfs
 
 	stid->stid.si_opaque.so_clid.cl_boot = (u32)nn->boot_time;
 	stid->stid.si_opaque.so_clid.cl_id = nn->s2s_cp_cl_id;
-	stid->sc_type = sc_type;
 
 	idr_preload(GFP_KERNEL);
 	spin_lock(&nn->s2s_cp_lock);
@@ -903,6 +902,7 @@ static int nfs4_init_cp_state(struct nfs
 	idr_preload_end();
 	if (new_id < 0)
 		return 0;
+	stid->sc_type = sc_type;
 	return 1;
 }
 
@@ -936,7 +936,8 @@ void nfs4_free_copy_state(struct nfsd4_c
 {
 	struct nfsd_net *nn;
 
-	WARN_ON_ONCE(copy->cp_stateid.sc_type != NFS4_COPY_STID);
+	if (copy->cp_stateid.sc_type != NFS4_COPY_STID)
+		return;
 	nn = net_generic(copy->cp_clp->net, nfsd_net_id);
 	spin_lock(&nn->s2s_cp_lock);
 	idr_remove(&nn->s2s_cp_stateids,