aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorGravatar Xiubo Li <xiubli@redhat.com> 2023-05-18 09:47:23 +0800
committerGravatar Ilya Dryomov <idryomov@gmail.com> 2023-05-18 11:15:28 +0200
commit4cafd0400bcb6187c0d4ab4d4b0229a89ac4f8c2 (patch)
treef675340e3ee43084a7eda4e04a6f08491000194e /fs
parentceph: silence smatch warning in reconnect_caps_cb() (diff)
downloadlinux-4cafd0400bcb6187c0d4ab4d4b0229a89ac4f8c2.tar.gz
linux-4cafd0400bcb6187c0d4ab4d4b0229a89ac4f8c2.tar.bz2
linux-4cafd0400bcb6187c0d4ab4d4b0229a89ac4f8c2.zip
ceph: force updating the msg pointer in non-split case
When the MClientSnap reqeust's op is not CEPH_SNAP_OP_SPLIT the request may still contain a list of 'split_realms', and we need to skip it anyway. Or it will be parsed as a corrupt snaptrace. Cc: stable@vger.kernel.org Link: https://tracker.ceph.com/issues/61200 Reported-by: Frank Schilder <frans@dtu.dk> Signed-off-by: Xiubo Li <xiubli@redhat.com> Reviewed-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ceph/snap.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
index 87007203f130..0b236ebd989f 100644
--- a/fs/ceph/snap.c
+++ b/fs/ceph/snap.c
@@ -1111,6 +1111,19 @@ skip_inode:
continue;
adjust_snap_realm_parent(mdsc, child, realm->ino);
}
+ } else {
+ /*
+ * In the non-split case both 'num_split_inos' and
+ * 'num_split_realms' should be 0, making this a no-op.
+ * However the MDS happens to populate 'split_realms' list
+ * in one of the UPDATE op cases by mistake.
+ *
+ * Skip both lists just in case to ensure that 'p' is
+ * positioned at the start of realm info, as expected by
+ * ceph_update_snap_trace().
+ */
+ p += sizeof(u64) * num_split_inos;
+ p += sizeof(u64) * num_split_realms;
}
/*