cifs_debug.c 18.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

void
cifs_dump_mem(char *label, void *data, int length)
{
37
	pr_debug("%s: dump of %d bytes of data at 0x%p\n", label, length, data);
38 39
	print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 4,
		       data, length, true);
L
Linus Torvalds 已提交
40 41
}

42 43 44 45 46 47 48 49 50 51 52
#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;

53
	pr_err("CIFS VFS: %pV", &vaf);
54 55 56 57 58

	va_end(args);
}
#endif

59
void cifs_dump_detail(void *buf)
60
{
61
#ifdef CONFIG_CIFS_DEBUG2
62 63
	struct smb_hdr *smb = (struct smb_hdr *)buf;

64 65 66 67
	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));
68
#endif /* CONFIG_CIFS_DEBUG2 */
69 70
}

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

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

80
	cifs_dbg(VFS, "Dump pending requests:\n");
81 82 83
	spin_lock(&GlobalMid_Lock);
	list_for_each(tmp, &server->pending_mid_q) {
		mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
84 85 86 87 88 89
		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);
90
#ifdef CONFIG_CIFS_STATS2
91 92 93 94 95
		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);
96
#endif /* STATS2 */
97 98
		cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n",
			 mid_entry->multiRsp, mid_entry->multiEnd);
99 100 101 102
		if (mid_entry->resp_buf) {
			cifs_dump_detail(mid_entry->resp_buf);
			cifs_dump_mem("existing buf: ",
				mid_entry->resp_buf, 62);
103 104 105 106
		}
	}
	spin_unlock(&GlobalMid_Lock);
#endif /* CONFIG_CIFS_DEBUG2 */
107
}
108

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

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

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

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

184 185 186
			seq_puts(m, "\n\tShares:");
			j = 0;
			list_for_each(tmp3, &ses->tcon_list) {
187
				tcon = list_entry(tmp3, struct cifs_tcon,
188 189 190 191 192 193 194 195 196 197
						  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"
198
					"\n\tPathComponentMax: %d Status: %d",
199 200 201 202 203 204 205 206 207 208
					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);
209 210
				if (server->ops->dump_share_caps)
					server->ops->dump_share_caps(m, tcon);
211 212 213 214 215 216 217

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

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

			spin_lock(&GlobalMid_Lock);
220
			list_for_each(tmp3, &server->pending_mid_q) {
221
				mid_entry = list_entry(tmp3, struct mid_q_entry,
L
Linus Torvalds 已提交
222
					qhead);
223
				seq_printf(m, "\tState: %d com: %d pid:"
224 225 226 227 228 229
					      " %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 已提交
230
			}
S
Steve French 已提交
231
			spin_unlock(&GlobalMid_Lock);
L
Linus Torvalds 已提交
232 233
		}
	}
234
	spin_unlock(&cifs_tcp_ses_lock);
235
	seq_putc(m, '\n');
L
Linus Torvalds 已提交
236 237

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

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

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

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

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

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

S
Steve French 已提交
295
	return count;
S
Steve French 已提交
296 297
}

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

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

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

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

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

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

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

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

static struct proc_dir_entry *proc_fs_cifs;
376 377 378 379 380
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 已提交
381 382 383 384

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

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

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

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

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

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

static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
435 436
{
	char c;
437
	bool bv;
L
Linus Torvalds 已提交
438 439 440 441 442
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
443 444
	if (strtobool(&c, &bv) == 0)
		cifsFYI = bv;
S
Steve French 已提交
445
	else if ((c > '1') && (c <= '9'))
S
Steve French 已提交
446
		cifsFYI = (int) (c - '0'); /* see cifs_debug.h for meanings */
L
Linus Torvalds 已提交
447 448 449 450

	return count;
}

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

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

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

static ssize_t cifs_linux_ext_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
473
{
S
Steve French 已提交
474
	char c;
475
	bool bv;
S
Steve French 已提交
476 477 478 479 480
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
481 482 483 484 485 486

	rc = strtobool(&c, &bv);
	if (rc)
		return rc;

	linuxExtEnabled = bv;
S
Steve French 已提交
487 488

	return count;
L
Linus Torvalds 已提交
489 490
}

491 492 493 494 495 496 497 498
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 已提交
499

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

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

static ssize_t cifs_lookup_cache_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
513 514
{
	char c;
515
	bool bv;
L
Linus Torvalds 已提交
516 517 518 519 520
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
521 522 523 524 525 526

	rc = strtobool(&c, &bv);
	if (rc)
		return rc;

	lookupCacheEnabled = bv;
L
Linus Torvalds 已提交
527 528 529 530

	return count;
}

531 532 533 534 535 536 537 538
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 已提交
539

540 541 542 543 544
static int traceSMB_proc_show(struct seq_file *m, void *v)
{
	seq_printf(m, "%d\n", traceSMB);
	return 0;
}
L
Linus Torvalds 已提交
545

546 547 548
static int traceSMB_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, traceSMB_proc_show, NULL);
L
Linus Torvalds 已提交
549
}
550 551 552

static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
553 554
{
	char c;
555
	bool bv;
L
Linus Torvalds 已提交
556 557 558 559 560
	int rc;

	rc = get_user(c, buffer);
	if (rc)
		return rc;
561 562 563 564 565 566

	rc = strtobool(&c, &bv);
	if (rc)
		return rc;

	traceSMB = bv;
L
Linus Torvalds 已提交
567 568 569 570

	return count;
}

571 572 573 574 575 576 577 578
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 已提交
579

580 581
static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
{
582
	seq_printf(m, "0x%x\n", global_secflags);
583 584
	return 0;
}
L
Linus Torvalds 已提交
585

586 587 588
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 已提交
589
}
590

591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
/*
 * 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;
}

617 618
static ssize_t cifs_security_flags_proc_write(struct file *file,
		const char __user *buffer, size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
619
{
620
	int rc;
621 622
	unsigned int flags;
	char flags_string[12];
L
Linus Torvalds 已提交
623
	char c;
624
	bool bv;
625

S
Steve French 已提交
626
	if ((count < 1) || (count > 11))
627
		return -EINVAL;
L
Linus Torvalds 已提交
628

629
	memset(flags_string, 0, 12);
630

S
Steve French 已提交
631
	if (copy_from_user(flags_string, buffer, count))
632
		return -EFAULT;
633

S
Steve French 已提交
634
	if (count < 3) {
635 636
		/* single char or single char followed by null */
		c = flags_string[0];
637 638
		if (strtobool(&c, &bv) == 0) {
			global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF;
639 640
			return count;
		} else if (!isdigit(c)) {
641 642
			cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
					flags_string);
643 644
			return -EINVAL;
		}
645 646
	}

647 648 649 650 651 652 653
	/* else we have a number */
	rc = kstrtouint(flags_string, 0, &flags);
	if (rc) {
		cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
				flags_string);
		return rc;
	}
654

655
	cifs_dbg(FYI, "sec flags 0x%x\n", flags);
656

657 658
	if (flags == 0)  {
		cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string);
659 660
		return -EINVAL;
	}
L
Linus Torvalds 已提交
661

S
Steve French 已提交
662
	if (flags & ~CIFSSEC_MASK) {
663
		cifs_dbg(VFS, "Unsupported security flags: 0x%x\n",
664
			 flags & ~CIFSSEC_MASK);
665 666
		return -EINVAL;
	}
667

668 669
	cifs_security_flags_handle_must_flags(&flags);

670
	/* flags look ok - update the global security flags for cifs module */
671 672
	global_secflags = flags;
	if (global_secflags & CIFSSEC_MUST_SIGN) {
673
		/* requiring signing implies signing is allowed */
674
		global_secflags |= CIFSSEC_MAY_SIGN;
675
		cifs_dbg(FYI, "packet signing now required\n");
676
	} else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
677
		cifs_dbg(FYI, "packet signing disabled\n");
678 679
	}
	/* BB should we turn on MAY flags for other MUST options? */
L
Linus Torvalds 已提交
680 681
	return count;
}
682 683 684 685 686 687 688 689 690

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,
};
691
#else
692
inline void cifs_proc_init(void)
693 694 695
{
}

696
inline void cifs_proc_clean(void)
697 698 699
{
}
#endif /* PROC_FS */