mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 02:44:41 +01:00
This patch introduces a /proc filesystem interface to ksmbd, providing visibility into the internal state of the SMB server. This allows administrators and developers to monitor active connections, user sessions, and opened files in real-time without relying on external tools or heavy debugging. Key changes include: - Connection Monitoring (/proc/fs/ksmbd/clients): Displays a list of active network connections, including client IP addresses, SMB dialects, credits, and last active timestamps. - Session Management (/proc/fs/ksmbd/sessions/): Adds a global sessions file to list all authenticated users and their session IDs. - Creates individual session entries (e.g., /proc/fs/ksmbd/sessions/<id>) detailing capabilities (DFS, Multi-channel, etc.), signing/encryption algorithms, and connected tree shares. - File Tracking (/proc/fs/ksmbd/files): Shows all currently opened files across the server, including tree IDs, process IDs (PID), access modes (daccess/saccess), and oplock/lease states. - Statistics & Counters: Implements internal counters for global server metrics, such as the number of tree connections, total sessions, and processed read/write bytes. Signed-off-by: Hyunchul Lee <hyc.lee@gmail.com> Signed-off-by: Bahubali B Gumaji <bahubali.bg@samsung.com> Signed-off-by: Sang-Soo Lee <constant.lee@samsung.com> Signed-off-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
21 lines
950 B
Makefile
21 lines
950 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Makefile for Linux SMB3 kernel server
|
|
#
|
|
obj-$(CONFIG_SMB_SERVER) += ksmbd.o
|
|
|
|
ksmbd-y := unicode.o auth.o vfs.o vfs_cache.o server.o ndr.o \
|
|
misc.o oplock.o connection.o ksmbd_work.o crypto_ctx.o \
|
|
mgmt/ksmbd_ida.o mgmt/user_config.o mgmt/share_config.o \
|
|
mgmt/tree_connect.o mgmt/user_session.o smb_common.o \
|
|
transport_tcp.o transport_ipc.o smbacl.o smb2pdu.o \
|
|
smb2ops.o smb2misc.o ksmbd_spnego_negtokeninit.asn1.o \
|
|
ksmbd_spnego_negtokentarg.asn1.o asn1.o
|
|
|
|
$(obj)/asn1.o: $(obj)/ksmbd_spnego_negtokeninit.asn1.h $(obj)/ksmbd_spnego_negtokentarg.asn1.h
|
|
|
|
$(obj)/ksmbd_spnego_negtokeninit.asn1.o: $(obj)/ksmbd_spnego_negtokeninit.asn1.c $(obj)/ksmbd_spnego_negtokeninit.asn1.h
|
|
$(obj)/ksmbd_spnego_negtokentarg.asn1.o: $(obj)/ksmbd_spnego_negtokentarg.asn1.c $(obj)/ksmbd_spnego_negtokentarg.asn1.h
|
|
|
|
ksmbd-$(CONFIG_SMB_SERVER_SMBDIRECT) += transport_rdma.o
|
|
ksmbd-$(CONFIG_PROC_FS) += proc.o
|