KSMBD - SMB3 Kernel Server

KSMBD is a linux kernel server which implements SMB3 protocol in kernel spacefor sharing files over network.

KSMBD architecture

The subset of performance related operations belong in kernelspace andthe other subset which belong to operations which are not really related withperformance in userspace. So, DCE/RPC management that has historically resultedinto a number of buffer overflow issues and dangerous security bugs and useraccount management are implemented in user space as ksmbd.mountd.File operations that are related with performance (open/read/write/close etc.)in kernel space (ksmbd). This also allows for easier integration with VFSinterface for all file operations.

ksmbd (kernel daemon)

When the server daemon is started, It starts up a forker thread(ksmbd/interface name) at initialization time and open a dedicated port 445for listening to SMB requests. Whenever new clients make a request, the Forkerthread will accept the client connection and fork a new thread for a dedicatedcommunication channel between the client and the server. It allows for parallelprocessing of SMB requests(commands) from clients as well as allowing for newclients to make new connections. Each instance is named ksmbd/1~n(port number)to indicate connected clients. Depending on the SMB request types, each newthread can decide to pass through the commands to the user space (ksmbd.mountd),currently DCE/RPC commands are identified to be handled through the user space.To further utilize the linux kernel, it has been chosen to process the commandsas workitems and to be executed in the handlers of the ksmbd-io kworker threads.It allows for multiplexing of the handlers as the kernel takes care of initiatingextra worker threads if the load is increased and vice versa, if the load isdecreased it destroys the extra worker threads. So, after the connection isestablished with the client. Dedicated ksmbd/1..n(port number) takes completeownership of receiving/parsing of SMB commands. Each received command is workedin parallel i.e., there can be multiple client commands which are worked inparallel. After receiving each command a separated kernel workitem is preparedfor each command which is further queued to be handled by ksmbd-io kworkers.So, each SMB workitem is queued to the kworkers. This allows the benefit of loadsharing to be managed optimally by the default kernel and optimizing clientperformance by handling client commands in parallel.

ksmbd.mountd (user space daemon)

ksmbd.mountd is a userspace process to, transfer the user account and password thatare registered using ksmbd.adduser (part of utils for user space). Further itallows sharing information parameters that are parsed from smb.conf to ksmbd inkernel. For the execution part it has a daemon which is continuously runningand connected to the kernel interface using netlink socket, it waits for therequests (dcerpc and share/user info). It handles RPC calls (at a minimum fewdozen) that are most important for file server from NetShareEnum andNetServerGetInfo. Complete DCE/RPC response is prepared from the user spaceand passed over to the associated kernel thread for the client.

KSMBD Feature Status

Feature name

Status

Dialects

Supported. SMB2.1 SMB3.0, SMB3.1.1 dialects(intentionally excludes security vulnerable SMB1dialect).

Auto Negotiation

Supported.

Compound Request

Supported.

Oplock Cache Mechanism

Supported.

SMB2 leases(v1 lease)

Supported.

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/GCM128 and CCM/GCM256 supported)

SMB direct(RDMA)

Supported.

SMB3 Multi-channel

Partially Supported. Planned to implementreplay/retry mechanisms for future.

Receive Side Scaling mode

Supported.

SMB3.1.1 POSIX extension

Supported.

ACLs

Partially Supported. only DACLs available, SACLs(auditing) is planned for the future. Forownership (SIDs) ksmbd generates random subauthvalues(then store it to disk) and use uid/gidget from inode as RID for local domain SID.The current acl implementation is limited tostandalone server, not a domain member.Integration with Samba tools is being worked onto allow future support for running as a domainmember.

Kerberos

Supported.

Durable handle v1,v2

Planned for future.

Persistent handle

Planned for future.

SMB2 notify

Planned for future.

Sparse file support

Supported.

DCE/RPC support

Partially Supported. a few calls(NetShareEnumAll,NetServerGetInfo, SAMR, LSARPC) that are neededfor file server handled via netlink interfacefrom ksmbd.mountd. Additional integration withSamba tools and libraries via upcall is beinginvestigated to allow support for additionalDCE/RPC management calls (and future supportfor Witness protocol e.g.)

ksmbd/nfsd interoperability

Planned for future. The features that ksmbdsupport are Leases, Notify, ACLs and Share modes.

SMB3.1.1 Compression

Planned for future.

SMB3.1.1 over QUIC

Planned for future.

Signing/Encryption over RDMA

Planned for future.

SMB3.1.1 GMAC signing support

Planned for future.

How to run

  1. Download ksmbd-tools(https://github.com/cifsd-team/ksmbd-tools/releases) andcompile them.

  2. Create /usr/local/etc/ksmbd/ksmbd.conf file, add SMB share in ksmbd.conf file.

    • Refer to ksmbd.conf.example in ksmbd-utils, See ksmbd.conf manpagefor details to configure shares.

      $ man ksmbd.conf

  3. Create user/password for SMB share.

    • See ksmbd.adduser manpage.

      $ man ksmbd.adduser$ sudo ksmbd.adduser -a <Enter USERNAME for SMB share access>

  4. Insert the ksmbd.ko module after you build your kernel. No need to load the moduleif ksmbd is built into the kernel.

    • Set ksmbd in menuconfig(e.g. $ make menuconfig)
      [*] Network File Systems --->

      <M> SMB3 server support (EXPERIMENTAL)

      $ sudo modprobe ksmbd.ko

  5. Start ksmbd user space daemon

    $ sudo ksmbd.mountd

  6. Access share from Windows or Linux using SMB3 client (cifs.ko or smbclient of samba)

Shutdown KSMBD

  1. kill user and kernel space daemon

    # sudo ksmbd.control -s

How to turn debug print on

Each layer/sys/class/ksmbd-control/debug

  1. Enable all component prints

    # sudo ksmbd.control -d “all”

  2. Enable one of the components (smb, auth, vfs, oplock, ipc, conn, rdma)

    # sudo ksmbd.control -d “smb”

  3. Show what prints are enabled.
    # cat /sys/class/ksmbd-control/debug

    [smb] auth vfs oplock ipc conn [rdma]

  4. Disable prints:

    If you try the selected component once more, It is disabled without brackets.