cifs_debug.c 18.6 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
#ifdef CONFIG_CIFS_DEBUG
void cifs_vfs_err(const char *fmt, ...)
{
	struct va_format vaf;
	va_list args;

	va_start(args, fmt);

	vaf.fmt = fmt;
	vaf.va = &args;

	printk(KERN_ERR "CIFS VFS: %pV", &vaf);

	va_end(args);
}
#endif

77
void cifs_dump_detail(void *buf)
78
{
79
#ifdef CONFIG_CIFS_DEBUG2
80 81
	struct smb_hdr *smb = (struct smb_hdr *)buf;

82 83 84 85
	cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d\n",
		 smb->Command, smb->Status.CifsError,
		 smb->Flags, smb->Flags2, smb->Mid, smb->Pid);
	cifs_dbg(VFS, "smb buf %p len %u\n", smb, smbCalcSize(smb));
86
#endif /* CONFIG_CIFS_DEBUG2 */
87 88
}

S
Steve French 已提交
89
void cifs_dump_mids(struct TCP_Server_Info *server)
90
{
91
#ifdef CONFIG_CIFS_DEBUG2
92
	struct list_head *tmp;
S
Steve French 已提交
93
	struct mid_q_entry *mid_entry;
94

S
Steve French 已提交
95
	if (server == NULL)
96 97
		return;

98
	cifs_dbg(VFS, "Dump pending requests:\n");
99 100 101
	spin_lock(&GlobalMid_Lock);
	list_for_each(tmp, &server->pending_mid_q) {
		mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
102 103 104 105 106 107
		cifs_dbg(VFS, "State: %d Cmd: %d Pid: %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);
108
#ifdef CONFIG_CIFS_STATS2
109 110 111 112 113
		cifs_dbg(VFS, "IsLarge: %d buf: %p time rcv: %ld now: %ld\n",
			 mid_entry->large_buf,
			 mid_entry->resp_buf,
			 mid_entry->when_received,
			 jiffies);
114
#endif /* STATS2 */
115 116
		cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n",
			 mid_entry->multiRsp, mid_entry->multiEnd);
117 118 119 120
		if (mid_entry->resp_buf) {
			cifs_dump_detail(mid_entry->resp_buf);
			cifs_dump_mem("existing buf: ",
				mid_entry->resp_buf, 62);
121 122 123 124
		}
	}
	spin_unlock(&GlobalMid_Lock);
#endif /* CONFIG_CIFS_DEBUG2 */
125
}
126

L
Linus Torvalds 已提交
127
#ifdef CONFIG_PROC_FS
128
static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
129
{
130
	struct list_head *tmp1, *tmp2, *tmp3;
S
Steve French 已提交
131
	struct mid_q_entry *mid_entry;
132
	struct TCP_Server_Info *server;
133 134
	struct cifs_ses *ses;
	struct cifs_tcon *tcon;
135 136
	int i, j;
	__u32 dev_type;
L
Linus Torvalds 已提交
137

138
	seq_puts(m,
L
Linus Torvalds 已提交
139 140
		    "Display Internal CIFS Data Structures for Debugging\n"
		    "---------------------------------------------------\n");
141
	seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
142
	seq_printf(m, "Features:");
143
#ifdef CONFIG_CIFS_DFS_UPCALL
144
	seq_printf(m, " dfs");
145 146
#endif
#ifdef CONFIG_CIFS_FSCACHE
147
	seq_printf(m, " fscache");
148 149
#endif
#ifdef CONFIG_CIFS_WEAK_PW_HASH
150
	seq_printf(m, " lanman");
151 152
#endif
#ifdef CONFIG_CIFS_POSIX
153
	seq_printf(m, " posix");
154 155
#endif
#ifdef CONFIG_CIFS_UPCALL
156
	seq_printf(m, " spnego");
157 158
#endif
#ifdef CONFIG_CIFS_XATTR
159 160 161 162
	seq_printf(m, " xattr");
#endif
#ifdef CONFIG_CIFS_ACL
	seq_printf(m, " acl");
163 164
#endif
	seq_putc(m, '\n');
165 166
	seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
	seq_printf(m, "Servers:");
L
Linus Torvalds 已提交
167 168

	i = 0;
169
	spin_lock(&cifs_tcp_ses_lock);
170 171
	list_for_each(tmp1, &cifs_tcp_ses_list) {
		server = list_entry(tmp1, struct TCP_Server_Info,
172
				    tcp_ses_list);
L
Linus Torvalds 已提交
173
		i++;
174
		list_for_each(tmp2, &server->smb_ses_list) {
175
			ses = list_entry(tmp2, struct cifs_ses,
176 177 178 179
					 smb_ses_list);
			if ((ses->serverDomain == NULL) ||
				(ses->serverOS == NULL) ||
				(ses->serverNOS == NULL)) {
180 181
				seq_printf(m, "\n%d) entry for %s not fully "
					   "displayed\n\t", i, ses->serverName);
182 183
			} else {
				seq_printf(m,
184 185
				    "\n%d) Name: %s  Domain: %s Uses: %d OS:"
				    " %s\n\tNOS: %s\tCapability: 0x%x\n\tSMB"
S
Steve French 已提交
186
				    " session status: %d\t",
187
				i, ses->serverName, ses->serverDomain,
188
				ses->ses_count, ses->serverOS, ses->serverNOS,
S
Steve French 已提交
189
				ses->capabilities, ses->status);
190
			}
191
			seq_printf(m, "TCP status: %d\n\tLocal Users To "
192 193
				   "Server: %d SecMode: 0x%x Req On Wire: %d",
				   server->tcpStatus, server->srv_count,
P
Pavel Shilovsky 已提交
194
				   server->sec_mode, in_flight(server));
195 196

#ifdef CONFIG_CIFS_STATS2
197
			seq_printf(m, " In Send: %d In MaxReq Wait: %d",
198
				atomic_read(&server->in_send),
199
				atomic_read(&server->num_waiters));
200 201
#endif

202 203 204
			seq_puts(m, "\n\tShares:");
			j = 0;
			list_for_each(tmp3, &ses->tcon_list) {
205
				tcon = list_entry(tmp3, struct cifs_tcon,
206 207 208 209 210 211 212 213 214 215
						  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"
216
					"\n\tPathComponentMax: %d Status: 0x%d",
217 218 219 220 221 222 223 224 225 226
					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);
227 228
				if (server->ops->dump_share_caps)
					server->ops->dump_share_caps(m, tcon);
229 230 231 232 233 234 235

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

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

			spin_lock(&GlobalMid_Lock);
238
			list_for_each(tmp3, &server->pending_mid_q) {
239
				mid_entry = list_entry(tmp3, struct mid_q_entry,
L
Linus Torvalds 已提交
240
					qhead);
241
				seq_printf(m, "\tState: %d com: %d pid:"
242 243 244 245 246 247
					      " %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 已提交
248
			}
S
Steve French 已提交
249
			spin_unlock(&GlobalMid_Lock);
L
Linus Torvalds 已提交
250 251
		}
	}
252
	spin_unlock(&cifs_tcp_ses_lock);
253
	seq_putc(m, '\n');
L
Linus Torvalds 已提交
254 255

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

259 260 261
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 已提交
262 263
}

264 265 266 267 268 269 270
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 已提交
271

272 273 274
#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 已提交
275
{
S
Steve French 已提交
276 277
	char c;
	int rc;
278 279
	struct list_head *tmp1, *tmp2, *tmp3;
	struct TCP_Server_Info *server;
280 281
	struct cifs_ses *ses;
	struct cifs_tcon *tcon;
S
Steve French 已提交
282

S
Steve French 已提交
283 284 285
	rc = get_user(c, buffer);
	if (rc)
		return rc;
S
Steve French 已提交
286

S
Steve French 已提交
287
	if (c == '1' || c == 'y' || c == 'Y' || c == '0') {
288 289 290 291
#ifdef CONFIG_CIFS_STATS2
		atomic_set(&totBufAllocCount, 0);
		atomic_set(&totSmBufAllocCount, 0);
#endif /* CONFIG_CIFS_STATS2 */
292
		spin_lock(&cifs_tcp_ses_lock);
293 294 295
		list_for_each(tmp1, &cifs_tcp_ses_list) {
			server = list_entry(tmp1, struct TCP_Server_Info,
					    tcp_ses_list);
S
Steve French 已提交
296
			list_for_each(tmp2, &server->smb_ses_list) {
297
				ses = list_entry(tmp2, struct cifs_ses,
S
Steve French 已提交
298
						 smb_ses_list);
299 300
				list_for_each(tmp3, &ses->tcon_list) {
					tcon = list_entry(tmp3,
301
							  struct cifs_tcon,
302 303
							  tcon_list);
					atomic_set(&tcon->num_smbs_sent, 0);
304 305
					if (server->ops->clear_stats)
						server->ops->clear_stats(tcon);
306 307
				}
			}
S
Steve French 已提交
308
		}
309
		spin_unlock(&cifs_tcp_ses_lock);
S
Steve French 已提交
310 311
	}

S
Steve French 已提交
312
	return count;
S
Steve French 已提交
313 314
}

315
static int cifs_stats_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
316
{
317
	int i;
318 319
	struct list_head *tmp1, *tmp2, *tmp3;
	struct TCP_Server_Info *server;
320 321
	struct cifs_ses *ses;
	struct cifs_tcon *tcon;
L
Linus Torvalds 已提交
322

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

339
	seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&midCount));
340
	seq_printf(m,
L
Linus Torvalds 已提交
341
		"\n%d session %d share reconnects\n",
S
Steve French 已提交
342
		tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
L
Linus Torvalds 已提交
343

344
	seq_printf(m,
L
Linus Torvalds 已提交
345
		"Total vfs operations: %d maximum at one time: %d\n",
S
Steve French 已提交
346
		GlobalCurrentXid, GlobalMaxActiveXid);
L
Linus Torvalds 已提交
347 348

	i = 0;
349
	spin_lock(&cifs_tcp_ses_lock);
350 351 352 353
	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) {
354
			ses = list_entry(tmp2, struct cifs_ses,
355 356 357
					 smb_ses_list);
			list_for_each(tmp3, &ses->tcon_list) {
				tcon = list_entry(tmp3,
358
						  struct cifs_tcon,
359 360 361 362 363
						  tcon_list);
				i++;
				seq_printf(m, "\n%d) %s", i, tcon->treeName);
				if (tcon->need_reconnect)
					seq_puts(m, "\tDISCONNECTED ");
364 365 366 367
				seq_printf(m, "\nSMBs: %d",
					   atomic_read(&tcon->num_smbs_sent));
				if (server->ops->print_stats)
					server->ops->print_stats(m, tcon);
368 369
			}
		}
L
Linus Torvalds 已提交
370
	}
371
	spin_unlock(&cifs_tcp_ses_lock);
L
Linus Torvalds 已提交
372

373 374 375
	seq_putc(m, '\n');
	return 0;
}
S
Steve French 已提交
376

377 378 379
static int cifs_stats_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifs_stats_proc_show, NULL);
L
Linus Torvalds 已提交
380
}
381 382 383 384 385 386 387 388 389

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,
};
390
#endif /* STATS */
L
Linus Torvalds 已提交
391 392

static struct proc_dir_entry *proc_fs_cifs;
393 394 395 396 397
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 已提交
398 399 400 401

void
cifs_proc_init(void)
{
A
Alexey Dobriyan 已提交
402
	proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
L
Linus Torvalds 已提交
403 404 405
	if (proc_fs_cifs == NULL)
		return;

406
	proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops);
L
Linus Torvalds 已提交
407 408

#ifdef CONFIG_CIFS_STATS
409
	proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops);
410
#endif /* STATS */
411 412
	proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops);
	proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops);
S
Steve French 已提交
413 414 415 416 417 418
	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 已提交
419 420 421 422 423 424 425 426 427 428 429 430 431 432
}

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 已提交
433 434 435
	remove_proc_entry("SecurityFlags", proc_fs_cifs);
	remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
	remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
A
Alexey Dobriyan 已提交
436
	remove_proc_entry("fs/cifs", NULL);
L
Linus Torvalds 已提交
437 438
}

439
static int cifsFYI_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
440
{
441 442 443
	seq_printf(m, "%d\n", cifsFYI);
	return 0;
}
L
Linus Torvalds 已提交
444

445 446 447
static int cifsFYI_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, cifsFYI_proc_show, NULL);
L
Linus Torvalds 已提交
448
}
449 450 451

static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
452 453 454 455 456 457 458 459 460 461 462
{
	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 已提交
463
	else if ((c > '1') && (c <= '9'))
S
Steve French 已提交
464
		cifsFYI = (int) (c - '0'); /* see cifs_debug.h for meanings */
L
Linus Torvalds 已提交
465 466 467 468

	return count;
}

469 470 471 472 473 474 475 476
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 已提交
477

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

484 485 486
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 已提交
487
}
488 489 490

static ssize_t cifs_linux_ext_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
491
{
S
Steve French 已提交
492 493 494 495 496 497 498 499 500 501 502 503
	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 已提交
504 505
}

506 507 508 509 510 511 512 513
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 已提交
514

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

521 522 523
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 已提交
524
}
525 526 527

static ssize_t cifs_lookup_cache_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
{
	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;
}

543 544 545 546 547 548 549 550
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 已提交
551

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

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

static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
{
	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;
}

580 581 582 583 584 585 586 587
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 已提交
588

589 590
static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
{
591
	seq_printf(m, "0x%x\n", global_secflags);
592 593
	return 0;
}
L
Linus Torvalds 已提交
594

595 596 597
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 已提交
598
}
599

600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
/*
 * Ensure that if someone sets a MUST flag, that we disable all other MAY
 * flags except for the ones corresponding to the given MUST flag. If there are
 * multiple MUST flags, then try to prefer more secure ones.
 */
static void
cifs_security_flags_handle_must_flags(unsigned int *flags)
{
	unsigned int signflags = *flags & CIFSSEC_MUST_SIGN;

	if ((*flags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5)
		*flags = CIFSSEC_MUST_KRB5;
	else if ((*flags & CIFSSEC_MUST_NTLMSSP) == CIFSSEC_MUST_NTLMSSP)
		*flags = CIFSSEC_MUST_NTLMSSP;
	else if ((*flags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2)
		*flags = CIFSSEC_MUST_NTLMV2;
	else if ((*flags & CIFSSEC_MUST_NTLM) == CIFSSEC_MUST_NTLM)
		*flags = CIFSSEC_MUST_NTLM;
	else if ((*flags & CIFSSEC_MUST_LANMAN) == CIFSSEC_MUST_LANMAN)
		*flags = CIFSSEC_MUST_LANMAN;
	else if ((*flags & CIFSSEC_MUST_PLNTXT) == CIFSSEC_MUST_PLNTXT)
		*flags = CIFSSEC_MUST_PLNTXT;

	*flags |= signflags;
}

626 627
static ssize_t cifs_security_flags_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
628
{
629
	int rc;
630 631
	unsigned int flags;
	char flags_string[12];
L
Linus Torvalds 已提交
632
	char c;
633

S
Steve French 已提交
634
	if ((count < 1) || (count > 11))
635
		return -EINVAL;
L
Linus Torvalds 已提交
636

637
	memset(flags_string, 0, 12);
638

S
Steve French 已提交
639
	if (copy_from_user(flags_string, buffer, count))
640
		return -EFAULT;
641

S
Steve French 已提交
642
	if (count < 3) {
643 644
		/* single char or single char followed by null */
		c = flags_string[0];
645
		if (c == '0' || c == 'n' || c == 'N') {
646
			global_secflags = CIFSSEC_DEF; /* default */
647 648
			return count;
		} else if (c == '1' || c == 'y' || c == 'Y') {
649
			global_secflags = CIFSSEC_MAX;
650 651
			return count;
		} else if (!isdigit(c)) {
652 653
			cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
					flags_string);
654 655
			return -EINVAL;
		}
656 657
	}

658 659 660 661 662 663 664
	/* else we have a number */
	rc = kstrtouint(flags_string, 0, &flags);
	if (rc) {
		cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
				flags_string);
		return rc;
	}
665

666
	cifs_dbg(FYI, "sec flags 0x%x\n", flags);
667

668 669
	if (flags == 0)  {
		cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string);
670 671
		return -EINVAL;
	}
L
Linus Torvalds 已提交
672

S
Steve French 已提交
673
	if (flags & ~CIFSSEC_MASK) {
674
		cifs_dbg(VFS, "Unsupported security flags: 0x%x\n",
675
			 flags & ~CIFSSEC_MASK);
676 677
		return -EINVAL;
	}
678

679 680
	cifs_security_flags_handle_must_flags(&flags);

681
	/* flags look ok - update the global security flags for cifs module */
682 683
	global_secflags = flags;
	if (global_secflags & CIFSSEC_MUST_SIGN) {
684
		/* requiring signing implies signing is allowed */
685
		global_secflags |= CIFSSEC_MAY_SIGN;
686
		cifs_dbg(FYI, "packet signing now required\n");
687
	} else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
688
		cifs_dbg(FYI, "packet signing disabled\n");
689 690
	}
	/* BB should we turn on MAY flags for other MUST options? */
L
Linus Torvalds 已提交
691 692
	return count;
}
693 694 695 696 697 698 699 700 701

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,
};
702
#else
703
inline void cifs_proc_init(void)
704 705 706
{
}

707
inline void cifs_proc_clean(void)
708 709 710
{
}
#endif /* PROC_FS */