public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ceph: avoid putting the realm twice when docoding snaps fails
@ 2022-11-07  7:17 xiubli
  2022-11-07 10:39 ` Luís Henriques
  2022-11-07 15:21 ` Ilya Dryomov
  0 siblings, 2 replies; 5+ messages in thread
From: xiubli @ 2022-11-07  7:17 UTC (permalink / raw)
  To: ceph-devel; +Cc: lhenriques, jlayton, mchangir, idryomov, Xiubo Li, stable

From: Xiubo Li <xiubli@redhat.com>

When decoding the snaps fails it maybe leaving the 'first_realm'
and 'realm' pointing to the same snaprealm memory. And then it'll
put it twice and could cause random use-after-free, BUG_ON, etc
issues.

Cc: stable@vger.kernel.org
URL: https://tracker.ceph.com/issues/57686
Signed-off-by: Xiubo Li <xiubli@redhat.com>
---
 fs/ceph/snap.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
index 9bceed2ebda3..baf17df05107 100644
--- a/fs/ceph/snap.c
+++ b/fs/ceph/snap.c
@@ -849,10 +849,12 @@ int ceph_update_snap_trace(struct ceph_mds_client *mdsc,
 	if (realm_to_rebuild && p >= e)
 		rebuild_snap_realms(realm_to_rebuild, &dirty_realms);
 
-	if (!first_realm)
+	if (!first_realm) {
 		first_realm = realm;
-	else
+		realm = NULL;
+	} else {
 		ceph_put_snap_realm(mdsc, realm);
+	}
 
 	if (p < e)
 		goto more;
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-11-08  2:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-07  7:17 [PATCH] ceph: avoid putting the realm twice when docoding snaps fails xiubli
2022-11-07 10:39 ` Luís Henriques
2022-11-07 10:58   ` Xiubo Li
2022-11-07 15:21 ` Ilya Dryomov
2022-11-08  2:24   ` Xiubo Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox