1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright (C) International Business Machines Corp., 2000,2005
6 * Modified by Steve French (sfrench@us.ibm.com)
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\n",
44 smb->Command, smb->Status.CifsError,
45 smb->Flags, smb->Flags2, smb->Mid, smb->Pid);
46 cifs_dbg(VFS, "smb buf %p len %u\n", smb,
47 server->ops->calc_smb_size(smb));
48 #endif /* CONFIG_CIFS_DEBUG2 */
51 void cifs_dump_mids(struct TCP_Server_Info *server)
53 #ifdef CONFIG_CIFS_DEBUG2
54 struct mid_q_entry *mid_entry;
59 cifs_dbg(VFS, "Dump pending requests:\n");
60 spin_lock(&server->mid_lock);
61 list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) {
62 cifs_dbg(VFS, "State: %d Cmd: %d Pid: %d Cbdata: %p Mid %llu\n",
64 le16_to_cpu(mid_entry->command),
66 mid_entry->callback_data,
68 #ifdef CONFIG_CIFS_STATS2
69 cifs_dbg(VFS, "IsLarge: %d buf: %p time rcv: %ld now: %ld\n",
72 mid_entry->when_received,
75 cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n",
76 mid_entry->multiRsp, mid_entry->multiEnd);
77 if (mid_entry->resp_buf) {
78 cifs_dump_detail(mid_entry->resp_buf, server);
79 cifs_dump_mem("existing buf: ",
80 mid_entry->resp_buf, 62);
83 spin_unlock(&server->mid_lock);
84 #endif /* CONFIG_CIFS_DEBUG2 */
88 static void cifs_debug_tcon(struct seq_file *m, struct cifs_tcon *tcon)
90 __u32 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
92 seq_printf(m, "%s Mounts: %d ", tcon->tree_name, tcon->tc_count);
93 if (tcon->nativeFileSystem)
94 seq_printf(m, "Type: %s ", tcon->nativeFileSystem);
95 seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x\n\tPathComponentMax: %d Status: %d",
96 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
97 le32_to_cpu(tcon->fsAttrInfo.Attributes),
98 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
100 if (dev_type == FILE_DEVICE_DISK)
101 seq_puts(m, " type: DISK ");
102 else if (dev_type == FILE_DEVICE_CD_ROM)
103 seq_puts(m, " type: CDROM ");
105 seq_printf(m, " type: %d ", dev_type);
107 seq_printf(m, "Serial Number: 0x%x", tcon->vol_serial_number);
110 (tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
111 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
112 seq_puts(m, " encrypted");
114 seq_printf(m, " nocase");
116 seq_printf(m, " POSIX Extensions");
117 if (tcon->ses->server->ops->dump_share_caps)
118 tcon->ses->server->ops->dump_share_caps(m, tcon);
119 if (tcon->use_witness)
120 seq_puts(m, " Witness");
121 if (tcon->broken_sparse_sup)
122 seq_puts(m, " nosparse");
123 if (tcon->need_reconnect)
124 seq_puts(m, "\tDISCONNECTED ");
125 spin_lock(&tcon->tc_lock);
126 if (tcon->origin_fullpath) {
127 seq_printf(m, "\n\tDFS origin fullpath: %s",
128 tcon->origin_fullpath);
130 spin_unlock(&tcon->tc_lock);
135 cifs_dump_channel(struct seq_file *m, int i, struct cifs_chan *chan)
137 struct TCP_Server_Info *server = chan->server;
139 seq_printf(m, "\n\n\t\tChannel: %d ConnectionId: 0x%llx"
140 "\n\t\tNumber of credits: %d,%d,%d Dialect 0x%x"
141 "\n\t\tTCP status: %d Instance: %d"
142 "\n\t\tLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d"
143 "\n\t\tIn Send: %d In MaxReq Wait: %d",
144 i+1, server->conn_id,
146 server->echo_credits,
147 server->oplock_credits,
150 server->reconnect_instance,
154 atomic_read(&server->in_send),
155 atomic_read(&server->num_waiters));
158 seq_printf(m, " Net namespace: %u ", server->net->ns.inum);
163 static inline const char *smb_speed_to_str(size_t bps)
165 size_t mbps = bps / 1000 / 1000;
206 cifs_dump_iface(struct seq_file *m, struct cifs_server_iface *iface)
208 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr;
209 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&iface->sockaddr;
211 seq_printf(m, "\tSpeed: %s\n", smb_speed_to_str(iface->speed));
212 seq_puts(m, "\t\tCapabilities: ");
213 if (iface->rdma_capable)
214 seq_puts(m, "rdma ");
215 if (iface->rss_capable)
217 if (!iface->rdma_capable && !iface->rss_capable)
220 if (iface->sockaddr.ss_family == AF_INET)
221 seq_printf(m, "\t\tIPv4: %pI4\n", &ipv4->sin_addr);
222 else if (iface->sockaddr.ss_family == AF_INET6)
223 seq_printf(m, "\t\tIPv6: %pI6\n", &ipv6->sin6_addr);
224 if (!iface->is_active)
225 seq_puts(m, "\t\t[for-cleanup]\n");
228 static int cifs_debug_files_proc_show(struct seq_file *m, void *v)
230 struct TCP_Server_Info *server;
231 struct cifs_ses *ses;
232 struct cifs_tcon *tcon;
233 struct cifsFileInfo *cfile;
235 seq_puts(m, "# Version:1\n");
236 seq_puts(m, "# Format:\n");
237 seq_puts(m, "# <tree id> <ses id> <persistent fid> <flags> <count> <pid> <uid>");
238 #ifdef CONFIG_CIFS_DEBUG2
239 seq_printf(m, " <filename> <mid>\n");
241 seq_printf(m, " <filename>\n");
242 #endif /* CIFS_DEBUG2 */
243 spin_lock(&cifs_tcp_ses_lock);
244 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
245 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
246 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
247 spin_lock(&tcon->open_file_lock);
248 list_for_each_entry(cfile, &tcon->openFileList, tlist) {
250 "0x%x 0x%llx 0x%llx 0x%x %d %d %d %pd",
253 cfile->fid.persistent_fid,
257 from_kuid(&init_user_ns, cfile->uid),
259 #ifdef CONFIG_CIFS_DEBUG2
260 seq_printf(m, " %llu\n", cfile->fid.mid);
263 #endif /* CIFS_DEBUG2 */
265 spin_unlock(&tcon->open_file_lock);
269 spin_unlock(&cifs_tcp_ses_lock);
274 static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
276 struct mid_q_entry *mid_entry;
277 struct TCP_Server_Info *server;
278 struct TCP_Server_Info *chan_server;
279 struct cifs_ses *ses;
280 struct cifs_tcon *tcon;
281 struct cifs_server_iface *iface;
282 size_t iface_weight = 0, iface_min_speed = 0;
283 struct cifs_server_iface *last_iface = NULL;
287 "Display Internal CIFS Data Structures for Debugging\n"
288 "---------------------------------------------------\n");
289 seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
290 seq_printf(m, "Features:");
291 #ifdef CONFIG_CIFS_DFS_UPCALL
292 seq_printf(m, " DFS");
294 #ifdef CONFIG_CIFS_FSCACHE
295 seq_printf(m, ",FSCACHE");
297 #ifdef CONFIG_CIFS_SMB_DIRECT
298 seq_printf(m, ",SMB_DIRECT");
300 #ifdef CONFIG_CIFS_STATS2
301 seq_printf(m, ",STATS2");
303 seq_printf(m, ",STATS");
305 #ifdef CONFIG_CIFS_DEBUG2
306 seq_printf(m, ",DEBUG2");
307 #elif defined(CONFIG_CIFS_DEBUG)
308 seq_printf(m, ",DEBUG");
310 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
311 seq_printf(m, ",ALLOW_INSECURE_LEGACY");
313 #ifdef CONFIG_CIFS_POSIX
314 seq_printf(m, ",CIFS_POSIX");
316 #ifdef CONFIG_CIFS_UPCALL
317 seq_printf(m, ",UPCALL(SPNEGO)");
319 #ifdef CONFIG_CIFS_XATTR
320 seq_printf(m, ",XATTR");
322 seq_printf(m, ",ACL");
323 #ifdef CONFIG_CIFS_SWN_UPCALL
324 seq_puts(m, ",WITNESS");
327 seq_printf(m, "CIFSMaxBufSize: %d\n", CIFSMaxBufSize);
328 seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
330 seq_printf(m, "\nServers: ");
333 spin_lock(&cifs_tcp_ses_lock);
334 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
335 /* channel info will be printed as a part of sessions below */
336 if (SERVER_IS_CHAN(server))
340 seq_printf(m, "\n%d) ConnectionId: 0x%llx ",
343 spin_lock(&server->srv_lock);
344 if (server->hostname)
345 seq_printf(m, "Hostname: %s ", server->hostname);
346 seq_printf(m, "\nClientGUID: %pUL", server->client_guid);
347 spin_unlock(&server->srv_lock);
348 #ifdef CONFIG_CIFS_SMB_DIRECT
352 if (!server->smbd_conn) {
353 seq_printf(m, "\nSMBDirect transport not available");
357 seq_printf(m, "\nSMBDirect (in hex) protocol version: %x "
358 "transport status: %x",
359 server->smbd_conn->protocol,
360 server->smbd_conn->transport_status);
361 seq_printf(m, "\nConn receive_credit_max: %x "
362 "send_credit_target: %x max_send_size: %x",
363 server->smbd_conn->receive_credit_max,
364 server->smbd_conn->send_credit_target,
365 server->smbd_conn->max_send_size);
366 seq_printf(m, "\nConn max_fragmented_recv_size: %x "
367 "max_fragmented_send_size: %x max_receive_size:%x",
368 server->smbd_conn->max_fragmented_recv_size,
369 server->smbd_conn->max_fragmented_send_size,
370 server->smbd_conn->max_receive_size);
371 seq_printf(m, "\nConn keep_alive_interval: %x "
372 "max_readwrite_size: %x rdma_readwrite_threshold: %x",
373 server->smbd_conn->keep_alive_interval,
374 server->smbd_conn->max_readwrite_size,
375 server->smbd_conn->rdma_readwrite_threshold);
376 seq_printf(m, "\nDebug count_get_receive_buffer: %x "
377 "count_put_receive_buffer: %x count_send_empty: %x",
378 server->smbd_conn->count_get_receive_buffer,
379 server->smbd_conn->count_put_receive_buffer,
380 server->smbd_conn->count_send_empty);
381 seq_printf(m, "\nRead Queue count_reassembly_queue: %x "
382 "count_enqueue_reassembly_queue: %x "
383 "count_dequeue_reassembly_queue: %x "
384 "fragment_reassembly_remaining: %x "
385 "reassembly_data_length: %x "
386 "reassembly_queue_length: %x",
387 server->smbd_conn->count_reassembly_queue,
388 server->smbd_conn->count_enqueue_reassembly_queue,
389 server->smbd_conn->count_dequeue_reassembly_queue,
390 server->smbd_conn->fragment_reassembly_remaining,
391 server->smbd_conn->reassembly_data_length,
392 server->smbd_conn->reassembly_queue_length);
393 seq_printf(m, "\nCurrent Credits send_credits: %x "
394 "receive_credits: %x receive_credit_target: %x",
395 atomic_read(&server->smbd_conn->send_credits),
396 atomic_read(&server->smbd_conn->receive_credits),
397 server->smbd_conn->receive_credit_target);
398 seq_printf(m, "\nPending send_pending: %x ",
399 atomic_read(&server->smbd_conn->send_pending));
400 seq_printf(m, "\nReceive buffers count_receive_queue: %x "
401 "count_empty_packet_queue: %x",
402 server->smbd_conn->count_receive_queue,
403 server->smbd_conn->count_empty_packet_queue);
404 seq_printf(m, "\nMR responder_resources: %x "
405 "max_frmr_depth: %x mr_type: %x",
406 server->smbd_conn->responder_resources,
407 server->smbd_conn->max_frmr_depth,
408 server->smbd_conn->mr_type);
409 seq_printf(m, "\nMR mr_ready_count: %x mr_used_count: %x",
410 atomic_read(&server->smbd_conn->mr_ready_count),
411 atomic_read(&server->smbd_conn->mr_used_count));
414 seq_printf(m, "\nNumber of credits: %d,%d,%d Dialect 0x%x",
416 server->echo_credits,
417 server->oplock_credits,
419 if (server->compress_algorithm == SMB3_COMPRESS_LZNT1)
420 seq_printf(m, " COMPRESS_LZNT1");
421 else if (server->compress_algorithm == SMB3_COMPRESS_LZ77)
422 seq_printf(m, " COMPRESS_LZ77");
423 else if (server->compress_algorithm == SMB3_COMPRESS_LZ77_HUFF)
424 seq_printf(m, " COMPRESS_LZ77_HUFF");
426 seq_printf(m, " signed");
427 if (server->posix_ext_supported)
428 seq_printf(m, " posix");
429 if (server->nosharesock)
430 seq_printf(m, " nosharesock");
433 seq_printf(m, "\nRDMA ");
434 seq_printf(m, "\nTCP status: %d Instance: %d"
435 "\nLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d",
437 server->reconnect_instance,
439 server->sec_mode, in_flight(server));
442 seq_printf(m, " Net namespace: %u ", server->net->ns.inum);
445 seq_printf(m, "\nIn Send: %d In MaxReq Wait: %d",
446 atomic_read(&server->in_send),
447 atomic_read(&server->num_waiters));
449 if (server->leaf_fullpath) {
450 seq_printf(m, "\nDFS leaf full path: %s",
451 server->leaf_fullpath);
454 seq_printf(m, "\n\n\tSessions: ");
456 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
457 spin_lock(&ses->ses_lock);
458 if (ses->ses_status == SES_EXITING) {
459 spin_unlock(&ses->ses_lock);
463 if ((ses->serverDomain == NULL) ||
464 (ses->serverOS == NULL) ||
465 (ses->serverNOS == NULL)) {
466 seq_printf(m, "\n\t%d) Address: %s Uses: %d Capability: 0x%x\tSession Status: %d ",
467 i, ses->ip_addr, ses->ses_count,
468 ses->capabilities, ses->ses_status);
469 if (ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
470 seq_printf(m, "Guest ");
471 else if (ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
472 seq_printf(m, "Anonymous ");
475 "\n\t%d) Name: %s Domain: %s Uses: %d OS: %s "
476 "\n\tNOS: %s\tCapability: 0x%x"
477 "\n\tSMB session status: %d ",
478 i, ses->ip_addr, ses->serverDomain,
479 ses->ses_count, ses->serverOS, ses->serverNOS,
480 ses->capabilities, ses->ses_status);
482 spin_unlock(&ses->ses_lock);
484 seq_printf(m, "\n\tSecurity type: %s ",
485 get_security_type_str(server->ops->select_sectype(server, ses->sectype)));
487 /* dump session id helpful for use with network trace */
488 seq_printf(m, " SessionId: 0x%llx", ses->Suid);
489 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) {
490 seq_puts(m, " encrypted");
491 /* can help in debugging to show encryption type */
492 if (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)
493 seq_puts(m, "(gcm256)");
496 seq_puts(m, " signed");
498 seq_printf(m, "\n\tUser: %d Cred User: %d",
499 from_kuid(&init_user_ns, ses->linux_uid),
500 from_kuid(&init_user_ns, ses->cred_uid));
502 if (ses->dfs_root_ses) {
503 seq_printf(m, "\n\tDFS root session id: 0x%llx",
504 ses->dfs_root_ses->Suid);
507 spin_lock(&ses->chan_lock);
508 if (CIFS_CHAN_NEEDS_RECONNECT(ses, 0))
509 seq_puts(m, "\tPrimary channel: DISCONNECTED ");
510 if (CIFS_CHAN_IN_RECONNECT(ses, 0))
511 seq_puts(m, "\t[RECONNECTING] ");
513 if (ses->chan_count > 1) {
514 seq_printf(m, "\n\n\tExtra Channels: %zu ",
516 for (j = 1; j < ses->chan_count; j++) {
517 cifs_dump_channel(m, j, &ses->chans[j]);
518 if (CIFS_CHAN_NEEDS_RECONNECT(ses, j))
519 seq_puts(m, "\tDISCONNECTED ");
520 if (CIFS_CHAN_IN_RECONNECT(ses, j))
521 seq_puts(m, "\t[RECONNECTING] ");
524 spin_unlock(&ses->chan_lock);
526 seq_puts(m, "\n\n\tShares: ");
529 seq_printf(m, "\n\t%d) IPC: ", j);
531 cifs_debug_tcon(m, ses->tcon_ipc);
533 seq_puts(m, "none\n");
535 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
537 seq_printf(m, "\n\t%d) ", j);
538 cifs_debug_tcon(m, tcon);
541 spin_lock(&ses->iface_lock);
542 if (ses->iface_count)
543 seq_printf(m, "\n\n\tServer interfaces: %zu"
544 "\tLast updated: %lu seconds ago",
546 (jiffies - ses->iface_last_update) / HZ);
548 last_iface = list_last_entry(&ses->iface_list,
549 struct cifs_server_iface,
551 iface_min_speed = last_iface->speed;
554 list_for_each_entry(iface, &ses->iface_list,
556 seq_printf(m, "\n\t%d)", ++j);
557 cifs_dump_iface(m, iface);
559 iface_weight = iface->speed / iface_min_speed;
560 seq_printf(m, "\t\tWeight (cur,total): (%zu,%zu)"
561 "\n\t\tAllocated channels: %u\n",
562 iface->weight_fulfilled,
564 iface->num_channels);
566 if (is_ses_using_iface(ses, iface))
567 seq_puts(m, "\t\t[CONNECTED]\n");
569 spin_unlock(&ses->iface_lock);
571 seq_puts(m, "\n\n\tMIDs: ");
572 spin_lock(&ses->chan_lock);
573 for (j = 0; j < ses->chan_count; j++) {
574 chan_server = ses->chans[j].server;
578 if (list_empty(&chan_server->pending_mid_q))
581 seq_printf(m, "\n\tServer ConnectionId: 0x%llx",
582 chan_server->conn_id);
583 spin_lock(&chan_server->mid_lock);
584 list_for_each_entry(mid_entry, &chan_server->pending_mid_q, qhead) {
585 seq_printf(m, "\n\t\tState: %d com: %d pid: %d cbdata: %p mid %llu",
586 mid_entry->mid_state,
587 le16_to_cpu(mid_entry->command),
589 mid_entry->callback_data,
592 spin_unlock(&chan_server->mid_lock);
594 spin_unlock(&ses->chan_lock);
595 seq_puts(m, "\n--\n");
598 seq_printf(m, "\n\t\t[NONE]");
601 seq_printf(m, "\n\t[NONE]");
603 spin_unlock(&cifs_tcp_ses_lock);
607 /* BB add code to dump additional info such as TCP session info now */
611 static ssize_t cifs_stats_proc_write(struct file *file,
612 const char __user *buffer, size_t count, loff_t *ppos)
616 struct TCP_Server_Info *server;
617 struct cifs_ses *ses;
618 struct cifs_tcon *tcon;
620 rc = kstrtobool_from_user(buffer, count, &bv);
622 #ifdef CONFIG_CIFS_STATS2
625 atomic_set(&total_buf_alloc_count, 0);
626 atomic_set(&total_small_buf_alloc_count, 0);
627 #endif /* CONFIG_CIFS_STATS2 */
628 atomic_set(&tcpSesReconnectCount, 0);
629 atomic_set(&tconInfoReconnectCount, 0);
631 spin_lock(&GlobalMid_Lock);
632 GlobalMaxActiveXid = 0;
633 GlobalCurrentXid = 0;
634 spin_unlock(&GlobalMid_Lock);
635 spin_lock(&cifs_tcp_ses_lock);
636 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
637 server->max_in_flight = 0;
638 #ifdef CONFIG_CIFS_STATS2
639 for (i = 0; i < NUMBER_OF_SMB2_COMMANDS; i++) {
640 atomic_set(&server->num_cmds[i], 0);
641 atomic_set(&server->smb2slowcmd[i], 0);
642 server->time_per_cmd[i] = 0;
643 server->slowest_cmd[i] = 0;
644 server->fastest_cmd[0] = 0;
646 #endif /* CONFIG_CIFS_STATS2 */
647 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
648 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
649 atomic_set(&tcon->num_smbs_sent, 0);
650 spin_lock(&tcon->stat_lock);
651 tcon->bytes_read = 0;
652 tcon->bytes_written = 0;
653 spin_unlock(&tcon->stat_lock);
654 if (server->ops->clear_stats)
655 server->ops->clear_stats(tcon);
659 spin_unlock(&cifs_tcp_ses_lock);
667 static int cifs_stats_proc_show(struct seq_file *m, void *v)
670 #ifdef CONFIG_CIFS_STATS2
673 struct TCP_Server_Info *server;
674 struct cifs_ses *ses;
675 struct cifs_tcon *tcon;
677 seq_printf(m, "Resources in use\nCIFS Session: %d\n",
678 sesInfoAllocCount.counter);
679 seq_printf(m, "Share (unique mount targets): %d\n",
680 tconInfoAllocCount.counter);
681 seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
682 buf_alloc_count.counter,
683 cifs_min_rcv + tcpSesAllocCount.counter);
684 seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
685 small_buf_alloc_count.counter, cifs_min_small);
686 #ifdef CONFIG_CIFS_STATS2
687 seq_printf(m, "Total Large %d Small %d Allocations\n",
688 atomic_read(&total_buf_alloc_count),
689 atomic_read(&total_small_buf_alloc_count));
690 #endif /* CONFIG_CIFS_STATS2 */
692 seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&mid_count));
694 "\n%d session %d share reconnects\n",
695 tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
698 "Total vfs operations: %d maximum at one time: %d\n",
699 GlobalCurrentXid, GlobalMaxActiveXid);
702 spin_lock(&cifs_tcp_ses_lock);
703 list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
704 seq_printf(m, "\nMax requests in flight: %d", server->max_in_flight);
705 #ifdef CONFIG_CIFS_STATS2
706 seq_puts(m, "\nTotal time spent processing by command. Time ");
707 seq_printf(m, "units are jiffies (%d per second)\n", HZ);
708 seq_puts(m, " SMB3 CMD\tNumber\tTotal Time\tFastest\tSlowest\n");
709 seq_puts(m, " --------\t------\t----------\t-------\t-------\n");
710 for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++)
711 seq_printf(m, " %d\t\t%d\t%llu\t\t%u\t%u\n", j,
712 atomic_read(&server->num_cmds[j]),
713 server->time_per_cmd[j],
714 server->fastest_cmd[j],
715 server->slowest_cmd[j]);
716 for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++)
717 if (atomic_read(&server->smb2slowcmd[j])) {
718 spin_lock(&server->srv_lock);
719 seq_printf(m, " %d slow responses from %s for command %d\n",
720 atomic_read(&server->smb2slowcmd[j]),
721 server->hostname, j);
722 spin_unlock(&server->srv_lock);
725 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
726 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
728 seq_printf(m, "\n%d) %s", i, tcon->tree_name);
729 if (tcon->need_reconnect)
730 seq_puts(m, "\tDISCONNECTED ");
731 seq_printf(m, "\nSMBs: %d",
732 atomic_read(&tcon->num_smbs_sent));
733 if (server->ops->print_stats)
734 server->ops->print_stats(m, tcon);
738 spin_unlock(&cifs_tcp_ses_lock);
744 static int cifs_stats_proc_open(struct inode *inode, struct file *file)
746 return single_open(file, cifs_stats_proc_show, NULL);
749 static const struct proc_ops cifs_stats_proc_ops = {
750 .proc_open = cifs_stats_proc_open,
751 .proc_read = seq_read,
752 .proc_lseek = seq_lseek,
753 .proc_release = single_release,
754 .proc_write = cifs_stats_proc_write,
757 #ifdef CONFIG_CIFS_SMB_DIRECT
758 #define PROC_FILE_DEFINE(name) \
759 static ssize_t name##_write(struct file *file, const char __user *buffer, \
760 size_t count, loff_t *ppos) \
763 rc = kstrtoint_from_user(buffer, count, 10, & name); \
768 static int name##_proc_show(struct seq_file *m, void *v) \
770 seq_printf(m, "%d\n", name ); \
773 static int name##_open(struct inode *inode, struct file *file) \
775 return single_open(file, name##_proc_show, NULL); \
778 static const struct proc_ops cifs_##name##_proc_fops = { \
779 .proc_open = name##_open, \
780 .proc_read = seq_read, \
781 .proc_lseek = seq_lseek, \
782 .proc_release = single_release, \
783 .proc_write = name##_write, \
786 PROC_FILE_DEFINE(rdma_readwrite_threshold);
787 PROC_FILE_DEFINE(smbd_max_frmr_depth);
788 PROC_FILE_DEFINE(smbd_keep_alive_interval);
789 PROC_FILE_DEFINE(smbd_max_receive_size);
790 PROC_FILE_DEFINE(smbd_max_fragmented_recv_size);
791 PROC_FILE_DEFINE(smbd_max_send_size);
792 PROC_FILE_DEFINE(smbd_send_credit_target);
793 PROC_FILE_DEFINE(smbd_receive_credit_max);
796 static struct proc_dir_entry *proc_fs_cifs;
797 static const struct proc_ops cifsFYI_proc_ops;
798 static const struct proc_ops cifs_lookup_cache_proc_ops;
799 static const struct proc_ops traceSMB_proc_ops;
800 static const struct proc_ops cifs_security_flags_proc_ops;
801 static const struct proc_ops cifs_linux_ext_proc_ops;
802 static const struct proc_ops cifs_mount_params_proc_ops;
807 proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
808 if (proc_fs_cifs == NULL)
811 proc_create_single("DebugData", 0, proc_fs_cifs,
812 cifs_debug_data_proc_show);
814 proc_create_single("open_files", 0400, proc_fs_cifs,
815 cifs_debug_files_proc_show);
817 proc_create("Stats", 0644, proc_fs_cifs, &cifs_stats_proc_ops);
818 proc_create("cifsFYI", 0644, proc_fs_cifs, &cifsFYI_proc_ops);
819 proc_create("traceSMB", 0644, proc_fs_cifs, &traceSMB_proc_ops);
820 proc_create("LinuxExtensionsEnabled", 0644, proc_fs_cifs,
821 &cifs_linux_ext_proc_ops);
822 proc_create("SecurityFlags", 0644, proc_fs_cifs,
823 &cifs_security_flags_proc_ops);
824 proc_create("LookupCacheEnabled", 0644, proc_fs_cifs,
825 &cifs_lookup_cache_proc_ops);
827 proc_create("mount_params", 0444, proc_fs_cifs, &cifs_mount_params_proc_ops);
829 #ifdef CONFIG_CIFS_DFS_UPCALL
830 proc_create("dfscache", 0644, proc_fs_cifs, &dfscache_proc_ops);
833 #ifdef CONFIG_CIFS_SMB_DIRECT
834 proc_create("rdma_readwrite_threshold", 0644, proc_fs_cifs,
835 &cifs_rdma_readwrite_threshold_proc_fops);
836 proc_create("smbd_max_frmr_depth", 0644, proc_fs_cifs,
837 &cifs_smbd_max_frmr_depth_proc_fops);
838 proc_create("smbd_keep_alive_interval", 0644, proc_fs_cifs,
839 &cifs_smbd_keep_alive_interval_proc_fops);
840 proc_create("smbd_max_receive_size", 0644, proc_fs_cifs,
841 &cifs_smbd_max_receive_size_proc_fops);
842 proc_create("smbd_max_fragmented_recv_size", 0644, proc_fs_cifs,
843 &cifs_smbd_max_fragmented_recv_size_proc_fops);
844 proc_create("smbd_max_send_size", 0644, proc_fs_cifs,
845 &cifs_smbd_max_send_size_proc_fops);
846 proc_create("smbd_send_credit_target", 0644, proc_fs_cifs,
847 &cifs_smbd_send_credit_target_proc_fops);
848 proc_create("smbd_receive_credit_max", 0644, proc_fs_cifs,
849 &cifs_smbd_receive_credit_max_proc_fops);
854 cifs_proc_clean(void)
856 if (proc_fs_cifs == NULL)
859 remove_proc_entry("DebugData", proc_fs_cifs);
860 remove_proc_entry("open_files", proc_fs_cifs);
861 remove_proc_entry("cifsFYI", proc_fs_cifs);
862 remove_proc_entry("traceSMB", proc_fs_cifs);
863 remove_proc_entry("Stats", proc_fs_cifs);
864 remove_proc_entry("SecurityFlags", proc_fs_cifs);
865 remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
866 remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
867 remove_proc_entry("mount_params", proc_fs_cifs);
869 #ifdef CONFIG_CIFS_DFS_UPCALL
870 remove_proc_entry("dfscache", proc_fs_cifs);
872 #ifdef CONFIG_CIFS_SMB_DIRECT
873 remove_proc_entry("rdma_readwrite_threshold", proc_fs_cifs);
874 remove_proc_entry("smbd_max_frmr_depth", proc_fs_cifs);
875 remove_proc_entry("smbd_keep_alive_interval", proc_fs_cifs);
876 remove_proc_entry("smbd_max_receive_size", proc_fs_cifs);
877 remove_proc_entry("smbd_max_fragmented_recv_size", proc_fs_cifs);
878 remove_proc_entry("smbd_max_send_size", proc_fs_cifs);
879 remove_proc_entry("smbd_send_credit_target", proc_fs_cifs);
880 remove_proc_entry("smbd_receive_credit_max", proc_fs_cifs);
882 remove_proc_entry("fs/cifs", NULL);
885 static int cifsFYI_proc_show(struct seq_file *m, void *v)
887 seq_printf(m, "%d\n", cifsFYI);
891 static int cifsFYI_proc_open(struct inode *inode, struct file *file)
893 return single_open(file, cifsFYI_proc_show, NULL);
896 static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
897 size_t count, loff_t *ppos)
899 char c[2] = { '\0' };
903 rc = get_user(c[0], buffer);
906 if (kstrtobool(c, &bv) == 0)
908 else if ((c[0] > '1') && (c[0] <= '9'))
909 cifsFYI = (int) (c[0] - '0'); /* see cifs_debug.h for meanings */
916 static const struct proc_ops cifsFYI_proc_ops = {
917 .proc_open = cifsFYI_proc_open,
918 .proc_read = seq_read,
919 .proc_lseek = seq_lseek,
920 .proc_release = single_release,
921 .proc_write = cifsFYI_proc_write,
924 static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
926 seq_printf(m, "%d\n", linuxExtEnabled);
930 static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
932 return single_open(file, cifs_linux_ext_proc_show, NULL);
935 static ssize_t cifs_linux_ext_proc_write(struct file *file,
936 const char __user *buffer, size_t count, loff_t *ppos)
940 rc = kstrtobool_from_user(buffer, count, &linuxExtEnabled);
947 static const struct proc_ops cifs_linux_ext_proc_ops = {
948 .proc_open = cifs_linux_ext_proc_open,
949 .proc_read = seq_read,
950 .proc_lseek = seq_lseek,
951 .proc_release = single_release,
952 .proc_write = cifs_linux_ext_proc_write,
955 static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
957 seq_printf(m, "%d\n", lookupCacheEnabled);
961 static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
963 return single_open(file, cifs_lookup_cache_proc_show, NULL);
966 static ssize_t cifs_lookup_cache_proc_write(struct file *file,
967 const char __user *buffer, size_t count, loff_t *ppos)
971 rc = kstrtobool_from_user(buffer, count, &lookupCacheEnabled);
978 static const struct proc_ops cifs_lookup_cache_proc_ops = {
979 .proc_open = cifs_lookup_cache_proc_open,
980 .proc_read = seq_read,
981 .proc_lseek = seq_lseek,
982 .proc_release = single_release,
983 .proc_write = cifs_lookup_cache_proc_write,
986 static int traceSMB_proc_show(struct seq_file *m, void *v)
988 seq_printf(m, "%d\n", traceSMB);
992 static int traceSMB_proc_open(struct inode *inode, struct file *file)
994 return single_open(file, traceSMB_proc_show, NULL);
997 static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
998 size_t count, loff_t *ppos)
1002 rc = kstrtobool_from_user(buffer, count, &traceSMB);
1009 static const struct proc_ops traceSMB_proc_ops = {
1010 .proc_open = traceSMB_proc_open,
1011 .proc_read = seq_read,
1012 .proc_lseek = seq_lseek,
1013 .proc_release = single_release,
1014 .proc_write = traceSMB_proc_write,
1017 static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
1019 seq_printf(m, "0x%x\n", global_secflags);
1023 static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
1025 return single_open(file, cifs_security_flags_proc_show, NULL);
1029 * Ensure that if someone sets a MUST flag, that we disable all other MAY
1030 * flags except for the ones corresponding to the given MUST flag. If there are
1031 * multiple MUST flags, then try to prefer more secure ones.
1034 cifs_security_flags_handle_must_flags(unsigned int *flags)
1036 unsigned int signflags = *flags & CIFSSEC_MUST_SIGN;
1038 if ((*flags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5)
1039 *flags = CIFSSEC_MUST_KRB5;
1040 else if ((*flags & CIFSSEC_MUST_NTLMSSP) == CIFSSEC_MUST_NTLMSSP)
1041 *flags = CIFSSEC_MUST_NTLMSSP;
1042 else if ((*flags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2)
1043 *flags = CIFSSEC_MUST_NTLMV2;
1045 *flags |= signflags;
1048 static ssize_t cifs_security_flags_proc_write(struct file *file,
1049 const char __user *buffer, size_t count, loff_t *ppos)
1053 char flags_string[12];
1056 if ((count < 1) || (count > 11))
1059 memset(flags_string, 0, 12);
1061 if (copy_from_user(flags_string, buffer, count))
1065 /* single char or single char followed by null */
1066 if (kstrtobool(flags_string, &bv) == 0) {
1067 global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF;
1069 } else if (!isdigit(flags_string[0])) {
1070 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
1076 /* else we have a number */
1077 rc = kstrtouint(flags_string, 0, &flags);
1079 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
1084 cifs_dbg(FYI, "sec flags 0x%x\n", flags);
1087 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string);
1091 if (flags & ~CIFSSEC_MASK) {
1092 cifs_dbg(VFS, "Unsupported security flags: 0x%x\n",
1093 flags & ~CIFSSEC_MASK);
1097 cifs_security_flags_handle_must_flags(&flags);
1099 /* flags look ok - update the global security flags for cifs module */
1100 global_secflags = flags;
1101 if (global_secflags & CIFSSEC_MUST_SIGN) {
1102 /* requiring signing implies signing is allowed */
1103 global_secflags |= CIFSSEC_MAY_SIGN;
1104 cifs_dbg(FYI, "packet signing now required\n");
1105 } else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
1106 cifs_dbg(FYI, "packet signing disabled\n");
1108 /* BB should we turn on MAY flags for other MUST options? */
1112 static const struct proc_ops cifs_security_flags_proc_ops = {
1113 .proc_open = cifs_security_flags_proc_open,
1114 .proc_read = seq_read,
1115 .proc_lseek = seq_lseek,
1116 .proc_release = single_release,
1117 .proc_write = cifs_security_flags_proc_write,
1120 /* To make it easier to debug, can help to show mount params */
1121 static int cifs_mount_params_proc_show(struct seq_file *m, void *v)
1123 const struct fs_parameter_spec *p;
1126 for (p = smb3_fs_parameters; p->name; p++) {
1127 /* cannot use switch with pointers... */
1129 if (p->flags == fs_param_neg_with_no)
1133 } else if (p->type == fs_param_is_bool)
1135 else if (p->type == fs_param_is_u32)
1137 else if (p->type == fs_param_is_u64)
1139 else if (p->type == fs_param_is_string)
1144 seq_printf(m, "%s:%s\n", p->name, type);
1150 static int cifs_mount_params_proc_open(struct inode *inode, struct file *file)
1152 return single_open(file, cifs_mount_params_proc_show, NULL);
1155 static const struct proc_ops cifs_mount_params_proc_ops = {
1156 .proc_open = cifs_mount_params_proc_open,
1157 .proc_read = seq_read,
1158 .proc_lseek = seq_lseek,
1159 .proc_release = single_release,
1160 /* No need for write for now */
1161 /* .proc_write = cifs_mount_params_proc_write, */
1165 inline void cifs_proc_init(void)
1169 inline void cifs_proc_clean(void)
1172 #endif /* PROC_FS */