cifs_debug.c 17.2 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
void cifs_dump_detail(void *buf)
61
{
62
#ifdef CONFIG_CIFS_DEBUG2
63 64
	struct smb_hdr *smb = (struct smb_hdr *)buf;

65
	cERROR(1, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d",
66
		  smb->Command, smb->Status.CifsError,
67
		  smb->Flags, smb->Flags2, smb->Mid, smb->Pid);
68
	cERROR(1, "smb buf %p len %u", smb, smbCalcSize(smb));
69
#endif /* CONFIG_CIFS_DEBUG2 */
70 71
}

S
Steve French 已提交
72
void cifs_dump_mids(struct TCP_Server_Info *server)
73
{
74
#ifdef CONFIG_CIFS_DEBUG2
75
	struct list_head *tmp;
S
Steve French 已提交
76
	struct mid_q_entry *mid_entry;
77

S
Steve French 已提交
78
	if (server == NULL)
79 80
		return;

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

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

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

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

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

185 186 187
			seq_puts(m, "\n\tShares:");
			j = 0;
			list_for_each(tmp3, &ses->tcon_list) {
188
				tcon = list_entry(tmp3, struct cifs_tcon,
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 215 216
						  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 已提交
217 218

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

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

240 241 242
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 已提交
243 244
}

245 246 247 248 249 250 251
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 已提交
252

253 254 255
#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 已提交
256
{
S
Steve French 已提交
257 258
	char c;
	int rc;
259 260
	struct list_head *tmp1, *tmp2, *tmp3;
	struct TCP_Server_Info *server;
261 262
	struct cifs_ses *ses;
	struct cifs_tcon *tcon;
S
Steve French 已提交
263

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

S
Steve French 已提交
268
	if (c == '1' || c == 'y' || c == 'Y' || c == '0') {
269 270 271 272
#ifdef CONFIG_CIFS_STATS2
		atomic_set(&totBufAllocCount, 0);
		atomic_set(&totSmBufAllocCount, 0);
#endif /* CONFIG_CIFS_STATS2 */
273
		spin_lock(&cifs_tcp_ses_lock);
274 275 276
		list_for_each(tmp1, &cifs_tcp_ses_list) {
			server = list_entry(tmp1, struct TCP_Server_Info,
					    tcp_ses_list);
S
Steve French 已提交
277
			list_for_each(tmp2, &server->smb_ses_list) {
278
				ses = list_entry(tmp2, struct cifs_ses,
S
Steve French 已提交
279
						 smb_ses_list);
280 281
				list_for_each(tmp3, &ses->tcon_list) {
					tcon = list_entry(tmp3,
282
							  struct cifs_tcon,
283 284
							  tcon_list);
					atomic_set(&tcon->num_smbs_sent, 0);
285 286
					if (server->ops->clear_stats)
						server->ops->clear_stats(tcon);
287 288
				}
			}
S
Steve French 已提交
289
		}
290
		spin_unlock(&cifs_tcp_ses_lock);
S
Steve French 已提交
291 292
	}

S
Steve French 已提交
293
	return count;
S
Steve French 已提交
294 295
}

296
static int cifs_stats_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
297
{
298
	int i;
299 300
	struct list_head *tmp1, *tmp2, *tmp3;
	struct TCP_Server_Info *server;
301 302
	struct cifs_ses *ses;
	struct cifs_tcon *tcon;
L
Linus Torvalds 已提交
303

304
	seq_printf(m,
L
Linus Torvalds 已提交
305 306
			"Resources in use\nCIFS Session: %d\n",
			sesInfoAllocCount.counter);
307
	seq_printf(m, "Share (unique mount targets): %d\n",
L
Linus Torvalds 已提交
308
			tconInfoAllocCount.counter);
309
	seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
310 311
			bufAllocCount.counter,
			cifs_min_rcv + tcpSesAllocCount.counter);
312
	seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
S
Steve French 已提交
313
			smBufAllocCount.counter, cifs_min_small);
314
#ifdef CONFIG_CIFS_STATS2
315
	seq_printf(m, "Total Large %d Small %d Allocations\n",
316
				atomic_read(&totBufAllocCount),
S
Steve French 已提交
317
				atomic_read(&totSmBufAllocCount));
318 319
#endif /* CONFIG_CIFS_STATS2 */

320
	seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&midCount));
321
	seq_printf(m,
L
Linus Torvalds 已提交
322
		"\n%d session %d share reconnects\n",
S
Steve French 已提交
323
		tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
L
Linus Torvalds 已提交
324

325
	seq_printf(m,
L
Linus Torvalds 已提交
326
		"Total vfs operations: %d maximum at one time: %d\n",
S
Steve French 已提交
327
		GlobalCurrentXid, GlobalMaxActiveXid);
L
Linus Torvalds 已提交
328 329

	i = 0;
330
	spin_lock(&cifs_tcp_ses_lock);
331 332 333 334
	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) {
335
			ses = list_entry(tmp2, struct cifs_ses,
336 337 338
					 smb_ses_list);
			list_for_each(tmp3, &ses->tcon_list) {
				tcon = list_entry(tmp3,
339
						  struct cifs_tcon,
340 341 342 343 344
						  tcon_list);
				i++;
				seq_printf(m, "\n%d) %s", i, tcon->treeName);
				if (tcon->need_reconnect)
					seq_puts(m, "\tDISCONNECTED ");
345 346 347 348
				seq_printf(m, "\nSMBs: %d",
					   atomic_read(&tcon->num_smbs_sent));
				if (server->ops->print_stats)
					server->ops->print_stats(m, tcon);
349 350
			}
		}
L
Linus Torvalds 已提交
351
	}
352
	spin_unlock(&cifs_tcp_ses_lock);
L
Linus Torvalds 已提交
353

354 355 356
	seq_putc(m, '\n');
	return 0;
}
S
Steve French 已提交
357

358 359 360
static int cifs_stats_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_stats_proc_show, NULL);
L
Linus Torvalds 已提交
361
}
362 363 364 365 366 367 368 369 370

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,
};
371
#endif /* STATS */
L
Linus Torvalds 已提交
372 373

static struct proc_dir_entry *proc_fs_cifs;
374 375 376 377 378
static const struct file_operations cifsFYI_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_security_flags_proc_fops;
static const struct file_operations cifs_linux_ext_proc_fops;
L
Linus Torvalds 已提交
379 380 381 382

void
cifs_proc_init(void)
{
A
Alexey Dobriyan 已提交
383
	proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
L
Linus Torvalds 已提交
384 385 386
	if (proc_fs_cifs == NULL)
		return;

387
	proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops);
L
Linus Torvalds 已提交
388 389

#ifdef CONFIG_CIFS_STATS
390
	proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops);
391
#endif /* STATS */
392 393
	proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops);
	proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops);
S
Steve French 已提交
394 395 396 397 398 399
	proc_create("LinuxExtensionsEnabled", 0, proc_fs_cifs,
		    &cifs_linux_ext_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 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413
}

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
S
Steve French 已提交
414 415 416
	remove_proc_entry("SecurityFlags", proc_fs_cifs);
	remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
	remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
A
Alexey Dobriyan 已提交
417
	remove_proc_entry("fs/cifs", NULL);
L
Linus Torvalds 已提交
418 419
}

420
static int cifsFYI_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
421
{
422 423 424
	seq_printf(m, "%d\n", cifsFYI);
	return 0;
}
L
Linus Torvalds 已提交
425

426 427 428
static int cifsFYI_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifsFYI_proc_show, NULL);
L
Linus Torvalds 已提交
429
}
430 431 432

static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
433 434 435 436 437 438 439 440 441 442 443
{
	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 已提交
444
	else if ((c > '1') && (c <= '9'))
S
Steve French 已提交
445
		cifsFYI = (int) (c - '0'); /* see cifs_debug.h for meanings */
L
Linus Torvalds 已提交
446 447 448 449

	return count;
}

450 451 452 453 454 455 456 457
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 已提交
458

459 460 461 462 463
static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", linuxExtEnabled);
	return 0;
}
L
Linus Torvalds 已提交
464

465 466 467
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 已提交
468
}
469 470 471

static ssize_t cifs_linux_ext_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
472
{
S
Steve French 已提交
473 474 475 476 477 478 479 480 481 482 483 484
	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 已提交
485 486
}

487 488 489 490 491 492 493 494
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 已提交
495

496
static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
497
{
498 499 500
	seq_printf(m, "%d\n", lookupCacheEnabled);
	return 0;
}
L
Linus Torvalds 已提交
501

502 503 504
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 已提交
505
}
506 507 508

static ssize_t cifs_lookup_cache_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
{
	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;
}

524 525 526 527 528 529 530 531
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 已提交
532

533 534 535 536 537
static int traceSMB_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", traceSMB);
	return 0;
}
L
Linus Torvalds 已提交
538

539 540 541
static int traceSMB_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, traceSMB_proc_show, NULL);
L
Linus Torvalds 已提交
542
}
543 544 545

static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
{
	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;
}

561 562 563 564 565 566 567 568
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 已提交
569

570 571
static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
{
572
	seq_printf(m, "0x%x\n", global_secflags);
573 574
	return 0;
}
L
Linus Torvalds 已提交
575

576 577 578
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 已提交
579
}
580 581 582

static ssize_t cifs_security_flags_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
583
{
584 585
	unsigned int flags;
	char flags_string[12];
L
Linus Torvalds 已提交
586
	char c;
587

S
Steve French 已提交
588
	if ((count < 1) || (count > 11))
589
		return -EINVAL;
L
Linus Torvalds 已提交
590

591
	memset(flags_string, 0, 12);
592

S
Steve French 已提交
593
	if (copy_from_user(flags_string, buffer, count))
594
		return -EFAULT;
595

S
Steve French 已提交
596
	if (count < 3) {
597 598
		/* single char or single char followed by null */
		c = flags_string[0];
599
		if (c == '0' || c == 'n' || c == 'N') {
600
			global_secflags = CIFSSEC_DEF; /* default */
601 602
			return count;
		} else if (c == '1' || c == 'y' || c == 'Y') {
603
			global_secflags = CIFSSEC_MAX;
604 605
			return count;
		} else if (!isdigit(c)) {
606
			cERROR(1, "invalid flag %c", c);
607 608
			return -EINVAL;
		}
609 610 611 612 613
	}
	/* else we have a number */

	flags = simple_strtoul(flags_string, NULL, 0);

614
	cFYI(1, "sec flags 0x%x", flags);
615

S
Steve French 已提交
616
	if (flags <= 0)  {
617
		cERROR(1, "invalid security flags %s", flags_string);
618 619
		return -EINVAL;
	}
L
Linus Torvalds 已提交
620

S
Steve French 已提交
621
	if (flags & ~CIFSSEC_MASK) {
622 623
		cERROR(1, "attempt to set unsupported security flags 0x%x",
			flags & ~CIFSSEC_MASK);
624 625 626
		return -EINVAL;
	}
	/* flags look ok - update the global security flags for cifs module */
627 628
	global_secflags = flags;
	if (global_secflags & CIFSSEC_MUST_SIGN) {
629
		/* requiring signing implies signing is allowed */
630
		global_secflags |= CIFSSEC_MAY_SIGN;
631
		cFYI(1, "packet signing now required");
632
	} else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
633
		cFYI(1, "packet signing disabled");
634 635
	}
	/* BB should we turn on MAY flags for other MUST options? */
L
Linus Torvalds 已提交
636 637
	return count;
}
638 639 640 641 642 643 644 645 646

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,
};
647
#else
648
inline void cifs_proc_init(void)
649 650 651
{
}

652
inline void cifs_proc_clean(void)
653 654 655
{
}
#endif /* PROC_FS */