blob: 73925a77375e6d89e40e03ef17aedf5c182b8aae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs_debug.c
3 *
Steve Frenchb8643e12005-04-28 22:41:07 -07004 * Copyright (C) International Business Machines Corp., 2000,2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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 French221601c2007-06-05 20:35:06 +000010 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * (at your option) any later version.
Steve French221601c2007-06-05 20:35:06 +000012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * 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 French221601c2007-06-05 20:35:06 +000019 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * 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>
27#include <asm/uaccess.h>
28#include "cifspdu.h"
29#include "cifsglob.h"
30#include "cifsproto.h"
31#include "cifs_debug.h"
Steve French6c91d362005-04-28 22:41:06 -070032#include "cifsfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34void
35cifs_dump_mem(char *label, void *data, int length)
36{
37 int i, j;
38 int *intptr = data;
39 char *charptr = data;
40 char buf[10], line[80];
41
Steve French221601c2007-06-05 20:35:06 +000042 printk(KERN_DEBUG "%s: dump of %d bytes of data at 0x%p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 label, length, data);
44 for (i = 0; i < length; i += 16) {
45 line[0] = 0;
46 for (j = 0; (j < 4) && (i + j * 4 < length); j++) {
47 sprintf(buf, " %08x", intptr[i / 4 + j]);
48 strcat(line, buf);
49 }
50 buf[0] = ' ';
51 buf[2] = 0;
52 for (j = 0; (j < 16) && (i + j < length); j++) {
53 buf[1] = isprint(charptr[i + j]) ? charptr[i + j] : '.';
54 strcat(line, buf);
55 }
56 printk(KERN_DEBUG "%s\n", line);
57 }
58}
59
Steve French39798772006-05-31 22:40:51 +000060#ifdef CONFIG_CIFS_DEBUG2
Steve Frenchffdd6e42007-06-24 21:15:44 +000061void cifs_dump_detail(struct smb_hdr *smb)
Steve French39798772006-05-31 22:40:51 +000062{
Steve French221601c2007-06-05 20:35:06 +000063 cERROR(1, ("Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d",
Steve French39798772006-05-31 22:40:51 +000064 smb->Command, smb->Status.CifsError,
65 smb->Flags, smb->Flags2, smb->Mid, smb->Pid));
Steve French221601c2007-06-05 20:35:06 +000066 cERROR(1, ("smb buf %p len %d", smb, smbCalcSize_LE(smb)));
Steve French39798772006-05-31 22:40:51 +000067}
68
69
Steve Frenchffdd6e42007-06-24 21:15:44 +000070void cifs_dump_mids(struct TCP_Server_Info *server)
Steve French39798772006-05-31 22:40:51 +000071{
72 struct list_head *tmp;
Steve Frenchffdd6e42007-06-24 21:15:44 +000073 struct mid_q_entry *mid_entry;
Steve French39798772006-05-31 22:40:51 +000074
Steve French221601c2007-06-05 20:35:06 +000075 if (server == NULL)
Steve French39798772006-05-31 22:40:51 +000076 return;
77
Steve French221601c2007-06-05 20:35:06 +000078 cERROR(1, ("Dump pending requests:"));
Steve French39798772006-05-31 22:40:51 +000079 spin_lock(&GlobalMid_Lock);
80 list_for_each(tmp, &server->pending_mid_q) {
81 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Steve French221601c2007-06-05 20:35:06 +000082 if (mid_entry) {
83 cERROR(1, ("State: %d Cmd: %d Pid: %d Tsk: %p Mid %d",
Steve French39798772006-05-31 22:40:51 +000084 mid_entry->midState,
85 (int)mid_entry->command,
86 mid_entry->pid,
87 mid_entry->tsk,
88 mid_entry->mid));
89#ifdef CONFIG_CIFS_STATS2
Steve French221601c2007-06-05 20:35:06 +000090 cERROR(1, ("IsLarge: %d buf: %p time rcv: %ld now: %ld",
Steve French39798772006-05-31 22:40:51 +000091 mid_entry->largeBuf,
92 mid_entry->resp_buf,
93 mid_entry->when_received,
94 jiffies));
95#endif /* STATS2 */
Steve French221601c2007-06-05 20:35:06 +000096 cERROR(1, ("IsMult: %d IsEnd: %d", mid_entry->multiRsp,
Steve French39798772006-05-31 22:40:51 +000097 mid_entry->multiEnd));
Steve French221601c2007-06-05 20:35:06 +000098 if (mid_entry->resp_buf) {
Steve French39798772006-05-31 22:40:51 +000099 cifs_dump_detail(mid_entry->resp_buf);
100 cifs_dump_mem("existing buf: ",
Steve Frenchad7a2922008-02-07 23:25:02 +0000101 mid_entry->resp_buf, 62);
Steve French39798772006-05-31 22:40:51 +0000102 }
Steve French39798772006-05-31 22:40:51 +0000103 }
104 }
105 spin_unlock(&GlobalMid_Lock);
106}
107#endif /* CONFIG_CIFS_DEBUG2 */
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_PROC_FS
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000110static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct list_head *tmp;
113 struct list_head *tmp1;
Steve Frenchffdd6e42007-06-24 21:15:44 +0000114 struct mid_q_entry *mid_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct cifsSesInfo *ses;
116 struct cifsTconInfo *tcon;
117 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000119 seq_puts(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 "Display Internal CIFS Data Structures for Debugging\n"
121 "---------------------------------------------------\n");
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000122 seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
123 seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
124 seq_printf(m, "Servers:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 i = 0;
127 read_lock(&GlobalSMBSeslock);
128 list_for_each(tmp, &GlobalSMBSessionList) {
129 i++;
130 ses = list_entry(tmp, struct cifsSesInfo, cifsSessionList);
Steve French221601c2007-06-05 20:35:06 +0000131 if ((ses->serverDomain == NULL) || (ses->serverOS == NULL) ||
Steve French433dc242005-04-28 22:41:08 -0700132 (ses->serverNOS == NULL)) {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000133 seq_printf(m, "\nentry for %s not fully "
Steve Frenchbd2abf12007-01-21 23:19:01 +0000134 "displayed\n\t", ses->serverName);
Steve French433dc242005-04-28 22:41:08 -0700135 } else {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000136 seq_printf(m,
Steve French221601c2007-06-05 20:35:06 +0000137 "\n%d) Name: %s Domain: %s Mounts: %d OS:"
138 " %s \n\tNOS: %s\tCapability: 0x%x\n\tSMB"
139 " session status: %d\t",
Steve Frenchb8643e12005-04-28 22:41:07 -0700140 i, ses->serverName, ses->serverDomain,
141 atomic_read(&ses->inUse),
142 ses->serverOS, ses->serverNOS,
Steve French221601c2007-06-05 20:35:06 +0000143 ses->capabilities, ses->status);
Steve French433dc242005-04-28 22:41:08 -0700144 }
Steve French221601c2007-06-05 20:35:06 +0000145 if (ses->server) {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000146 seq_printf(m, "TCP status: %d\n\tLocal Users To "
Steve French221601c2007-06-05 20:35:06 +0000147 "Server: %d SecMode: 0x%x Req On Wire: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 ses->server->tcpStatus,
149 atomic_read(&ses->server->socketUseCount),
150 ses->server->secMode,
151 atomic_read(&ses->server->inFlight));
Steve French131afd0b2005-10-07 09:51:05 -0700152
153#ifdef CONFIG_CIFS_STATS2
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000154 seq_printf(m, " In Send: %d In MaxReq Wait: %d",
Steve French221601c2007-06-05 20:35:06 +0000155 atomic_read(&ses->server->inSend),
Steve French131afd0b2005-10-07 09:51:05 -0700156 atomic_read(&ses->server->num_waiters));
157#endif
158
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000159 seq_puts(m, "\nMIDs:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 spin_lock(&GlobalMid_Lock);
162 list_for_each(tmp1, &ses->server->pending_mid_q) {
163 mid_entry = list_entry(tmp1, struct
164 mid_q_entry,
165 qhead);
Steve French221601c2007-06-05 20:35:06 +0000166 if (mid_entry) {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000167 seq_printf(m,
Steve French221601c2007-06-05 20:35:06 +0000168 "State: %d com: %d pid:"
169 " %d tsk: %p mid %d\n",
170 mid_entry->midState,
171 (int)mid_entry->command,
172 mid_entry->pid,
173 mid_entry->tsk,
174 mid_entry->mid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176 }
Steve French221601c2007-06-05 20:35:06 +0000177 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
180 }
181 read_unlock(&GlobalSMBSeslock);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000182 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000184 seq_puts(m, "Shares:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 i = 0;
187 read_lock(&GlobalSMBSeslock);
188 list_for_each(tmp, &GlobalTreeConnectionList) {
189 __u32 dev_type;
190 i++;
191 tcon = list_entry(tmp, struct cifsTconInfo, cifsConnectionList);
192 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000193 seq_printf(m, "\n%d) %s Uses: %d ", i,
Steve French88f370a2007-09-15 03:01:17 +0000194 tcon->treeName, atomic_read(&tcon->useCount));
Steve French88f370a2007-09-15 03:01:17 +0000195 if (tcon->nativeFileSystem) {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000196 seq_printf(m, "Type: %s ",
Steve Frencha23d3062007-09-15 03:43:47 +0000197 tcon->nativeFileSystem);
Steve French88f370a2007-09-15 03:01:17 +0000198 }
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000199 seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x"
Steve French88f370a2007-09-15 03:01:17 +0000200 "\nPathComponentMax: %d Status: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
202 le32_to_cpu(tcon->fsAttrInfo.Attributes),
203 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
204 tcon->tidStatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (dev_type == FILE_DEVICE_DISK)
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000206 seq_puts(m, " type: DISK ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 else if (dev_type == FILE_DEVICE_CD_ROM)
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000208 seq_puts(m, " type: CDROM ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 else
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000210 seq_printf(m, " type: %d ", dev_type);
Steve French221601c2007-06-05 20:35:06 +0000211 if (tcon->tidStatus == CifsNeedReconnect) {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000212 seq_puts(m, "\tDISCONNECTED ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214 }
215 read_unlock(&GlobalSMBSeslock);
216
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000217 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 /* BB add code to dump additional info such as TCP session info now */
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000223static int cifs_debug_data_proc_open(struct inode *inode, struct file *file)
224{
225 return single_open(file, cifs_debug_data_proc_show, NULL);
226}
Steve French1047abc2005-10-11 19:58:06 -0700227
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000228static const struct file_operations cifs_debug_data_proc_fops = {
229 .owner = THIS_MODULE,
230 .open = cifs_debug_data_proc_open,
231 .read = seq_read,
232 .llseek = seq_lseek,
233 .release = single_release,
234};
235
236#ifdef CONFIG_CIFS_STATS
237static ssize_t cifs_stats_proc_write(struct file *file,
238 const char __user *buffer, size_t count, loff_t *ppos)
Steve French1047abc2005-10-11 19:58:06 -0700239{
Steve French221601c2007-06-05 20:35:06 +0000240 char c;
241 int rc;
Steve French1047abc2005-10-11 19:58:06 -0700242 struct list_head *tmp;
243 struct cifsTconInfo *tcon;
244
Steve French221601c2007-06-05 20:35:06 +0000245 rc = get_user(c, buffer);
246 if (rc)
247 return rc;
Steve French1047abc2005-10-11 19:58:06 -0700248
Steve French221601c2007-06-05 20:35:06 +0000249 if (c == '1' || c == 'y' || c == 'Y' || c == '0') {
Steve French1047abc2005-10-11 19:58:06 -0700250 read_lock(&GlobalSMBSeslock);
Steve French4498eed52005-12-03 13:58:57 -0800251#ifdef CONFIG_CIFS_STATS2
252 atomic_set(&totBufAllocCount, 0);
253 atomic_set(&totSmBufAllocCount, 0);
254#endif /* CONFIG_CIFS_STATS2 */
Steve French1047abc2005-10-11 19:58:06 -0700255 list_for_each(tmp, &GlobalTreeConnectionList) {
256 tcon = list_entry(tmp, struct cifsTconInfo,
257 cifsConnectionList);
258 atomic_set(&tcon->num_smbs_sent, 0);
259 atomic_set(&tcon->num_writes, 0);
260 atomic_set(&tcon->num_reads, 0);
261 atomic_set(&tcon->num_oplock_brks, 0);
262 atomic_set(&tcon->num_opens, 0);
263 atomic_set(&tcon->num_closes, 0);
264 atomic_set(&tcon->num_deletes, 0);
265 atomic_set(&tcon->num_mkdirs, 0);
266 atomic_set(&tcon->num_rmdirs, 0);
267 atomic_set(&tcon->num_renames, 0);
268 atomic_set(&tcon->num_t2renames, 0);
269 atomic_set(&tcon->num_ffirst, 0);
270 atomic_set(&tcon->num_fnext, 0);
271 atomic_set(&tcon->num_fclose, 0);
272 atomic_set(&tcon->num_hardlinks, 0);
273 atomic_set(&tcon->num_symlinks, 0);
274 atomic_set(&tcon->num_locks, 0);
275 }
276 read_unlock(&GlobalSMBSeslock);
277 }
278
Steve French221601c2007-06-05 20:35:06 +0000279 return count;
Steve French1047abc2005-10-11 19:58:06 -0700280}
281
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000282static int cifs_stats_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000284 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct list_head *tmp;
286 struct cifsTconInfo *tcon;
287
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000288 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 "Resources in use\nCIFS Session: %d\n",
290 sesInfoAllocCount.counter);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000291 seq_printf(m, "Share (unique mount targets): %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 tconInfoAllocCount.counter);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000293 seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
Steve Frenchb8643e12005-04-28 22:41:07 -0700294 bufAllocCount.counter,
295 cifs_min_rcv + tcpSesAllocCount.counter);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000296 seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
Steve French221601c2007-06-05 20:35:06 +0000297 smBufAllocCount.counter, cifs_min_small);
Steve French07475ff2005-12-03 14:11:37 -0800298#ifdef CONFIG_CIFS_STATS2
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000299 seq_printf(m, "Total Large %d Small %d Allocations\n",
Steve French07475ff2005-12-03 14:11:37 -0800300 atomic_read(&totBufAllocCount),
Steve French221601c2007-06-05 20:35:06 +0000301 atomic_read(&totSmBufAllocCount));
Steve French07475ff2005-12-03 14:11:37 -0800302#endif /* CONFIG_CIFS_STATS2 */
303
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000304 seq_printf(m, "Operations (MIDs): %d\n", midCount.counter);
305 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 "\n%d session %d share reconnects\n",
Steve French221601c2007-06-05 20:35:06 +0000307 tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000309 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 "Total vfs operations: %d maximum at one time: %d\n",
Steve French221601c2007-06-05 20:35:06 +0000311 GlobalCurrentXid, GlobalMaxActiveXid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 i = 0;
314 read_lock(&GlobalSMBSeslock);
315 list_for_each(tmp, &GlobalTreeConnectionList) {
316 i++;
317 tcon = list_entry(tmp, struct cifsTconInfo, cifsConnectionList);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000318 seq_printf(m, "\n%d) %s", i, tcon->treeName);
319 if (tcon->tidStatus == CifsNeedReconnect)
320 seq_puts(m, "\tDISCONNECTED ");
321 seq_printf(m, "\nSMBs: %d Oplock Breaks: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 atomic_read(&tcon->num_smbs_sent),
323 atomic_read(&tcon->num_oplock_brks));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000324 seq_printf(m, "\nReads: %d Bytes: %lld",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 atomic_read(&tcon->num_reads),
326 (long long)(tcon->bytes_read));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000327 seq_printf(m, "\nWrites: %d Bytes: %lld",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 atomic_read(&tcon->num_writes),
329 (long long)(tcon->bytes_written));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000330 seq_printf(m,
Steve Frencha5a2b482005-08-20 21:42:53 -0700331 "\nLocks: %d HardLinks: %d Symlinks: %d",
Steve French221601c2007-06-05 20:35:06 +0000332 atomic_read(&tcon->num_locks),
Steve Frencha5a2b482005-08-20 21:42:53 -0700333 atomic_read(&tcon->num_hardlinks),
334 atomic_read(&tcon->num_symlinks));
Steve Frencha5a2b482005-08-20 21:42:53 -0700335
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000336 seq_printf(m, "\nOpens: %d Closes: %d Deletes: %d",
Steve Frencha5a2b482005-08-20 21:42:53 -0700337 atomic_read(&tcon->num_opens),
338 atomic_read(&tcon->num_closes),
339 atomic_read(&tcon->num_deletes));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000340 seq_printf(m, "\nMkdirs: %d Rmdirs: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 atomic_read(&tcon->num_mkdirs),
342 atomic_read(&tcon->num_rmdirs));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000343 seq_printf(m, "\nRenames: %d T2 Renames %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 atomic_read(&tcon->num_renames),
345 atomic_read(&tcon->num_t2renames));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000346 seq_printf(m, "\nFindFirst: %d FNext %d FClose %d",
Steve French0c0ff092005-06-23 19:31:17 -0500347 atomic_read(&tcon->num_ffirst),
348 atomic_read(&tcon->num_fnext),
349 atomic_read(&tcon->num_fclose));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 read_unlock(&GlobalSMBSeslock);
352
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000353 seq_putc(m, '\n');
354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000356
357static int cifs_stats_proc_open(struct inode *inode, struct file *file)
358{
359 return single_open(file, cifs_stats_proc_show, NULL);
360}
361
362static const struct file_operations cifs_stats_proc_fops = {
363 .owner = THIS_MODULE,
364 .open = cifs_stats_proc_open,
365 .read = seq_read,
366 .llseek = seq_lseek,
367 .release = single_release,
368 .write = cifs_stats_proc_write,
369};
Steve French90c81e02008-02-12 20:32:36 +0000370#endif /* STATS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372static struct proc_dir_entry *proc_fs_cifs;
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000373static const struct file_operations cifsFYI_proc_fops;
374static const struct file_operations cifs_oplock_proc_fops;
375static const struct file_operations cifs_lookup_cache_proc_fops;
376static const struct file_operations traceSMB_proc_fops;
377static const struct file_operations cifs_multiuser_mount_proc_fops;
378static const struct file_operations cifs_security_flags_proc_fops;
379static const struct file_operations cifs_experimental_proc_fops;
380static const struct file_operations cifs_linux_ext_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382void
383cifs_proc_init(void)
384{
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -0700385 proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (proc_fs_cifs == NULL)
387 return;
388
389 proc_fs_cifs->owner = THIS_MODULE;
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000390 proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392#ifdef CONFIG_CIFS_STATS
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000393 proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops);
Steve French90c81e02008-02-12 20:32:36 +0000394#endif /* STATS */
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000395 proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops);
396 proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops);
397 proc_create("OplockEnabled", 0, proc_fs_cifs, &cifs_oplock_proc_fops);
398 proc_create("Experimental", 0, proc_fs_cifs, &cifs_experimental_proc_fops);
399 proc_create("LinuxExtensionsEnabled", 0, proc_fs_cifs, &cifs_linux_ext_proc_fops);
400 proc_create("MultiuserMount", 0, proc_fs_cifs, &cifs_multiuser_mount_proc_fops);
401 proc_create("SecurityFlags", 0, proc_fs_cifs, &cifs_security_flags_proc_fops);
402 proc_create("LookupCacheEnabled", 0, proc_fs_cifs, &cifs_lookup_cache_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405void
406cifs_proc_clean(void)
407{
408 if (proc_fs_cifs == NULL)
409 return;
410
411 remove_proc_entry("DebugData", proc_fs_cifs);
412 remove_proc_entry("cifsFYI", proc_fs_cifs);
413 remove_proc_entry("traceSMB", proc_fs_cifs);
414#ifdef CONFIG_CIFS_STATS
415 remove_proc_entry("Stats", proc_fs_cifs);
416#endif
417 remove_proc_entry("MultiuserMount", proc_fs_cifs);
418 remove_proc_entry("OplockEnabled", proc_fs_cifs);
Steve French221601c2007-06-05 20:35:06 +0000419 remove_proc_entry("SecurityFlags", proc_fs_cifs);
Steve French221601c2007-06-05 20:35:06 +0000420 remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
421 remove_proc_entry("Experimental", proc_fs_cifs);
422 remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -0700423 remove_proc_entry("fs/cifs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000426static int cifsFYI_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000428 seq_printf(m, "%d\n", cifsFYI);
429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000431
432static int cifsFYI_proc_open(struct inode *inode, struct file *file)
433{
434 return single_open(file, cifsFYI_proc_show, NULL);
435}
436
437static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
438 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 char c;
441 int rc;
442
443 rc = get_user(c, buffer);
444 if (rc)
445 return rc;
446 if (c == '0' || c == 'n' || c == 'N')
447 cifsFYI = 0;
448 else if (c == '1' || c == 'y' || c == 'Y')
449 cifsFYI = 1;
Steve French221601c2007-06-05 20:35:06 +0000450 else if ((c > '1') && (c <= '9'))
Steve French1047abc2005-10-11 19:58:06 -0700451 cifsFYI = (int) (c - '0'); /* see cifs_debug.h for meanings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 return count;
454}
455
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000456static const struct file_operations cifsFYI_proc_fops = {
457 .owner = THIS_MODULE,
458 .open = cifsFYI_proc_open,
459 .read = seq_read,
460 .llseek = seq_lseek,
461 .release = single_release,
462 .write = cifsFYI_proc_write,
463};
464
465static int cifs_oplock_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000467 seq_printf(m, "%d\n", oplockEnabled);
468 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000470
471static int cifs_oplock_proc_open(struct inode *inode, struct file *file)
472{
473 return single_open(file, cifs_oplock_proc_show, NULL);
474}
475
476static ssize_t cifs_oplock_proc_write(struct file *file,
477 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 char c;
480 int rc;
481
482 rc = get_user(c, buffer);
483 if (rc)
484 return rc;
485 if (c == '0' || c == 'n' || c == 'N')
486 oplockEnabled = 0;
487 else if (c == '1' || c == 'y' || c == 'Y')
488 oplockEnabled = 1;
489
490 return count;
491}
492
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000493static const struct file_operations cifs_oplock_proc_fops = {
494 .owner = THIS_MODULE,
495 .open = cifs_oplock_proc_open,
496 .read = seq_read,
497 .llseek = seq_lseek,
498 .release = single_release,
499 .write = cifs_oplock_proc_write,
500};
501
502static int cifs_experimental_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000504 seq_printf(m, "%d\n", experimEnabled);
505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000507
508static int cifs_experimental_proc_open(struct inode *inode, struct file *file)
509{
510 return single_open(file, cifs_experimental_proc_show, NULL);
511}
512
513static ssize_t cifs_experimental_proc_write(struct file *file,
514 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Steve Frenchec637e32005-12-12 20:53:18 -0800516 char c;
517 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Steve Frenchec637e32005-12-12 20:53:18 -0800519 rc = get_user(c, buffer);
520 if (rc)
521 return rc;
522 if (c == '0' || c == 'n' || c == 'N')
523 experimEnabled = 0;
524 else if (c == '1' || c == 'y' || c == 'Y')
525 experimEnabled = 1;
526 else if (c == '2')
527 experimEnabled = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Steve Frenchec637e32005-12-12 20:53:18 -0800529 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000532static const struct file_operations cifs_experimental_proc_fops = {
533 .owner = THIS_MODULE,
534 .open = cifs_experimental_proc_open,
535 .read = seq_read,
536 .llseek = seq_lseek,
537 .release = single_release,
538 .write = cifs_experimental_proc_write,
539};
540
541static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000543 seq_printf(m, "%d\n", linuxExtEnabled);
544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000546
547static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
548{
549 return single_open(file, cifs_linux_ext_proc_show, NULL);
550}
551
552static ssize_t cifs_linux_ext_proc_write(struct file *file,
553 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Steve French221601c2007-06-05 20:35:06 +0000555 char c;
556 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Steve French221601c2007-06-05 20:35:06 +0000558 rc = get_user(c, buffer);
559 if (rc)
560 return rc;
561 if (c == '0' || c == 'n' || c == 'N')
562 linuxExtEnabled = 0;
563 else if (c == '1' || c == 'y' || c == 'Y')
564 linuxExtEnabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Steve French221601c2007-06-05 20:35:06 +0000566 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000569static const struct file_operations cifs_linux_ext_proc_fops = {
570 .owner = THIS_MODULE,
571 .open = cifs_linux_ext_proc_open,
572 .read = seq_read,
573 .llseek = seq_lseek,
574 .release = single_release,
575 .write = cifs_linux_ext_proc_write,
576};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000578static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000580 seq_printf(m, "%d\n", lookupCacheEnabled);
581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000583
584static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
585{
586 return single_open(file, cifs_lookup_cache_proc_show, NULL);
587}
588
589static ssize_t cifs_lookup_cache_proc_write(struct file *file,
590 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 char c;
593 int rc;
594
595 rc = get_user(c, buffer);
596 if (rc)
597 return rc;
598 if (c == '0' || c == 'n' || c == 'N')
599 lookupCacheEnabled = 0;
600 else if (c == '1' || c == 'y' || c == 'Y')
601 lookupCacheEnabled = 1;
602
603 return count;
604}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000605
606static const struct file_operations cifs_lookup_cache_proc_fops = {
607 .owner = THIS_MODULE,
608 .open = cifs_lookup_cache_proc_open,
609 .read = seq_read,
610 .llseek = seq_lseek,
611 .release = single_release,
612 .write = cifs_lookup_cache_proc_write,
613};
614
615static int traceSMB_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000617 seq_printf(m, "%d\n", traceSMB);
618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000620
621static int traceSMB_proc_open(struct inode *inode, struct file *file)
622{
623 return single_open(file, traceSMB_proc_show, NULL);
624}
625
626static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
627 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 char c;
630 int rc;
631
632 rc = get_user(c, buffer);
633 if (rc)
634 return rc;
635 if (c == '0' || c == 'n' || c == 'N')
636 traceSMB = 0;
637 else if (c == '1' || c == 'y' || c == 'Y')
638 traceSMB = 1;
639
640 return count;
641}
642
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000643static const struct file_operations traceSMB_proc_fops = {
644 .owner = THIS_MODULE,
645 .open = traceSMB_proc_open,
646 .read = seq_read,
647 .llseek = seq_lseek,
648 .release = single_release,
649 .write = traceSMB_proc_write,
650};
651
652static int cifs_multiuser_mount_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000654 seq_printf(m, "%d\n", multiuser_mount);
655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000657
658static int cifs_multiuser_mount_proc_open(struct inode *inode, struct file *file)
659{
660 return single_open(file, cifs_multiuser_mount_proc_show, NULL);
661}
662
663static ssize_t cifs_multiuser_mount_proc_write(struct file *file,
664 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 char c;
667 int rc;
668
669 rc = get_user(c, buffer);
670 if (rc)
671 return rc;
672 if (c == '0' || c == 'n' || c == 'N')
673 multiuser_mount = 0;
674 else if (c == '1' || c == 'y' || c == 'Y')
675 multiuser_mount = 1;
676
677 return count;
678}
679
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000680static const struct file_operations cifs_multiuser_mount_proc_fops = {
681 .owner = THIS_MODULE,
682 .open = cifs_multiuser_mount_proc_open,
683 .read = seq_read,
684 .llseek = seq_lseek,
685 .release = single_release,
686 .write = cifs_multiuser_mount_proc_write,
687};
688
689static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000691 seq_printf(m, "0x%x\n", extended_security);
692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000694
695static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
696{
697 return single_open(file, cifs_security_flags_proc_show, NULL);
698}
699
700static ssize_t cifs_security_flags_proc_write(struct file *file,
701 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000703 unsigned int flags;
704 char flags_string[12];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 char c;
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000706
Steve French221601c2007-06-05 20:35:06 +0000707 if ((count < 1) || (count > 11))
Steve French39798772006-05-31 22:40:51 +0000708 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000710 memset(flags_string, 0, 12);
Steve French39798772006-05-31 22:40:51 +0000711
Steve French221601c2007-06-05 20:35:06 +0000712 if (copy_from_user(flags_string, buffer, count))
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000713 return -EFAULT;
Steve French39798772006-05-31 22:40:51 +0000714
Steve French221601c2007-06-05 20:35:06 +0000715 if (count < 3) {
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000716 /* single char or single char followed by null */
717 c = flags_string[0];
Steve Frencha0136892007-10-04 20:05:09 +0000718 if (c == '0' || c == 'n' || c == 'N') {
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000719 extended_security = CIFSSEC_DEF; /* default */
Steve Frencha0136892007-10-04 20:05:09 +0000720 return count;
721 } else if (c == '1' || c == 'y' || c == 'Y') {
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000722 extended_security = CIFSSEC_MAX;
Steve Frencha0136892007-10-04 20:05:09 +0000723 return count;
724 } else if (!isdigit(c)) {
725 cERROR(1, ("invalid flag %c", c));
726 return -EINVAL;
727 }
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000728 }
729 /* else we have a number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000731 flags = simple_strtoul(flags_string, NULL, 0);
732
Steve French221601c2007-06-05 20:35:06 +0000733 cFYI(1, ("sec flags 0x%x", flags));
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000734
Steve French221601c2007-06-05 20:35:06 +0000735 if (flags <= 0) {
736 cERROR(1, ("invalid security flags %s", flags_string));
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000737 return -EINVAL;
738 }
739
Steve French221601c2007-06-05 20:35:06 +0000740 if (flags & ~CIFSSEC_MASK) {
741 cERROR(1, ("attempt to set unsupported security flags 0x%x",
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000742 flags & ~CIFSSEC_MASK));
743 return -EINVAL;
744 }
745 /* flags look ok - update the global security flags for cifs module */
746 extended_security = flags;
Steve French762e5ab2007-06-28 18:41:42 +0000747 if (extended_security & CIFSSEC_MUST_SIGN) {
748 /* requiring signing implies signing is allowed */
749 extended_security |= CIFSSEC_MAY_SIGN;
750 cFYI(1, ("packet signing now required"));
751 } else if ((extended_security & CIFSSEC_MAY_SIGN) == 0) {
752 cFYI(1, ("packet signing disabled"));
753 }
754 /* BB should we turn on MAY flags for other MUST options? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return count;
756}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000757
758static const struct file_operations cifs_security_flags_proc_fops = {
759 .owner = THIS_MODULE,
760 .open = cifs_security_flags_proc_open,
761 .read = seq_read,
762 .llseek = seq_lseek,
763 .release = single_release,
764 .write = cifs_security_flags_proc_write,
765};
Steve French90c81e02008-02-12 20:32:36 +0000766#else
Steve Frenche086fce2008-02-18 04:03:58 +0000767inline void cifs_proc_init(void)
Steve French90c81e02008-02-12 20:32:36 +0000768{
769}
770
Steve Frenche086fce2008-02-18 04:03:58 +0000771inline void cifs_proc_clean(void)
Steve French90c81e02008-02-12 20:32:36 +0000772{
773}
774#endif /* PROC_FS */