This is a note to let you know that I've just added the patch titled ksmbd: call putname after using the last component to the 6.3-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ksmbd-call-putname-after-using-the-last-component.patch and it can be found in the queue-6.3 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6fe55c2799bc29624770c26f98ba7b06214f43e0 Mon Sep 17 00:00:00 2001 From: Namjae Jeon <linkinjeon@xxxxxxxxxx> Date: Thu, 25 May 2023 00:13:38 +0900 Subject: ksmbd: call putname after using the last component From: Namjae Jeon <linkinjeon@xxxxxxxxxx> commit 6fe55c2799bc29624770c26f98ba7b06214f43e0 upstream. last component point filename struct. Currently putname is called after vfs_path_parent_lookup(). And then last component is used for lookup_one_qstr_excl(). name in last component is freed by previous calling putname(). And It cause file lookup failure when testing generic/464 test of xfstest. Fixes: 74d7970febf7 ("ksmbd: fix racy issue from using ->d_parent and ->d_name") Signed-off-by: Namjae Jeon <linkinjeon@xxxxxxxxxx> Signed-off-by: Steve French <stfrench@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/ksmbd/vfs.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) --- a/fs/ksmbd/vfs.c +++ b/fs/ksmbd/vfs.c @@ -86,12 +86,14 @@ static int ksmbd_vfs_path_lookup_locked( err = vfs_path_parent_lookup(filename, flags, &parent_path, &last, &type, root_share_path); - putname(filename); - if (err) + if (err) { + putname(filename); return err; + } if (unlikely(type != LAST_NORM)) { path_put(&parent_path); + putname(filename); return -ENOENT; } @@ -108,12 +110,14 @@ static int ksmbd_vfs_path_lookup_locked( path->dentry = d; path->mnt = share_conf->vfs_path.mnt; path_put(&parent_path); + putname(filename); return 0; err_out: inode_unlock(parent_path.dentry->d_inode); path_put(&parent_path); + putname(filename); return -ENOENT; } Patches currently in stable-queue which might be from linkinjeon@xxxxxxxxxx are queue-6.3/ksmbd-validate-session-id-and-tree-id-in-the-compound-request.patch queue-6.3/ksmbd-add-mnt_want_write-to-ksmbd-vfs-functions.patch queue-6.3/ksmbd-remove-internal.h-include.patch queue-6.3/ksmbd-validate-command-payload-size.patch queue-6.3/fs-introduce-lock_rename_child-helper.patch queue-6.3/ksmbd-call-putname-after-using-the-last-component.patch queue-6.3/ksmbd-fix-out-of-bound-read-in-smb2_write.patch queue-6.3/ksmbd-fix-uninitialized-pointer-read-in-ksmbd_vfs_rename.patch queue-6.3/ksmbd-fix-uninitialized-pointer-read-in-smb2_create_link.patch queue-6.3/ksmbd-fix-racy-issue-from-using-d_parent-and-d_name.patch