Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs_debug.c |
| 3 | * |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2000,2005 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Modified by Steve French (sfrench@us.ibm.com) |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 10 | * the Free Software Foundation; either version 2 of the License, or |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * (at your option) any later version. |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 16 | * the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 19 | * along with this program; if not, write to the Free Software |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | */ |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/string.h> |
| 24 | #include <linux/ctype.h> |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/proc_fs.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 27 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include "cifspdu.h" |
| 29 | #include "cifsglob.h" |
| 30 | #include "cifsproto.h" |
| 31 | #include "cifs_debug.h" |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 32 | #include "cifsfs.h" |
Long Li | d8ec913 | 2017-11-07 01:54:58 -0700 | [diff] [blame^] | 33 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 34 | #include "smbdirect.h" |
| 35 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | void |
| 38 | cifs_dump_mem(char *label, void *data, int length) |
| 39 | { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 40 | pr_debug("%s: dump of %d bytes of data at 0x%p\n", label, length, data); |
Andy Shevchenko | 55d83e0 | 2014-08-27 16:49:43 +0300 | [diff] [blame] | 41 | print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 4, |
| 42 | data, length, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | } |
| 44 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 45 | #ifdef CONFIG_CIFS_DEBUG |
| 46 | void cifs_vfs_err(const char *fmt, ...) |
| 47 | { |
| 48 | struct va_format vaf; |
| 49 | va_list args; |
| 50 | |
| 51 | va_start(args, fmt); |
| 52 | |
| 53 | vaf.fmt = fmt; |
| 54 | vaf.va = &args; |
| 55 | |
Jamie Bainbridge | ec7147a | 2015-11-07 22:13:49 +1000 | [diff] [blame] | 56 | pr_err_ratelimited("CIFS VFS: %pV", &vaf); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 57 | |
| 58 | va_end(args); |
| 59 | } |
| 60 | #endif |
| 61 | |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 62 | void cifs_dump_detail(void *buf) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 63 | { |
Pavel Shilovsky | 8aa26f3 | 2012-05-17 13:25:35 +0400 | [diff] [blame] | 64 | #ifdef CONFIG_CIFS_DEBUG2 |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 65 | struct smb_hdr *smb = (struct smb_hdr *)buf; |
| 66 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 67 | cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d\n", |
| 68 | smb->Command, smb->Status.CifsError, |
| 69 | smb->Flags, smb->Flags2, smb->Mid, smb->Pid); |
| 70 | cifs_dbg(VFS, "smb buf %p len %u\n", smb, smbCalcSize(smb)); |
Pavel Shilovsky | 8aa26f3 | 2012-05-17 13:25:35 +0400 | [diff] [blame] | 71 | #endif /* CONFIG_CIFS_DEBUG2 */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 74 | void cifs_dump_mids(struct TCP_Server_Info *server) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 75 | { |
Pavel Shilovsky | 8aa26f3 | 2012-05-17 13:25:35 +0400 | [diff] [blame] | 76 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 77 | struct list_head *tmp; |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 78 | struct mid_q_entry *mid_entry; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 79 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 80 | if (server == NULL) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 81 | return; |
| 82 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 83 | cifs_dbg(VFS, "Dump pending requests:\n"); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 84 | spin_lock(&GlobalMid_Lock); |
| 85 | list_for_each(tmp, &server->pending_mid_q) { |
| 86 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 87 | cifs_dbg(VFS, "State: %d Cmd: %d Pid: %d Cbdata: %p Mid %llu\n", |
| 88 | mid_entry->mid_state, |
| 89 | le16_to_cpu(mid_entry->command), |
| 90 | mid_entry->pid, |
| 91 | mid_entry->callback_data, |
| 92 | mid_entry->mid); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 93 | #ifdef CONFIG_CIFS_STATS2 |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 94 | cifs_dbg(VFS, "IsLarge: %d buf: %p time rcv: %ld now: %ld\n", |
| 95 | mid_entry->large_buf, |
| 96 | mid_entry->resp_buf, |
| 97 | mid_entry->when_received, |
| 98 | jiffies); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 99 | #endif /* STATS2 */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 100 | cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n", |
| 101 | mid_entry->multiRsp, mid_entry->multiEnd); |
Steve French | ad8b15f | 2008-08-08 21:10:16 +0000 | [diff] [blame] | 102 | if (mid_entry->resp_buf) { |
| 103 | cifs_dump_detail(mid_entry->resp_buf); |
| 104 | cifs_dump_mem("existing buf: ", |
| 105 | mid_entry->resp_buf, 62); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 106 | } |
| 107 | } |
| 108 | spin_unlock(&GlobalMid_Lock); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 109 | #endif /* CONFIG_CIFS_DEBUG2 */ |
Pavel Shilovsky | 8aa26f3 | 2012-05-17 13:25:35 +0400 | [diff] [blame] | 110 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 113 | static int cifs_debug_data_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 115 | struct list_head *tmp1, *tmp2, *tmp3; |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 116 | struct mid_q_entry *mid_entry; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 117 | struct TCP_Server_Info *server; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 118 | struct cifs_ses *ses; |
| 119 | struct cifs_tcon *tcon; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 120 | int i, j; |
| 121 | __u32 dev_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 123 | seq_puts(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | "Display Internal CIFS Data Structures for Debugging\n" |
| 125 | "---------------------------------------------------\n"); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 126 | seq_printf(m, "CIFS Version %s\n", CIFS_VERSION); |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 127 | seq_printf(m, "Features:"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 128 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 129 | seq_printf(m, " dfs"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 130 | #endif |
| 131 | #ifdef CONFIG_CIFS_FSCACHE |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 132 | seq_printf(m, " fscache"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 133 | #endif |
| 134 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 135 | seq_printf(m, " lanman"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 136 | #endif |
| 137 | #ifdef CONFIG_CIFS_POSIX |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 138 | seq_printf(m, " posix"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 139 | #endif |
| 140 | #ifdef CONFIG_CIFS_UPCALL |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 141 | seq_printf(m, " spnego"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 142 | #endif |
| 143 | #ifdef CONFIG_CIFS_XATTR |
Jeff Layton | ca40b71 | 2011-01-07 11:30:29 -0500 | [diff] [blame] | 144 | seq_printf(m, " xattr"); |
| 145 | #endif |
| 146 | #ifdef CONFIG_CIFS_ACL |
| 147 | seq_printf(m, " acl"); |
Suresh Jayaraman | f579903 | 2010-07-30 18:25:56 +0530 | [diff] [blame] | 148 | #endif |
| 149 | seq_putc(m, '\n'); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 150 | seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid); |
| 151 | seq_printf(m, "Servers:"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
| 153 | i = 0; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 154 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 155 | list_for_each(tmp1, &cifs_tcp_ses_list) { |
| 156 | server = list_entry(tmp1, struct TCP_Server_Info, |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 157 | tcp_ses_list); |
Steve French | 9742805 | 2016-09-19 22:06:35 -0500 | [diff] [blame] | 158 | seq_printf(m, "\nNumber of credits: %d", server->credits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | i++; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 160 | list_for_each(tmp2, &server->smb_ses_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 161 | ses = list_entry(tmp2, struct cifs_ses, |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 162 | smb_ses_list); |
| 163 | if ((ses->serverDomain == NULL) || |
| 164 | (ses->serverOS == NULL) || |
| 165 | (ses->serverNOS == NULL)) { |
Steve French | 1fa089e | 2017-09-20 16:46:49 -0500 | [diff] [blame] | 166 | seq_printf(m, "\n%d) Name: %s Uses: %d Capability: 0x%x\tSession Status: %d\t", |
| 167 | i, ses->serverName, ses->ses_count, |
| 168 | ses->capabilities, ses->status); |
| 169 | if (ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) |
| 170 | seq_printf(m, "Guest\t"); |
| 171 | else if (ses->session_flags & SMB2_SESSION_FLAG_IS_NULL) |
| 172 | seq_printf(m, "Anonymous\t"); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 173 | } else { |
| 174 | seq_printf(m, |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 175 | "\n%d) Name: %s Domain: %s Uses: %d OS:" |
| 176 | " %s\n\tNOS: %s\tCapability: 0x%x\n\tSMB" |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 177 | " session status: %d\t", |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 178 | i, ses->serverName, ses->serverDomain, |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 179 | ses->ses_count, ses->serverOS, ses->serverNOS, |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 180 | ses->capabilities, ses->status); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 181 | } |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 182 | if (server->rdma) |
| 183 | seq_printf(m, "RDMA\n\t"); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 184 | seq_printf(m, "TCP status: %d\n\tLocal Users To " |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 185 | "Server: %d SecMode: 0x%x Req On Wire: %d", |
| 186 | server->tcpStatus, server->srv_count, |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 187 | server->sec_mode, in_flight(server)); |
Steve French | 131afd0b | 2005-10-07 09:51:05 -0700 | [diff] [blame] | 188 | |
| 189 | #ifdef CONFIG_CIFS_STATS2 |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 190 | seq_printf(m, " In Send: %d In MaxReq Wait: %d", |
Steve French | 789e666 | 2011-08-09 18:44:44 +0000 | [diff] [blame] | 191 | atomic_read(&server->in_send), |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 192 | atomic_read(&server->num_waiters)); |
Steve French | 131afd0b | 2005-10-07 09:51:05 -0700 | [diff] [blame] | 193 | #endif |
| 194 | |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 195 | seq_puts(m, "\n\tShares:"); |
| 196 | j = 0; |
| 197 | list_for_each(tmp3, &ses->tcon_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 198 | tcon = list_entry(tmp3, struct cifs_tcon, |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 199 | tcon_list); |
| 200 | ++j; |
| 201 | dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType); |
| 202 | seq_printf(m, "\n\t%d) %s Mounts: %d ", j, |
| 203 | tcon->treeName, tcon->tc_count); |
| 204 | if (tcon->nativeFileSystem) { |
| 205 | seq_printf(m, "Type: %s ", |
| 206 | tcon->nativeFileSystem); |
| 207 | } |
| 208 | seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x" |
Steve French | 59b04c5 | 2014-08-02 21:16:48 -0500 | [diff] [blame] | 209 | "\n\tPathComponentMax: %d Status: %d", |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 210 | le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics), |
| 211 | le32_to_cpu(tcon->fsAttrInfo.Attributes), |
| 212 | le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength), |
| 213 | tcon->tidStatus); |
| 214 | if (dev_type == FILE_DEVICE_DISK) |
| 215 | seq_puts(m, " type: DISK "); |
| 216 | else if (dev_type == FILE_DEVICE_CD_ROM) |
| 217 | seq_puts(m, " type: CDROM "); |
| 218 | else |
| 219 | seq_printf(m, " type: %d ", dev_type); |
Steve French | 769ee6a | 2013-06-19 14:15:30 -0500 | [diff] [blame] | 220 | if (server->ops->dump_share_caps) |
| 221 | server->ops->dump_share_caps(m, tcon); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 222 | |
| 223 | if (tcon->need_reconnect) |
| 224 | seq_puts(m, "\tDISCONNECTED "); |
| 225 | seq_putc(m, '\n'); |
| 226 | } |
| 227 | |
| 228 | seq_puts(m, "\n\tMIDs:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 231 | list_for_each(tmp3, &server->pending_mid_q) { |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 232 | mid_entry = list_entry(tmp3, struct mid_q_entry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | qhead); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 234 | seq_printf(m, "\tState: %d com: %d pid:" |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 235 | " %d cbdata: %p mid %llu\n", |
| 236 | mid_entry->mid_state, |
| 237 | le16_to_cpu(mid_entry->command), |
| 238 | mid_entry->pid, |
| 239 | mid_entry->callback_data, |
| 240 | mid_entry->mid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 242 | spin_unlock(&GlobalMid_Lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 245 | spin_unlock(&cifs_tcp_ses_lock); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 246 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | /* BB add code to dump additional info such as TCP session info now */ |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 249 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 252 | static int cifs_debug_data_proc_open(struct inode *inode, struct file *file) |
| 253 | { |
| 254 | return single_open(file, cifs_debug_data_proc_show, NULL); |
| 255 | } |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 256 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 257 | static const struct file_operations cifs_debug_data_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 258 | .open = cifs_debug_data_proc_open, |
| 259 | .read = seq_read, |
| 260 | .llseek = seq_lseek, |
| 261 | .release = single_release, |
| 262 | }; |
| 263 | |
| 264 | #ifdef CONFIG_CIFS_STATS |
| 265 | static ssize_t cifs_stats_proc_write(struct file *file, |
| 266 | const char __user *buffer, size_t count, loff_t *ppos) |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 267 | { |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 268 | bool bv; |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 269 | int rc; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 270 | struct list_head *tmp1, *tmp2, *tmp3; |
| 271 | struct TCP_Server_Info *server; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 272 | struct cifs_ses *ses; |
| 273 | struct cifs_tcon *tcon; |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 274 | |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 275 | rc = kstrtobool_from_user(buffer, count, &bv); |
| 276 | if (rc == 0) { |
Steve French | 4498eed5 | 2005-12-03 13:58:57 -0800 | [diff] [blame] | 277 | #ifdef CONFIG_CIFS_STATS2 |
| 278 | atomic_set(&totBufAllocCount, 0); |
| 279 | atomic_set(&totSmBufAllocCount, 0); |
| 280 | #endif /* CONFIG_CIFS_STATS2 */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 281 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 282 | list_for_each(tmp1, &cifs_tcp_ses_list) { |
| 283 | server = list_entry(tmp1, struct TCP_Server_Info, |
| 284 | tcp_ses_list); |
Steve French | c2b3382 | 2008-11-17 03:57:13 +0000 | [diff] [blame] | 285 | list_for_each(tmp2, &server->smb_ses_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 286 | ses = list_entry(tmp2, struct cifs_ses, |
Steve French | c2b3382 | 2008-11-17 03:57:13 +0000 | [diff] [blame] | 287 | smb_ses_list); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 288 | list_for_each(tmp3, &ses->tcon_list) { |
| 289 | tcon = list_entry(tmp3, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 290 | struct cifs_tcon, |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 291 | tcon_list); |
| 292 | atomic_set(&tcon->num_smbs_sent, 0); |
Pavel Shilovsky | 44c5818 | 2012-05-28 14:16:31 +0400 | [diff] [blame] | 293 | if (server->ops->clear_stats) |
| 294 | server->ops->clear_stats(tcon); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 295 | } |
| 296 | } |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 297 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 298 | spin_unlock(&cifs_tcp_ses_lock); |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 299 | } else { |
| 300 | return rc; |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 303 | return count; |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 306 | static int cifs_stats_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 308 | int i; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 309 | struct list_head *tmp1, *tmp2, *tmp3; |
| 310 | struct TCP_Server_Info *server; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 311 | struct cifs_ses *ses; |
| 312 | struct cifs_tcon *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 314 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | "Resources in use\nCIFS Session: %d\n", |
| 316 | sesInfoAllocCount.counter); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 317 | seq_printf(m, "Share (unique mount targets): %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | tconInfoAllocCount.counter); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 319 | seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n", |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 320 | bufAllocCount.counter, |
| 321 | cifs_min_rcv + tcpSesAllocCount.counter); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 322 | seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n", |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 323 | smBufAllocCount.counter, cifs_min_small); |
Steve French | 07475ff | 2005-12-03 14:11:37 -0800 | [diff] [blame] | 324 | #ifdef CONFIG_CIFS_STATS2 |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 325 | seq_printf(m, "Total Large %d Small %d Allocations\n", |
Steve French | 07475ff | 2005-12-03 14:11:37 -0800 | [diff] [blame] | 326 | atomic_read(&totBufAllocCount), |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 327 | atomic_read(&totSmBufAllocCount)); |
Steve French | 07475ff | 2005-12-03 14:11:37 -0800 | [diff] [blame] | 328 | #endif /* CONFIG_CIFS_STATS2 */ |
| 329 | |
Jeff Layton | 8097531 | 2011-01-11 07:24:02 -0500 | [diff] [blame] | 330 | seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&midCount)); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 331 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | "\n%d session %d share reconnects\n", |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 333 | tcpSesReconnectCount.counter, tconInfoReconnectCount.counter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 335 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | "Total vfs operations: %d maximum at one time: %d\n", |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 337 | GlobalCurrentXid, GlobalMaxActiveXid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
| 339 | i = 0; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 340 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 341 | list_for_each(tmp1, &cifs_tcp_ses_list) { |
| 342 | server = list_entry(tmp1, struct TCP_Server_Info, |
| 343 | tcp_ses_list); |
| 344 | list_for_each(tmp2, &server->smb_ses_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 345 | ses = list_entry(tmp2, struct cifs_ses, |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 346 | smb_ses_list); |
| 347 | list_for_each(tmp3, &ses->tcon_list) { |
| 348 | tcon = list_entry(tmp3, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 349 | struct cifs_tcon, |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 350 | tcon_list); |
| 351 | i++; |
| 352 | seq_printf(m, "\n%d) %s", i, tcon->treeName); |
| 353 | if (tcon->need_reconnect) |
| 354 | seq_puts(m, "\tDISCONNECTED "); |
Pavel Shilovsky | 44c5818 | 2012-05-28 14:16:31 +0400 | [diff] [blame] | 355 | seq_printf(m, "\nSMBs: %d", |
| 356 | atomic_read(&tcon->num_smbs_sent)); |
| 357 | if (server->ops->print_stats) |
| 358 | server->ops->print_stats(m, tcon); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 359 | } |
| 360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 362 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 364 | seq_putc(m, '\n'); |
| 365 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 367 | |
| 368 | static int cifs_stats_proc_open(struct inode *inode, struct file *file) |
| 369 | { |
| 370 | return single_open(file, cifs_stats_proc_show, NULL); |
| 371 | } |
| 372 | |
| 373 | static const struct file_operations cifs_stats_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 374 | .open = cifs_stats_proc_open, |
| 375 | .read = seq_read, |
| 376 | .llseek = seq_lseek, |
| 377 | .release = single_release, |
| 378 | .write = cifs_stats_proc_write, |
| 379 | }; |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 380 | #endif /* STATS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
Long Li | d8ec913 | 2017-11-07 01:54:58 -0700 | [diff] [blame^] | 382 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 383 | #define PROC_FILE_DEFINE(name) \ |
| 384 | static ssize_t name##_write(struct file *file, const char __user *buffer, \ |
| 385 | size_t count, loff_t *ppos) \ |
| 386 | { \ |
| 387 | int rc; \ |
| 388 | rc = kstrtoint_from_user(buffer, count, 10, & name); \ |
| 389 | if (rc) \ |
| 390 | return rc; \ |
| 391 | return count; \ |
| 392 | } \ |
| 393 | static int name##_proc_show(struct seq_file *m, void *v) \ |
| 394 | { \ |
| 395 | seq_printf(m, "%d\n", name ); \ |
| 396 | return 0; \ |
| 397 | } \ |
| 398 | static int name##_open(struct inode *inode, struct file *file) \ |
| 399 | { \ |
| 400 | return single_open(file, name##_proc_show, NULL); \ |
| 401 | } \ |
| 402 | \ |
| 403 | static const struct file_operations cifs_##name##_proc_fops = { \ |
| 404 | .open = name##_open, \ |
| 405 | .read = seq_read, \ |
| 406 | .llseek = seq_lseek, \ |
| 407 | .release = single_release, \ |
| 408 | .write = name##_write, \ |
| 409 | } |
| 410 | |
| 411 | extern int rdma_readwrite_threshold; |
| 412 | extern int smbd_max_frmr_depth; |
| 413 | extern int smbd_keep_alive_interval; |
| 414 | extern int smbd_max_receive_size; |
| 415 | extern int smbd_max_fragmented_recv_size; |
| 416 | extern int smbd_max_send_size; |
| 417 | extern int smbd_send_credit_target; |
| 418 | extern int smbd_receive_credit_max; |
| 419 | |
| 420 | PROC_FILE_DEFINE(rdma_readwrite_threshold); |
| 421 | PROC_FILE_DEFINE(smbd_max_frmr_depth); |
| 422 | PROC_FILE_DEFINE(smbd_keep_alive_interval); |
| 423 | PROC_FILE_DEFINE(smbd_max_receive_size); |
| 424 | PROC_FILE_DEFINE(smbd_max_fragmented_recv_size); |
| 425 | PROC_FILE_DEFINE(smbd_max_send_size); |
| 426 | PROC_FILE_DEFINE(smbd_send_credit_target); |
| 427 | PROC_FILE_DEFINE(smbd_receive_credit_max); |
| 428 | #endif |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | static struct proc_dir_entry *proc_fs_cifs; |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 431 | static const struct file_operations cifsFYI_proc_fops; |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 432 | static const struct file_operations cifs_lookup_cache_proc_fops; |
| 433 | static const struct file_operations traceSMB_proc_fops; |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 434 | static const struct file_operations cifs_security_flags_proc_fops; |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 435 | static const struct file_operations cifs_linux_ext_proc_fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
| 437 | void |
| 438 | cifs_proc_init(void) |
| 439 | { |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 440 | proc_fs_cifs = proc_mkdir("fs/cifs", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | if (proc_fs_cifs == NULL) |
| 442 | return; |
| 443 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 444 | proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
| 446 | #ifdef CONFIG_CIFS_STATS |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 447 | proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops); |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 448 | #endif /* STATS */ |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 449 | proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops); |
| 450 | proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops); |
Steve French | 99b1f5b | 2008-07-24 02:37:45 +0000 | [diff] [blame] | 451 | proc_create("LinuxExtensionsEnabled", 0, proc_fs_cifs, |
| 452 | &cifs_linux_ext_proc_fops); |
Steve French | 99b1f5b | 2008-07-24 02:37:45 +0000 | [diff] [blame] | 453 | proc_create("SecurityFlags", 0, proc_fs_cifs, |
| 454 | &cifs_security_flags_proc_fops); |
| 455 | proc_create("LookupCacheEnabled", 0, proc_fs_cifs, |
| 456 | &cifs_lookup_cache_proc_fops); |
Long Li | d8ec913 | 2017-11-07 01:54:58 -0700 | [diff] [blame^] | 457 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 458 | proc_create("rdma_readwrite_threshold", 0, proc_fs_cifs, |
| 459 | &cifs_rdma_readwrite_threshold_proc_fops); |
| 460 | proc_create("smbd_max_frmr_depth", 0, proc_fs_cifs, |
| 461 | &cifs_smbd_max_frmr_depth_proc_fops); |
| 462 | proc_create("smbd_keep_alive_interval", 0, proc_fs_cifs, |
| 463 | &cifs_smbd_keep_alive_interval_proc_fops); |
| 464 | proc_create("smbd_max_receive_size", 0, proc_fs_cifs, |
| 465 | &cifs_smbd_max_receive_size_proc_fops); |
| 466 | proc_create("smbd_max_fragmented_recv_size", 0, proc_fs_cifs, |
| 467 | &cifs_smbd_max_fragmented_recv_size_proc_fops); |
| 468 | proc_create("smbd_max_send_size", 0, proc_fs_cifs, |
| 469 | &cifs_smbd_max_send_size_proc_fops); |
| 470 | proc_create("smbd_send_credit_target", 0, proc_fs_cifs, |
| 471 | &cifs_smbd_send_credit_target_proc_fops); |
| 472 | proc_create("smbd_receive_credit_max", 0, proc_fs_cifs, |
| 473 | &cifs_smbd_receive_credit_max_proc_fops); |
| 474 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | void |
| 478 | cifs_proc_clean(void) |
| 479 | { |
| 480 | if (proc_fs_cifs == NULL) |
| 481 | return; |
| 482 | |
| 483 | remove_proc_entry("DebugData", proc_fs_cifs); |
| 484 | remove_proc_entry("cifsFYI", proc_fs_cifs); |
| 485 | remove_proc_entry("traceSMB", proc_fs_cifs); |
| 486 | #ifdef CONFIG_CIFS_STATS |
| 487 | remove_proc_entry("Stats", proc_fs_cifs); |
| 488 | #endif |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 489 | remove_proc_entry("SecurityFlags", proc_fs_cifs); |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 490 | remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs); |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 491 | remove_proc_entry("LookupCacheEnabled", proc_fs_cifs); |
Long Li | d8ec913 | 2017-11-07 01:54:58 -0700 | [diff] [blame^] | 492 | #ifdef CONFIG_CIFS_SMB_DIRECT |
| 493 | remove_proc_entry("rdma_readwrite_threshold", proc_fs_cifs); |
| 494 | remove_proc_entry("smbd_max_frmr_depth", proc_fs_cifs); |
| 495 | remove_proc_entry("smbd_keep_alive_interval", proc_fs_cifs); |
| 496 | remove_proc_entry("smbd_max_receive_size", proc_fs_cifs); |
| 497 | remove_proc_entry("smbd_max_fragmented_recv_size", proc_fs_cifs); |
| 498 | remove_proc_entry("smbd_max_send_size", proc_fs_cifs); |
| 499 | remove_proc_entry("smbd_send_credit_target", proc_fs_cifs); |
| 500 | remove_proc_entry("smbd_receive_credit_max", proc_fs_cifs); |
| 501 | #endif |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 502 | remove_proc_entry("fs/cifs", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | } |
| 504 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 505 | static int cifsFYI_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 507 | seq_printf(m, "%d\n", cifsFYI); |
| 508 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 510 | |
| 511 | static int cifsFYI_proc_open(struct inode *inode, struct file *file) |
| 512 | { |
| 513 | return single_open(file, cifsFYI_proc_show, NULL); |
| 514 | } |
| 515 | |
| 516 | static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer, |
| 517 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | { |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 519 | char c[2] = { '\0' }; |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 520 | bool bv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | int rc; |
| 522 | |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 523 | rc = get_user(c[0], buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | if (rc) |
| 525 | return rc; |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 526 | if (strtobool(c, &bv) == 0) |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 527 | cifsFYI = bv; |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 528 | else if ((c[0] > '1') && (c[0] <= '9')) |
| 529 | cifsFYI = (int) (c[0] - '0'); /* see cifs_debug.h for meanings */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
| 531 | return count; |
| 532 | } |
| 533 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 534 | static const struct file_operations cifsFYI_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 535 | .open = cifsFYI_proc_open, |
| 536 | .read = seq_read, |
| 537 | .llseek = seq_lseek, |
| 538 | .release = single_release, |
| 539 | .write = cifsFYI_proc_write, |
| 540 | }; |
| 541 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 542 | static int cifs_linux_ext_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 544 | seq_printf(m, "%d\n", linuxExtEnabled); |
| 545 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 547 | |
| 548 | static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file) |
| 549 | { |
| 550 | return single_open(file, cifs_linux_ext_proc_show, NULL); |
| 551 | } |
| 552 | |
| 553 | static ssize_t cifs_linux_ext_proc_write(struct file *file, |
| 554 | const char __user *buffer, size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | { |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 556 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 558 | rc = kstrtobool_from_user(buffer, count, &linuxExtEnabled); |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 559 | if (rc) |
| 560 | return rc; |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 561 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 562 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | } |
| 564 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 565 | static const struct file_operations cifs_linux_ext_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 566 | .open = cifs_linux_ext_proc_open, |
| 567 | .read = seq_read, |
| 568 | .llseek = seq_lseek, |
| 569 | .release = single_release, |
| 570 | .write = cifs_linux_ext_proc_write, |
| 571 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 573 | static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 575 | seq_printf(m, "%d\n", lookupCacheEnabled); |
| 576 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 578 | |
| 579 | static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file) |
| 580 | { |
| 581 | return single_open(file, cifs_lookup_cache_proc_show, NULL); |
| 582 | } |
| 583 | |
| 584 | static ssize_t cifs_lookup_cache_proc_write(struct file *file, |
| 585 | const char __user *buffer, size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | int rc; |
| 588 | |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 589 | rc = kstrtobool_from_user(buffer, count, &lookupCacheEnabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | if (rc) |
| 591 | return rc; |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | return count; |
| 594 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 595 | |
| 596 | static const struct file_operations cifs_lookup_cache_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 597 | .open = cifs_lookup_cache_proc_open, |
| 598 | .read = seq_read, |
| 599 | .llseek = seq_lseek, |
| 600 | .release = single_release, |
| 601 | .write = cifs_lookup_cache_proc_write, |
| 602 | }; |
| 603 | |
| 604 | static int traceSMB_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 606 | seq_printf(m, "%d\n", traceSMB); |
| 607 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 609 | |
| 610 | static int traceSMB_proc_open(struct inode *inode, struct file *file) |
| 611 | { |
| 612 | return single_open(file, traceSMB_proc_show, NULL); |
| 613 | } |
| 614 | |
| 615 | static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer, |
| 616 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | int rc; |
| 619 | |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 620 | rc = kstrtobool_from_user(buffer, count, &traceSMB); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | if (rc) |
| 622 | return rc; |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | return count; |
| 625 | } |
| 626 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 627 | static const struct file_operations traceSMB_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 628 | .open = traceSMB_proc_open, |
| 629 | .read = seq_read, |
| 630 | .llseek = seq_lseek, |
| 631 | .release = single_release, |
| 632 | .write = traceSMB_proc_write, |
| 633 | }; |
| 634 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 635 | static int cifs_security_flags_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | { |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 637 | seq_printf(m, "0x%x\n", global_secflags); |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 638 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 640 | |
| 641 | static int cifs_security_flags_proc_open(struct inode *inode, struct file *file) |
| 642 | { |
| 643 | return single_open(file, cifs_security_flags_proc_show, NULL); |
| 644 | } |
| 645 | |
Jeff Layton | 52dfb44 | 2013-05-26 07:01:02 -0400 | [diff] [blame] | 646 | /* |
| 647 | * Ensure that if someone sets a MUST flag, that we disable all other MAY |
| 648 | * flags except for the ones corresponding to the given MUST flag. If there are |
| 649 | * multiple MUST flags, then try to prefer more secure ones. |
| 650 | */ |
| 651 | static void |
| 652 | cifs_security_flags_handle_must_flags(unsigned int *flags) |
| 653 | { |
| 654 | unsigned int signflags = *flags & CIFSSEC_MUST_SIGN; |
| 655 | |
| 656 | if ((*flags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5) |
| 657 | *flags = CIFSSEC_MUST_KRB5; |
| 658 | else if ((*flags & CIFSSEC_MUST_NTLMSSP) == CIFSSEC_MUST_NTLMSSP) |
| 659 | *flags = CIFSSEC_MUST_NTLMSSP; |
| 660 | else if ((*flags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2) |
| 661 | *flags = CIFSSEC_MUST_NTLMV2; |
| 662 | else if ((*flags & CIFSSEC_MUST_NTLM) == CIFSSEC_MUST_NTLM) |
| 663 | *flags = CIFSSEC_MUST_NTLM; |
Niklas Cassel | 7a1ceba | 2015-01-22 14:16:34 +0100 | [diff] [blame] | 664 | else if (CIFSSEC_MUST_LANMAN && |
| 665 | (*flags & CIFSSEC_MUST_LANMAN) == CIFSSEC_MUST_LANMAN) |
Jeff Layton | 52dfb44 | 2013-05-26 07:01:02 -0400 | [diff] [blame] | 666 | *flags = CIFSSEC_MUST_LANMAN; |
Niklas Cassel | 7a1ceba | 2015-01-22 14:16:34 +0100 | [diff] [blame] | 667 | else if (CIFSSEC_MUST_PLNTXT && |
| 668 | (*flags & CIFSSEC_MUST_PLNTXT) == CIFSSEC_MUST_PLNTXT) |
Jeff Layton | 52dfb44 | 2013-05-26 07:01:02 -0400 | [diff] [blame] | 669 | *flags = CIFSSEC_MUST_PLNTXT; |
| 670 | |
| 671 | *flags |= signflags; |
| 672 | } |
| 673 | |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 674 | static ssize_t cifs_security_flags_proc_write(struct file *file, |
| 675 | const char __user *buffer, size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | { |
Jeff Layton | 7715dad | 2013-05-26 07:01:01 -0400 | [diff] [blame] | 677 | int rc; |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 678 | unsigned int flags; |
| 679 | char flags_string[12]; |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 680 | bool bv; |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 681 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 682 | if ((count < 1) || (count > 11)) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 683 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 685 | memset(flags_string, 0, 12); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 686 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 687 | if (copy_from_user(flags_string, buffer, count)) |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 688 | return -EFAULT; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 689 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 690 | if (count < 3) { |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 691 | /* single char or single char followed by null */ |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 692 | if (strtobool(flags_string, &bv) == 0) { |
Andy Shevchenko | 28e2aed | 2014-08-27 16:49:42 +0300 | [diff] [blame] | 693 | global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF; |
Steve French | a013689 | 2007-10-04 20:05:09 +0000 | [diff] [blame] | 694 | return count; |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 695 | } else if (!isdigit(flags_string[0])) { |
Jeff Layton | 7715dad | 2013-05-26 07:01:01 -0400 | [diff] [blame] | 696 | cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", |
| 697 | flags_string); |
Steve French | a013689 | 2007-10-04 20:05:09 +0000 | [diff] [blame] | 698 | return -EINVAL; |
| 699 | } |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 700 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Jeff Layton | 7715dad | 2013-05-26 07:01:01 -0400 | [diff] [blame] | 702 | /* else we have a number */ |
| 703 | rc = kstrtouint(flags_string, 0, &flags); |
| 704 | if (rc) { |
| 705 | cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", |
| 706 | flags_string); |
| 707 | return rc; |
| 708 | } |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 709 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 710 | cifs_dbg(FYI, "sec flags 0x%x\n", flags); |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 711 | |
Jeff Layton | 7715dad | 2013-05-26 07:01:01 -0400 | [diff] [blame] | 712 | if (flags == 0) { |
| 713 | cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string); |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 714 | return -EINVAL; |
| 715 | } |
| 716 | |
Steve French | 221601c | 2007-06-05 20:35:06 +0000 | [diff] [blame] | 717 | if (flags & ~CIFSSEC_MASK) { |
Jeff Layton | 7715dad | 2013-05-26 07:01:01 -0400 | [diff] [blame] | 718 | cifs_dbg(VFS, "Unsupported security flags: 0x%x\n", |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 719 | flags & ~CIFSSEC_MASK); |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 720 | return -EINVAL; |
| 721 | } |
Jeff Layton | 7715dad | 2013-05-26 07:01:01 -0400 | [diff] [blame] | 722 | |
Jeff Layton | 52dfb44 | 2013-05-26 07:01:02 -0400 | [diff] [blame] | 723 | cifs_security_flags_handle_must_flags(&flags); |
| 724 | |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 725 | /* flags look ok - update the global security flags for cifs module */ |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 726 | global_secflags = flags; |
| 727 | if (global_secflags & CIFSSEC_MUST_SIGN) { |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 728 | /* requiring signing implies signing is allowed */ |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 729 | global_secflags |= CIFSSEC_MAY_SIGN; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 730 | cifs_dbg(FYI, "packet signing now required\n"); |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 731 | } else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 732 | cifs_dbg(FYI, "packet signing disabled\n"); |
Steve French | 762e5ab | 2007-06-28 18:41:42 +0000 | [diff] [blame] | 733 | } |
| 734 | /* BB should we turn on MAY flags for other MUST options? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | return count; |
| 736 | } |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 737 | |
| 738 | static const struct file_operations cifs_security_flags_proc_fops = { |
Alexey Dobriyan | f984c7b | 2008-07-24 02:34:24 +0000 | [diff] [blame] | 739 | .open = cifs_security_flags_proc_open, |
| 740 | .read = seq_read, |
| 741 | .llseek = seq_lseek, |
| 742 | .release = single_release, |
| 743 | .write = cifs_security_flags_proc_write, |
| 744 | }; |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 745 | #else |
Steve French | e086fce | 2008-02-18 04:03:58 +0000 | [diff] [blame] | 746 | inline void cifs_proc_init(void) |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 747 | { |
| 748 | } |
| 749 | |
Steve French | e086fce | 2008-02-18 04:03:58 +0000 | [diff] [blame] | 750 | inline void cifs_proc_clean(void) |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 751 | { |
| 752 | } |
| 753 | #endif /* PROC_FS */ |