xref: /linux/fs/smb/client/cifs_debug.c (revision 4bbdb725a36b0d235f3b832bd0c1e885f0442d9f)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *
4  *   Copyright (C) International Business Machines  Corp., 2000,2005
5  *
6  *   Modified by Steve French (sfrench@us.ibm.com)
7  */
8 #include <linux/fs.h>
9 #include <linux/string.h>
10 #include <linux/ctype.h>
11 #include <linux/kstrtox.h>
12 #include <linux/module.h>
13 #include <linux/proc_fs.h>
14 #include <linux/uaccess.h>
15 #include <uapi/linux/ethtool.h>
16 #include "cifspdu.h"
17 #include "cifsglob.h"
18 #include "cifsproto.h"
19 #include "cifs_debug.h"
20 #include "cifsfs.h"
21 #include "fs_context.h"
22 #ifdef CONFIG_CIFS_DFS_UPCALL
23 #include "dfs_cache.h"
24 #endif
25 #ifdef CONFIG_CIFS_SMB_DIRECT
26 #include "smbdirect.h"
27 #endif
28 #include "cifs_swn.h"
29 
30 void
31 cifs_dump_mem(char *label, void *data, int length)
32 {
33 	pr_debug("%s: dump of %d bytes of data at 0x%p\n", label, length, data);
34 	print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 4,
35 		       data, length, true);
36 }
37 
38 void cifs_dump_detail(void *buf, struct TCP_Server_Info *server)
39 {
40 #ifdef CONFIG_CIFS_DEBUG2
41 	struct smb_hdr *smb = buf;
42 
43 	cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d\n",
44 		 smb->Command, smb->Status.CifsError,
45 		 smb->Flags, smb->Flags2, smb->Mid, smb->Pid);
46 	cifs_dbg(VFS, "smb buf %p len %u\n", smb,
47 		 server->ops->calc_smb_size(smb));
48 #endif /* CONFIG_CIFS_DEBUG2 */
49 }
50 
51 void cifs_dump_mids(struct TCP_Server_Info *server)
52 {
53 #ifdef CONFIG_CIFS_DEBUG2
54 	struct mid_q_entry *mid_entry;
55 
56 	if (server == NULL)
57 		return;
58 
59 	cifs_dbg(VFS, "Dump pending requests:\n");
60 	spin_lock(&server->mid_lock);
61 	list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) {
62 		cifs_dbg(VFS, "State: %d Cmd: %d Pid: %d Cbdata: %p Mid %llu\n",
63 			 mid_entry->mid_state,
64 			 le16_to_cpu(mid_entry->command),
65 			 mid_entry->pid,
66 			 mid_entry->callback_data,
67 			 mid_entry->mid);
68 #ifdef CONFIG_CIFS_STATS2
69 		cifs_dbg(VFS, "IsLarge: %d buf: %p time rcv: %ld now: %ld\n",
70 			 mid_entry->large_buf,
71 			 mid_entry->resp_buf,
72 			 mid_entry->when_received,
73 			 jiffies);
74 #endif /* STATS2 */
75 		cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n",
76 			 mid_entry->multiRsp, mid_entry->multiEnd);
77 		if (mid_entry->resp_buf) {
78 			cifs_dump_detail(mid_entry->resp_buf, server);
79 			cifs_dump_mem("existing buf: ",
80 				mid_entry->resp_buf, 62);
81 		}
82 	}
83 	spin_unlock(&server->mid_lock);
84 #endif /* CONFIG_CIFS_DEBUG2 */
85 }
86 
87 #ifdef CONFIG_PROC_FS
88 static void cifs_debug_tcon(struct seq_file *m, struct cifs_tcon *tcon)
89 {
90 	__u32 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
91 
92 	seq_printf(m, "%s Mounts: %d ", tcon->tree_name, tcon->tc_count);
93 	if (tcon->nativeFileSystem)
94 		seq_printf(m, "Type: %s ", tcon->nativeFileSystem);
95 	seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x\n\tPathComponentMax: %d Status: %d",
96 		   le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
97 		   le32_to_cpu(tcon->fsAttrInfo.Attributes),
98 		   le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
99 		   tcon->status);
100 	if (dev_type == FILE_DEVICE_DISK)
101 		seq_puts(m, " type: DISK ");
102 	else if (dev_type == FILE_DEVICE_CD_ROM)
103 		seq_puts(m, " type: CDROM ");
104 	else
105 		seq_printf(m, " type: %d ", dev_type);
106 
107 	seq_printf(m, "Serial Number: 0x%x", tcon->vol_serial_number);
108 
109 	if ((tcon->seal) ||
110 	    (tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
111 	    (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
112 		seq_puts(m, " encrypted");
113 	if (tcon->nocase)
114 		seq_printf(m, " nocase");
115 	if (tcon->unix_ext)
116 		seq_printf(m, " POSIX Extensions");
117 	if (tcon->ses->server->ops->dump_share_caps)
118 		tcon->ses->server->ops->dump_share_caps(m, tcon);
119 	if (tcon->use_witness)
120 		seq_puts(m, " Witness");
121 	if (tcon->broken_sparse_sup)
122 		seq_puts(m, " nosparse");
123 	if (tcon->need_reconnect)
124 		seq_puts(m, "\tDISCONNECTED ");
125 	spin_lock(&tcon->tc_lock);
126 	if (tcon->origin_fullpath) {
127 		seq_printf(m, "\n\tDFS origin fullpath: %s",
128 			   tcon->origin_fullpath);
129 	}
130 	spin_unlock(&tcon->tc_lock);
131 	seq_putc(m, '\n');
132 }
133 
134 static void
135 cifs_dump_channel(struct seq_file *m, int i, struct cifs_chan *chan)
136 {
137 	struct TCP_Server_Info *server = chan->server;
138 
139 	seq_printf(m, "\n\n\t\tChannel: %d ConnectionId: 0x%llx"
140 		   "\n\t\tNumber of credits: %d,%d,%d Dialect 0x%x"
141 		   "\n\t\tTCP status: %d Instance: %d"
142 		   "\n\t\tLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d"
143 		   "\n\t\tIn Send: %d In MaxReq Wait: %d",
144 		   i+1, server->conn_id,
145 		   server->credits,
146 		   server->echo_credits,
147 		   server->oplock_credits,
148 		   server->dialect,
149 		   server->tcpStatus,
150 		   server->reconnect_instance,
151 		   server->srv_count,
152 		   server->sec_mode,
153 		   in_flight(server),
154 		   atomic_read(&server->in_send),
155 		   atomic_read(&server->num_waiters));
156 #ifdef CONFIG_NET_NS
157 	if (server->net)
158 		seq_printf(m, " Net namespace: %u ", server->net->ns.inum);
159 #endif /* NET_NS */
160 
161 }
162 
163 static inline const char *smb_speed_to_str(size_t bps)
164 {
165 	size_t mbps = bps / 1000 / 1000;
166 
167 	switch (mbps) {
168 	case SPEED_10:
169 		return "10Mbps";
170 	case SPEED_100:
171 		return "100Mbps";
172 	case SPEED_1000:
173 		return "1Gbps";
174 	case SPEED_2500:
175 		return "2.5Gbps";
176 	case SPEED_5000:
177 		return "5Gbps";
178 	case SPEED_10000:
179 		return "10Gbps";
180 	case SPEED_14000:
181 		return "14Gbps";
182 	case SPEED_20000:
183 		return "20Gbps";
184 	case SPEED_25000:
185 		return "25Gbps";
186 	case SPEED_40000:
187 		return "40Gbps";
188 	case SPEED_50000:
189 		return "50Gbps";
190 	case SPEED_56000:
191 		return "56Gbps";
192 	case SPEED_100000:
193 		return "100Gbps";
194 	case SPEED_200000:
195 		return "200Gbps";
196 	case SPEED_400000:
197 		return "400Gbps";
198 	case SPEED_800000:
199 		return "800Gbps";
200 	default:
201 		return "Unknown";
202 	}
203 }
204 
205 static void
206 cifs_dump_iface(struct seq_file *m, struct cifs_server_iface *iface)
207 {
208 	struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr;
209 	struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&iface->sockaddr;
210 
211 	seq_printf(m, "\tSpeed: %s\n", smb_speed_to_str(iface->speed));
212 	seq_puts(m, "\t\tCapabilities: ");
213 	if (iface->rdma_capable)
214 		seq_puts(m, "rdma ");
215 	if (iface->rss_capable)
216 		seq_puts(m, "rss ");
217 	if (!iface->rdma_capable && !iface->rss_capable)
218 		seq_puts(m, "None");
219 	seq_putc(m, '\n');
220 	if (iface->sockaddr.ss_family == AF_INET)
221 		seq_printf(m, "\t\tIPv4: %pI4\n", &ipv4->sin_addr);
222 	else if (iface->sockaddr.ss_family == AF_INET6)
223 		seq_printf(m, "\t\tIPv6: %pI6\n", &ipv6->sin6_addr);
224 	if (!iface->is_active)
225 		seq_puts(m, "\t\t[for-cleanup]\n");
226 }
227 
228 static int cifs_debug_files_proc_show(struct seq_file *m, void *v)
229 {
230 	struct TCP_Server_Info *server;
231 	struct cifs_ses *ses;
232 	struct cifs_tcon *tcon;
233 	struct cifsFileInfo *cfile;
234 
235 	seq_puts(m, "# Version:1\n");
236 	seq_puts(m, "# Format:\n");
237 	seq_puts(m, "# <tree id> <ses id> <persistent fid> <flags> <count> <pid> <uid>");
238 #ifdef CONFIG_CIFS_DEBUG2
239 	seq_printf(m, " <filename> <mid>\n");
240 #else
241 	seq_printf(m, " <filename>\n");
242 #endif /* CIFS_DEBUG2 */
243 	spin_lock(&cifs_tcp_ses_lock);
244 	list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
245 		list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
246 			list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
247 				spin_lock(&tcon->open_file_lock);
248 				list_for_each_entry(cfile, &tcon->openFileList, tlist) {
249 					seq_printf(m,
250 						"0x%x 0x%llx 0x%llx 0x%x %d %d %d %pd",
251 						tcon->tid,
252 						ses->Suid,
253 						cfile->fid.persistent_fid,
254 						cfile->f_flags,
255 						cfile->count,
256 						cfile->pid,
257 						from_kuid(&init_user_ns, cfile->uid),
258 						cfile->dentry);
259 #ifdef CONFIG_CIFS_DEBUG2
260 					seq_printf(m, " %llu\n", cfile->fid.mid);
261 #else
262 					seq_printf(m, "\n");
263 #endif /* CIFS_DEBUG2 */
264 				}
265 				spin_unlock(&tcon->open_file_lock);
266 			}
267 		}
268 	}
269 	spin_unlock(&cifs_tcp_ses_lock);
270 	seq_putc(m, '\n');
271 	return 0;
272 }
273 
274 static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
275 {
276 	struct mid_q_entry *mid_entry;
277 	struct TCP_Server_Info *server;
278 	struct TCP_Server_Info *chan_server;
279 	struct cifs_ses *ses;
280 	struct cifs_tcon *tcon;
281 	struct cifs_server_iface *iface;
282 	int c, i, j;
283 
284 	seq_puts(m,
285 		    "Display Internal CIFS Data Structures for Debugging\n"
286 		    "---------------------------------------------------\n");
287 	seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
288 	seq_printf(m, "Features:");
289 #ifdef CONFIG_CIFS_DFS_UPCALL
290 	seq_printf(m, " DFS");
291 #endif
292 #ifdef CONFIG_CIFS_FSCACHE
293 	seq_printf(m, ",FSCACHE");
294 #endif
295 #ifdef CONFIG_CIFS_SMB_DIRECT
296 	seq_printf(m, ",SMB_DIRECT");
297 #endif
298 #ifdef CONFIG_CIFS_STATS2
299 	seq_printf(m, ",STATS2");
300 #else
301 	seq_printf(m, ",STATS");
302 #endif
303 #ifdef CONFIG_CIFS_DEBUG2
304 	seq_printf(m, ",DEBUG2");
305 #elif defined(CONFIG_CIFS_DEBUG)
306 	seq_printf(m, ",DEBUG");
307 #endif
308 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
309 	seq_printf(m, ",ALLOW_INSECURE_LEGACY");
310 #endif
311 #ifdef CONFIG_CIFS_POSIX
312 	seq_printf(m, ",CIFS_POSIX");
313 #endif
314 #ifdef CONFIG_CIFS_UPCALL
315 	seq_printf(m, ",UPCALL(SPNEGO)");
316 #endif
317 #ifdef CONFIG_CIFS_XATTR
318 	seq_printf(m, ",XATTR");
319 #endif
320 	seq_printf(m, ",ACL");
321 #ifdef CONFIG_CIFS_SWN_UPCALL
322 	seq_puts(m, ",WITNESS");
323 #endif
324 	seq_putc(m, '\n');
325 	seq_printf(m, "CIFSMaxBufSize: %d\n", CIFSMaxBufSize);
326 	seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
327 
328 	seq_printf(m, "\nServers: ");
329 
330 	c = 0;
331 	spin_lock(&cifs_tcp_ses_lock);
332 	list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
333 		/* channel info will be printed as a part of sessions below */
334 		if (SERVER_IS_CHAN(server))
335 			continue;
336 
337 		c++;
338 		seq_printf(m, "\n%d) ConnectionId: 0x%llx ",
339 			c, server->conn_id);
340 
341 		spin_lock(&server->srv_lock);
342 		if (server->hostname)
343 			seq_printf(m, "Hostname: %s ", server->hostname);
344 		seq_printf(m, "\nClientGUID: %pUL", server->client_guid);
345 		spin_unlock(&server->srv_lock);
346 #ifdef CONFIG_CIFS_SMB_DIRECT
347 		if (!server->rdma)
348 			goto skip_rdma;
349 
350 		if (!server->smbd_conn) {
351 			seq_printf(m, "\nSMBDirect transport not available");
352 			goto skip_rdma;
353 		}
354 
355 		seq_printf(m, "\nSMBDirect (in hex) protocol version: %x "
356 			"transport status: %x",
357 			server->smbd_conn->protocol,
358 			server->smbd_conn->transport_status);
359 		seq_printf(m, "\nConn receive_credit_max: %x "
360 			"send_credit_target: %x max_send_size: %x",
361 			server->smbd_conn->receive_credit_max,
362 			server->smbd_conn->send_credit_target,
363 			server->smbd_conn->max_send_size);
364 		seq_printf(m, "\nConn max_fragmented_recv_size: %x "
365 			"max_fragmented_send_size: %x max_receive_size:%x",
366 			server->smbd_conn->max_fragmented_recv_size,
367 			server->smbd_conn->max_fragmented_send_size,
368 			server->smbd_conn->max_receive_size);
369 		seq_printf(m, "\nConn keep_alive_interval: %x "
370 			"max_readwrite_size: %x rdma_readwrite_threshold: %x",
371 			server->smbd_conn->keep_alive_interval,
372 			server->smbd_conn->max_readwrite_size,
373 			server->smbd_conn->rdma_readwrite_threshold);
374 		seq_printf(m, "\nDebug count_get_receive_buffer: %x "
375 			"count_put_receive_buffer: %x count_send_empty: %x",
376 			server->smbd_conn->count_get_receive_buffer,
377 			server->smbd_conn->count_put_receive_buffer,
378 			server->smbd_conn->count_send_empty);
379 		seq_printf(m, "\nRead Queue count_reassembly_queue: %x "
380 			"count_enqueue_reassembly_queue: %x "
381 			"count_dequeue_reassembly_queue: %x "
382 			"fragment_reassembly_remaining: %x "
383 			"reassembly_data_length: %x "
384 			"reassembly_queue_length: %x",
385 			server->smbd_conn->count_reassembly_queue,
386 			server->smbd_conn->count_enqueue_reassembly_queue,
387 			server->smbd_conn->count_dequeue_reassembly_queue,
388 			server->smbd_conn->fragment_reassembly_remaining,
389 			server->smbd_conn->reassembly_data_length,
390 			server->smbd_conn->reassembly_queue_length);
391 		seq_printf(m, "\nCurrent Credits send_credits: %x "
392 			"receive_credits: %x receive_credit_target: %x",
393 			atomic_read(&server->smbd_conn->send_credits),
394 			atomic_read(&server->smbd_conn->receive_credits),
395 			server->smbd_conn->receive_credit_target);
396 		seq_printf(m, "\nPending send_pending: %x ",
397 			atomic_read(&server->smbd_conn->send_pending));
398 		seq_printf(m, "\nReceive buffers count_receive_queue: %x "
399 			"count_empty_packet_queue: %x",
400 			server->smbd_conn->count_receive_queue,
401 			server->smbd_conn->count_empty_packet_queue);
402 		seq_printf(m, "\nMR responder_resources: %x "
403 			"max_frmr_depth: %x mr_type: %x",
404 			server->smbd_conn->responder_resources,
405 			server->smbd_conn->max_frmr_depth,
406 			server->smbd_conn->mr_type);
407 		seq_printf(m, "\nMR mr_ready_count: %x mr_used_count: %x",
408 			atomic_read(&server->smbd_conn->mr_ready_count),
409 			atomic_read(&server->smbd_conn->mr_used_count));
410 skip_rdma:
411 #endif
412 		seq_printf(m, "\nNumber of credits: %d,%d,%d Dialect 0x%x",
413 			server->credits,
414 			server->echo_credits,
415 			server->oplock_credits,
416 			server->dialect);
417 		if (server->compress_algorithm == SMB3_COMPRESS_LZNT1)
418 			seq_printf(m, " COMPRESS_LZNT1");
419 		else if (server->compress_algorithm == SMB3_COMPRESS_LZ77)
420 			seq_printf(m, " COMPRESS_LZ77");
421 		else if (server->compress_algorithm == SMB3_COMPRESS_LZ77_HUFF)
422 			seq_printf(m, " COMPRESS_LZ77_HUFF");
423 		if (server->sign)
424 			seq_printf(m, " signed");
425 		if (server->posix_ext_supported)
426 			seq_printf(m, " posix");
427 		if (server->nosharesock)
428 			seq_printf(m, " nosharesock");
429 
430 		seq_printf(m, "\nServer capabilities: 0x%x", server->capabilities);
431 
432 		if (server->rdma)
433 			seq_printf(m, "\nRDMA ");
434 		seq_printf(m, "\nTCP status: %d Instance: %d"
435 				"\nLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d",
436 				server->tcpStatus,
437 				server->reconnect_instance,
438 				server->srv_count,
439 				server->sec_mode, in_flight(server));
440 #ifdef CONFIG_NET_NS
441 		if (server->net)
442 			seq_printf(m, " Net namespace: %u ", server->net->ns.inum);
443 #endif /* NET_NS */
444 
445 		seq_printf(m, "\nIn Send: %d In MaxReq Wait: %d",
446 				atomic_read(&server->in_send),
447 				atomic_read(&server->num_waiters));
448 
449 		if (server->leaf_fullpath) {
450 			seq_printf(m, "\nDFS leaf full path: %s",
451 				   server->leaf_fullpath);
452 		}
453 
454 		seq_printf(m, "\n\n\tSessions: ");
455 		i = 0;
456 		list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
457 			spin_lock(&ses->ses_lock);
458 			if (ses->ses_status == SES_EXITING) {
459 				spin_unlock(&ses->ses_lock);
460 				continue;
461 			}
462 			i++;
463 			if ((ses->serverDomain == NULL) ||
464 				(ses->serverOS == NULL) ||
465 				(ses->serverNOS == NULL)) {
466 				seq_printf(m, "\n\t%d) Address: %s Uses: %d Capability: 0x%x\tSession Status: %d ",
467 					i, ses->ip_addr, ses->ses_count,
468 					ses->capabilities, ses->ses_status);
469 				if (ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
470 					seq_printf(m, "Guest ");
471 				else if (ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
472 					seq_printf(m, "Anonymous ");
473 			} else {
474 				seq_printf(m,
475 				    "\n\t%d) Name: %s  Domain: %s Uses: %d OS: %s "
476 				    "\n\tNOS: %s\tCapability: 0x%x"
477 					"\n\tSMB session status: %d ",
478 				i, ses->ip_addr, ses->serverDomain,
479 				ses->ses_count, ses->serverOS, ses->serverNOS,
480 				ses->capabilities, ses->ses_status);
481 			}
482 			spin_unlock(&ses->ses_lock);
483 
484 			seq_printf(m, "\n\tSecurity type: %s ",
485 				get_security_type_str(server->ops->select_sectype(server, ses->sectype)));
486 
487 			/* dump session id helpful for use with network trace */
488 			seq_printf(m, " SessionId: 0x%llx", ses->Suid);
489 			if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) {
490 				seq_puts(m, " encrypted");
491 				/* can help in debugging to show encryption type */
492 				if (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)
493 					seq_puts(m, "(gcm256)");
494 			}
495 			if (ses->sign)
496 				seq_puts(m, " signed");
497 
498 			seq_printf(m, "\n\tUser: %d Cred User: %d",
499 				   from_kuid(&init_user_ns, ses->linux_uid),
500 				   from_kuid(&init_user_ns, ses->cred_uid));
501 
502 			if (ses->dfs_root_ses) {
503 				seq_printf(m, "\n\tDFS root session id: 0x%llx",
504 					   ses->dfs_root_ses->Suid);
505 			}
506 
507 			spin_lock(&ses->chan_lock);
508 			if (CIFS_CHAN_NEEDS_RECONNECT(ses, 0))
509 				seq_puts(m, "\tPrimary channel: DISCONNECTED ");
510 			if (CIFS_CHAN_IN_RECONNECT(ses, 0))
511 				seq_puts(m, "\t[RECONNECTING] ");
512 
513 			if (ses->chan_count > 1) {
514 				seq_printf(m, "\n\n\tExtra Channels: %zu ",
515 					   ses->chan_count-1);
516 				for (j = 1; j < ses->chan_count; j++) {
517 					cifs_dump_channel(m, j, &ses->chans[j]);
518 					if (CIFS_CHAN_NEEDS_RECONNECT(ses, j))
519 						seq_puts(m, "\tDISCONNECTED ");
520 					if (CIFS_CHAN_IN_RECONNECT(ses, j))
521 						seq_puts(m, "\t[RECONNECTING] ");
522 				}
523 			}
524 			spin_unlock(&ses->chan_lock);
525 
526 			seq_puts(m, "\n\n\tShares: ");
527 			j = 0;
528 
529 			seq_printf(m, "\n\t%d) IPC: ", j);
530 			if (ses->tcon_ipc)
531 				cifs_debug_tcon(m, ses->tcon_ipc);
532 			else
533 				seq_puts(m, "none\n");
534 
535 			list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
536 				++j;
537 				seq_printf(m, "\n\t%d) ", j);
538 				cifs_debug_tcon(m, tcon);
539 			}
540 
541 			spin_lock(&ses->iface_lock);
542 			if (ses->iface_count)
543 				seq_printf(m, "\n\n\tServer interfaces: %zu"
544 					   "\tLast updated: %lu seconds ago",
545 					   ses->iface_count,
546 					   (jiffies - ses->iface_last_update) / HZ);
547 			j = 0;
548 			list_for_each_entry(iface, &ses->iface_list,
549 						 iface_head) {
550 				seq_printf(m, "\n\t%d)", ++j);
551 				cifs_dump_iface(m, iface);
552 				if (is_ses_using_iface(ses, iface))
553 					seq_puts(m, "\t\t[CONNECTED]\n");
554 			}
555 			spin_unlock(&ses->iface_lock);
556 
557 			seq_puts(m, "\n\n\tMIDs: ");
558 			spin_lock(&ses->chan_lock);
559 			for (j = 0; j < ses->chan_count; j++) {
560 				chan_server = ses->chans[j].server;
561 				if (!chan_server)
562 					continue;
563 
564 				if (list_empty(&chan_server->pending_mid_q))
565 					continue;
566 
567 				seq_printf(m, "\n\tServer ConnectionId: 0x%llx",
568 					   chan_server->conn_id);
569 				spin_lock(&chan_server->mid_lock);
570 				list_for_each_entry(mid_entry, &chan_server->pending_mid_q, qhead) {
571 					seq_printf(m, "\n\t\tState: %d com: %d pid: %d cbdata: %p mid %llu",
572 						   mid_entry->mid_state,
573 						   le16_to_cpu(mid_entry->command),
574 						   mid_entry->pid,
575 						   mid_entry->callback_data,
576 						   mid_entry->mid);
577 				}
578 				spin_unlock(&chan_server->mid_lock);
579 			}
580 			spin_unlock(&ses->chan_lock);
581 			seq_puts(m, "\n--\n");
582 		}
583 		if (i == 0)
584 			seq_printf(m, "\n\t\t[NONE]");
585 	}
586 	if (c == 0)
587 		seq_printf(m, "\n\t[NONE]");
588 
589 	spin_unlock(&cifs_tcp_ses_lock);
590 	seq_putc(m, '\n');
591 	cifs_swn_dump(m);
592 
593 	/* BB add code to dump additional info such as TCP session info now */
594 	return 0;
595 }
596 
597 static ssize_t cifs_stats_proc_write(struct file *file,
598 		const char __user *buffer, size_t count, loff_t *ppos)
599 {
600 	bool bv;
601 	int rc;
602 	struct TCP_Server_Info *server;
603 	struct cifs_ses *ses;
604 	struct cifs_tcon *tcon;
605 
606 	rc = kstrtobool_from_user(buffer, count, &bv);
607 	if (rc == 0) {
608 #ifdef CONFIG_CIFS_STATS2
609 		int i;
610 
611 		atomic_set(&total_buf_alloc_count, 0);
612 		atomic_set(&total_small_buf_alloc_count, 0);
613 #endif /* CONFIG_CIFS_STATS2 */
614 		atomic_set(&tcpSesReconnectCount, 0);
615 		atomic_set(&tconInfoReconnectCount, 0);
616 
617 		spin_lock(&GlobalMid_Lock);
618 		GlobalMaxActiveXid = 0;
619 		GlobalCurrentXid = 0;
620 		spin_unlock(&GlobalMid_Lock);
621 		spin_lock(&cifs_tcp_ses_lock);
622 		list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
623 			server->max_in_flight = 0;
624 #ifdef CONFIG_CIFS_STATS2
625 			for (i = 0; i < NUMBER_OF_SMB2_COMMANDS; i++) {
626 				atomic_set(&server->num_cmds[i], 0);
627 				atomic_set(&server->smb2slowcmd[i], 0);
628 				server->time_per_cmd[i] = 0;
629 				server->slowest_cmd[i] = 0;
630 				server->fastest_cmd[0] = 0;
631 			}
632 #endif /* CONFIG_CIFS_STATS2 */
633 			list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
634 				list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
635 					atomic_set(&tcon->num_smbs_sent, 0);
636 					spin_lock(&tcon->stat_lock);
637 					tcon->bytes_read = 0;
638 					tcon->bytes_written = 0;
639 					spin_unlock(&tcon->stat_lock);
640 					if (server->ops->clear_stats)
641 						server->ops->clear_stats(tcon);
642 				}
643 			}
644 		}
645 		spin_unlock(&cifs_tcp_ses_lock);
646 	} else {
647 		return rc;
648 	}
649 
650 	return count;
651 }
652 
653 static int cifs_stats_proc_show(struct seq_file *m, void *v)
654 {
655 	int i;
656 #ifdef CONFIG_CIFS_STATS2
657 	int j;
658 #endif /* STATS2 */
659 	struct TCP_Server_Info *server;
660 	struct cifs_ses *ses;
661 	struct cifs_tcon *tcon;
662 
663 	seq_printf(m, "Resources in use\nCIFS Session: %d\n",
664 			sesInfoAllocCount.counter);
665 	seq_printf(m, "Share (unique mount targets): %d\n",
666 			tconInfoAllocCount.counter);
667 	seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
668 			buf_alloc_count.counter,
669 			cifs_min_rcv + tcpSesAllocCount.counter);
670 	seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
671 			small_buf_alloc_count.counter, cifs_min_small);
672 #ifdef CONFIG_CIFS_STATS2
673 	seq_printf(m, "Total Large %d Small %d Allocations\n",
674 				atomic_read(&total_buf_alloc_count),
675 				atomic_read(&total_small_buf_alloc_count));
676 #endif /* CONFIG_CIFS_STATS2 */
677 
678 	seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&mid_count));
679 	seq_printf(m,
680 		"\n%d session %d share reconnects\n",
681 		tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
682 
683 	seq_printf(m,
684 		"Total vfs operations: %d maximum at one time: %d\n",
685 		GlobalCurrentXid, GlobalMaxActiveXid);
686 
687 	i = 0;
688 	spin_lock(&cifs_tcp_ses_lock);
689 	list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) {
690 		seq_printf(m, "\nMax requests in flight: %d", server->max_in_flight);
691 #ifdef CONFIG_CIFS_STATS2
692 		seq_puts(m, "\nTotal time spent processing by command. Time ");
693 		seq_printf(m, "units are jiffies (%d per second)\n", HZ);
694 		seq_puts(m, "  SMB3 CMD\tNumber\tTotal Time\tFastest\tSlowest\n");
695 		seq_puts(m, "  --------\t------\t----------\t-------\t-------\n");
696 		for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++)
697 			seq_printf(m, "  %d\t\t%d\t%llu\t\t%u\t%u\n", j,
698 				atomic_read(&server->num_cmds[j]),
699 				server->time_per_cmd[j],
700 				server->fastest_cmd[j],
701 				server->slowest_cmd[j]);
702 		for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++)
703 			if (atomic_read(&server->smb2slowcmd[j])) {
704 				spin_lock(&server->srv_lock);
705 				seq_printf(m, "  %d slow responses from %s for command %d\n",
706 					atomic_read(&server->smb2slowcmd[j]),
707 					server->hostname, j);
708 				spin_unlock(&server->srv_lock);
709 			}
710 #endif /* STATS2 */
711 		list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
712 			list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
713 				i++;
714 				seq_printf(m, "\n%d) %s", i, tcon->tree_name);
715 				if (tcon->need_reconnect)
716 					seq_puts(m, "\tDISCONNECTED ");
717 				seq_printf(m, "\nSMBs: %d",
718 					   atomic_read(&tcon->num_smbs_sent));
719 				if (server->ops->print_stats)
720 					server->ops->print_stats(m, tcon);
721 			}
722 		}
723 	}
724 	spin_unlock(&cifs_tcp_ses_lock);
725 
726 	seq_putc(m, '\n');
727 	return 0;
728 }
729 
730 static int cifs_stats_proc_open(struct inode *inode, struct file *file)
731 {
732 	return single_open(file, cifs_stats_proc_show, NULL);
733 }
734 
735 static const struct proc_ops cifs_stats_proc_ops = {
736 	.proc_open	= cifs_stats_proc_open,
737 	.proc_read	= seq_read,
738 	.proc_lseek	= seq_lseek,
739 	.proc_release	= single_release,
740 	.proc_write	= cifs_stats_proc_write,
741 };
742 
743 #ifdef CONFIG_CIFS_SMB_DIRECT
744 #define PROC_FILE_DEFINE(name) \
745 static ssize_t name##_write(struct file *file, const char __user *buffer, \
746 	size_t count, loff_t *ppos) \
747 { \
748 	int rc; \
749 	rc = kstrtoint_from_user(buffer, count, 10, & name); \
750 	if (rc) \
751 		return rc; \
752 	return count; \
753 } \
754 static int name##_proc_show(struct seq_file *m, void *v) \
755 { \
756 	seq_printf(m, "%d\n", name ); \
757 	return 0; \
758 } \
759 static int name##_open(struct inode *inode, struct file *file) \
760 { \
761 	return single_open(file, name##_proc_show, NULL); \
762 } \
763 \
764 static const struct proc_ops cifs_##name##_proc_fops = { \
765 	.proc_open	= name##_open, \
766 	.proc_read	= seq_read, \
767 	.proc_lseek	= seq_lseek, \
768 	.proc_release	= single_release, \
769 	.proc_write	= name##_write, \
770 }
771 
772 PROC_FILE_DEFINE(rdma_readwrite_threshold);
773 PROC_FILE_DEFINE(smbd_max_frmr_depth);
774 PROC_FILE_DEFINE(smbd_keep_alive_interval);
775 PROC_FILE_DEFINE(smbd_max_receive_size);
776 PROC_FILE_DEFINE(smbd_max_fragmented_recv_size);
777 PROC_FILE_DEFINE(smbd_max_send_size);
778 PROC_FILE_DEFINE(smbd_send_credit_target);
779 PROC_FILE_DEFINE(smbd_receive_credit_max);
780 #endif
781 
782 static struct proc_dir_entry *proc_fs_cifs;
783 static const struct proc_ops cifsFYI_proc_ops;
784 static const struct proc_ops cifs_lookup_cache_proc_ops;
785 static const struct proc_ops traceSMB_proc_ops;
786 static const struct proc_ops cifs_security_flags_proc_ops;
787 static const struct proc_ops cifs_linux_ext_proc_ops;
788 static const struct proc_ops cifs_mount_params_proc_ops;
789 
790 void
791 cifs_proc_init(void)
792 {
793 	proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
794 	if (proc_fs_cifs == NULL)
795 		return;
796 
797 	proc_create_single("DebugData", 0, proc_fs_cifs,
798 			cifs_debug_data_proc_show);
799 
800 	proc_create_single("open_files", 0400, proc_fs_cifs,
801 			cifs_debug_files_proc_show);
802 
803 	proc_create("Stats", 0644, proc_fs_cifs, &cifs_stats_proc_ops);
804 	proc_create("cifsFYI", 0644, proc_fs_cifs, &cifsFYI_proc_ops);
805 	proc_create("traceSMB", 0644, proc_fs_cifs, &traceSMB_proc_ops);
806 	proc_create("LinuxExtensionsEnabled", 0644, proc_fs_cifs,
807 		    &cifs_linux_ext_proc_ops);
808 	proc_create("SecurityFlags", 0644, proc_fs_cifs,
809 		    &cifs_security_flags_proc_ops);
810 	proc_create("LookupCacheEnabled", 0644, proc_fs_cifs,
811 		    &cifs_lookup_cache_proc_ops);
812 
813 	proc_create("mount_params", 0444, proc_fs_cifs, &cifs_mount_params_proc_ops);
814 
815 #ifdef CONFIG_CIFS_DFS_UPCALL
816 	proc_create("dfscache", 0644, proc_fs_cifs, &dfscache_proc_ops);
817 #endif
818 
819 #ifdef CONFIG_CIFS_SMB_DIRECT
820 	proc_create("rdma_readwrite_threshold", 0644, proc_fs_cifs,
821 		&cifs_rdma_readwrite_threshold_proc_fops);
822 	proc_create("smbd_max_frmr_depth", 0644, proc_fs_cifs,
823 		&cifs_smbd_max_frmr_depth_proc_fops);
824 	proc_create("smbd_keep_alive_interval", 0644, proc_fs_cifs,
825 		&cifs_smbd_keep_alive_interval_proc_fops);
826 	proc_create("smbd_max_receive_size", 0644, proc_fs_cifs,
827 		&cifs_smbd_max_receive_size_proc_fops);
828 	proc_create("smbd_max_fragmented_recv_size", 0644, proc_fs_cifs,
829 		&cifs_smbd_max_fragmented_recv_size_proc_fops);
830 	proc_create("smbd_max_send_size", 0644, proc_fs_cifs,
831 		&cifs_smbd_max_send_size_proc_fops);
832 	proc_create("smbd_send_credit_target", 0644, proc_fs_cifs,
833 		&cifs_smbd_send_credit_target_proc_fops);
834 	proc_create("smbd_receive_credit_max", 0644, proc_fs_cifs,
835 		&cifs_smbd_receive_credit_max_proc_fops);
836 #endif
837 }
838 
839 void
840 cifs_proc_clean(void)
841 {
842 	if (proc_fs_cifs == NULL)
843 		return;
844 
845 	remove_proc_entry("DebugData", proc_fs_cifs);
846 	remove_proc_entry("open_files", proc_fs_cifs);
847 	remove_proc_entry("cifsFYI", proc_fs_cifs);
848 	remove_proc_entry("traceSMB", proc_fs_cifs);
849 	remove_proc_entry("Stats", proc_fs_cifs);
850 	remove_proc_entry("SecurityFlags", proc_fs_cifs);
851 	remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
852 	remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
853 	remove_proc_entry("mount_params", proc_fs_cifs);
854 
855 #ifdef CONFIG_CIFS_DFS_UPCALL
856 	remove_proc_entry("dfscache", proc_fs_cifs);
857 #endif
858 #ifdef CONFIG_CIFS_SMB_DIRECT
859 	remove_proc_entry("rdma_readwrite_threshold", proc_fs_cifs);
860 	remove_proc_entry("smbd_max_frmr_depth", proc_fs_cifs);
861 	remove_proc_entry("smbd_keep_alive_interval", proc_fs_cifs);
862 	remove_proc_entry("smbd_max_receive_size", proc_fs_cifs);
863 	remove_proc_entry("smbd_max_fragmented_recv_size", proc_fs_cifs);
864 	remove_proc_entry("smbd_max_send_size", proc_fs_cifs);
865 	remove_proc_entry("smbd_send_credit_target", proc_fs_cifs);
866 	remove_proc_entry("smbd_receive_credit_max", proc_fs_cifs);
867 #endif
868 	remove_proc_entry("fs/cifs", NULL);
869 }
870 
871 static int cifsFYI_proc_show(struct seq_file *m, void *v)
872 {
873 	seq_printf(m, "%d\n", cifsFYI);
874 	return 0;
875 }
876 
877 static int cifsFYI_proc_open(struct inode *inode, struct file *file)
878 {
879 	return single_open(file, cifsFYI_proc_show, NULL);
880 }
881 
882 static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
883 		size_t count, loff_t *ppos)
884 {
885 	char c[2] = { '\0' };
886 	bool bv;
887 	int rc;
888 
889 	rc = get_user(c[0], buffer);
890 	if (rc)
891 		return rc;
892 	if (kstrtobool(c, &bv) == 0)
893 		cifsFYI = bv;
894 	else if ((c[0] > '1') && (c[0] <= '9'))
895 		cifsFYI = (int) (c[0] - '0'); /* see cifs_debug.h for meanings */
896 	else
897 		return -EINVAL;
898 
899 	return count;
900 }
901 
902 static const struct proc_ops cifsFYI_proc_ops = {
903 	.proc_open	= cifsFYI_proc_open,
904 	.proc_read	= seq_read,
905 	.proc_lseek	= seq_lseek,
906 	.proc_release	= single_release,
907 	.proc_write	= cifsFYI_proc_write,
908 };
909 
910 static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
911 {
912 	seq_printf(m, "%d\n", linuxExtEnabled);
913 	return 0;
914 }
915 
916 static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
917 {
918 	return single_open(file, cifs_linux_ext_proc_show, NULL);
919 }
920 
921 static ssize_t cifs_linux_ext_proc_write(struct file *file,
922 		const char __user *buffer, size_t count, loff_t *ppos)
923 {
924 	int rc;
925 
926 	rc = kstrtobool_from_user(buffer, count, &linuxExtEnabled);
927 	if (rc)
928 		return rc;
929 
930 	return count;
931 }
932 
933 static const struct proc_ops cifs_linux_ext_proc_ops = {
934 	.proc_open	= cifs_linux_ext_proc_open,
935 	.proc_read	= seq_read,
936 	.proc_lseek	= seq_lseek,
937 	.proc_release	= single_release,
938 	.proc_write	= cifs_linux_ext_proc_write,
939 };
940 
941 static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
942 {
943 	seq_printf(m, "%d\n", lookupCacheEnabled);
944 	return 0;
945 }
946 
947 static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
948 {
949 	return single_open(file, cifs_lookup_cache_proc_show, NULL);
950 }
951 
952 static ssize_t cifs_lookup_cache_proc_write(struct file *file,
953 		const char __user *buffer, size_t count, loff_t *ppos)
954 {
955 	int rc;
956 
957 	rc = kstrtobool_from_user(buffer, count, &lookupCacheEnabled);
958 	if (rc)
959 		return rc;
960 
961 	return count;
962 }
963 
964 static const struct proc_ops cifs_lookup_cache_proc_ops = {
965 	.proc_open	= cifs_lookup_cache_proc_open,
966 	.proc_read	= seq_read,
967 	.proc_lseek	= seq_lseek,
968 	.proc_release	= single_release,
969 	.proc_write	= cifs_lookup_cache_proc_write,
970 };
971 
972 static int traceSMB_proc_show(struct seq_file *m, void *v)
973 {
974 	seq_printf(m, "%d\n", traceSMB);
975 	return 0;
976 }
977 
978 static int traceSMB_proc_open(struct inode *inode, struct file *file)
979 {
980 	return single_open(file, traceSMB_proc_show, NULL);
981 }
982 
983 static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
984 		size_t count, loff_t *ppos)
985 {
986 	int rc;
987 
988 	rc = kstrtobool_from_user(buffer, count, &traceSMB);
989 	if (rc)
990 		return rc;
991 
992 	return count;
993 }
994 
995 static const struct proc_ops traceSMB_proc_ops = {
996 	.proc_open	= traceSMB_proc_open,
997 	.proc_read	= seq_read,
998 	.proc_lseek	= seq_lseek,
999 	.proc_release	= single_release,
1000 	.proc_write	= traceSMB_proc_write,
1001 };
1002 
1003 static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
1004 {
1005 	seq_printf(m, "0x%x\n", global_secflags);
1006 	return 0;
1007 }
1008 
1009 static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
1010 {
1011 	return single_open(file, cifs_security_flags_proc_show, NULL);
1012 }
1013 
1014 /*
1015  * Ensure that if someone sets a MUST flag, that we disable all other MAY
1016  * flags except for the ones corresponding to the given MUST flag. If there are
1017  * multiple MUST flags, then try to prefer more secure ones.
1018  */
1019 static void
1020 cifs_security_flags_handle_must_flags(unsigned int *flags)
1021 {
1022 	unsigned int signflags = *flags & CIFSSEC_MUST_SIGN;
1023 
1024 	if ((*flags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5)
1025 		*flags = CIFSSEC_MUST_KRB5;
1026 	else if ((*flags & CIFSSEC_MUST_NTLMSSP) == CIFSSEC_MUST_NTLMSSP)
1027 		*flags = CIFSSEC_MUST_NTLMSSP;
1028 	else if ((*flags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2)
1029 		*flags = CIFSSEC_MUST_NTLMV2;
1030 
1031 	*flags |= signflags;
1032 }
1033 
1034 static ssize_t cifs_security_flags_proc_write(struct file *file,
1035 		const char __user *buffer, size_t count, loff_t *ppos)
1036 {
1037 	int rc;
1038 	unsigned int flags;
1039 	char flags_string[12];
1040 	bool bv;
1041 
1042 	if ((count < 1) || (count > 11))
1043 		return -EINVAL;
1044 
1045 	memset(flags_string, 0, 12);
1046 
1047 	if (copy_from_user(flags_string, buffer, count))
1048 		return -EFAULT;
1049 
1050 	if (count < 3) {
1051 		/* single char or single char followed by null */
1052 		if (kstrtobool(flags_string, &bv) == 0) {
1053 			global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF;
1054 			return count;
1055 		} else if (!isdigit(flags_string[0])) {
1056 			cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
1057 					flags_string);
1058 			return -EINVAL;
1059 		}
1060 	}
1061 
1062 	/* else we have a number */
1063 	rc = kstrtouint(flags_string, 0, &flags);
1064 	if (rc) {
1065 		cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
1066 				flags_string);
1067 		return rc;
1068 	}
1069 
1070 	cifs_dbg(FYI, "sec flags 0x%x\n", flags);
1071 
1072 	if (flags == 0)  {
1073 		cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string);
1074 		return -EINVAL;
1075 	}
1076 
1077 	if (flags & ~CIFSSEC_MASK) {
1078 		cifs_dbg(VFS, "Unsupported security flags: 0x%x\n",
1079 			 flags & ~CIFSSEC_MASK);
1080 		return -EINVAL;
1081 	}
1082 
1083 	cifs_security_flags_handle_must_flags(&flags);
1084 
1085 	/* flags look ok - update the global security flags for cifs module */
1086 	global_secflags = flags;
1087 	if (global_secflags & CIFSSEC_MUST_SIGN) {
1088 		/* requiring signing implies signing is allowed */
1089 		global_secflags |= CIFSSEC_MAY_SIGN;
1090 		cifs_dbg(FYI, "packet signing now required\n");
1091 	} else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
1092 		cifs_dbg(FYI, "packet signing disabled\n");
1093 	}
1094 	/* BB should we turn on MAY flags for other MUST options? */
1095 	return count;
1096 }
1097 
1098 static const struct proc_ops cifs_security_flags_proc_ops = {
1099 	.proc_open	= cifs_security_flags_proc_open,
1100 	.proc_read	= seq_read,
1101 	.proc_lseek	= seq_lseek,
1102 	.proc_release	= single_release,
1103 	.proc_write	= cifs_security_flags_proc_write,
1104 };
1105 
1106 /* To make it easier to debug, can help to show mount params */
1107 static int cifs_mount_params_proc_show(struct seq_file *m, void *v)
1108 {
1109 	const struct fs_parameter_spec *p;
1110 	const char *type;
1111 
1112 	for (p = smb3_fs_parameters; p->name; p++) {
1113 		/* cannot use switch with pointers... */
1114 		if (!p->type) {
1115 			if (p->flags == fs_param_neg_with_no)
1116 				type = "noflag";
1117 			else
1118 				type = "flag";
1119 		} else if (p->type == fs_param_is_bool)
1120 			type = "bool";
1121 		else if (p->type == fs_param_is_u32)
1122 			type = "u32";
1123 		else if (p->type == fs_param_is_u64)
1124 			type = "u64";
1125 		else if (p->type == fs_param_is_string)
1126 			type = "string";
1127 		else
1128 			type = "unknown";
1129 
1130 		seq_printf(m, "%s:%s\n", p->name, type);
1131 	}
1132 
1133 	return 0;
1134 }
1135 
1136 static int cifs_mount_params_proc_open(struct inode *inode, struct file *file)
1137 {
1138 	return single_open(file, cifs_mount_params_proc_show, NULL);
1139 }
1140 
1141 static const struct proc_ops cifs_mount_params_proc_ops = {
1142 	.proc_open	= cifs_mount_params_proc_open,
1143 	.proc_read	= seq_read,
1144 	.proc_lseek	= seq_lseek,
1145 	.proc_release	= single_release,
1146 	/* No need for write for now */
1147 	/* .proc_write	= cifs_mount_params_proc_write, */
1148 };
1149 
1150 #else
1151 inline void cifs_proc_init(void)
1152 {
1153 }
1154 
1155 inline void cifs_proc_clean(void)
1156 {
1157 }
1158 #endif /* PROC_FS */
1159