4 * Copyright (C) International Business Machines Corp., 2000,2003
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
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
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>
30 #include "cifsproto.h"
31 #include "cifs_debug.h"
34 cifs_dump_mem(char *label, void *data, int length)
39 char buf[10], line[80];
41 printk(KERN_DEBUG "%s: dump of %d bytes of data at 0x%p\n\n",
43 for (i = 0; i < length; i += 16) {
45 for (j = 0; (j < 4) && (i + j * 4 < length); j++) {
46 sprintf(buf, " %08x", intptr[i / 4 + j]);
51 for (j = 0; (j < 16) && (i + j < length); j++) {
52 buf[1] = isprint(charptr[i + j]) ? charptr[i + j] : '.';
55 printk(KERN_DEBUG "%s\n", line);
61 cifs_debug_data_read(char *buf, char **beginBuffer, off_t offset,
62 int count, int *eof, void *data)
64 struct list_head *tmp;
65 struct list_head *tmp1;
66 struct mid_q_entry * mid_entry;
67 struct cifsSesInfo *ses;
68 struct cifsTconInfo *tcon;
71 char * original_buf = buf;
73 *beginBuffer = buf + offset;
78 "Display Internal CIFS Data Structures for Debugging\n"
79 "---------------------------------------------------\n");
82 length = sprintf(buf, "Servers:\n");
86 read_lock(&GlobalSMBSeslock);
87 list_for_each(tmp, &GlobalSMBSessionList) {
89 ses = list_entry(tmp, struct cifsSesInfo, cifsSessionList);
92 "\n%d) Name: %s Domain: %s Mounts: %d ServerOS: %s \n\tServerNOS: %s\tCapabilities: 0x%x\n\tSMB session status: %d\t",
93 i, ses->serverName, ses->serverDomain, atomic_read(&ses->inUse),
94 ses->serverOS, ses->serverNOS, ses->capabilities,ses->status);
97 buf += sprintf(buf, "TCP status: %d\n\tLocal Users To Server: %d SecMode: 0x%x Req Active: %d",
98 ses->server->tcpStatus,
99 atomic_read(&ses->server->socketUseCount),
100 ses->server->secMode,
101 atomic_read(&ses->server->inFlight));
103 length = sprintf(buf, "\nMIDs: \n");
106 spin_lock(&GlobalMid_Lock);
107 list_for_each(tmp1, &ses->server->pending_mid_q) {
108 mid_entry = list_entry(tmp1, struct
112 length = sprintf(buf,"State: %d com: %d pid: %d tsk: %p mid %d\n",mid_entry->midState,mid_entry->command,mid_entry->pid,mid_entry->tsk,mid_entry->mid);
116 spin_unlock(&GlobalMid_Lock);
120 read_unlock(&GlobalSMBSeslock);
124 length = sprintf(buf, "\nShares:\n");
128 read_lock(&GlobalSMBSeslock);
129 list_for_each(tmp, &GlobalTreeConnectionList) {
132 tcon = list_entry(tmp, struct cifsTconInfo, cifsConnectionList);
133 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
136 "\n%d) %s Uses: %d Type: %s Characteristics: 0x%x Attributes: 0x%x\nPathComponentMax: %d Status: %d",
138 atomic_read(&tcon->useCount),
139 tcon->nativeFileSystem,
140 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
141 le32_to_cpu(tcon->fsAttrInfo.Attributes),
142 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
145 if (dev_type == FILE_DEVICE_DISK)
146 length = sprintf(buf, " type: DISK ");
147 else if (dev_type == FILE_DEVICE_CD_ROM)
148 length = sprintf(buf, " type: CDROM ");
151 sprintf(buf, " type: %d ", dev_type);
153 if(tcon->tidStatus == CifsNeedReconnect) {
154 buf += sprintf(buf, "\tDISCONNECTED ");
158 read_unlock(&GlobalSMBSeslock);
160 length = sprintf(buf, "\n");
163 /* BB add code to dump additional info such as TCP session info now */
164 /* Now calculate total size of returned data */
165 length = buf - original_buf;
167 if(offset + count >= length)
169 if(length < offset) {
173 length = length - offset;
181 #ifdef CONFIG_CIFS_STATS
183 cifs_stats_read(char *buf, char **beginBuffer, off_t offset,
184 int count, int *eof, void *data)
186 int item_length,i,length;
187 struct list_head *tmp;
188 struct cifsTconInfo *tcon;
190 *beginBuffer = buf + offset;
192 length = sprintf(buf,
193 "Resources in use\nCIFS Session: %d\n",
194 sesInfoAllocCount.counter);
197 sprintf(buf,"Share (unique mount targets): %d\n",
198 tconInfoAllocCount.counter);
199 length += item_length;
202 sprintf(buf,"SMB Request/Response Buffer: %d Pool size: %d\n",
203 bufAllocCount.counter,cifs_min_rcv + tcpSesAllocCount.counter);
204 length += item_length;
207 sprintf(buf,"SMB Small Req/Resp Buffer: %d Pool size: %d\n",
208 smBufAllocCount.counter,cifs_min_small);
209 length += item_length;
212 sprintf(buf,"Operations (MIDs): %d\n",
214 length += item_length;
216 item_length = sprintf(buf,
217 "\n%d session %d share reconnects\n",
218 tcpSesReconnectCount.counter,tconInfoReconnectCount.counter);
219 length += item_length;
222 item_length = sprintf(buf,
223 "Total vfs operations: %d maximum at one time: %d\n",
224 GlobalCurrentXid,GlobalMaxActiveXid);
225 length += item_length;
229 read_lock(&GlobalSMBSeslock);
230 list_for_each(tmp, &GlobalTreeConnectionList) {
232 tcon = list_entry(tmp, struct cifsTconInfo, cifsConnectionList);
233 item_length = sprintf(buf,"\n%d) %s",i, tcon->treeName);
235 length += item_length;
236 if(tcon->tidStatus == CifsNeedReconnect) {
237 buf += sprintf(buf, "\tDISCONNECTED ");
240 item_length = sprintf(buf,"\nSMBs: %d Oplock Breaks: %d",
241 atomic_read(&tcon->num_smbs_sent),
242 atomic_read(&tcon->num_oplock_brks));
244 length += item_length;
245 item_length = sprintf(buf,"\nReads: %d Bytes %lld",
246 atomic_read(&tcon->num_reads),
247 (long long)(tcon->bytes_read));
249 length += item_length;
250 item_length = sprintf(buf,"\nWrites: %d Bytes: %lld",
251 atomic_read(&tcon->num_writes),
252 (long long)(tcon->bytes_written));
254 length += item_length;
255 item_length = sprintf(buf,
256 "\nOpens: %d Deletes: %d\nMkdirs: %d Rmdirs: %d",
257 atomic_read(&tcon->num_opens),
258 atomic_read(&tcon->num_deletes),
259 atomic_read(&tcon->num_mkdirs),
260 atomic_read(&tcon->num_rmdirs));
262 length += item_length;
263 item_length = sprintf(buf,
264 "\nRenames: %d T2 Renames %d",
265 atomic_read(&tcon->num_renames),
266 atomic_read(&tcon->num_t2renames));
268 length += item_length;
270 read_unlock(&GlobalSMBSeslock);
272 buf += sprintf(buf,"\n");
275 if(offset + count >= length)
277 if(length < offset) {
281 length = length - offset;
290 static struct proc_dir_entry *proc_fs_cifs;
291 read_proc_t cifs_txanchor_read;
292 static read_proc_t cifsFYI_read;
293 static write_proc_t cifsFYI_write;
294 static read_proc_t oplockEnabled_read;
295 static write_proc_t oplockEnabled_write;
296 static read_proc_t lookupFlag_read;
297 static write_proc_t lookupFlag_write;
298 static read_proc_t traceSMB_read;
299 static write_proc_t traceSMB_write;
300 static read_proc_t multiuser_mount_read;
301 static write_proc_t multiuser_mount_write;
302 static read_proc_t extended_security_read;
303 static write_proc_t extended_security_write;
304 static read_proc_t ntlmv2_enabled_read;
305 static write_proc_t ntlmv2_enabled_write;
306 static read_proc_t packet_signing_enabled_read;
307 static write_proc_t packet_signing_enabled_write;
308 static read_proc_t quotaEnabled_read;
309 static write_proc_t quotaEnabled_write;
310 static read_proc_t linuxExtensionsEnabled_read;
311 static write_proc_t linuxExtensionsEnabled_write;
316 struct proc_dir_entry *pde;
318 proc_fs_cifs = proc_mkdir("cifs", proc_root_fs);
319 if (proc_fs_cifs == NULL)
322 proc_fs_cifs->owner = THIS_MODULE;
323 create_proc_read_entry("DebugData", 0, proc_fs_cifs,
324 cifs_debug_data_read, NULL);
326 #ifdef CONFIG_CIFS_STATS
327 create_proc_read_entry("Stats", 0, proc_fs_cifs,
328 cifs_stats_read, NULL);
330 pde = create_proc_read_entry("cifsFYI", 0, proc_fs_cifs,
333 pde->write_proc = cifsFYI_write;
336 create_proc_read_entry("traceSMB", 0, proc_fs_cifs,
337 traceSMB_read, NULL);
339 pde->write_proc = traceSMB_write;
341 pde = create_proc_read_entry("OplockEnabled", 0, proc_fs_cifs,
342 oplockEnabled_read, NULL);
344 pde->write_proc = oplockEnabled_write;
346 pde = create_proc_read_entry("ReenableOldCifsReaddirCode", 0, proc_fs_cifs,
347 quotaEnabled_read, NULL);
349 pde->write_proc = quotaEnabled_write;
351 pde = create_proc_read_entry("LinuxExtensionsEnabled", 0, proc_fs_cifs,
352 linuxExtensionsEnabled_read, NULL);
354 pde->write_proc = linuxExtensionsEnabled_write;
357 create_proc_read_entry("MultiuserMount", 0, proc_fs_cifs,
358 multiuser_mount_read, NULL);
360 pde->write_proc = multiuser_mount_write;
363 create_proc_read_entry("ExtendedSecurity", 0, proc_fs_cifs,
364 extended_security_read, NULL);
366 pde->write_proc = extended_security_write;
369 create_proc_read_entry("LookupCacheEnabled", 0, proc_fs_cifs,
370 lookupFlag_read, NULL);
372 pde->write_proc = lookupFlag_write;
375 create_proc_read_entry("NTLMV2Enabled", 0, proc_fs_cifs,
376 ntlmv2_enabled_read, NULL);
378 pde->write_proc = ntlmv2_enabled_write;
381 create_proc_read_entry("PacketSigningEnabled", 0, proc_fs_cifs,
382 packet_signing_enabled_read, NULL);
384 pde->write_proc = packet_signing_enabled_write;
388 cifs_proc_clean(void)
390 if (proc_fs_cifs == NULL)
393 remove_proc_entry("DebugData", proc_fs_cifs);
394 remove_proc_entry("cifsFYI", proc_fs_cifs);
395 remove_proc_entry("traceSMB", proc_fs_cifs);
396 #ifdef CONFIG_CIFS_STATS
397 remove_proc_entry("Stats", proc_fs_cifs);
399 remove_proc_entry("MultiuserMount", proc_fs_cifs);
400 remove_proc_entry("OplockEnabled", proc_fs_cifs);
401 remove_proc_entry("NTLMV2Enabled",proc_fs_cifs);
402 remove_proc_entry("ExtendedSecurity",proc_fs_cifs);
403 remove_proc_entry("PacketSigningEnabled",proc_fs_cifs);
404 remove_proc_entry("LinuxExtensionsEnabled",proc_fs_cifs);
405 remove_proc_entry("ReenableOldCifsReaddirCode",proc_fs_cifs);
406 remove_proc_entry("LookupCacheEnabled",proc_fs_cifs);
407 remove_proc_entry("cifs", proc_root_fs);
411 cifsFYI_read(char *page, char **start, off_t off, int count,
412 int *eof, void *data)
416 len = sprintf(page, "%d\n", cifsFYI);
432 cifsFYI_write(struct file *file, const char __user *buffer,
433 unsigned long count, void *data)
438 rc = get_user(c, buffer);
441 if (c == '0' || c == 'n' || c == 'N')
443 else if (c == '1' || c == 'y' || c == 'Y')
450 oplockEnabled_read(char *page, char **start, off_t off,
451 int count, int *eof, void *data)
455 len = sprintf(page, "%d\n", oplockEnabled);
471 oplockEnabled_write(struct file *file, const char __user *buffer,
472 unsigned long count, void *data)
477 rc = get_user(c, buffer);
480 if (c == '0' || c == 'n' || c == 'N')
482 else if (c == '1' || c == 'y' || c == 'Y')
489 quotaEnabled_read(char *page, char **start, off_t off,
490 int count, int *eof, void *data)
494 len = sprintf(page, "%d\n", experimEnabled);
495 /* could also check if quotas are enabled in kernel
511 quotaEnabled_write(struct file *file, const char __user *buffer,
512 unsigned long count, void *data)
517 rc = get_user(c, buffer);
520 if (c == '0' || c == 'n' || c == 'N')
522 else if (c == '1' || c == 'y' || c == 'Y')
529 linuxExtensionsEnabled_read(char *page, char **start, off_t off,
530 int count, int *eof, void *data)
534 len = sprintf(page, "%d\n", linuxExtEnabled);
535 /* could also check if quotas are enabled in kernel
551 linuxExtensionsEnabled_write(struct file *file, const char __user *buffer,
552 unsigned long count, void *data)
557 rc = get_user(c, buffer);
560 if (c == '0' || c == 'n' || c == 'N')
562 else if (c == '1' || c == 'y' || c == 'Y')
570 lookupFlag_read(char *page, char **start, off_t off,
571 int count, int *eof, void *data)
575 len = sprintf(page, "%d\n", lookupCacheEnabled);
591 lookupFlag_write(struct file *file, const char __user *buffer,
592 unsigned long count, void *data)
597 rc = get_user(c, buffer);
600 if (c == '0' || c == 'n' || c == 'N')
601 lookupCacheEnabled = 0;
602 else if (c == '1' || c == 'y' || c == 'Y')
603 lookupCacheEnabled = 1;
608 traceSMB_read(char *page, char **start, off_t off, int count,
609 int *eof, void *data)
613 len = sprintf(page, "%d\n", traceSMB);
629 traceSMB_write(struct file *file, const char __user *buffer,
630 unsigned long count, void *data)
635 rc = get_user(c, buffer);
638 if (c == '0' || c == 'n' || c == 'N')
640 else if (c == '1' || c == 'y' || c == 'Y')
647 multiuser_mount_read(char *page, char **start, off_t off,
648 int count, int *eof, void *data)
652 len = sprintf(page, "%d\n", multiuser_mount);
668 multiuser_mount_write(struct file *file, const char __user *buffer,
669 unsigned long count, void *data)
674 rc = get_user(c, buffer);
677 if (c == '0' || c == 'n' || c == 'N')
679 else if (c == '1' || c == 'y' || c == 'Y')
686 extended_security_read(char *page, char **start, off_t off,
687 int count, int *eof, void *data)
691 len = sprintf(page, "%d\n", extended_security);
707 extended_security_write(struct file *file, const char __user *buffer,
708 unsigned long count, void *data)
713 rc = get_user(c, buffer);
716 if (c == '0' || c == 'n' || c == 'N')
717 extended_security = 0;
718 else if (c == '1' || c == 'y' || c == 'Y')
719 extended_security = 1;
725 ntlmv2_enabled_read(char *page, char **start, off_t off,
726 int count, int *eof, void *data)
730 len = sprintf(page, "%d\n", ntlmv2_support);
746 ntlmv2_enabled_write(struct file *file, const char __user *buffer,
747 unsigned long count, void *data)
752 rc = get_user(c, buffer);
755 if (c == '0' || c == 'n' || c == 'N')
757 else if (c == '1' || c == 'y' || c == 'Y')
764 packet_signing_enabled_read(char *page, char **start, off_t off,
765 int count, int *eof, void *data)
769 len = sprintf(page, "%d\n", sign_CIFS_PDUs);
785 packet_signing_enabled_write(struct file *file, const char __user *buffer,
786 unsigned long count, void *data)
791 rc = get_user(c, buffer);
794 if (c == '0' || c == 'n' || c == 'N')
796 else if (c == '1' || c == 'y' || c == 'Y')