cifs_debug.c 22.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 *   fs/cifs_debug.c
 *
4
 *   Copyright (C) International Business Machines  Corp., 2000,2005
L
Linus Torvalds 已提交
5 6 7 8 9
 *
 *   Modified by Steve French (sfrench@us.ibm.com)
 *
 *   This program is free software;  you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
S
Steve French 已提交
10
 *   the Free Software Foundation; either version 2 of the License, or
L
Linus Torvalds 已提交
11
 *   (at your option) any later version.
S
Steve French 已提交
12
 *
L
Linus Torvalds 已提交
13 14 15 16 17 18
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 *   the GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
S
Steve French 已提交
19
 *   along with this program;  if not, write to the Free Software
L
Linus Torvalds 已提交
20 21 22 23 24 25 26 27 28 29 30 31
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/ctype.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <asm/uaccess.h>
#include "cifspdu.h"
#include "cifsglob.h"
#include "cifsproto.h"
#include "cifs_debug.h"
32
#include "cifsfs.h"
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41

void
cifs_dump_mem(char *label, void *data, int length)
{
	int i, j;
	int *intptr = data;
	char *charptr = data;
	char buf[10], line[80];

S
Steve French 已提交
42
	printk(KERN_DEBUG "%s: dump of %d bytes of data at 0x%p\n",
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
		label, length, data);
	for (i = 0; i < length; i += 16) {
		line[0] = 0;
		for (j = 0; (j < 4) && (i + j * 4 < length); j++) {
			sprintf(buf, " %08x", intptr[i / 4 + j]);
			strcat(line, buf);
		}
		buf[0] = ' ';
		buf[2] = 0;
		for (j = 0; (j < 16) && (i + j < length); j++) {
			buf[1] = isprint(charptr[i + j]) ? charptr[i + j] : '.';
			strcat(line, buf);
		}
		printk(KERN_DEBUG "%s\n", line);
	}
}

60
#ifdef CONFIG_CIFS_DEBUG2
S
Steve French 已提交
61
void cifs_dump_detail(struct smb_hdr *smb)
62
{
63
	cERROR(1, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d",
64
		  smb->Command, smb->Status.CifsError,
65 66
		  smb->Flags, smb->Flags2, smb->Mid, smb->Pid);
	cERROR(1, "smb buf %p len %d", smb, smbCalcSize_LE(smb));
67 68 69
}


S
Steve French 已提交
70
void cifs_dump_mids(struct TCP_Server_Info *server)
71 72
{
	struct list_head *tmp;
S
Steve French 已提交
73
	struct mid_q_entry *mid_entry;
74

S
Steve French 已提交
75
	if (server == NULL)
76 77
		return;

78
	cERROR(1, "Dump pending requests:");
79 80 81
	spin_lock(&GlobalMid_Lock);
	list_for_each(tmp, &server->pending_mid_q) {
		mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
82
		cERROR(1, "State: %d Cmd: %d Pid: %d Tsk: %p Mid %d",
83 84 85 86
			mid_entry->midState,
			(int)mid_entry->command,
			mid_entry->pid,
			mid_entry->tsk,
87
			mid_entry->mid);
88
#ifdef CONFIG_CIFS_STATS2
89
		cERROR(1, "IsLarge: %d buf: %p time rcv: %ld now: %ld",
90 91 92
			mid_entry->largeBuf,
			mid_entry->resp_buf,
			mid_entry->when_received,
93
			jiffies);
94
#endif /* STATS2 */
95 96
		cERROR(1, "IsMult: %d IsEnd: %d", mid_entry->multiRsp,
			  mid_entry->multiEnd);
97 98 99 100
		if (mid_entry->resp_buf) {
			cifs_dump_detail(mid_entry->resp_buf);
			cifs_dump_mem("existing buf: ",
				mid_entry->resp_buf, 62);
101 102 103 104 105 106
		}
	}
	spin_unlock(&GlobalMid_Lock);
}
#endif /* CONFIG_CIFS_DEBUG2 */

L
Linus Torvalds 已提交
107
#ifdef CONFIG_PROC_FS
108
static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
109
{
110
	struct list_head *tmp1, *tmp2, *tmp3;
S
Steve French 已提交
111
	struct mid_q_entry *mid_entry;
112
	struct TCP_Server_Info *server;
L
Linus Torvalds 已提交
113 114
	struct cifsSesInfo *ses;
	struct cifsTconInfo *tcon;
115 116
	int i, j;
	__u32 dev_type;
L
Linus Torvalds 已提交
117

118
	seq_puts(m,
L
Linus Torvalds 已提交
119 120
		    "Display Internal CIFS Data Structures for Debugging\n"
		    "---------------------------------------------------\n");
121
	seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
122
	seq_printf(m, "Features:");
123
#ifdef CONFIG_CIFS_DFS_UPCALL
124
	seq_printf(m, " dfs");
125 126
#endif
#ifdef CONFIG_CIFS_FSCACHE
127
	seq_printf(m, " fscache");
128 129
#endif
#ifdef CONFIG_CIFS_WEAK_PW_HASH
130
	seq_printf(m, " lanman");
131 132
#endif
#ifdef CONFIG_CIFS_POSIX
133
	seq_printf(m, " posix");
134 135
#endif
#ifdef CONFIG_CIFS_UPCALL
136
	seq_printf(m, " spnego");
137 138
#endif
#ifdef CONFIG_CIFS_XATTR
139 140 141 142
	seq_printf(m, " xattr");
#endif
#ifdef CONFIG_CIFS_ACL
	seq_printf(m, " acl");
143 144
#endif
	seq_putc(m, '\n');
145 146
	seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
	seq_printf(m, "Servers:");
L
Linus Torvalds 已提交
147 148

	i = 0;
149
	spin_lock(&cifs_tcp_ses_lock);
150 151
	list_for_each(tmp1, &cifs_tcp_ses_list) {
		server = list_entry(tmp1, struct TCP_Server_Info,
152
				    tcp_ses_list);
L
Linus Torvalds 已提交
153
		i++;
154 155 156 157 158 159
		list_for_each(tmp2, &server->smb_ses_list) {
			ses = list_entry(tmp2, struct cifsSesInfo,
					 smb_ses_list);
			if ((ses->serverDomain == NULL) ||
				(ses->serverOS == NULL) ||
				(ses->serverNOS == NULL)) {
160 161
				seq_printf(m, "\n%d) entry for %s not fully "
					   "displayed\n\t", i, ses->serverName);
162 163
			} else {
				seq_printf(m,
164 165
				    "\n%d) Name: %s  Domain: %s Uses: %d OS:"
				    " %s\n\tNOS: %s\tCapability: 0x%x\n\tSMB"
S
Steve French 已提交
166
				    " session status: %d\t",
167
				i, ses->serverName, ses->serverDomain,
168
				ses->ses_count, ses->serverOS, ses->serverNOS,
S
Steve French 已提交
169
				ses->capabilities, ses->status);
170
			}
171
			seq_printf(m, "TCP status: %d\n\tLocal Users To "
172 173 174 175
				   "Server: %d SecMode: 0x%x Req On Wire: %d",
				   server->tcpStatus, server->srv_count,
				   server->secMode,
				   atomic_read(&server->inFlight));
176 177

#ifdef CONFIG_CIFS_STATS2
178
			seq_printf(m, " In Send: %d In MaxReq Wait: %d",
179 180
				atomic_read(&server->inSend),
				atomic_read(&server->num_waiters));
181 182
#endif

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
			seq_puts(m, "\n\tShares:");
			j = 0;
			list_for_each(tmp3, &ses->tcon_list) {
				tcon = list_entry(tmp3, struct cifsTconInfo,
						  tcon_list);
				++j;
				dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
				seq_printf(m, "\n\t%d) %s Mounts: %d ", j,
					   tcon->treeName, tcon->tc_count);
				if (tcon->nativeFileSystem) {
					seq_printf(m, "Type: %s ",
						   tcon->nativeFileSystem);
				}
				seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x"
					"\nPathComponentMax: %d Status: 0x%d",
					le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
					le32_to_cpu(tcon->fsAttrInfo.Attributes),
					le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
					tcon->tidStatus);
				if (dev_type == FILE_DEVICE_DISK)
					seq_puts(m, " type: DISK ");
				else if (dev_type == FILE_DEVICE_CD_ROM)
					seq_puts(m, " type: CDROM ");
				else
					seq_printf(m, " type: %d ", dev_type);

				if (tcon->need_reconnect)
					seq_puts(m, "\tDISCONNECTED ");
				seq_putc(m, '\n');
			}

			seq_puts(m, "\n\tMIDs:\n");
L
Linus Torvalds 已提交
215 216

			spin_lock(&GlobalMid_Lock);
217
			list_for_each(tmp3, &server->pending_mid_q) {
218
				mid_entry = list_entry(tmp3, struct mid_q_entry,
L
Linus Torvalds 已提交
219
					qhead);
220
				seq_printf(m, "\tState: %d com: %d pid:"
221 222 223 224 225 226
						" %d tsk: %p mid %d\n",
						mid_entry->midState,
						(int)mid_entry->command,
						mid_entry->pid,
						mid_entry->tsk,
						mid_entry->mid);
L
Linus Torvalds 已提交
227
			}
S
Steve French 已提交
228
			spin_unlock(&GlobalMid_Lock);
L
Linus Torvalds 已提交
229 230
		}
	}
231
	spin_unlock(&cifs_tcp_ses_lock);
232
	seq_putc(m, '\n');
L
Linus Torvalds 已提交
233 234

	/* BB add code to dump additional info such as TCP session info now */
235 236
	return 0;
}
L
Linus Torvalds 已提交
237

238 239 240
static int cifs_debug_data_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_debug_data_proc_show, NULL);
L
Linus Torvalds 已提交
241 242
}

243 244 245 246 247 248 249
static const struct file_operations cifs_debug_data_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_debug_data_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};
S
Steve French 已提交
250

251 252 253
#ifdef CONFIG_CIFS_STATS
static ssize_t cifs_stats_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
S
Steve French 已提交
254
{
S
Steve French 已提交
255 256
	char c;
	int rc;
257 258 259
	struct list_head *tmp1, *tmp2, *tmp3;
	struct TCP_Server_Info *server;
	struct cifsSesInfo *ses;
S
Steve French 已提交
260 261
	struct cifsTconInfo *tcon;

S
Steve French 已提交
262 263 264
	rc = get_user(c, buffer);
	if (rc)
		return rc;
S
Steve French 已提交
265

S
Steve French 已提交
266
	if (c == '1' || c == 'y' || c == 'Y' || c == '0') {
267 268 269 270
#ifdef CONFIG_CIFS_STATS2
		atomic_set(&totBufAllocCount, 0);
		atomic_set(&totSmBufAllocCount, 0);
#endif /* CONFIG_CIFS_STATS2 */
271
		spin_lock(&cifs_tcp_ses_lock);
272 273 274
		list_for_each(tmp1, &cifs_tcp_ses_list) {
			server = list_entry(tmp1, struct TCP_Server_Info,
					    tcp_ses_list);
S
Steve French 已提交
275
			list_for_each(tmp2, &server->smb_ses_list) {
276
				ses = list_entry(tmp2, struct cifsSesInfo,
S
Steve French 已提交
277
						 smb_ses_list);
278 279 280 281 282 283 284 285 286
				list_for_each(tmp3, &ses->tcon_list) {
					tcon = list_entry(tmp3,
							  struct cifsTconInfo,
							  tcon_list);
					atomic_set(&tcon->num_smbs_sent, 0);
					atomic_set(&tcon->num_writes, 0);
					atomic_set(&tcon->num_reads, 0);
					atomic_set(&tcon->num_oplock_brks, 0);
					atomic_set(&tcon->num_opens, 0);
287 288
					atomic_set(&tcon->num_posixopens, 0);
					atomic_set(&tcon->num_posixmkdirs, 0);
289 290 291 292 293 294 295 296 297 298 299 300 301 302
					atomic_set(&tcon->num_closes, 0);
					atomic_set(&tcon->num_deletes, 0);
					atomic_set(&tcon->num_mkdirs, 0);
					atomic_set(&tcon->num_rmdirs, 0);
					atomic_set(&tcon->num_renames, 0);
					atomic_set(&tcon->num_t2renames, 0);
					atomic_set(&tcon->num_ffirst, 0);
					atomic_set(&tcon->num_fnext, 0);
					atomic_set(&tcon->num_fclose, 0);
					atomic_set(&tcon->num_hardlinks, 0);
					atomic_set(&tcon->num_symlinks, 0);
					atomic_set(&tcon->num_locks, 0);
				}
			}
S
Steve French 已提交
303
		}
304
		spin_unlock(&cifs_tcp_ses_lock);
S
Steve French 已提交
305 306
	}

S
Steve French 已提交
307
	return count;
S
Steve French 已提交
308 309
}

310
static int cifs_stats_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
311
{
312
	int i;
313 314 315
	struct list_head *tmp1, *tmp2, *tmp3;
	struct TCP_Server_Info *server;
	struct cifsSesInfo *ses;
L
Linus Torvalds 已提交
316 317
	struct cifsTconInfo *tcon;

318
	seq_printf(m,
L
Linus Torvalds 已提交
319 320
			"Resources in use\nCIFS Session: %d\n",
			sesInfoAllocCount.counter);
321
	seq_printf(m, "Share (unique mount targets): %d\n",
L
Linus Torvalds 已提交
322
			tconInfoAllocCount.counter);
323
	seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
324 325
			bufAllocCount.counter,
			cifs_min_rcv + tcpSesAllocCount.counter);
326
	seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
S
Steve French 已提交
327
			smBufAllocCount.counter, cifs_min_small);
328
#ifdef CONFIG_CIFS_STATS2
329
	seq_printf(m, "Total Large %d Small %d Allocations\n",
330
				atomic_read(&totBufAllocCount),
S
Steve French 已提交
331
				atomic_read(&totSmBufAllocCount));
332 333
#endif /* CONFIG_CIFS_STATS2 */

334
	seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&midCount));
335
	seq_printf(m,
L
Linus Torvalds 已提交
336
		"\n%d session %d share reconnects\n",
S
Steve French 已提交
337
		tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
L
Linus Torvalds 已提交
338

339
	seq_printf(m,
L
Linus Torvalds 已提交
340
		"Total vfs operations: %d maximum at one time: %d\n",
S
Steve French 已提交
341
		GlobalCurrentXid, GlobalMaxActiveXid);
L
Linus Torvalds 已提交
342 343

	i = 0;
344
	spin_lock(&cifs_tcp_ses_lock);
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	list_for_each(tmp1, &cifs_tcp_ses_list) {
		server = list_entry(tmp1, struct TCP_Server_Info,
				    tcp_ses_list);
		list_for_each(tmp2, &server->smb_ses_list) {
			ses = list_entry(tmp2, struct cifsSesInfo,
					 smb_ses_list);
			list_for_each(tmp3, &ses->tcon_list) {
				tcon = list_entry(tmp3,
						  struct cifsTconInfo,
						  tcon_list);
				i++;
				seq_printf(m, "\n%d) %s", i, tcon->treeName);
				if (tcon->need_reconnect)
					seq_puts(m, "\tDISCONNECTED ");
				seq_printf(m, "\nSMBs: %d Oplock Breaks: %d",
					atomic_read(&tcon->num_smbs_sent),
					atomic_read(&tcon->num_oplock_brks));
				seq_printf(m, "\nReads:  %d Bytes: %lld",
					atomic_read(&tcon->num_reads),
					(long long)(tcon->bytes_read));
				seq_printf(m, "\nWrites: %d Bytes: %lld",
					atomic_read(&tcon->num_writes),
					(long long)(tcon->bytes_written));
368 369
				seq_printf(m, "\nFlushes: %d",
					atomic_read(&tcon->num_flushes));
370 371 372 373 374
				seq_printf(m, "\nLocks: %d HardLinks: %d "
					      "Symlinks: %d",
					atomic_read(&tcon->num_locks),
					atomic_read(&tcon->num_hardlinks),
					atomic_read(&tcon->num_symlinks));
375
				seq_printf(m, "\nOpens: %d Closes: %d "
376 377 378 379
					      "Deletes: %d",
					atomic_read(&tcon->num_opens),
					atomic_read(&tcon->num_closes),
					atomic_read(&tcon->num_deletes));
380 381 382 383
				seq_printf(m, "\nPosix Opens: %d "
					      "Posix Mkdirs: %d",
					atomic_read(&tcon->num_posixopens),
					atomic_read(&tcon->num_posixmkdirs));
384 385 386 387 388 389 390 391 392 393 394 395 396
				seq_printf(m, "\nMkdirs: %d Rmdirs: %d",
					atomic_read(&tcon->num_mkdirs),
					atomic_read(&tcon->num_rmdirs));
				seq_printf(m, "\nRenames: %d T2 Renames %d",
					atomic_read(&tcon->num_renames),
					atomic_read(&tcon->num_t2renames));
				seq_printf(m, "\nFindFirst: %d FNext %d "
					      "FClose %d",
					atomic_read(&tcon->num_ffirst),
					atomic_read(&tcon->num_fnext),
					atomic_read(&tcon->num_fclose));
			}
		}
L
Linus Torvalds 已提交
397
	}
398
	spin_unlock(&cifs_tcp_ses_lock);
L
Linus Torvalds 已提交
399

400 401 402
	seq_putc(m, '\n');
	return 0;
}
S
Steve French 已提交
403

404 405 406
static int cifs_stats_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_stats_proc_show, NULL);
L
Linus Torvalds 已提交
407
}
408 409 410 411 412 413 414 415 416

static const struct file_operations cifs_stats_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_stats_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_stats_proc_write,
};
417
#endif /* STATS */
L
Linus Torvalds 已提交
418 419

static struct proc_dir_entry *proc_fs_cifs;
420 421 422 423 424 425 426 427
static const struct file_operations cifsFYI_proc_fops;
static const struct file_operations cifs_oplock_proc_fops;
static const struct file_operations cifs_lookup_cache_proc_fops;
static const struct file_operations traceSMB_proc_fops;
static const struct file_operations cifs_multiuser_mount_proc_fops;
static const struct file_operations cifs_security_flags_proc_fops;
static const struct file_operations cifs_experimental_proc_fops;
static const struct file_operations cifs_linux_ext_proc_fops;
L
Linus Torvalds 已提交
428 429 430 431

void
cifs_proc_init(void)
{
A
Alexey Dobriyan 已提交
432
	proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
L
Linus Torvalds 已提交
433 434 435
	if (proc_fs_cifs == NULL)
		return;

436
	proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops);
L
Linus Torvalds 已提交
437 438

#ifdef CONFIG_CIFS_STATS
439
	proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops);
440
#endif /* STATS */
441 442 443
	proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops);
	proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops);
	proc_create("OplockEnabled", 0, proc_fs_cifs, &cifs_oplock_proc_fops);
S
Steve French 已提交
444 445 446 447 448 449 450 451 452 453
	proc_create("Experimental", 0, proc_fs_cifs,
		    &cifs_experimental_proc_fops);
	proc_create("LinuxExtensionsEnabled", 0, proc_fs_cifs,
		    &cifs_linux_ext_proc_fops);
	proc_create("MultiuserMount", 0, proc_fs_cifs,
		    &cifs_multiuser_mount_proc_fops);
	proc_create("SecurityFlags", 0, proc_fs_cifs,
		    &cifs_security_flags_proc_fops);
	proc_create("LookupCacheEnabled", 0, proc_fs_cifs,
		    &cifs_lookup_cache_proc_fops);
L
Linus Torvalds 已提交
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
}

void
cifs_proc_clean(void)
{
	if (proc_fs_cifs == NULL)
		return;

	remove_proc_entry("DebugData", proc_fs_cifs);
	remove_proc_entry("cifsFYI", proc_fs_cifs);
	remove_proc_entry("traceSMB", proc_fs_cifs);
#ifdef CONFIG_CIFS_STATS
	remove_proc_entry("Stats", proc_fs_cifs);
#endif
	remove_proc_entry("MultiuserMount", proc_fs_cifs);
	remove_proc_entry("OplockEnabled", proc_fs_cifs);
S
Steve French 已提交
470 471 472 473
	remove_proc_entry("SecurityFlags", proc_fs_cifs);
	remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
	remove_proc_entry("Experimental", proc_fs_cifs);
	remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
A
Alexey Dobriyan 已提交
474
	remove_proc_entry("fs/cifs", NULL);
L
Linus Torvalds 已提交
475 476
}

477
static int cifsFYI_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
478
{
479 480 481
	seq_printf(m, "%d\n", cifsFYI);
	return 0;
}
L
Linus Torvalds 已提交
482

483 484 485
static int cifsFYI_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifsFYI_proc_show, NULL);
L
Linus Torvalds 已提交
486
}
487 488 489

static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
490 491 492 493 494 495 496 497 498 499 500
{
	char c;
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		cifsFYI = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		cifsFYI = 1;
S
Steve French 已提交
501
	else if ((c > '1') && (c <= '9'))
S
Steve French 已提交
502
		cifsFYI = (int) (c - '0'); /* see cifs_debug.h for meanings */
L
Linus Torvalds 已提交
503 504 505 506

	return count;
}

507 508 509 510 511 512 513 514
static const struct file_operations cifsFYI_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifsFYI_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifsFYI_proc_write,
};
L
Linus Torvalds 已提交
515

516 517 518 519 520
static int cifs_oplock_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", oplockEnabled);
	return 0;
}
L
Linus Torvalds 已提交
521

522 523 524
static int cifs_oplock_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_oplock_proc_show, NULL);
L
Linus Torvalds 已提交
525
}
526 527 528

static ssize_t cifs_oplock_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
{
	char c;
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		oplockEnabled = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		oplockEnabled = 1;

	return count;
}

544 545 546 547 548 549 550 551
static const struct file_operations cifs_oplock_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_oplock_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_oplock_proc_write,
};
L
Linus Torvalds 已提交
552

553 554 555 556 557
static int cifs_experimental_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", experimEnabled);
	return 0;
}
L
Linus Torvalds 已提交
558

559 560 561
static int cifs_experimental_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_experimental_proc_show, NULL);
L
Linus Torvalds 已提交
562
}
563 564 565

static ssize_t cifs_experimental_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
566
{
567 568
	char c;
	int rc;
L
Linus Torvalds 已提交
569

570 571 572 573 574 575 576 577 578
	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		experimEnabled = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		experimEnabled = 1;
	else if (c == '2')
		experimEnabled = 2;
L
Linus Torvalds 已提交
579

580
	return count;
L
Linus Torvalds 已提交
581 582
}

583 584 585 586 587 588 589 590
static const struct file_operations cifs_experimental_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_experimental_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_experimental_proc_write,
};
L
Linus Torvalds 已提交
591

592 593 594 595 596
static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", linuxExtEnabled);
	return 0;
}
L
Linus Torvalds 已提交
597

598 599 600
static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_linux_ext_proc_show, NULL);
L
Linus Torvalds 已提交
601
}
602 603 604

static ssize_t cifs_linux_ext_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
605
{
S
Steve French 已提交
606 607 608 609 610 611 612 613 614 615 616 617
	char c;
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		linuxExtEnabled = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		linuxExtEnabled = 1;

	return count;
L
Linus Torvalds 已提交
618 619
}

620 621 622 623 624 625 626 627
static const struct file_operations cifs_linux_ext_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_linux_ext_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_linux_ext_proc_write,
};
L
Linus Torvalds 已提交
628

629
static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
630
{
631 632 633
	seq_printf(m, "%d\n", lookupCacheEnabled);
	return 0;
}
L
Linus Torvalds 已提交
634

635 636 637
static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_lookup_cache_proc_show, NULL);
L
Linus Torvalds 已提交
638
}
639 640 641

static ssize_t cifs_lookup_cache_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
{
	char c;
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		lookupCacheEnabled = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		lookupCacheEnabled = 1;

	return count;
}

657 658 659 660 661 662 663 664
static const struct file_operations cifs_lookup_cache_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_lookup_cache_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_lookup_cache_proc_write,
};
L
Linus Torvalds 已提交
665

666 667 668 669 670
static int traceSMB_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", traceSMB);
	return 0;
}
L
Linus Torvalds 已提交
671

672 673 674
static int traceSMB_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, traceSMB_proc_show, NULL);
L
Linus Torvalds 已提交
675
}
676 677 678

static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
{
	char c;
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		traceSMB = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		traceSMB = 1;

	return count;
}

694 695 696 697 698 699 700 701
static const struct file_operations traceSMB_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= traceSMB_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= traceSMB_proc_write,
};
L
Linus Torvalds 已提交
702

703 704 705 706 707
static int cifs_multiuser_mount_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", multiuser_mount);
	return 0;
}
L
Linus Torvalds 已提交
708

S
Steve French 已提交
709
static int cifs_multiuser_mount_proc_open(struct inode *inode, struct file *fh)
710
{
S
Steve French 已提交
711
	return single_open(fh, cifs_multiuser_mount_proc_show, NULL);
L
Linus Torvalds 已提交
712
}
713 714 715

static ssize_t cifs_multiuser_mount_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
{
	char c;
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
	if (c == '0' || c == 'n' || c == 'N')
		multiuser_mount = 0;
	else if (c == '1' || c == 'y' || c == 'Y')
		multiuser_mount = 1;

	return count;
}

731 732 733 734 735 736 737 738
static const struct file_operations cifs_multiuser_mount_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_multiuser_mount_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_multiuser_mount_proc_write,
};
L
Linus Torvalds 已提交
739

740 741
static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
{
742
	seq_printf(m, "0x%x\n", global_secflags);
743 744
	return 0;
}
L
Linus Torvalds 已提交
745

746 747 748
static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_security_flags_proc_show, NULL);
L
Linus Torvalds 已提交
749
}
750 751 752

static ssize_t cifs_security_flags_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
753
{
754 755
	unsigned int flags;
	char flags_string[12];
L
Linus Torvalds 已提交
756
	char c;
757

S
Steve French 已提交
758
	if ((count < 1) || (count > 11))
759
		return -EINVAL;
L
Linus Torvalds 已提交
760

761
	memset(flags_string, 0, 12);
762

S
Steve French 已提交
763
	if (copy_from_user(flags_string, buffer, count))
764
		return -EFAULT;
765

S
Steve French 已提交
766
	if (count < 3) {
767 768
		/* single char or single char followed by null */
		c = flags_string[0];
769
		if (c == '0' || c == 'n' || c == 'N') {
770
			global_secflags = CIFSSEC_DEF; /* default */
771 772
			return count;
		} else if (c == '1' || c == 'y' || c == 'Y') {
773
			global_secflags = CIFSSEC_MAX;
774 775
			return count;
		} else if (!isdigit(c)) {
776
			cERROR(1, "invalid flag %c", c);
777 778
			return -EINVAL;
		}
779 780 781 782 783
	}
	/* else we have a number */

	flags = simple_strtoul(flags_string, NULL, 0);

784
	cFYI(1, "sec flags 0x%x", flags);
785

S
Steve French 已提交
786
	if (flags <= 0)  {
787
		cERROR(1, "invalid security flags %s", flags_string);
788 789
		return -EINVAL;
	}
L
Linus Torvalds 已提交
790

S
Steve French 已提交
791
	if (flags & ~CIFSSEC_MASK) {
792 793
		cERROR(1, "attempt to set unsupported security flags 0x%x",
			flags & ~CIFSSEC_MASK);
794 795 796
		return -EINVAL;
	}
	/* flags look ok - update the global security flags for cifs module */
797 798
	global_secflags = flags;
	if (global_secflags & CIFSSEC_MUST_SIGN) {
799
		/* requiring signing implies signing is allowed */
800
		global_secflags |= CIFSSEC_MAY_SIGN;
801
		cFYI(1, "packet signing now required");
802
	} else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
803
		cFYI(1, "packet signing disabled");
804 805
	}
	/* BB should we turn on MAY flags for other MUST options? */
L
Linus Torvalds 已提交
806 807
	return count;
}
808 809 810 811 812 813 814 815 816

static const struct file_operations cifs_security_flags_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= cifs_security_flags_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
	.write		= cifs_security_flags_proc_write,
};
817
#else
818
inline void cifs_proc_init(void)
819 820 821
{
}

822
inline void cifs_proc_clean(void)
823 824 825
{
}
#endif /* PROC_FS */