All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/5] smb: server: Clear sensitive data before freeing it
@ 2026-08-11 15:46 Thomas Huth
  2026-08-11 15:46 ` [PATCH v2 1/5] smb: server: Clear sensitive stack and heap data in auth.c Thomas Huth
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Thomas Huth @ 2026-08-11 15:46 UTC (permalink / raw)
  To: Namjae Jeon, Steve French; +Cc: linux-kernel, Sergey Senozhatsky, Tom Talpey

Sensitive data like keys that are stored in stack-local arrays could be
leaked via the stack to the calling functions, or via the heap when using
only normal kfree() functions.

It's good security practice to clear sensitive data on the stack first
with memzero_explicit() before leaving the context, and to use
kfree_sensitive() for data that is returned to the heap.

Disclaimer: The spots that need clearing have been identified with AI,
but the patches have been created manually (for double-checking whether
the findings really make sense). Anyway, I'm not very familiar with the
smb code, so please review carefully. Thanks!

v2:
- Calculate proper size for the kvfree_sensitive() in the first patch
- Add "kfree_sensitive(target)" hunk to the connection.c patch
- Add patch to clear Preauth_HashValue in smb2pdu.c

Thomas Huth (5):
  smb: server: Clear sensitive stack and heap data in auth.c
  smb: server: Make sure that passkey is not leaked on the heap in
    user_config.c
  smb: server: Free session data in user_session.c with
    kfree_sensitive()
  smb: server: Free sensitive data in connection.c with
    kfree_sensitive()
  smb: server: Clear Preauth_HashValue in smb2pdu.c with
    kfree_sensitive()

 fs/smb/server/auth.c              | 12 ++++++++++--
 fs/smb/server/connection.c        |  6 +++---
 fs/smb/server/mgmt/user_config.c  |  6 +++---
 fs/smb/server/mgmt/user_session.c |  4 ++--
 fs/smb/server/smb2pdu.c           |  4 ++--
 5 files changed, 20 insertions(+), 12 deletions(-)

-- 
2.55.0


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

end of thread, other threads:[~2026-08-12 12:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-11 15:46 [PATCH v2 0/5] smb: server: Clear sensitive data before freeing it Thomas Huth
2026-08-11 15:46 ` [PATCH v2 1/5] smb: server: Clear sensitive stack and heap data in auth.c Thomas Huth
2026-08-11 15:46 ` [PATCH v2 2/5] smb: server: Make sure that passkey is not leaked on the heap in user_config.c Thomas Huth
2026-08-11 15:46 ` [PATCH v2 3/5] smb: server: Free session data in user_session.c with kfree_sensitive() Thomas Huth
2026-08-11 15:46 ` [PATCH v2 4/5] smb: server: Free sensitive data in connection.c " Thomas Huth
2026-08-11 15:46 ` [PATCH v2 5/5] smb: server: Clear Preauth_HashValue in smb2pdu.c " Thomas Huth
2026-08-12 12:41 ` [PATCH v2 0/5] smb: server: Clear sensitive data before freeing it Namjae Jeon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.