* [PATCH] ksmbd: don't grant a persistent handle if the share is not continuous availability
@ 2024-04-12 1:04 Namjae Jeon
0 siblings, 0 replies; only message in thread
From: Namjae Jeon @ 2024-04-12 1:04 UTC (permalink / raw)
To: linux-cifs; +Cc: smfrench, senozhatsky, tom, atteh.mailbox, Namjae Jeon
If capabilities of the share is not SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY,
ksmbd should not grant a persistent handle to the client.
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
---
fs/smb/server/mgmt/tree_connect.h | 1 +
fs/smb/server/smb2pdu.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/smb/server/mgmt/tree_connect.h b/fs/smb/server/mgmt/tree_connect.h
index 6377a70b811c..27de34200c83 100644
--- a/fs/smb/server/mgmt/tree_connect.h
+++ b/fs/smb/server/mgmt/tree_connect.h
@@ -34,6 +34,7 @@ struct ksmbd_tree_connect {
atomic_t refcount;
wait_queue_head_t refcount_q;
unsigned int t_state;
+ unsigned int t_cap;
};
struct ksmbd_tree_conn_status {
diff --git a/fs/smb/server/smb2pdu.c b/fs/smb/server/smb2pdu.c
index 5723bbf372d7..1f1f06c5174e 100644
--- a/fs/smb/server/smb2pdu.c
+++ b/fs/smb/server/smb2pdu.c
@@ -3498,7 +3498,8 @@ int smb2_open(struct ksmbd_work *work)
memcpy(fp->client_guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE);
if (dh_info.type == DURABLE_REQ_V2 || dh_info.type == DURABLE_REQ) {
- if (dh_info.type == DURABLE_REQ_V2 && dh_info.persistent)
+ if (dh_info.type == DURABLE_REQ_V2 && dh_info.persistent &&
+ tcon->t_cap & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
fp->is_persistent = true;
else
fp->is_durable = true;
--
2.25.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-04-12 1:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-12 1:04 [PATCH] ksmbd: don't grant a persistent handle if the share is not continuous availability Namjae Jeon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox