mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: ChenXiaoSong <chenxiaosong@chenxiaosong.com>
To: Your Name <qwe.aldo@gmail.com>, linux-cifs@vger.kernel.org
Cc: linkinjeon@kernel.org, smfrench@gmail.com,
	senozhatsky@chromium.org, tom@talpey.com,
	linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH] ksmbd: only rebind the reopened file's own oplock on durable reconnect
Date: Fri, 24 Jul 2026 12:51:14 +0800	[thread overview]
Message-ID: <09e27951-06a6-4dc7-bc44-cf9eff87d271@chenxiaosong.com> (raw)
In-Reply-To: <20260723230053.684176-1-you@example.com>

Reviewed-by: ChenXiaoSong <chenxiaosong@kylinos.cn>

By the way, your email signature is "Your Name". Did you forget to set 
your name in .gitconfig?

On 7/24/26 07:00, Your Name wrote:
> From: Aldo Ariel Panzardo <qwe.aldo@gmail.com>
> 
> ksmbd_reopen_durable_fd() walks the inode's m_op_list and rebinds every
> detached oplock to the reconnecting session:
> 
> 	list_for_each_entry_rcu(op, &ci->m_op_list, op_entry,
> 				lockdep_is_held(&ci->m_lock)) {
> 		if (op->conn)
> 			continue;
> 		op->conn = ksmbd_conn_get(fp->conn);
> 		op->sess = work->sess;
> 	}
> 
> The only key is op->conn == NULL, which every detached durable handle on
> that inode matches, not just the one owned by fp.  When two sessions hold
> durable handles on the same file and both disconnect, reconnecting one of
> them adopts the other session's oplock: op->sess is overwritten with the
> reconnecting session without taking a reference on it, while op->conn
> pins the connection.
> 
> The sibling teardown path, session_fd_check(), keys on the identity of
> the connection being torn down (op->conn == conn) rather than on shared
> state, and so does not have this problem.
> 
> Once the adopting session is destroyed, ksmbd_session_destroy() frees it
> while the foreign oplock still points at it.  The reader in
> ksmbd_close_fd_app_instance_id() validates only opinfo->conn, which is
> still live thanks to the reference taken above, and then dereferences the
> stale session:
> 
> 	if (!opinfo->conn) {
> 		up_read(&fp->f_ci->m_lock);
> 		goto out;
> 	}
> 
> 	ft = &opinfo->sess->file_table;
> 	write_lock(&ft->lock);
> 
>    BUG: KASAN: slab-use-after-free in _raw_write_lock+0x74/0xd0
>    Write of size 4 at addr ffff88810a970528 by task kworker/0:0/9
>    Workqueue: ksmbd-io handle_ksmbd_work
>    Call Trace:
>     _raw_write_lock+0x74/0xd0
>     ksmbd_close_fd_app_instance_id+0x183/0x410
>     smb2_open+0x1346/0x4430
>     handle_ksmbd_work+0x2bb/0x7b0
> 
> Reached from an authenticated session against a share with the default
> durable-handle and oplock configuration: two sessions open the same file
> with a durable-v2 handle and an RH lease under distinct AppInstanceIds,
> both log off, one reconnects with DH2C, and a later durable-v2 create
> carrying the other AppInstanceId walks into the freed session.
> 
> Constrain the loop to the oplock owned by the file being reopened.
> 
> Fixes: f363a0fb134a ("ksmbd: fix app-instance durable supersede session UAF")
> Cc: stable@vger.kernel.org
> Signed-off-by: Aldo Ariel Panzardo <qwe.aldo@gmail.com>
> ---
>   fs/smb/server/vfs_cache.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/smb/server/vfs_cache.c b/fs/smb/server/vfs_cache.c
> index d95c405eab11..1e9d13344825 100644
> --- a/fs/smb/server/vfs_cache.c
> +++ b/fs/smb/server/vfs_cache.c
> @@ -1720,7 +1720,7 @@ int ksmbd_reopen_durable_fd(struct ksmbd_work *work, struct ksmbd_file *fp)
>   	down_write(&ci->m_lock);
>   	list_for_each_entry_rcu(op, &ci->m_op_list, op_entry,
>   				lockdep_is_held(&ci->m_lock)) {
> -		if (op->conn)
> +		if (op->conn || op->o_fp != fp)
>   			continue;
>   		op->conn = ksmbd_conn_get(fp->conn);
>   		op->sess = work->sess;

-- 
ChenXiaoSong <chenxiaosong@chenxiaosong.com>
Chinese Homepage: https://chenxiaosong.com
English Homepage: https://chenxiaosong.com/en


  reply	other threads:[~2026-07-24  4:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-23 23:00 Your Name
2026-07-24  4:51 ` ChenXiaoSong [this message]
2026-07-24 14:58 ` Namjae Jeon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=09e27951-06a6-4dc7-bc44-cf9eff87d271@chenxiaosong.com \
    --to=chenxiaosong@chenxiaosong.com \
    --cc=linkinjeon@kernel.org \
    --cc=linux-cifs@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=qwe.aldo@gmail.com \
    --cc=senozhatsky@chromium.org \
    --cc=smfrench@gmail.com \
    --cc=stable@vger.kernel.org \
    --cc=tom@talpey.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®