Linux CIFS filesystem development
 help / color / mirror / Atom feed
* [PATCH] smb: client: clear ce->tgthint in free_tgts()
@ 2026-07-24  2:35 Fredric Cover
  2026-07-24 21:44 ` [PATCH v2 0/2] smb: client: fix dangling pointer in DFS target hints Fredric Cover
  2026-07-24 22:01 ` [PATCH v3 0/2] smb: client: fix dangling pointer in DFS target hints Fredric Cover
  0 siblings, 2 replies; 7+ messages in thread
From: Fredric Cover @ 2026-07-24  2:35 UTC (permalink / raw)
  To: sfrench
  Cc: pc, ronniesahlberg, sprasad, tom, bharathsm, linux-cifs,
	linux-kernel, Fredric Cover, stable

When free_tgts() frees all structures in ce->tlist, ce->tgthint
is left pointing to one of the freed cache_dfs_tgt structures.

If ce->tgthint is not reset before it is used later, it results
in a use-after-free.

Set ce->tgthint to NULL in free_tgts() after the elements are
freed to reflect that no elements remain.

Fixes: 54be1f6c1c37 ("cifs: Add DFS cache routines")
Cc: stable@vger.kernel.org
Signed-off-by: Fredric Cover <fredric.cover.lkernel@gmail.com>
---
 fs/smb/client/dfs_cache.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fs/smb/client/dfs_cache.c b/fs/smb/client/dfs_cache.c
index 8cd93cd2f00f..451550eb4023 100644
--- a/fs/smb/client/dfs_cache.c
+++ b/fs/smb/client/dfs_cache.c
@@ -122,6 +122,8 @@ static inline void free_tgts(struct cache_entry *ce)
 		kfree(t->name);
 		kfree(t);
 	}
+
+	WRITE_ONCE(ce->tgthint, NULL);
 }
 
 static inline void flush_cache_ent(struct cache_entry *ce)
-- 
2.53.0


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

end of thread, other threads:[~2026-07-24 22:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-24  2:35 [PATCH] smb: client: clear ce->tgthint in free_tgts() Fredric Cover
2026-07-24 21:44 ` [PATCH v2 0/2] smb: client: fix dangling pointer in DFS target hints Fredric Cover
2026-07-24 21:44   ` [PATCH v2 1/2] smb: client: harden DFS cache against invalid " Fredric Cover
2026-07-24 21:44   ` [PATCH v2 2/2] smb: client: clear ce->tgthint in free_tgts() Fredric Cover
2026-07-24 22:01 ` [PATCH v3 0/2] smb: client: fix dangling pointer in DFS target hints Fredric Cover
2026-07-24 22:01   ` [PATCH v3 1/2] smb: client: harden DFS cache against invalid " Fredric Cover
2026-07-24 22:01   ` [PATCH v3 2/2] smb: client: clear ce->tgthint in free_tgts() Fredric Cover

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