linux-cifs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ksmbd: update feature status in documentation
@ 2024-01-13  6:46 Namjae Jeon
  2024-01-13 23:53 ` Tom Talpey
  0 siblings, 1 reply; 4+ messages in thread
From: Namjae Jeon @ 2024-01-13  6:46 UTC (permalink / raw)
  To: linux-cifs; +Cc: smfrench, senozhatsky, tom, atteh.mailbox, Namjae Jeon

Update ksmbd feature status in documentation file.
 - add support for v2 lease feature and SMB3 CCM/GCM256 encryption.
 - add planned features.

Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
---
 Documentation/filesystems/smb/ksmbd.rst | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Documentation/filesystems/smb/ksmbd.rst b/Documentation/filesystems/smb/ksmbd.rst
index 7bed96d794fc..251e27900f88 100644
--- a/Documentation/filesystems/smb/ksmbd.rst
+++ b/Documentation/filesystems/smb/ksmbd.rst
@@ -73,15 +73,14 @@ Auto Negotiation               Supported.
 Compound Request               Supported.
 Oplock Cache Mechanism         Supported.
 SMB2 leases(v1 lease)          Supported.
-Directory leases(v2 lease)     Planned for future.
+Directory leases(v2 lease)     Supported.
 Multi-credits                  Supported.
 NTLM/NTLMv2                    Supported.
 HMAC-SHA256 Signing            Supported.
 Secure negotiate               Supported.
 Signing Update                 Supported.
 Pre-authentication integrity   Supported.
-SMB3 encryption(CCM, GCM)      Supported. (CCM and GCM128 supported, GCM256 in
-                               progress)
+SMB3 encryption(CCM, GCM)      Supported. (CCM/GCM128 and CCM/GCM256 supported)
 SMB direct(RDMA)               Supported.
 SMB3 Multi-channel             Partially Supported. Planned to implement
                                replay/retry mechanisms for future.
@@ -112,6 +111,9 @@ DCE/RPC support                Partially Supported. a few calls(NetShareEnumAll,
                                for Witness protocol e.g.)
 ksmbd/nfsd interoperability    Planned for future. The features that ksmbd
                                support are Leases, Notify, ACLs and Share modes.
+SMB2 Compression               Planned for future.
+SMB over QUIC                  Planned for future.
+Signing/Encryption over RDMA   Planned for future.
 ============================== =================================================
 
 
-- 
2.25.1


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

* Re: [PATCH] ksmbd: update feature status in documentation
  2024-01-13  6:46 [PATCH] ksmbd: update feature status in documentation Namjae Jeon
@ 2024-01-13 23:53 ` Tom Talpey
  2024-01-14  5:20   ` Namjae Jeon
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Talpey @ 2024-01-13 23:53 UTC (permalink / raw)
  To: Namjae Jeon, linux-cifs; +Cc: smfrench, senozhatsky, atteh.mailbox

On 1/13/2024 1:46 AM, Namjae Jeon wrote:
> Update ksmbd feature status in documentation file.
>   - add support for v2 lease feature and SMB3 CCM/GCM256 encryption.
>   - add planned features.
> 
> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
> ---
>   Documentation/filesystems/smb/ksmbd.rst | 8 +++++---
>   1 file changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/Documentation/filesystems/smb/ksmbd.rst b/Documentation/filesystems/smb/ksmbd.rst
> index 7bed96d794fc..251e27900f88 100644
> --- a/Documentation/filesystems/smb/ksmbd.rst
> +++ b/Documentation/filesystems/smb/ksmbd.rst
> @@ -73,15 +73,14 @@ Auto Negotiation               Supported.
>   Compound Request               Supported.
>   Oplock Cache Mechanism         Supported.
>   SMB2 leases(v1 lease)          Supported.
> -Directory leases(v2 lease)     Planned for future.
> +Directory leases(v2 lease)     Supported.
>   Multi-credits                  Supported.
>   NTLM/NTLMv2                    Supported.
>   HMAC-SHA256 Signing            Supported.
>   Secure negotiate               Supported.
>   Signing Update                 Supported.
>   Pre-authentication integrity   Supported.
> -SMB3 encryption(CCM, GCM)      Supported. (CCM and GCM128 supported, GCM256 in
> -                               progress)
> +SMB3 encryption(CCM, GCM)      Supported. (CCM/GCM128 and CCM/GCM256 supported)
>   SMB direct(RDMA)               Supported.
>   SMB3 Multi-channel             Partially Supported. Planned to implement
>                                  replay/retry mechanisms for future.
> @@ -112,6 +111,9 @@ DCE/RPC support                Partially Supported. a few calls(NetShareEnumAll,
>                                  for Witness protocol e.g.)
>   ksmbd/nfsd interoperability    Planned for future. The features that ksmbd
>                                  support are Leases, Notify, ACLs and Share modes.
> +SMB2 Compression               Planned for future.
> +SMB over QUIC                  Planned for future.

Technically speaking both compression and QUIC are SMB3.1.1-only.

Tom.

> +Signing/Encryption over RDMA   Planned for future.
>   ============================== =================================================
>   
>   

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

* Re: [PATCH] ksmbd: update feature status in documentation
  2024-01-13 23:53 ` Tom Talpey
@ 2024-01-14  5:20   ` Namjae Jeon
  0 siblings, 0 replies; 4+ messages in thread
From: Namjae Jeon @ 2024-01-14  5:20 UTC (permalink / raw)
  To: Tom Talpey; +Cc: linux-cifs, smfrench, senozhatsky, atteh.mailbox

2024-01-14 8:53 GMT+09:00, Tom Talpey <tom@talpey.com>:
> On 1/13/2024 1:46 AM, Namjae Jeon wrote:
>> Update ksmbd feature status in documentation file.
>>   - add support for v2 lease feature and SMB3 CCM/GCM256 encryption.
>>   - add planned features.
>>
>> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
>> ---
>>   Documentation/filesystems/smb/ksmbd.rst | 8 +++++---
>>   1 file changed, 5 insertions(+), 3 deletions(-)
>>
>> diff --git a/Documentation/filesystems/smb/ksmbd.rst
>> b/Documentation/filesystems/smb/ksmbd.rst
>> index 7bed96d794fc..251e27900f88 100644
>> --- a/Documentation/filesystems/smb/ksmbd.rst
>> +++ b/Documentation/filesystems/smb/ksmbd.rst
>> @@ -73,15 +73,14 @@ Auto Negotiation               Supported.
>>   Compound Request               Supported.
>>   Oplock Cache Mechanism         Supported.
>>   SMB2 leases(v1 lease)          Supported.
>> -Directory leases(v2 lease)     Planned for future.
>> +Directory leases(v2 lease)     Supported.
>>   Multi-credits                  Supported.
>>   NTLM/NTLMv2                    Supported.
>>   HMAC-SHA256 Signing            Supported.
>>   Secure negotiate               Supported.
>>   Signing Update                 Supported.
>>   Pre-authentication integrity   Supported.
>> -SMB3 encryption(CCM, GCM)      Supported. (CCM and GCM128 supported,
>> GCM256 in
>> -                               progress)
>> +SMB3 encryption(CCM, GCM)      Supported. (CCM/GCM128 and CCM/GCM256
>> supported)
>>   SMB direct(RDMA)               Supported.
>>   SMB3 Multi-channel             Partially Supported. Planned to
>> implement
>>                                  replay/retry mechanisms for future.
>> @@ -112,6 +111,9 @@ DCE/RPC support                Partially Supported. a
>> few calls(NetShareEnumAll,
>>                                  for Witness protocol e.g.)
>>   ksmbd/nfsd interoperability    Planned for future. The features that
>> ksmbd
>>                                  support are Leases, Notify, ACLs and
>> Share modes.
>> +SMB2 Compression               Planned for future.
>> +SMB over QUIC                  Planned for future.
>
> Technically speaking both compression and QUIC are SMB3.1.1-only.
Okay, I will update it on v2.
Thanks for pointing out!
>
> Tom.
>
>> +Signing/Encryption over RDMA   Planned for future.
>>   ==============================
>> =================================================
>>
>>
>

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

* [PATCH] ksmbd: update feature status in documentation
@ 2024-01-13  6:45 Namjae Jeon
  0 siblings, 0 replies; 4+ messages in thread
From: Namjae Jeon @ 2024-01-13  6:45 UTC (permalink / raw)
  To: linux-cifs; +Cc: smfrench, senozhatsky, tom, atteh.mailbox, Namjae Jeon

Update ksmbd feature status in documentation file.
 - add support for v2 lease feature and SMB3 CCM/GCM256 encryption.
 - add planned features.

Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
---
 Documentation/filesystems/smb/ksmbd.rst | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/Documentation/filesystems/smb/ksmbd.rst b/Documentation/filesystems/smb/ksmbd.rst
index 7bed96d794fc..251e27900f88 100644
--- a/Documentation/filesystems/smb/ksmbd.rst
+++ b/Documentation/filesystems/smb/ksmbd.rst
@@ -73,15 +73,14 @@ Auto Negotiation               Supported.
 Compound Request               Supported.
 Oplock Cache Mechanism         Supported.
 SMB2 leases(v1 lease)          Supported.
-Directory leases(v2 lease)     Planned for future.
+Directory leases(v2 lease)     Supported.
 Multi-credits                  Supported.
 NTLM/NTLMv2                    Supported.
 HMAC-SHA256 Signing            Supported.
 Secure negotiate               Supported.
 Signing Update                 Supported.
 Pre-authentication integrity   Supported.
-SMB3 encryption(CCM, GCM)      Supported. (CCM and GCM128 supported, GCM256 in
-                               progress)
+SMB3 encryption(CCM, GCM)      Supported. (CCM/GCM128 and CCM/GCM256 supported)
 SMB direct(RDMA)               Supported.
 SMB3 Multi-channel             Partially Supported. Planned to implement
                                replay/retry mechanisms for future.
@@ -112,6 +111,9 @@ DCE/RPC support                Partially Supported. a few calls(NetShareEnumAll,
                                for Witness protocol e.g.)
 ksmbd/nfsd interoperability    Planned for future. The features that ksmbd
                                support are Leases, Notify, ACLs and Share modes.
+SMB2 Compression               Planned for future.
+SMB over QUIC                  Planned for future.
+Signing/Encryption over RDMA   Planned for future.
 ============================== =================================================
 
 
-- 
2.25.1


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

end of thread, other threads:[~2024-01-14  5:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-13  6:46 [PATCH] ksmbd: update feature status in documentation Namjae Jeon
2024-01-13 23:53 ` Tom Talpey
2024-01-14  5:20   ` Namjae Jeon
  -- strict thread matches above, loose matches on Subject: below --
2024-01-13  6:45 Namjae Jeon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).