blob: e6045fd5c85666281ec20bc7b6439723a64d4fbd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs_debug.c
3 *
Steve Frenchb8643e12005-04-28 22:41:07 -07004 * Copyright (C) International Business Machines Corp., 2000,2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Modified by Steve French (sfrench@us.ibm.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
Steve French221601c2007-06-05 20:35:06 +000010 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * (at your option) any later version.
Steve French221601c2007-06-05 20:35:06 +000012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
16 * the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
Steve French221601c2007-06-05 20:35:06 +000019 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22#include <linux/fs.h>
23#include <linux/string.h>
24#include <linux/ctype.h>
25#include <linux/module.h>
26#include <linux/proc_fs.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "cifspdu.h"
29#include "cifsglob.h"
30#include "cifsproto.h"
31#include "cifs_debug.h"
Steve French6c91d362005-04-28 22:41:06 -070032#include "cifsfs.h"
Long Lid8ec9132017-11-07 01:54:58 -070033#ifdef CONFIG_CIFS_SMB_DIRECT
34#include "smbdirect.h"
35#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37void
38cifs_dump_mem(char *label, void *data, int length)
39{
Andy Shevchenko0b456f02014-08-27 16:49:44 +030040 pr_debug("%s: dump of %d bytes of data at 0x%p\n", label, length, data);
Andy Shevchenko55d83e02014-08-27 16:49:43 +030041 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 16, 4,
42 data, length, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
Joe Perchesf96637b2013-05-04 22:12:25 -050045#ifdef CONFIG_CIFS_DEBUG
46void cifs_vfs_err(const char *fmt, ...)
47{
48 struct va_format vaf;
49 va_list args;
50
51 va_start(args, fmt);
52
53 vaf.fmt = fmt;
54 vaf.va = &args;
55
Jamie Bainbridgeec7147a2015-11-07 22:13:49 +100056 pr_err_ratelimited("CIFS VFS: %pV", &vaf);
Joe Perchesf96637b2013-05-04 22:12:25 -050057
58 va_end(args);
59}
60#endif
61
Pavel Shilovskyd4e48542012-03-23 14:28:02 -040062void cifs_dump_detail(void *buf)
Steve French39798772006-05-31 22:40:51 +000063{
Pavel Shilovsky8aa26f32012-05-17 13:25:35 +040064#ifdef CONFIG_CIFS_DEBUG2
Pavel Shilovskyd4e48542012-03-23 14:28:02 -040065 struct smb_hdr *smb = (struct smb_hdr *)buf;
66
Joe Perchesf96637b2013-05-04 22:12:25 -050067 cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d\n",
68 smb->Command, smb->Status.CifsError,
69 smb->Flags, smb->Flags2, smb->Mid, smb->Pid);
70 cifs_dbg(VFS, "smb buf %p len %u\n", smb, smbCalcSize(smb));
Pavel Shilovsky8aa26f32012-05-17 13:25:35 +040071#endif /* CONFIG_CIFS_DEBUG2 */
Steve French39798772006-05-31 22:40:51 +000072}
73
Steve Frenchffdd6e42007-06-24 21:15:44 +000074void cifs_dump_mids(struct TCP_Server_Info *server)
Steve French39798772006-05-31 22:40:51 +000075{
Pavel Shilovsky8aa26f32012-05-17 13:25:35 +040076#ifdef CONFIG_CIFS_DEBUG2
Steve French39798772006-05-31 22:40:51 +000077 struct list_head *tmp;
Steve Frenchffdd6e42007-06-24 21:15:44 +000078 struct mid_q_entry *mid_entry;
Steve French39798772006-05-31 22:40:51 +000079
Steve French221601c2007-06-05 20:35:06 +000080 if (server == NULL)
Steve French39798772006-05-31 22:40:51 +000081 return;
82
Joe Perchesf96637b2013-05-04 22:12:25 -050083 cifs_dbg(VFS, "Dump pending requests:\n");
Steve French39798772006-05-31 22:40:51 +000084 spin_lock(&GlobalMid_Lock);
85 list_for_each(tmp, &server->pending_mid_q) {
86 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -050087 cifs_dbg(VFS, "State: %d Cmd: %d Pid: %d Cbdata: %p Mid %llu\n",
88 mid_entry->mid_state,
89 le16_to_cpu(mid_entry->command),
90 mid_entry->pid,
91 mid_entry->callback_data,
92 mid_entry->mid);
Steve French39798772006-05-31 22:40:51 +000093#ifdef CONFIG_CIFS_STATS2
Joe Perchesf96637b2013-05-04 22:12:25 -050094 cifs_dbg(VFS, "IsLarge: %d buf: %p time rcv: %ld now: %ld\n",
95 mid_entry->large_buf,
96 mid_entry->resp_buf,
97 mid_entry->when_received,
98 jiffies);
Steve French39798772006-05-31 22:40:51 +000099#endif /* STATS2 */
Joe Perchesf96637b2013-05-04 22:12:25 -0500100 cifs_dbg(VFS, "IsMult: %d IsEnd: %d\n",
101 mid_entry->multiRsp, mid_entry->multiEnd);
Steve Frenchad8b15f2008-08-08 21:10:16 +0000102 if (mid_entry->resp_buf) {
103 cifs_dump_detail(mid_entry->resp_buf);
104 cifs_dump_mem("existing buf: ",
105 mid_entry->resp_buf, 62);
Steve French39798772006-05-31 22:40:51 +0000106 }
107 }
108 spin_unlock(&GlobalMid_Lock);
Steve French39798772006-05-31 22:40:51 +0000109#endif /* CONFIG_CIFS_DEBUG2 */
Pavel Shilovsky8aa26f32012-05-17 13:25:35 +0400110}
Steve French39798772006-05-31 22:40:51 +0000111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#ifdef CONFIG_PROC_FS
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000113static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Jeff Laytonf1987b42008-11-15 11:12:47 -0500115 struct list_head *tmp1, *tmp2, *tmp3;
Steve Frenchffdd6e42007-06-24 21:15:44 +0000116 struct mid_q_entry *mid_entry;
Jeff Layton14fbf502008-11-14 13:53:46 -0500117 struct TCP_Server_Info *server;
Steve French96daf2b2011-05-27 04:34:02 +0000118 struct cifs_ses *ses;
119 struct cifs_tcon *tcon;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500120 int i, j;
121 __u32 dev_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000123 seq_puts(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 "Display Internal CIFS Data Structures for Debugging\n"
125 "---------------------------------------------------\n");
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000126 seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
Jeff Laytonca40b712011-01-07 11:30:29 -0500127 seq_printf(m, "Features:");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530128#ifdef CONFIG_CIFS_DFS_UPCALL
Jeff Laytonca40b712011-01-07 11:30:29 -0500129 seq_printf(m, " dfs");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530130#endif
131#ifdef CONFIG_CIFS_FSCACHE
Jeff Laytonca40b712011-01-07 11:30:29 -0500132 seq_printf(m, " fscache");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530133#endif
134#ifdef CONFIG_CIFS_WEAK_PW_HASH
Jeff Laytonca40b712011-01-07 11:30:29 -0500135 seq_printf(m, " lanman");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530136#endif
137#ifdef CONFIG_CIFS_POSIX
Jeff Laytonca40b712011-01-07 11:30:29 -0500138 seq_printf(m, " posix");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530139#endif
140#ifdef CONFIG_CIFS_UPCALL
Jeff Laytonca40b712011-01-07 11:30:29 -0500141 seq_printf(m, " spnego");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530142#endif
143#ifdef CONFIG_CIFS_XATTR
Jeff Laytonca40b712011-01-07 11:30:29 -0500144 seq_printf(m, " xattr");
145#endif
146#ifdef CONFIG_CIFS_ACL
147 seq_printf(m, " acl");
Suresh Jayaramanf5799032010-07-30 18:25:56 +0530148#endif
149 seq_putc(m, '\n');
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000150 seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
151 seq_printf(m, "Servers:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 i = 0;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530154 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500155 list_for_each(tmp1, &cifs_tcp_ses_list) {
156 server = list_entry(tmp1, struct TCP_Server_Info,
Jeff Layton14fbf502008-11-14 13:53:46 -0500157 tcp_ses_list);
Steve French97428052016-09-19 22:06:35 -0500158 seq_printf(m, "\nNumber of credits: %d", server->credits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 i++;
Jeff Layton14fbf502008-11-14 13:53:46 -0500160 list_for_each(tmp2, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000161 ses = list_entry(tmp2, struct cifs_ses,
Jeff Layton14fbf502008-11-14 13:53:46 -0500162 smb_ses_list);
163 if ((ses->serverDomain == NULL) ||
164 (ses->serverOS == NULL) ||
165 (ses->serverNOS == NULL)) {
Steve French1fa089e2017-09-20 16:46:49 -0500166 seq_printf(m, "\n%d) Name: %s Uses: %d Capability: 0x%x\tSession Status: %d\t",
167 i, ses->serverName, ses->ses_count,
168 ses->capabilities, ses->status);
169 if (ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
170 seq_printf(m, "Guest\t");
171 else if (ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
172 seq_printf(m, "Anonymous\t");
Jeff Layton14fbf502008-11-14 13:53:46 -0500173 } else {
174 seq_printf(m,
Jeff Laytonf1987b42008-11-15 11:12:47 -0500175 "\n%d) Name: %s Domain: %s Uses: %d OS:"
176 " %s\n\tNOS: %s\tCapability: 0x%x\n\tSMB"
Steve French221601c2007-06-05 20:35:06 +0000177 " session status: %d\t",
Steve Frenchb8643e12005-04-28 22:41:07 -0700178 i, ses->serverName, ses->serverDomain,
Jeff Layton14fbf502008-11-14 13:53:46 -0500179 ses->ses_count, ses->serverOS, ses->serverNOS,
Steve French221601c2007-06-05 20:35:06 +0000180 ses->capabilities, ses->status);
Jeff Layton14fbf502008-11-14 13:53:46 -0500181 }
Long Li8339dd32017-11-07 01:54:55 -0700182 if (server->rdma)
183 seq_printf(m, "RDMA\n\t");
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000184 seq_printf(m, "TCP status: %d\n\tLocal Users To "
Jeff Layton14fbf502008-11-14 13:53:46 -0500185 "Server: %d SecMode: 0x%x Req On Wire: %d",
186 server->tcpStatus, server->srv_count,
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300187 server->sec_mode, in_flight(server));
Steve French131afd0b2005-10-07 09:51:05 -0700188
189#ifdef CONFIG_CIFS_STATS2
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000190 seq_printf(m, " In Send: %d In MaxReq Wait: %d",
Steve French789e6662011-08-09 18:44:44 +0000191 atomic_read(&server->in_send),
Jeff Layton14fbf502008-11-14 13:53:46 -0500192 atomic_read(&server->num_waiters));
Steve French131afd0b2005-10-07 09:51:05 -0700193#endif
194
Jeff Laytonf1987b42008-11-15 11:12:47 -0500195 seq_puts(m, "\n\tShares:");
196 j = 0;
197 list_for_each(tmp3, &ses->tcon_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000198 tcon = list_entry(tmp3, struct cifs_tcon,
Jeff Laytonf1987b42008-11-15 11:12:47 -0500199 tcon_list);
200 ++j;
201 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
202 seq_printf(m, "\n\t%d) %s Mounts: %d ", j,
203 tcon->treeName, tcon->tc_count);
204 if (tcon->nativeFileSystem) {
205 seq_printf(m, "Type: %s ",
206 tcon->nativeFileSystem);
207 }
208 seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x"
Steve French59b04c52014-08-02 21:16:48 -0500209 "\n\tPathComponentMax: %d Status: %d",
Jeff Laytonf1987b42008-11-15 11:12:47 -0500210 le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
211 le32_to_cpu(tcon->fsAttrInfo.Attributes),
212 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
213 tcon->tidStatus);
214 if (dev_type == FILE_DEVICE_DISK)
215 seq_puts(m, " type: DISK ");
216 else if (dev_type == FILE_DEVICE_CD_ROM)
217 seq_puts(m, " type: CDROM ");
218 else
219 seq_printf(m, " type: %d ", dev_type);
Steve French769ee6a2013-06-19 14:15:30 -0500220 if (server->ops->dump_share_caps)
221 server->ops->dump_share_caps(m, tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500222
223 if (tcon->need_reconnect)
224 seq_puts(m, "\tDISCONNECTED ");
225 seq_putc(m, '\n');
226 }
227
228 seq_puts(m, "\n\tMIDs:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 spin_lock(&GlobalMid_Lock);
Jeff Layton14fbf502008-11-14 13:53:46 -0500231 list_for_each(tmp3, &server->pending_mid_q) {
Jeff Laytonf1987b42008-11-15 11:12:47 -0500232 mid_entry = list_entry(tmp3, struct mid_q_entry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 qhead);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500234 seq_printf(m, "\tState: %d com: %d pid:"
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400235 " %d cbdata: %p mid %llu\n",
236 mid_entry->mid_state,
237 le16_to_cpu(mid_entry->command),
238 mid_entry->pid,
239 mid_entry->callback_data,
240 mid_entry->mid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Steve French221601c2007-06-05 20:35:06 +0000242 spin_unlock(&GlobalMid_Lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530245 spin_unlock(&cifs_tcp_ses_lock);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000246 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* BB add code to dump additional info such as TCP session info now */
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000252static int cifs_debug_data_proc_open(struct inode *inode, struct file *file)
253{
254 return single_open(file, cifs_debug_data_proc_show, NULL);
255}
Steve French1047abc2005-10-11 19:58:06 -0700256
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000257static const struct file_operations cifs_debug_data_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000258 .open = cifs_debug_data_proc_open,
259 .read = seq_read,
260 .llseek = seq_lseek,
261 .release = single_release,
262};
263
264#ifdef CONFIG_CIFS_STATS
265static ssize_t cifs_stats_proc_write(struct file *file,
266 const char __user *buffer, size_t count, loff_t *ppos)
Steve French1047abc2005-10-11 19:58:06 -0700267{
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300268 bool bv;
Steve French221601c2007-06-05 20:35:06 +0000269 int rc;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500270 struct list_head *tmp1, *tmp2, *tmp3;
271 struct TCP_Server_Info *server;
Steve French96daf2b2011-05-27 04:34:02 +0000272 struct cifs_ses *ses;
273 struct cifs_tcon *tcon;
Steve French1047abc2005-10-11 19:58:06 -0700274
Kees Cook14042972016-03-17 14:22:54 -0700275 rc = kstrtobool_from_user(buffer, count, &bv);
276 if (rc == 0) {
Steve French4498eed52005-12-03 13:58:57 -0800277#ifdef CONFIG_CIFS_STATS2
278 atomic_set(&totBufAllocCount, 0);
279 atomic_set(&totSmBufAllocCount, 0);
280#endif /* CONFIG_CIFS_STATS2 */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530281 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500282 list_for_each(tmp1, &cifs_tcp_ses_list) {
283 server = list_entry(tmp1, struct TCP_Server_Info,
284 tcp_ses_list);
Steve Frenchc2b33822008-11-17 03:57:13 +0000285 list_for_each(tmp2, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000286 ses = list_entry(tmp2, struct cifs_ses,
Steve Frenchc2b33822008-11-17 03:57:13 +0000287 smb_ses_list);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500288 list_for_each(tmp3, &ses->tcon_list) {
289 tcon = list_entry(tmp3,
Steve French96daf2b2011-05-27 04:34:02 +0000290 struct cifs_tcon,
Jeff Laytonf1987b42008-11-15 11:12:47 -0500291 tcon_list);
292 atomic_set(&tcon->num_smbs_sent, 0);
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400293 if (server->ops->clear_stats)
294 server->ops->clear_stats(tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500295 }
296 }
Steve French1047abc2005-10-11 19:58:06 -0700297 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530298 spin_unlock(&cifs_tcp_ses_lock);
Kees Cook14042972016-03-17 14:22:54 -0700299 } else {
300 return rc;
Steve French1047abc2005-10-11 19:58:06 -0700301 }
302
Steve French221601c2007-06-05 20:35:06 +0000303 return count;
Steve French1047abc2005-10-11 19:58:06 -0700304}
305
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000306static int cifs_stats_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000308 int i;
Jeff Laytonf1987b42008-11-15 11:12:47 -0500309 struct list_head *tmp1, *tmp2, *tmp3;
310 struct TCP_Server_Info *server;
Steve French96daf2b2011-05-27 04:34:02 +0000311 struct cifs_ses *ses;
312 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000314 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 "Resources in use\nCIFS Session: %d\n",
316 sesInfoAllocCount.counter);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000317 seq_printf(m, "Share (unique mount targets): %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 tconInfoAllocCount.counter);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000319 seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
Steve Frenchb8643e12005-04-28 22:41:07 -0700320 bufAllocCount.counter,
321 cifs_min_rcv + tcpSesAllocCount.counter);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000322 seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
Steve French221601c2007-06-05 20:35:06 +0000323 smBufAllocCount.counter, cifs_min_small);
Steve French07475ff2005-12-03 14:11:37 -0800324#ifdef CONFIG_CIFS_STATS2
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000325 seq_printf(m, "Total Large %d Small %d Allocations\n",
Steve French07475ff2005-12-03 14:11:37 -0800326 atomic_read(&totBufAllocCount),
Steve French221601c2007-06-05 20:35:06 +0000327 atomic_read(&totSmBufAllocCount));
Steve French07475ff2005-12-03 14:11:37 -0800328#endif /* CONFIG_CIFS_STATS2 */
329
Jeff Layton80975312011-01-11 07:24:02 -0500330 seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&midCount));
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000331 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 "\n%d session %d share reconnects\n",
Steve French221601c2007-06-05 20:35:06 +0000333 tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000335 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 "Total vfs operations: %d maximum at one time: %d\n",
Steve French221601c2007-06-05 20:35:06 +0000337 GlobalCurrentXid, GlobalMaxActiveXid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 i = 0;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530340 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500341 list_for_each(tmp1, &cifs_tcp_ses_list) {
342 server = list_entry(tmp1, struct TCP_Server_Info,
343 tcp_ses_list);
344 list_for_each(tmp2, &server->smb_ses_list) {
Steve French96daf2b2011-05-27 04:34:02 +0000345 ses = list_entry(tmp2, struct cifs_ses,
Jeff Laytonf1987b42008-11-15 11:12:47 -0500346 smb_ses_list);
347 list_for_each(tmp3, &ses->tcon_list) {
348 tcon = list_entry(tmp3,
Steve French96daf2b2011-05-27 04:34:02 +0000349 struct cifs_tcon,
Jeff Laytonf1987b42008-11-15 11:12:47 -0500350 tcon_list);
351 i++;
352 seq_printf(m, "\n%d) %s", i, tcon->treeName);
353 if (tcon->need_reconnect)
354 seq_puts(m, "\tDISCONNECTED ");
Pavel Shilovsky44c58182012-05-28 14:16:31 +0400355 seq_printf(m, "\nSMBs: %d",
356 atomic_read(&tcon->num_smbs_sent));
357 if (server->ops->print_stats)
358 server->ops->print_stats(m, tcon);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500359 }
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530362 spin_unlock(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000364 seq_putc(m, '\n');
365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000367
368static int cifs_stats_proc_open(struct inode *inode, struct file *file)
369{
370 return single_open(file, cifs_stats_proc_show, NULL);
371}
372
373static const struct file_operations cifs_stats_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000374 .open = cifs_stats_proc_open,
375 .read = seq_read,
376 .llseek = seq_lseek,
377 .release = single_release,
378 .write = cifs_stats_proc_write,
379};
Steve French90c81e02008-02-12 20:32:36 +0000380#endif /* STATS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Long Lid8ec9132017-11-07 01:54:58 -0700382#ifdef CONFIG_CIFS_SMB_DIRECT
383#define PROC_FILE_DEFINE(name) \
384static ssize_t name##_write(struct file *file, const char __user *buffer, \
385 size_t count, loff_t *ppos) \
386{ \
387 int rc; \
388 rc = kstrtoint_from_user(buffer, count, 10, & name); \
389 if (rc) \
390 return rc; \
391 return count; \
392} \
393static int name##_proc_show(struct seq_file *m, void *v) \
394{ \
395 seq_printf(m, "%d\n", name ); \
396 return 0; \
397} \
398static int name##_open(struct inode *inode, struct file *file) \
399{ \
400 return single_open(file, name##_proc_show, NULL); \
401} \
402\
403static const struct file_operations cifs_##name##_proc_fops = { \
404 .open = name##_open, \
405 .read = seq_read, \
406 .llseek = seq_lseek, \
407 .release = single_release, \
408 .write = name##_write, \
409}
410
411extern int rdma_readwrite_threshold;
412extern int smbd_max_frmr_depth;
413extern int smbd_keep_alive_interval;
414extern int smbd_max_receive_size;
415extern int smbd_max_fragmented_recv_size;
416extern int smbd_max_send_size;
417extern int smbd_send_credit_target;
418extern int smbd_receive_credit_max;
419
420PROC_FILE_DEFINE(rdma_readwrite_threshold);
421PROC_FILE_DEFINE(smbd_max_frmr_depth);
422PROC_FILE_DEFINE(smbd_keep_alive_interval);
423PROC_FILE_DEFINE(smbd_max_receive_size);
424PROC_FILE_DEFINE(smbd_max_fragmented_recv_size);
425PROC_FILE_DEFINE(smbd_max_send_size);
426PROC_FILE_DEFINE(smbd_send_credit_target);
427PROC_FILE_DEFINE(smbd_receive_credit_max);
428#endif
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static struct proc_dir_entry *proc_fs_cifs;
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000431static const struct file_operations cifsFYI_proc_fops;
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000432static const struct file_operations cifs_lookup_cache_proc_fops;
433static const struct file_operations traceSMB_proc_fops;
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000434static const struct file_operations cifs_security_flags_proc_fops;
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000435static const struct file_operations cifs_linux_ext_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437void
438cifs_proc_init(void)
439{
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -0700440 proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (proc_fs_cifs == NULL)
442 return;
443
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000444 proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446#ifdef CONFIG_CIFS_STATS
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000447 proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops);
Steve French90c81e02008-02-12 20:32:36 +0000448#endif /* STATS */
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000449 proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops);
450 proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops);
Steve French99b1f5b2008-07-24 02:37:45 +0000451 proc_create("LinuxExtensionsEnabled", 0, proc_fs_cifs,
452 &cifs_linux_ext_proc_fops);
Steve French99b1f5b2008-07-24 02:37:45 +0000453 proc_create("SecurityFlags", 0, proc_fs_cifs,
454 &cifs_security_flags_proc_fops);
455 proc_create("LookupCacheEnabled", 0, proc_fs_cifs,
456 &cifs_lookup_cache_proc_fops);
Long Lid8ec9132017-11-07 01:54:58 -0700457#ifdef CONFIG_CIFS_SMB_DIRECT
458 proc_create("rdma_readwrite_threshold", 0, proc_fs_cifs,
459 &cifs_rdma_readwrite_threshold_proc_fops);
460 proc_create("smbd_max_frmr_depth", 0, proc_fs_cifs,
461 &cifs_smbd_max_frmr_depth_proc_fops);
462 proc_create("smbd_keep_alive_interval", 0, proc_fs_cifs,
463 &cifs_smbd_keep_alive_interval_proc_fops);
464 proc_create("smbd_max_receive_size", 0, proc_fs_cifs,
465 &cifs_smbd_max_receive_size_proc_fops);
466 proc_create("smbd_max_fragmented_recv_size", 0, proc_fs_cifs,
467 &cifs_smbd_max_fragmented_recv_size_proc_fops);
468 proc_create("smbd_max_send_size", 0, proc_fs_cifs,
469 &cifs_smbd_max_send_size_proc_fops);
470 proc_create("smbd_send_credit_target", 0, proc_fs_cifs,
471 &cifs_smbd_send_credit_target_proc_fops);
472 proc_create("smbd_receive_credit_max", 0, proc_fs_cifs,
473 &cifs_smbd_receive_credit_max_proc_fops);
474#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477void
478cifs_proc_clean(void)
479{
480 if (proc_fs_cifs == NULL)
481 return;
482
483 remove_proc_entry("DebugData", proc_fs_cifs);
484 remove_proc_entry("cifsFYI", proc_fs_cifs);
485 remove_proc_entry("traceSMB", proc_fs_cifs);
486#ifdef CONFIG_CIFS_STATS
487 remove_proc_entry("Stats", proc_fs_cifs);
488#endif
Steve French221601c2007-06-05 20:35:06 +0000489 remove_proc_entry("SecurityFlags", proc_fs_cifs);
Steve French221601c2007-06-05 20:35:06 +0000490 remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
Steve French221601c2007-06-05 20:35:06 +0000491 remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
Long Lid8ec9132017-11-07 01:54:58 -0700492#ifdef CONFIG_CIFS_SMB_DIRECT
493 remove_proc_entry("rdma_readwrite_threshold", proc_fs_cifs);
494 remove_proc_entry("smbd_max_frmr_depth", proc_fs_cifs);
495 remove_proc_entry("smbd_keep_alive_interval", proc_fs_cifs);
496 remove_proc_entry("smbd_max_receive_size", proc_fs_cifs);
497 remove_proc_entry("smbd_max_fragmented_recv_size", proc_fs_cifs);
498 remove_proc_entry("smbd_max_send_size", proc_fs_cifs);
499 remove_proc_entry("smbd_send_credit_target", proc_fs_cifs);
500 remove_proc_entry("smbd_receive_credit_max", proc_fs_cifs);
501#endif
Alexey Dobriyan36a5aeb2008-04-29 01:01:42 -0700502 remove_proc_entry("fs/cifs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000505static int cifsFYI_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000507 seq_printf(m, "%d\n", cifsFYI);
508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000510
511static int cifsFYI_proc_open(struct inode *inode, struct file *file)
512{
513 return single_open(file, cifsFYI_proc_show, NULL);
514}
515
516static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
517 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Kees Cook14042972016-03-17 14:22:54 -0700519 char c[2] = { '\0' };
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300520 bool bv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 int rc;
522
Kees Cook14042972016-03-17 14:22:54 -0700523 rc = get_user(c[0], buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (rc)
525 return rc;
Kees Cook14042972016-03-17 14:22:54 -0700526 if (strtobool(c, &bv) == 0)
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300527 cifsFYI = bv;
Kees Cook14042972016-03-17 14:22:54 -0700528 else if ((c[0] > '1') && (c[0] <= '9'))
529 cifsFYI = (int) (c[0] - '0'); /* see cifs_debug.h for meanings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 return count;
532}
533
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000534static const struct file_operations cifsFYI_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000535 .open = cifsFYI_proc_open,
536 .read = seq_read,
537 .llseek = seq_lseek,
538 .release = single_release,
539 .write = cifsFYI_proc_write,
540};
541
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000542static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000544 seq_printf(m, "%d\n", linuxExtEnabled);
545 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000547
548static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
549{
550 return single_open(file, cifs_linux_ext_proc_show, NULL);
551}
552
553static ssize_t cifs_linux_ext_proc_write(struct file *file,
554 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Steve French221601c2007-06-05 20:35:06 +0000556 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Kees Cook14042972016-03-17 14:22:54 -0700558 rc = kstrtobool_from_user(buffer, count, &linuxExtEnabled);
Steve French221601c2007-06-05 20:35:06 +0000559 if (rc)
560 return rc;
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300561
Steve French221601c2007-06-05 20:35:06 +0000562 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000565static const struct file_operations cifs_linux_ext_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000566 .open = cifs_linux_ext_proc_open,
567 .read = seq_read,
568 .llseek = seq_lseek,
569 .release = single_release,
570 .write = cifs_linux_ext_proc_write,
571};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000573static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000575 seq_printf(m, "%d\n", lookupCacheEnabled);
576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000578
579static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
580{
581 return single_open(file, cifs_lookup_cache_proc_show, NULL);
582}
583
584static ssize_t cifs_lookup_cache_proc_write(struct file *file,
585 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 int rc;
588
Kees Cook14042972016-03-17 14:22:54 -0700589 rc = kstrtobool_from_user(buffer, count, &lookupCacheEnabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (rc)
591 return rc;
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return count;
594}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000595
596static const struct file_operations cifs_lookup_cache_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000597 .open = cifs_lookup_cache_proc_open,
598 .read = seq_read,
599 .llseek = seq_lseek,
600 .release = single_release,
601 .write = cifs_lookup_cache_proc_write,
602};
603
604static int traceSMB_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000606 seq_printf(m, "%d\n", traceSMB);
607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000609
610static int traceSMB_proc_open(struct inode *inode, struct file *file)
611{
612 return single_open(file, traceSMB_proc_show, NULL);
613}
614
615static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
616 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 int rc;
619
Kees Cook14042972016-03-17 14:22:54 -0700620 rc = kstrtobool_from_user(buffer, count, &traceSMB);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (rc)
622 return rc;
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return count;
625}
626
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000627static const struct file_operations traceSMB_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000628 .open = traceSMB_proc_open,
629 .read = seq_read,
630 .llseek = seq_lseek,
631 .release = single_release,
632 .write = traceSMB_proc_write,
633};
634
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000635static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Jeff Layton04912d62010-04-24 07:57:45 -0400637 seq_printf(m, "0x%x\n", global_secflags);
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000640
641static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
642{
643 return single_open(file, cifs_security_flags_proc_show, NULL);
644}
645
Jeff Layton52dfb442013-05-26 07:01:02 -0400646/*
647 * Ensure that if someone sets a MUST flag, that we disable all other MAY
648 * flags except for the ones corresponding to the given MUST flag. If there are
649 * multiple MUST flags, then try to prefer more secure ones.
650 */
651static void
652cifs_security_flags_handle_must_flags(unsigned int *flags)
653{
654 unsigned int signflags = *flags & CIFSSEC_MUST_SIGN;
655
656 if ((*flags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5)
657 *flags = CIFSSEC_MUST_KRB5;
658 else if ((*flags & CIFSSEC_MUST_NTLMSSP) == CIFSSEC_MUST_NTLMSSP)
659 *flags = CIFSSEC_MUST_NTLMSSP;
660 else if ((*flags & CIFSSEC_MUST_NTLMV2) == CIFSSEC_MUST_NTLMV2)
661 *flags = CIFSSEC_MUST_NTLMV2;
662 else if ((*flags & CIFSSEC_MUST_NTLM) == CIFSSEC_MUST_NTLM)
663 *flags = CIFSSEC_MUST_NTLM;
Niklas Cassel7a1ceba2015-01-22 14:16:34 +0100664 else if (CIFSSEC_MUST_LANMAN &&
665 (*flags & CIFSSEC_MUST_LANMAN) == CIFSSEC_MUST_LANMAN)
Jeff Layton52dfb442013-05-26 07:01:02 -0400666 *flags = CIFSSEC_MUST_LANMAN;
Niklas Cassel7a1ceba2015-01-22 14:16:34 +0100667 else if (CIFSSEC_MUST_PLNTXT &&
668 (*flags & CIFSSEC_MUST_PLNTXT) == CIFSSEC_MUST_PLNTXT)
Jeff Layton52dfb442013-05-26 07:01:02 -0400669 *flags = CIFSSEC_MUST_PLNTXT;
670
671 *flags |= signflags;
672}
673
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000674static ssize_t cifs_security_flags_proc_write(struct file *file,
675 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Jeff Layton7715dad2013-05-26 07:01:01 -0400677 int rc;
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000678 unsigned int flags;
679 char flags_string[12];
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300680 bool bv;
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000681
Steve French221601c2007-06-05 20:35:06 +0000682 if ((count < 1) || (count > 11))
Steve French39798772006-05-31 22:40:51 +0000683 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000685 memset(flags_string, 0, 12);
Steve French39798772006-05-31 22:40:51 +0000686
Steve French221601c2007-06-05 20:35:06 +0000687 if (copy_from_user(flags_string, buffer, count))
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000688 return -EFAULT;
Steve French39798772006-05-31 22:40:51 +0000689
Steve French221601c2007-06-05 20:35:06 +0000690 if (count < 3) {
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000691 /* single char or single char followed by null */
Kees Cook14042972016-03-17 14:22:54 -0700692 if (strtobool(flags_string, &bv) == 0) {
Andy Shevchenko28e2aed2014-08-27 16:49:42 +0300693 global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF;
Steve Frencha0136892007-10-04 20:05:09 +0000694 return count;
Kees Cook14042972016-03-17 14:22:54 -0700695 } else if (!isdigit(flags_string[0])) {
Jeff Layton7715dad2013-05-26 07:01:01 -0400696 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
697 flags_string);
Steve Frencha0136892007-10-04 20:05:09 +0000698 return -EINVAL;
699 }
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jeff Layton7715dad2013-05-26 07:01:01 -0400702 /* else we have a number */
703 rc = kstrtouint(flags_string, 0, &flags);
704 if (rc) {
705 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n",
706 flags_string);
707 return rc;
708 }
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000709
Joe Perchesf96637b2013-05-04 22:12:25 -0500710 cifs_dbg(FYI, "sec flags 0x%x\n", flags);
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000711
Jeff Layton7715dad2013-05-26 07:01:01 -0400712 if (flags == 0) {
713 cifs_dbg(VFS, "Invalid SecurityFlags: %s\n", flags_string);
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000714 return -EINVAL;
715 }
716
Steve French221601c2007-06-05 20:35:06 +0000717 if (flags & ~CIFSSEC_MASK) {
Jeff Layton7715dad2013-05-26 07:01:01 -0400718 cifs_dbg(VFS, "Unsupported security flags: 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500719 flags & ~CIFSSEC_MASK);
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000720 return -EINVAL;
721 }
Jeff Layton7715dad2013-05-26 07:01:01 -0400722
Jeff Layton52dfb442013-05-26 07:01:02 -0400723 cifs_security_flags_handle_must_flags(&flags);
724
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000725 /* flags look ok - update the global security flags for cifs module */
Jeff Layton04912d62010-04-24 07:57:45 -0400726 global_secflags = flags;
727 if (global_secflags & CIFSSEC_MUST_SIGN) {
Steve French762e5ab2007-06-28 18:41:42 +0000728 /* requiring signing implies signing is allowed */
Jeff Layton04912d62010-04-24 07:57:45 -0400729 global_secflags |= CIFSSEC_MAY_SIGN;
Joe Perchesf96637b2013-05-04 22:12:25 -0500730 cifs_dbg(FYI, "packet signing now required\n");
Jeff Layton04912d62010-04-24 07:57:45 -0400731 } else if ((global_secflags & CIFSSEC_MAY_SIGN) == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500732 cifs_dbg(FYI, "packet signing disabled\n");
Steve French762e5ab2007-06-28 18:41:42 +0000733 }
734 /* BB should we turn on MAY flags for other MUST options? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return count;
736}
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000737
738static const struct file_operations cifs_security_flags_proc_fops = {
Alexey Dobriyanf984c7b2008-07-24 02:34:24 +0000739 .open = cifs_security_flags_proc_open,
740 .read = seq_read,
741 .llseek = seq_lseek,
742 .release = single_release,
743 .write = cifs_security_flags_proc_write,
744};
Steve French90c81e02008-02-12 20:32:36 +0000745#else
Steve Frenche086fce2008-02-18 04:03:58 +0000746inline void cifs_proc_init(void)
Steve French90c81e02008-02-12 20:32:36 +0000747{
748}
749
Steve Frenche086fce2008-02-18 04:03:58 +0000750inline void cifs_proc_clean(void)
Steve French90c81e02008-02-12 20:32:36 +0000751{
752}
753#endif /* PROC_FS */