1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) International Business Machines Corp., 2000,2005
9 #include <linux/string.h>
10 #include <linux/ctype.h>
11 #include <linux/kstrtox.h>
12 #include <linux/module.h>
13 #include <linux/proc_fs.h>
14 #include <linux/uaccess.h>
15 #include <uapi/linux/ethtool.h>
18 #include "cifsproto.h"
19 #include "cifs_debug.h"
21 #include "fs_context.h"
22 #ifdef CONFIG_CIFS_DFS_UPCALL
23 #include "dfs_cache.h"
25 #ifdef CONFIG_CIFS_SMB_DIRECT
26 #include "smbdirect.h"
31 cifs_dump_mem(char *label, void *data, int length)
33 pr_debug("%s: dump of %d bytes of data at 0x%p\n", label, length, data);
34 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 4,
38 void cifs_dump_detail(void *buf, struct TCP_Server_Info *server)
40 #ifdef CONFIG_CIFS_DEBUG2
41 struct smb_hdr *smb = buf;
43 cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d Wct: %d\n",
44 smb->Command, smb->Status.CifsError, smb->Flags,
45 smb->Flags2, smb->Mid, smb->Pid, smb->WordCount);
46 if (!server->ops->check_message(buf, server->total_read, server)) {
47 cifs_dbg(VFS, "smb buf %p len %u\n", smb,
48 server->ops->calc_smb_size(smb));
50 #endif /* CONFIG_CIFS_DEBUG2 */
53 void cifs_dump_mids(struct TCP_Server_Info *server)
55 #ifdef CONFIG_CIFS_DEBUG2
56 struct mid_q_entry *mid_entry;
61 cifs_dbg(VFS, "Dump pending requests:\n");
62 spin_lock(&server->mid_lock);
63 list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) {
64 cifs_dbg(VFS, "State: %d Cmd: %d Pid: %d Cbdata: %p Mid %llu\n",
66 le16_to_cpu(mid_entry->command),
68 mid_entry->callback_data,
70 #ifdef CONFIG_CIFS_STATS2
71 cifs_dbg(VFS, "IsLarge: %d buf: %p time rcv: %ld now: %ld\n",
74 mid_entry->when_received,
77 cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n",
78 mid_entry->multiRsp, mid_entry->multiEnd);
79 if (mid_entry->resp_buf) {
80 cifs_dump_detail(mid_entry->resp_buf, server);
81 cifs_dump_mem("existing buf: ",
82 mid_entry->resp_buf, 62);
85 spin_unlock(&server->mid_lock);
86 #endif /* CONFIG_CIFS_DEBUG2 */
90 static void cifs_debug_tcon(struct seq_file *m, struct cifs_tcon *tcon)
92 __u32 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
94 seq_printf(m, "%s Mounts: %d ", tcon->tree_name, tcon->tc_count);
95 if (tcon->nativeFileSystem)
96 seq_printf(m, "Type: %s ", tcon->nativeFileSystem);
97 seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x\n\tPathComponentMax: %d Status: %d",
98 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
99 le32_to_cpu(tcon->fsAttrInfo.Attributes),
100 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
102 if (dev_type == FILE_DEVICE_DISK)
103 seq_puts(m, " type: DISK ");
104 else if (dev_type == FILE_DEVICE_CD_ROM)
105 seq_puts(m, " type: CDROM ");
107 seq_printf(m, " type: %d ", dev_type);
109 seq_printf(m, "Serial Number: 0x%x", tcon->vol_serial_number);
112 (tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
113 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
114 seq_puts(m, " encrypted");
116 seq_printf(m, " nocase");
118 seq_printf(m, " POSIX Extensions");
119 if (tcon->ses->server->ops->dump_share_caps)
120 tcon->ses->server->ops->dump_share_caps(m, tcon);
121 if (tcon->use_witness)
122 seq_puts(m, " Witness");
123 if (tcon->broken_sparse_sup)
124 seq_puts(m, " nosparse");
125 if (tcon->need_reconnect)
126 seq_puts(m, "\tDISCONNECTED ");
127 spin_lock(&tcon->tc_lock);
128 if (tcon->origin_fullpath) {
129 seq_printf(m, "\n\tDFS origin fullpath: %s",
130 tcon->origin_fullpath);
132 spin_unlock(&tcon->tc_lock);
137 cifs_dump_channel(struct seq_file *m, int i, struct cifs_chan *chan)
139 struct TCP_Server_Info *server = chan->server;
142 seq_printf(m, "\n\n\t\tChannel: %d DISABLED", i+1);
146 seq_printf(m, "\n\n\t\tChannel: %d ConnectionId: 0x%llx"
147 "\n\t\tNumber of credits: %d,%d,%d Dialect 0x%x"
148 "\n\t\tTCP status: %d Instance: %d"
149 "\n\t\tLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d"
150 "\n\t\tIn Send: %d In MaxReq Wait: %d",
151 i+1, server->conn_id,
153 server->echo_credits,
154 server->oplock_credits,
157 server->reconnect_instance,
161 atomic_read(&server->in_send),
162 atomic_read(&server->num_waiters));
165 seq_printf(m, " Net namespace: %u ", server->net->ns.inum);
170 static inline const char *smb_speed_to_str(size_t bps)
172 size_t mbps = bps / 1000 / 1000;
213 cifs_dump_iface(struct seq_file *m, struct cifs_server_iface *iface)
215 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr;
216 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&iface->sockaddr;
218 seq_printf(m, "\tSpeed: %s\n", smb_speed_to_str(iface->speed));
219 seq_puts(m, "\t\tCapabilities: ");
220 if (iface->rdma_capable)
221 seq_puts(m, "rdma ");
222 if (iface->rss_capable)
224 if (!iface->rdma_capable && !iface->rss_capable)
227 if (iface->sockaddr.ss_family == AF_INET)
228 seq_printf(m, "\t\tIPv4: %pI4\n", &ipv4->sin_addr);
229 else if (iface->sockaddr.ss_family == AF_INET6)
230 seq_printf(m, "\t\tIPv6: %pI6\n", &ipv6->sin6_addr);
231 if (!iface->is_active)
232 seq_puts(m, "\t\t[for-cleanup]\n");
235 static int cifs_debug_files_proc_show(struct seq_file *m, void *v)
237 struct TCP_Server_Info *server;
238 struct cifs_ses *ses;
239 struct cifs_tcon *tcon;
240 struct cifsFileInfo *cfile;
242 seq_puts(m, "# Version:1\n");
243 seq_puts(m, "# Format:\n");
244 seq_puts(m, "# <tree id> <ses id> <persistent fid> <flags> <count> <pid> <uid>");
245 #ifdef CONFIG_CIFS_DEBUG2
246 seq_printf(m, " <filename> <mid>\n");
248 seq_printf(m, " <filename>\n");
249 #endif /* CIFS_DEBUG2 */
250 spin_lock(&cifs_tcp_ses_lock);
251 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
252 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
253 if (cifs_ses_exiting(ses))
255 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
256 spin_lock(&tcon->open_file_lock);
257 list_for_each_entry(cfile, &tcon->openFileList, tlist) {
259 "0x%x 0x%llx 0x%llx 0x%x %d %d %d %pd",
262 cfile->fid.persistent_fid,
266 from_kuid(&init_user_ns, cfile->uid),
268 #ifdef CONFIG_CIFS_DEBUG2
269 seq_printf(m, " %llu\n", cfile->fid.mid);
272 #endif /* CIFS_DEBUG2 */
274 spin_unlock(&tcon->open_file_lock);
278 spin_unlock(&cifs_tcp_ses_lock);
283 static __always_inline const char *compression_alg_str(__le16 alg)
286 case SMB3_COMPRESS_NONE:
288 case SMB3_COMPRESS_LZNT1:
290 case SMB3_COMPRESS_LZ77:
292 case SMB3_COMPRESS_LZ77_HUFF:
293 return "LZ77-Huffman";
294 case SMB3_COMPRESS_PATTERN:
301 static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
303 struct mid_q_entry *mid_entry;
304 struct TCP_Server_Info *server;
305 struct TCP_Server_Info *chan_server;
306 struct cifs_ses *ses;
307 struct cifs_tcon *tcon;
308 struct cifs_server_iface *iface;
309 size_t iface_weight = 0, iface_min_speed = 0;
310 struct cifs_server_iface *last_iface = NULL;
314 "Display Internal CIFS Data Structures for Debugging\n"
315 "---------------------------------------------------\n");
316 seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
317 seq_printf(m, "Features:");
318 #ifdef CONFIG_CIFS_DFS_UPCALL
319 seq_printf(m, " DFS");
321 #ifdef CONFIG_CIFS_FSCACHE
322 seq_printf(m, ",FSCACHE");
324 #ifdef CONFIG_CIFS_SMB_DIRECT
325 seq_printf(m, ",SMB_DIRECT");
327 #ifdef CONFIG_CIFS_STATS2
328 seq_printf(m, ",STATS2");
330 seq_printf(m, ",STATS");
332 #ifdef CONFIG_CIFS_DEBUG2
333 seq_printf(m, ",DEBUG2");
334 #elif defined(CONFIG_CIFS_DEBUG)
335 seq_printf(m, ",DEBUG");
337 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
338 seq_printf(m, ",ALLOW_INSECURE_LEGACY");
340 #ifdef CONFIG_CIFS_POSIX
341 seq_printf(m, ",CIFS_POSIX");
343 #ifdef CONFIG_CIFS_UPCALL
344 seq_printf(m, ",UPCALL(SPNEGO)");
346 #ifdef CONFIG_CIFS_XATTR
347 seq_printf(m, ",XATTR");
349 seq_printf(m, ",ACL");
350 #ifdef CONFIG_CIFS_SWN_UPCALL
351 seq_puts(m, ",WITNESS");
353 #ifdef CONFIG_CIFS_COMPRESSION
354 seq_puts(m, ",COMPRESSION");
357 seq_printf(m, "CIFSMaxBufSize: %d\n", CIFSMaxBufSize);
358 seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
360 seq_printf(m, "\nServers: ");
363 spin_lock(&cifs_tcp_ses_lock);
364 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
365 /* channel info will be printed as a part of sessions below */
366 if (SERVER_IS_CHAN(server))
370 seq_printf(m, "\n%d) ConnectionId: 0x%llx ",
373 spin_lock(&server->srv_lock);
374 if (server->hostname)
375 seq_printf(m, "Hostname: %s ", server->hostname);
376 seq_printf(m, "\nClientGUID: %pUL", server->client_guid);
377 spin_unlock(&server->srv_lock);
378 #ifdef CONFIG_CIFS_SMB_DIRECT
382 if (!server->smbd_conn) {
383 seq_printf(m, "\nSMBDirect transport not available");
387 seq_printf(m, "\nSMBDirect (in hex) protocol version: %x "
388 "transport status: %x",
389 server->smbd_conn->protocol,
390 server->smbd_conn->transport_status);
391 seq_printf(m, "\nConn receive_credit_max: %x "
392 "send_credit_target: %x max_send_size: %x",
393 server->smbd_conn->receive_credit_max,
394 server->smbd_conn->send_credit_target,
395 server->smbd_conn->max_send_size);
396 seq_printf(m, "\nConn max_fragmented_recv_size: %x "
397 "max_fragmented_send_size: %x max_receive_size:%x",
398 server->smbd_conn->max_fragmented_recv_size,
399 server->smbd_conn->max_fragmented_send_size,
400 server->smbd_conn->max_receive_size);
401 seq_printf(m, "\nConn keep_alive_interval: %x "
402 "max_readwrite_size: %x rdma_readwrite_threshold: %x",
403 server->smbd_conn->keep_alive_interval,
404 server->smbd_conn->max_readwrite_size,
405 server->smbd_conn->rdma_readwrite_threshold);
406 seq_printf(m, "\nDebug count_get_receive_buffer: %x "
407 "count_put_receive_buffer: %x count_send_empty: %x",
408 server->smbd_conn->count_get_receive_buffer,
409 server->smbd_conn->count_put_receive_buffer,
410 server->smbd_conn->count_send_empty);
411 seq_printf(m, "\nRead Queue count_reassembly_queue: %x "
412 "count_enqueue_reassembly_queue: %x "
413 "count_dequeue_reassembly_queue: %x "
414 "fragment_reassembly_remaining: %x "
415 "reassembly_data_length: %x "
416 "reassembly_queue_length: %x",
417 server->smbd_conn->count_reassembly_queue,
418 server->smbd_conn->count_enqueue_reassembly_queue,
419 server->smbd_conn->count_dequeue_reassembly_queue,
420 server->smbd_conn->fragment_reassembly_remaining,
421 server->smbd_conn->reassembly_data_length,
422 server->smbd_conn->reassembly_queue_length);
423 seq_printf(m, "\nCurrent Credits send_credits: %x "
424 "receive_credits: %x receive_credit_target: %x",
425 atomic_read(&server->smbd_conn->send_credits),
426 atomic_read(&server->smbd_conn->receive_credits),
427 server->smbd_conn->receive_credit_target);
428 seq_printf(m, "\nPending send_pending: %x ",
429 atomic_read(&server->smbd_conn->send_pending));
430 seq_printf(m, "\nReceive buffers count_receive_queue: %x "
431 "count_empty_packet_queue: %x",
432 server->smbd_conn->count_receive_queue,
433 server->smbd_conn->count_empty_packet_queue);
434 seq_printf(m, "\nMR responder_resources: %x "
435 "max_frmr_depth: %x mr_type: %x",
436 server->smbd_conn->responder_resources,
437 server->smbd_conn->max_frmr_depth,
438 server->smbd_conn->mr_type);
439 seq_printf(m, "\nMR mr_ready_count: %x mr_used_count: %x",
440 atomic_read(&server->smbd_conn->mr_ready_count),
441 atomic_read(&server->smbd_conn->mr_used_count));
444 seq_printf(m, "\nNumber of credits: %d,%d,%d Dialect 0x%x",
446 server->echo_credits,
447 server->oplock_credits,
450 seq_printf(m, " signed");
451 if (server->posix_ext_supported)
452 seq_printf(m, " posix");
453 if (server->nosharesock)
454 seq_printf(m, " nosharesock");
456 seq_printf(m, "\nServer capabilities: 0x%x", server->capabilities);
459 seq_printf(m, "\nRDMA ");
460 seq_printf(m, "\nTCP status: %d Instance: %d"
461 "\nLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d",
463 server->reconnect_instance,
465 server->sec_mode, in_flight(server));
468 seq_printf(m, " Net namespace: %u ", server->net->ns.inum);
471 seq_printf(m, "\nIn Send: %d In MaxReq Wait: %d",
472 atomic_read(&server->in_send),
473 atomic_read(&server->num_waiters));
475 if (server->leaf_fullpath) {
476 seq_printf(m, "\nDFS leaf full path: %s",
477 server->leaf_fullpath);
480 seq_puts(m, "\nCompression: ");
481 if (!IS_ENABLED(CONFIG_CIFS_COMPRESSION))
482 seq_puts(m, "no built-in support");
483 else if (!server->compression.requested)
484 seq_puts(m, "disabled on mount");
485 else if (server->compression.enabled)
486 seq_printf(m, "enabled (%s)", compression_alg_str(server->compression.alg));
488 seq_puts(m, "disabled (not supported by this server)");
490 seq_printf(m, "\n\n\tSessions: ");
492 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
493 spin_lock(&ses->ses_lock);
494 if (ses->ses_status == SES_EXITING) {
495 spin_unlock(&ses->ses_lock);
499 if ((ses->serverDomain == NULL) ||
500 (ses->serverOS == NULL) ||
501 (ses->serverNOS == NULL)) {
502 seq_printf(m, "\n\t%d) Address: %s Uses: %d Capability: 0x%x\tSession Status: %d ",
503 i, ses->ip_addr, ses->ses_count,
504 ses->capabilities, ses->ses_status);
505 if (ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
506 seq_printf(m, "Guest ");
507 else if (ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
508 seq_printf(m, "Anonymous ");
511 "\n\t%d) Name: %s Domain: %s Uses: %d OS: %s "
512 "\n\tNOS: %s\tCapability: 0x%x"
513 "\n\tSMB session status: %d ",
514 i, ses->ip_addr, ses->serverDomain,
515 ses->ses_count, ses->serverOS, ses->serverNOS,
516 ses->capabilities, ses->ses_status);
518 if (ses->expired_pwd)
519 seq_puts(m, "password no longer valid ");
520 spin_unlock(&ses->ses_lock);
522 seq_printf(m, "\n\tSecurity type: %s ",
523 get_security_type_str(server->ops->select_sectype(server, ses->sectype)));
525 /* dump session id helpful for use with network trace */
526 seq_printf(m, " SessionId: 0x%llx", ses->Suid);
527 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) {
528 seq_puts(m, " encrypted");
529 /* can help in debugging to show encryption type */
530 if (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)
531 seq_puts(m, "(gcm256)");
534 seq_puts(m, " signed");
536 seq_printf(m, "\n\tUser: %d Cred User: %d",
537 from_kuid(&init_user_ns, ses->linux_uid),
538 from_kuid(&init_user_ns, ses->cred_uid));
540 if (ses->dfs_root_ses) {
541 seq_printf(m, "\n\tDFS root session id: 0x%llx",
542 ses->dfs_root_ses->Suid);
545 spin_lock(&ses->chan_lock);
546 if (CIFS_CHAN_NEEDS_RECONNECT(ses, 0))
547 seq_puts(m, "\tPrimary channel: DISCONNECTED ");
548 if (CIFS_CHAN_IN_RECONNECT(ses, 0))
549 seq_puts(m, "\t[RECONNECTING] ");
551 if (ses->chan_count > 1) {
552 seq_printf(m, "\n\n\tExtra Channels: %zu ",
554 for (j = 1; j < ses->chan_count; j++) {
555 cifs_dump_channel(m, j, &ses->chans[j]);
556 if (CIFS_CHAN_NEEDS_RECONNECT(ses, j))
557 seq_puts(m, "\tDISCONNECTED ");
558 if (CIFS_CHAN_IN_RECONNECT(ses, j))
559 seq_puts(m, "\t[RECONNECTING] ");
562 spin_unlock(&ses->chan_lock);
564 seq_puts(m, "\n\n\tShares: ");
567 seq_printf(m, "\n\t%d) IPC: ", j);
569 cifs_debug_tcon(m, ses->tcon_ipc);
571 seq_puts(m, "none\n");
573 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
575 seq_printf(m, "\n\t%d) ", j);
576 cifs_debug_tcon(m, tcon);
579 spin_lock(&ses->iface_lock);
580 if (ses->iface_count)
581 seq_printf(m, "\n\n\tServer interfaces: %zu"
582 "\tLast updated: %lu seconds ago",
584 (jiffies - ses->iface_last_update) / HZ);
586 last_iface = list_last_entry(&ses->iface_list,
587 struct cifs_server_iface,
589 iface_min_speed = last_iface->speed;
592 list_for_each_entry(iface, &ses->iface_list,
594 seq_printf(m, "\n\t%d)", ++j);
595 cifs_dump_iface(m, iface);
597 iface_weight = iface->speed / iface_min_speed;
598 seq_printf(m, "\t\tWeight (cur,total): (%zu,%zu)"
599 "\n\t\tAllocated channels: %u\n",
600 iface->weight_fulfilled,
602 iface->num_channels);
604 if (is_ses_using_iface(ses, iface))
605 seq_puts(m, "\t\t[CONNECTED]\n");
607 spin_unlock(&ses->iface_lock);
609 seq_puts(m, "\n\n\tMIDs: ");
610 spin_lock(&ses->chan_lock);
611 for (j = 0; j < ses->chan_count; j++) {
612 chan_server = ses->chans[j].server;
616 if (list_empty(&chan_server->pending_mid_q))
619 seq_printf(m, "\n\tServer ConnectionId: 0x%llx",
620 chan_server->conn_id);
621 spin_lock(&chan_server->mid_lock);
622 list_for_each_entry(mid_entry, &chan_server->pending_mid_q, qhead) {
623 seq_printf(m, "\n\t\tState: %d com: %d pid: %d cbdata: %p mid %llu",
624 mid_entry->mid_state,
625 le16_to_cpu(mid_entry->command),
627 mid_entry->callback_data,
630 spin_unlock(&chan_server->mid_lock);
632 spin_unlock(&ses->chan_lock);
633 seq_puts(m, "\n--\n");
636 seq_printf(m, "\n\t\t[NONE]");
639 seq_printf(m, "\n\t[NONE]");
641 spin_unlock(&cifs_tcp_ses_lock);
645 /* BB add code to dump additional info such as TCP session info now */
649 static ssize_t cifs_stats_proc_write(struct file *file,
650 const char __user *buffer, size_t count, loff_t *ppos)
654 struct TCP_Server_Info *server;
655 struct cifs_ses *ses;
656 struct cifs_tcon *tcon;
658 rc = kstrtobool_from_user(buffer, count, &bv);
660 #ifdef CONFIG_CIFS_STATS2
663 atomic_set(&total_buf_alloc_count, 0);
664 atomic_set(&total_small_buf_alloc_count, 0);
665 #endif /* CONFIG_CIFS_STATS2 */
666 atomic_set(&tcpSesReconnectCount, 0);
667 atomic_set(&tconInfoReconnectCount, 0);
669 spin_lock(&GlobalMid_Lock);
670 GlobalMaxActiveXid = 0;
671 GlobalCurrentXid = 0;
672 spin_unlock(&GlobalMid_Lock);
673 spin_lock(&cifs_tcp_ses_lock);
674 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
675 server->max_in_flight = 0;
676 #ifdef CONFIG_CIFS_STATS2
677 for (i = 0; i < NUMBER_OF_SMB2_COMMANDS; i++) {
678 atomic_set(&server->num_cmds[i], 0);
679 atomic_set(&server->smb2slowcmd[i], 0);
680 server->time_per_cmd[i] = 0;
681 server->slowest_cmd[i] = 0;
682 server->fastest_cmd[0] = 0;
684 #endif /* CONFIG_CIFS_STATS2 */
685 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
686 if (cifs_ses_exiting(ses))
688 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
689 atomic_set(&tcon->num_smbs_sent, 0);
690 spin_lock(&tcon->stat_lock);
691 tcon->bytes_read = 0;
692 tcon->bytes_written = 0;
693 tcon->stats_from_time = ktime_get_real_seconds();
694 spin_unlock(&tcon->stat_lock);
695 if (server->ops->clear_stats)
696 server->ops->clear_stats(tcon);
700 spin_unlock(&cifs_tcp_ses_lock);
708 static int cifs_stats_proc_show(struct seq_file *m, void *v)
711 #ifdef CONFIG_CIFS_STATS2
714 struct TCP_Server_Info *server;
715 struct cifs_ses *ses;
716 struct cifs_tcon *tcon;
718 seq_printf(m, "Resources in use\nCIFS Session: %d\n",
719 sesInfoAllocCount.counter);
720 seq_printf(m, "Share (unique mount targets): %d\n",
721 tconInfoAllocCount.counter);
722 seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
723 buf_alloc_count.counter,
724 cifs_min_rcv + tcpSesAllocCount.counter);
725 seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
726 small_buf_alloc_count.counter, cifs_min_small);
727 #ifdef CONFIG_CIFS_STATS2
728 seq_printf(m, "Total Large %d Small %d Allocations\n",
729 atomic_read(&total_buf_alloc_count),
730 atomic_read(&total_small_buf_alloc_count));
731 #endif /* CONFIG_CIFS_STATS2 */
733 seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&mid_count));
735 "\n%d session %d share reconnects\n",
736 tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
739 "Total vfs operations: %d maximum at one time: %d\n",
740 GlobalCurrentXid, GlobalMaxActiveXid);
743 spin_lock(&cifs_tcp_ses_lock);
744 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
745 seq_printf(m, "\nMax requests in flight: %d", server->max_in_flight);
746 #ifdef CONFIG_CIFS_STATS2
747 seq_puts(m, "\nTotal time spent processing by command. Time ");
748 seq_printf(m, "units are jiffies (%d per second)\n", HZ);
749 seq_puts(m, " SMB3 CMD\tNumber\tTotal Time\tFastest\tSlowest\n");
750 seq_puts(m, " --------\t------\t----------\t-------\t-------\n");
751 for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++)
752 seq_printf(m, " %d\t\t%d\t%llu\t\t%u\t%u\n", j,
753 atomic_read(&server->num_cmds[j]),
754 server->time_per_cmd[j],
755 server->fastest_cmd[j],
756 server->slowest_cmd[j]);
757 for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++)
758 if (atomic_read(&server->smb2slowcmd[j])) {
759 spin_lock(&server->srv_lock);
760 seq_printf(m, " %d slow responses from %s for command %d\n",
761 atomic_read(&server->smb2slowcmd[j]),
762 server->hostname, j);
763 spin_unlock(&server->srv_lock);
766 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
767 if (cifs_ses_exiting(ses))
769 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
771 seq_printf(m, "\n%d) %s", i, tcon->tree_name);
772 if (tcon->need_reconnect)
773 seq_puts(m, "\tDISCONNECTED ");
774 seq_printf(m, "\nSMBs: %d since %ptTs UTC",
775 atomic_read(&tcon->num_smbs_sent),
776 &tcon->stats_from_time);
777 if (server->ops->print_stats)
778 server->ops->print_stats(m, tcon);
782 spin_unlock(&cifs_tcp_ses_lock);
788 static int cifs_stats_proc_open(struct inode *inode, struct file *file)
790 return single_open(file, cifs_stats_proc_show, NULL);
793 static const struct proc_ops cifs_stats_proc_ops = {
794 .proc_open = cifs_stats_proc_open,
795 .proc_read = seq_read,
796 .proc_lseek = seq_lseek,
797 .proc_release = single_release,
798 .proc_write = cifs_stats_proc_write,
801 #ifdef CONFIG_CIFS_SMB_DIRECT
802 #define PROC_FILE_DEFINE(name) \
803 static ssize_t name##_write(struct file *file, const char __user *buffer, \
804 size_t count, loff_t *ppos) \
807 rc = kstrtoint_from_user(buffer, count, 10, &name); \
812 static int name##_proc_show(struct seq_file *m, void *v) \
814 seq_printf(m, "%d\n", name); \
817 static int name##_open(struct inode *inode, struct file *file) \
819 return single_open(file, name##_proc_show, NULL); \
822 static const struct proc_ops cifs_##name##_proc_fops = { \
823 .proc_open = name##_open, \
824 .proc_read = seq_read, \
825 .proc_lseek = seq_lseek, \
826 .proc_release = single_release, \
827 .proc_write = name##_write, \
830 PROC_FILE_DEFINE(rdma_readwrite_threshold);
831 PROC_FILE_DEFINE(smbd_max_frmr_depth);
832 PROC_FILE_DEFINE(smbd_keep_alive_interval);
833 PROC_FILE_DEFINE(smbd_max_receive_size);
834 PROC_FILE_DEFINE(smbd_max_fragmented_recv_size);
835 PROC_FILE_DEFINE(smbd_max_send_size);
836 PROC_FILE_DEFINE(smbd_send_credit_target);
837 PROC_FILE_DEFINE(smbd_receive_credit_max);
840 static struct proc_dir_entry *proc_fs_cifs;
841 static const struct proc_ops cifsFYI_proc_ops;
842 static const struct proc_ops cifs_lookup_cache_proc_ops;
843 static const struct proc_ops traceSMB_proc_ops;
844 static const struct proc_ops cifs_security_flags_proc_ops;
845 static const struct proc_ops cifs_linux_ext_proc_ops;
846 static const struct proc_ops cifs_mount_params_proc_ops;
851 proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
852 if (proc_fs_cifs == NULL)
855 proc_create_single("DebugData", 0, proc_fs_cifs,
856 cifs_debug_data_proc_show);
858 proc_create_single("open_files", 0400, proc_fs_cifs,
859 cifs_debug_files_proc_show);
861 proc_create("Stats", 0644, proc_fs_cifs, &cifs_stats_proc_ops);
862 proc_create("cifsFYI", 0644, proc_fs_cifs, &cifsFYI_proc_ops);
863 proc_create("traceSMB", 0644, proc_fs_cifs, &traceSMB_proc_ops);
864 proc_create("LinuxExtensionsEnabled", 0644, proc_fs_cifs,
865 &cifs_linux_ext_proc_ops);
866 proc_create("SecurityFlags", 0644, proc_fs_cifs,
867 &cifs_security_flags_proc_ops);
868 proc_create("LookupCacheEnabled", 0644, proc_fs_cifs,
869 &cifs_lookup_cache_proc_ops);
871 proc_create("mount_params", 0444, proc_fs_cifs, &cifs_mount_params_proc_ops);
873 #ifdef CONFIG_CIFS_DFS_UPCALL
874 proc_create("dfscache", 0644, proc_fs_cifs, &dfscache_proc_ops);
877 #ifdef CONFIG_CIFS_SMB_DIRECT
878 proc_create("rdma_readwrite_threshold", 0644, proc_fs_cifs,
879 &cifs_rdma_readwrite_threshold_proc_fops);
880 proc_create("smbd_max_frmr_depth", 0644, proc_fs_cifs,
881 &cifs_smbd_max_frmr_depth_proc_fops);
882 proc_create("smbd_keep_alive_interval", 0644, proc_fs_cifs,
883 &cifs_smbd_keep_alive_interval_proc_fops);
884 proc_create("smbd_max_receive_size", 0644, proc_fs_cifs,
885 &cifs_smbd_max_receive_size_proc_fops);
886 proc_create("smbd_max_fragmented_recv_size", 0644, proc_fs_cifs,
887 &cifs_smbd_max_fragmented_recv_size_proc_fops);
888 proc_create("smbd_max_send_size", 0644, proc_fs_cifs,
889 &cifs_smbd_max_send_size_proc_fops);
890 proc_create("smbd_send_credit_target", 0644, proc_fs_cifs,
891 &cifs_smbd_send_credit_target_proc_fops);
892 proc_create("smbd_receive_credit_max", 0644, proc_fs_cifs,
893 &cifs_smbd_receive_credit_max_proc_fops);
898 cifs_proc_clean(void)
900 if (proc_fs_cifs == NULL)
903 remove_proc_entry("DebugData", proc_fs_cifs);
904 remove_proc_entry("open_files", proc_fs_cifs);
905 remove_proc_entry("cifsFYI", proc_fs_cifs);
906 remove_proc_entry("traceSMB", proc_fs_cifs);
907 remove_proc_entry("Stats", proc_fs_cifs);
908 remove_proc_entry("SecurityFlags", proc_fs_cifs);
909 remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
910 remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
911 remove_proc_entry("mount_params", proc_fs_cifs);
913 #ifdef CONFIG_CIFS_DFS_UPCALL
914 remove_proc_entry("dfscache", proc_fs_cifs);
916 #ifdef CONFIG_CIFS_SMB_DIRECT
917 remove_proc_entry("rdma_readwrite_threshold", proc_fs_cifs);
918 remove_proc_entry("smbd_max_frmr_depth", proc_fs_cifs);
919 remove_proc_entry("smbd_keep_alive_interval", proc_fs_cifs);
920 remove_proc_entry("smbd_max_receive_size", proc_fs_cifs);
921 remove_proc_entry("smbd_max_fragmented_recv_size", proc_fs_cifs);
922 remove_proc_entry("smbd_max_send_size", proc_fs_cifs);
923 remove_proc_entry("smbd_send_credit_target", proc_fs_cifs);
924 remove_proc_entry("smbd_receive_credit_max", proc_fs_cifs);
926 remove_proc_entry("fs/cifs", NULL);
929 static int cifsFYI_proc_show(struct seq_file *m, void *v)
931 seq_printf(m, "%d\n", cifsFYI);
935 static int cifsFYI_proc_open(struct inode *inode, struct file *file)
937 return single_open(file, cifsFYI_proc_show, NULL);
940 static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
941 size_t count, loff_t *ppos)
943 char c[2] = { '\0' };
947 rc = get_user(c[0], buffer);
950 if (kstrtobool(c, &bv) == 0)
952 else if ((c[0] > '1') && (c[0] <= '9'))
953 cifsFYI = (int) (c[0] - '0'); /* see cifs_debug.h for meanings */
960 static const struct proc_ops cifsFYI_proc_ops = {
961 .proc_open = cifsFYI_proc_open,
962 .proc_read = seq_read,
963 .proc_lseek = seq_lseek,
964 .proc_release = single_release,
965 .proc_write = cifsFYI_proc_write,
968 static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
970 seq_printf(m, "%d\n", linuxExtEnabled);
974 static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
976 return single_open(file, cifs_linux_ext_proc_show, NULL);
979 static ssize_t cifs_linux_ext_proc_write(struct file *file,
980 const char __user *buffer, size_t count, loff_t *ppos)
984 rc = kstrtobool_from_user(buffer, count, &linuxExtEnabled);
991 static const struct proc_ops cifs_linux_ext_proc_ops = {
992 .proc_open = cifs_linux_ext_proc_open,
993 .proc_read = seq_read,
994 .proc_lseek = seq_lseek,
995 .proc_release = single_release,
996 .proc_write = cifs_linux_ext_proc_write,
999 static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
1001 seq_printf(m, "%d\n", lookupCacheEnabled);
1005 static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
1007 return single_open(file, cifs_lookup_cache_proc_show, NULL);
1010 static ssize_t cifs_lookup_cache_proc_write(struct file *file,
1011 const char __user *buffer, size_t count, loff_t *ppos)
1015 rc = kstrtobool_from_user(buffer, count, &lookupCacheEnabled);
1022 static const struct proc_ops cifs_lookup_cache_proc_ops = {
1023 .proc_open = cifs_lookup_cache_proc_open,
1024 .proc_read = seq_read,
1025 .proc_lseek = seq_lseek,
1026 .proc_release = single_release,
1027 .proc_write = cifs_lookup_cache_proc_write,
1030 static int traceSMB_proc_show(struct seq_file *m, void *v)
1032 seq_printf(m, "%d\n", traceSMB);
1036 static int traceSMB_proc_open(struct inode *inode, struct file *file)
1038 return single_open(file, traceSMB_proc_show, NULL);
1041 static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
1042 size_t count, loff_t *ppos)
1046 rc = kstrtobool_from_user(buffer, count, &traceSMB);
1053 static const struct proc_ops traceSMB_proc_ops = {
1054 .proc_open = traceSMB_proc_open,
1055 .proc_read = seq_read,
1056 .proc_lseek = seq_lseek,
1057 .proc_release = single_release,
1058 .proc_write = traceSMB_proc_write,
1061 static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
1063 seq_printf(m, "0x%x\n", global_secflags);
1067 static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
1069 return single_open(file, cifs_security_flags_proc_show, NULL);
1073 * Ensure that if someone sets a MUST flag, that we disable all other MAY
1074 * flags except for the ones corresponding to the given MUST flag. If there are
1075 * multiple MUST flags, then try to prefer more secure ones.
1078 cifs_security_flags_handle_must_flags(unsigned int *flags)
1080 unsigned int signflags = *flags & (CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL);
1082 if ((*flags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5)
1083 *flags = CIFSSEC_MUST_KRB5;
1084 else if ((*flags & CIFSSEC_MUST_NTLMSSP) == CIFSSEC_MUST_NTLMSSP)
1085 *flags = CIFSSEC_MUST_NTLMSSP;
1086 else if ((*flags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2)
1087 *flags = CIFSSEC_MUST_NTLMV2;
1089 *flags |= signflags;
1092 static ssize_t cifs_security_flags_proc_write(struct file *file,
1093 const char __user *buffer, size_t count, loff_t *ppos)
1097 char flags_string[12];
1100 if ((count < 1) || (count > 11))
1103 memset(flags_string, 0, 12);
1105 if (copy_from_user(flags_string, buffer, count))
1109 /* single char or single char followed by null */
1110 if (kstrtobool(flags_string, &bv) == 0) {
1111 global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF;
1113 } else if (!isdigit(flags_string[0])) {
1114 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
1120 /* else we have a number */
1121 rc = kstrtouint(flags_string, 0, &flags);
1123 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
1128 cifs_dbg(FYI, "sec flags 0x%x\n", flags);
1131 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string);
1135 if (flags & ~CIFSSEC_MASK) {
1136 cifs_dbg(VFS, "Unsupported security flags: 0x%x\n",
1137 flags & ~CIFSSEC_MASK);
1141 cifs_security_flags_handle_must_flags(&flags);
1143 /* flags look ok - update the global security flags for cifs module */
1144 global_secflags = flags;
1145 if (global_secflags & CIFSSEC_MUST_SIGN) {
1146 /* requiring signing implies signing is allowed */
1147 global_secflags |= CIFSSEC_MAY_SIGN;
1148 cifs_dbg(FYI, "packet signing now required\n");
1149 } else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
1150 cifs_dbg(FYI, "packet signing disabled\n");
1152 /* BB should we turn on MAY flags for other MUST options? */
1156 static const struct proc_ops cifs_security_flags_proc_ops = {
1157 .proc_open = cifs_security_flags_proc_open,
1158 .proc_read = seq_read,
1159 .proc_lseek = seq_lseek,
1160 .proc_release = single_release,
1161 .proc_write = cifs_security_flags_proc_write,
1164 /* To make it easier to debug, can help to show mount params */
1165 static int cifs_mount_params_proc_show(struct seq_file *m, void *v)
1167 const struct fs_parameter_spec *p;
1170 for (p = smb3_fs_parameters; p->name; p++) {
1171 /* cannot use switch with pointers... */
1173 if (p->flags == fs_param_neg_with_no)
1177 } else if (p->type == fs_param_is_bool)
1179 else if (p->type == fs_param_is_u32)
1181 else if (p->type == fs_param_is_u64)
1183 else if (p->type == fs_param_is_string)
1188 seq_printf(m, "%s:%s\n", p->name, type);
1194 static int cifs_mount_params_proc_open(struct inode *inode, struct file *file)
1196 return single_open(file, cifs_mount_params_proc_show, NULL);
1199 static const struct proc_ops cifs_mount_params_proc_ops = {
1200 .proc_open = cifs_mount_params_proc_open,
1201 .proc_read = seq_read,
1202 .proc_lseek = seq_lseek,
1203 .proc_release = single_release,
1204 /* No need for write for now */
1205 /* .proc_write = cifs_mount_params_proc_write, */
1209 inline void cifs_proc_init(void)
1213 inline void cifs_proc_clean(void)
1216 #endif /* PROC_FS */