]> bbs.cooldavid.org Git - net-next-2.6.git/blob - fs/cifs/cifs_debug.c
[CIFS] Send SMB flush in cifs_fsync
[net-next-2.6.git] / fs / cifs / cifs_debug.c
1 /*
2  *   fs/cifs_debug.c
3  *
4  *   Copyright (C) International Business Machines  Corp., 2000,2005
5  *
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
10  *   the Free Software Foundation; either version 2 of the License, or
11  *   (at your option) any later version.
12  *
13  *   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
19  *   along with this program;  if not, write to the Free Software
20  *   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>
27 #include <asm/uaccess.h>
28 #include "cifspdu.h"
29 #include "cifsglob.h"
30 #include "cifsproto.h"
31 #include "cifs_debug.h"
32 #include "cifsfs.h"
33
34 void
35 cifs_dump_mem(char *label, void *data, int length)
36 {
37         int i, j;
38         int *intptr = data;
39         char *charptr = data;
40         char buf[10], line[80];
41
42         printk(KERN_DEBUG "%s: dump of %d bytes of data at 0x%p\n",
43                 label, length, data);
44         for (i = 0; i < length; i += 16) {
45                 line[0] = 0;
46                 for (j = 0; (j < 4) && (i + j * 4 < length); j++) {
47                         sprintf(buf, " %08x", intptr[i / 4 + j]);
48                         strcat(line, buf);
49                 }
50                 buf[0] = ' ';
51                 buf[2] = 0;
52                 for (j = 0; (j < 16) && (i + j < length); j++) {
53                         buf[1] = isprint(charptr[i + j]) ? charptr[i + j] : '.';
54                         strcat(line, buf);
55                 }
56                 printk(KERN_DEBUG "%s\n", line);
57         }
58 }
59
60 #ifdef CONFIG_CIFS_DEBUG2
61 void cifs_dump_detail(struct smb_hdr *smb)
62 {
63         cERROR(1, ("Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d",
64                   smb->Command, smb->Status.CifsError,
65                   smb->Flags, smb->Flags2, smb->Mid, smb->Pid));
66         cERROR(1, ("smb buf %p len %d", smb, smbCalcSize_LE(smb)));
67 }
68
69
70 void cifs_dump_mids(struct TCP_Server_Info *server)
71 {
72         struct list_head *tmp;
73         struct mid_q_entry *mid_entry;
74
75         if (server == NULL)
76                 return;
77
78         cERROR(1, ("Dump pending requests:"));
79         spin_lock(&GlobalMid_Lock);
80         list_for_each(tmp, &server->pending_mid_q) {
81                 mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
82                 cERROR(1, ("State: %d Cmd: %d Pid: %d Tsk: %p Mid %d",
83                         mid_entry->midState,
84                         (int)mid_entry->command,
85                         mid_entry->pid,
86                         mid_entry->tsk,
87                         mid_entry->mid));
88 #ifdef CONFIG_CIFS_STATS2
89                 cERROR(1, ("IsLarge: %d buf: %p time rcv: %ld now: %ld",
90                         mid_entry->largeBuf,
91                         mid_entry->resp_buf,
92                         mid_entry->when_received,
93                         jiffies));
94 #endif /* STATS2 */
95                 cERROR(1, ("IsMult: %d IsEnd: %d", mid_entry->multiRsp,
96                           mid_entry->multiEnd));
97                 if (mid_entry->resp_buf) {
98                         cifs_dump_detail(mid_entry->resp_buf);
99                         cifs_dump_mem("existing buf: ",
100                                 mid_entry->resp_buf, 62);
101                 }
102         }
103         spin_unlock(&GlobalMid_Lock);
104 }
105 #endif /* CONFIG_CIFS_DEBUG2 */
106
107 #ifdef CONFIG_PROC_FS
108 static int cifs_debug_data_proc_show(struct seq_file *m, void *v)
109 {
110         struct list_head *tmp1, *tmp2, *tmp3;
111         struct mid_q_entry *mid_entry;
112         struct TCP_Server_Info *server;
113         struct cifsSesInfo *ses;
114         struct cifsTconInfo *tcon;
115         int i, j;
116         __u32 dev_type;
117
118         seq_puts(m,
119                     "Display Internal CIFS Data Structures for Debugging\n"
120                     "---------------------------------------------------\n");
121         seq_printf(m, "CIFS Version %s\n", CIFS_VERSION);
122         seq_printf(m, "Active VFS Requests: %d\n", GlobalTotalActiveXid);
123         seq_printf(m, "Servers:");
124
125         i = 0;
126         read_lock(&cifs_tcp_ses_lock);
127         list_for_each(tmp1, &cifs_tcp_ses_list) {
128                 server = list_entry(tmp1, struct TCP_Server_Info,
129                                     tcp_ses_list);
130                 i++;
131                 list_for_each(tmp2, &server->smb_ses_list) {
132                         ses = list_entry(tmp2, struct cifsSesInfo,
133                                          smb_ses_list);
134                         if ((ses->serverDomain == NULL) ||
135                                 (ses->serverOS == NULL) ||
136                                 (ses->serverNOS == NULL)) {
137                                 seq_printf(m, "\n%d) entry for %s not fully "
138                                            "displayed\n\t", i, ses->serverName);
139                         } else {
140                                 seq_printf(m,
141                                     "\n%d) Name: %s  Domain: %s Uses: %d OS:"
142                                     " %s\n\tNOS: %s\tCapability: 0x%x\n\tSMB"
143                                     " session status: %d\t",
144                                 i, ses->serverName, ses->serverDomain,
145                                 ses->ses_count, ses->serverOS, ses->serverNOS,
146                                 ses->capabilities, ses->status);
147                         }
148                         seq_printf(m, "TCP status: %d\n\tLocal Users To "
149                                    "Server: %d SecMode: 0x%x Req On Wire: %d",
150                                    server->tcpStatus, server->srv_count,
151                                    server->secMode,
152                                    atomic_read(&server->inFlight));
153
154 #ifdef CONFIG_CIFS_STATS2
155                         seq_printf(m, " In Send: %d In MaxReq Wait: %d",
156                                 atomic_read(&server->inSend),
157                                 atomic_read(&server->num_waiters));
158 #endif
159
160                         seq_puts(m, "\n\tShares:");
161                         j = 0;
162                         list_for_each(tmp3, &ses->tcon_list) {
163                                 tcon = list_entry(tmp3, struct cifsTconInfo,
164                                                   tcon_list);
165                                 ++j;
166                                 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType);
167                                 seq_printf(m, "\n\t%d) %s Mounts: %d ", j,
168                                            tcon->treeName, tcon->tc_count);
169                                 if (tcon->nativeFileSystem) {
170                                         seq_printf(m, "Type: %s ",
171                                                    tcon->nativeFileSystem);
172                                 }
173                                 seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x"
174                                         "\nPathComponentMax: %d Status: 0x%d",
175                                         le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics),
176                                         le32_to_cpu(tcon->fsAttrInfo.Attributes),
177                                         le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength),
178                                         tcon->tidStatus);
179                                 if (dev_type == FILE_DEVICE_DISK)
180                                         seq_puts(m, " type: DISK ");
181                                 else if (dev_type == FILE_DEVICE_CD_ROM)
182                                         seq_puts(m, " type: CDROM ");
183                                 else
184                                         seq_printf(m, " type: %d ", dev_type);
185
186                                 if (tcon->need_reconnect)
187                                         seq_puts(m, "\tDISCONNECTED ");
188                                 seq_putc(m, '\n');
189                         }
190
191                         seq_puts(m, "\n\tMIDs:\n");
192
193                         spin_lock(&GlobalMid_Lock);
194                         list_for_each(tmp3, &server->pending_mid_q) {
195                                 mid_entry = list_entry(tmp3, struct mid_q_entry,
196                                         qhead);
197                                 seq_printf(m, "\tState: %d com: %d pid:"
198                                                 " %d tsk: %p mid %d\n",
199                                                 mid_entry->midState,
200                                                 (int)mid_entry->command,
201                                                 mid_entry->pid,
202                                                 mid_entry->tsk,
203                                                 mid_entry->mid);
204                         }
205                         spin_unlock(&GlobalMid_Lock);
206                 }
207         }
208         read_unlock(&cifs_tcp_ses_lock);
209         seq_putc(m, '\n');
210
211         /* BB add code to dump additional info such as TCP session info now */
212         return 0;
213 }
214
215 static int cifs_debug_data_proc_open(struct inode *inode, struct file *file)
216 {
217         return single_open(file, cifs_debug_data_proc_show, NULL);
218 }
219
220 static const struct file_operations cifs_debug_data_proc_fops = {
221         .owner          = THIS_MODULE,
222         .open           = cifs_debug_data_proc_open,
223         .read           = seq_read,
224         .llseek         = seq_lseek,
225         .release        = single_release,
226 };
227
228 #ifdef CONFIG_CIFS_STATS
229 static ssize_t cifs_stats_proc_write(struct file *file,
230                 const char __user *buffer, size_t count, loff_t *ppos)
231 {
232         char c;
233         int rc;
234         struct list_head *tmp1, *tmp2, *tmp3;
235         struct TCP_Server_Info *server;
236         struct cifsSesInfo *ses;
237         struct cifsTconInfo *tcon;
238
239         rc = get_user(c, buffer);
240         if (rc)
241                 return rc;
242
243         if (c == '1' || c == 'y' || c == 'Y' || c == '0') {
244 #ifdef CONFIG_CIFS_STATS2
245                 atomic_set(&totBufAllocCount, 0);
246                 atomic_set(&totSmBufAllocCount, 0);
247 #endif /* CONFIG_CIFS_STATS2 */
248                 read_lock(&cifs_tcp_ses_lock);
249                 list_for_each(tmp1, &cifs_tcp_ses_list) {
250                         server = list_entry(tmp1, struct TCP_Server_Info,
251                                             tcp_ses_list);
252                         list_for_each(tmp2, &server->smb_ses_list) {
253                                 ses = list_entry(tmp2, struct cifsSesInfo,
254                                                  smb_ses_list);
255                                 list_for_each(tmp3, &ses->tcon_list) {
256                                         tcon = list_entry(tmp3,
257                                                           struct cifsTconInfo,
258                                                           tcon_list);
259                                         atomic_set(&tcon->num_smbs_sent, 0);
260                                         atomic_set(&tcon->num_writes, 0);
261                                         atomic_set(&tcon->num_reads, 0);
262                                         atomic_set(&tcon->num_oplock_brks, 0);
263                                         atomic_set(&tcon->num_opens, 0);
264                                         atomic_set(&tcon->num_closes, 0);
265                                         atomic_set(&tcon->num_deletes, 0);
266                                         atomic_set(&tcon->num_mkdirs, 0);
267                                         atomic_set(&tcon->num_rmdirs, 0);
268                                         atomic_set(&tcon->num_renames, 0);
269                                         atomic_set(&tcon->num_t2renames, 0);
270                                         atomic_set(&tcon->num_ffirst, 0);
271                                         atomic_set(&tcon->num_fnext, 0);
272                                         atomic_set(&tcon->num_fclose, 0);
273                                         atomic_set(&tcon->num_hardlinks, 0);
274                                         atomic_set(&tcon->num_symlinks, 0);
275                                         atomic_set(&tcon->num_locks, 0);
276                                 }
277                         }
278                 }
279                 read_unlock(&cifs_tcp_ses_lock);
280         }
281
282         return count;
283 }
284
285 static int cifs_stats_proc_show(struct seq_file *m, void *v)
286 {
287         int i;
288         struct list_head *tmp1, *tmp2, *tmp3;
289         struct TCP_Server_Info *server;
290         struct cifsSesInfo *ses;
291         struct cifsTconInfo *tcon;
292
293         seq_printf(m,
294                         "Resources in use\nCIFS Session: %d\n",
295                         sesInfoAllocCount.counter);
296         seq_printf(m, "Share (unique mount targets): %d\n",
297                         tconInfoAllocCount.counter);
298         seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n",
299                         bufAllocCount.counter,
300                         cifs_min_rcv + tcpSesAllocCount.counter);
301         seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n",
302                         smBufAllocCount.counter, cifs_min_small);
303 #ifdef CONFIG_CIFS_STATS2
304         seq_printf(m, "Total Large %d Small %d Allocations\n",
305                                 atomic_read(&totBufAllocCount),
306                                 atomic_read(&totSmBufAllocCount));
307 #endif /* CONFIG_CIFS_STATS2 */
308
309         seq_printf(m, "Operations (MIDs): %d\n", midCount.counter);
310         seq_printf(m,
311                 "\n%d session %d share reconnects\n",
312                 tcpSesReconnectCount.counter, tconInfoReconnectCount.counter);
313
314         seq_printf(m,
315                 "Total vfs operations: %d maximum at one time: %d\n",
316                 GlobalCurrentXid, GlobalMaxActiveXid);
317
318         i = 0;
319         read_lock(&cifs_tcp_ses_lock);
320         list_for_each(tmp1, &cifs_tcp_ses_list) {
321                 server = list_entry(tmp1, struct TCP_Server_Info,
322                                     tcp_ses_list);
323                 list_for_each(tmp2, &server->smb_ses_list) {
324                         ses = list_entry(tmp2, struct cifsSesInfo,
325                                          smb_ses_list);
326                         list_for_each(tmp3, &ses->tcon_list) {
327                                 tcon = list_entry(tmp3,
328                                                   struct cifsTconInfo,
329                                                   tcon_list);
330                                 i++;
331                                 seq_printf(m, "\n%d) %s", i, tcon->treeName);
332                                 if (tcon->need_reconnect)
333                                         seq_puts(m, "\tDISCONNECTED ");
334                                 seq_printf(m, "\nSMBs: %d Oplock Breaks: %d",
335                                         atomic_read(&tcon->num_smbs_sent),
336                                         atomic_read(&tcon->num_oplock_brks));
337                                 seq_printf(m, "\nReads:  %d Bytes: %lld",
338                                         atomic_read(&tcon->num_reads),
339                                         (long long)(tcon->bytes_read));
340                                 seq_printf(m, "\nWrites: %d Bytes: %lld",
341                                         atomic_read(&tcon->num_writes),
342                                         (long long)(tcon->bytes_written));
343                                 seq_printf(m, "\nFlushes: %d",
344                                         atomic_read(&tcon->num_flushes));
345                                 seq_printf(m, "\nLocks: %d HardLinks: %d "
346                                               "Symlinks: %d",
347                                         atomic_read(&tcon->num_locks),
348                                         atomic_read(&tcon->num_hardlinks),
349                                         atomic_read(&tcon->num_symlinks));
350                                 seq_printf(m, "\nOpens: %d Closes: %d"
351                                               "Deletes: %d",
352                                         atomic_read(&tcon->num_opens),
353                                         atomic_read(&tcon->num_closes),
354                                         atomic_read(&tcon->num_deletes));
355                                 seq_printf(m, "\nMkdirs: %d Rmdirs: %d",
356                                         atomic_read(&tcon->num_mkdirs),
357                                         atomic_read(&tcon->num_rmdirs));
358                                 seq_printf(m, "\nRenames: %d T2 Renames %d",
359                                         atomic_read(&tcon->num_renames),
360                                         atomic_read(&tcon->num_t2renames));
361                                 seq_printf(m, "\nFindFirst: %d FNext %d "
362                                               "FClose %d",
363                                         atomic_read(&tcon->num_ffirst),
364                                         atomic_read(&tcon->num_fnext),
365                                         atomic_read(&tcon->num_fclose));
366                         }
367                 }
368         }
369         read_unlock(&cifs_tcp_ses_lock);
370
371         seq_putc(m, '\n');
372         return 0;
373 }
374
375 static int cifs_stats_proc_open(struct inode *inode, struct file *file)
376 {
377         return single_open(file, cifs_stats_proc_show, NULL);
378 }
379
380 static const struct file_operations cifs_stats_proc_fops = {
381         .owner          = THIS_MODULE,
382         .open           = cifs_stats_proc_open,
383         .read           = seq_read,
384         .llseek         = seq_lseek,
385         .release        = single_release,
386         .write          = cifs_stats_proc_write,
387 };
388 #endif /* STATS */
389
390 static struct proc_dir_entry *proc_fs_cifs;
391 static const struct file_operations cifsFYI_proc_fops;
392 static const struct file_operations cifs_oplock_proc_fops;
393 static const struct file_operations cifs_lookup_cache_proc_fops;
394 static const struct file_operations traceSMB_proc_fops;
395 static const struct file_operations cifs_multiuser_mount_proc_fops;
396 static const struct file_operations cifs_security_flags_proc_fops;
397 static const struct file_operations cifs_experimental_proc_fops;
398 static const struct file_operations cifs_linux_ext_proc_fops;
399
400 void
401 cifs_proc_init(void)
402 {
403         proc_fs_cifs = proc_mkdir("fs/cifs", NULL);
404         if (proc_fs_cifs == NULL)
405                 return;
406
407         proc_fs_cifs->owner = THIS_MODULE;
408         proc_create("DebugData", 0, proc_fs_cifs, &cifs_debug_data_proc_fops);
409
410 #ifdef CONFIG_CIFS_STATS
411         proc_create("Stats", 0, proc_fs_cifs, &cifs_stats_proc_fops);
412 #endif /* STATS */
413         proc_create("cifsFYI", 0, proc_fs_cifs, &cifsFYI_proc_fops);
414         proc_create("traceSMB", 0, proc_fs_cifs, &traceSMB_proc_fops);
415         proc_create("OplockEnabled", 0, proc_fs_cifs, &cifs_oplock_proc_fops);
416         proc_create("Experimental", 0, proc_fs_cifs,
417                     &cifs_experimental_proc_fops);
418         proc_create("LinuxExtensionsEnabled", 0, proc_fs_cifs,
419                     &cifs_linux_ext_proc_fops);
420         proc_create("MultiuserMount", 0, proc_fs_cifs,
421                     &cifs_multiuser_mount_proc_fops);
422         proc_create("SecurityFlags", 0, proc_fs_cifs,
423                     &cifs_security_flags_proc_fops);
424         proc_create("LookupCacheEnabled", 0, proc_fs_cifs,
425                     &cifs_lookup_cache_proc_fops);
426 }
427
428 void
429 cifs_proc_clean(void)
430 {
431         if (proc_fs_cifs == NULL)
432                 return;
433
434         remove_proc_entry("DebugData", proc_fs_cifs);
435         remove_proc_entry("cifsFYI", proc_fs_cifs);
436         remove_proc_entry("traceSMB", proc_fs_cifs);
437 #ifdef CONFIG_CIFS_STATS
438         remove_proc_entry("Stats", proc_fs_cifs);
439 #endif
440         remove_proc_entry("MultiuserMount", proc_fs_cifs);
441         remove_proc_entry("OplockEnabled", proc_fs_cifs);
442         remove_proc_entry("SecurityFlags", proc_fs_cifs);
443         remove_proc_entry("LinuxExtensionsEnabled", proc_fs_cifs);
444         remove_proc_entry("Experimental", proc_fs_cifs);
445         remove_proc_entry("LookupCacheEnabled", proc_fs_cifs);
446         remove_proc_entry("fs/cifs", NULL);
447 }
448
449 static int cifsFYI_proc_show(struct seq_file *m, void *v)
450 {
451         seq_printf(m, "%d\n", cifsFYI);
452         return 0;
453 }
454
455 static int cifsFYI_proc_open(struct inode *inode, struct file *file)
456 {
457         return single_open(file, cifsFYI_proc_show, NULL);
458 }
459
460 static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer,
461                 size_t count, loff_t *ppos)
462 {
463         char c;
464         int rc;
465
466         rc = get_user(c, buffer);
467         if (rc)
468                 return rc;
469         if (c == '0' || c == 'n' || c == 'N')
470                 cifsFYI = 0;
471         else if (c == '1' || c == 'y' || c == 'Y')
472                 cifsFYI = 1;
473         else if ((c > '1') && (c <= '9'))
474                 cifsFYI = (int) (c - '0'); /* see cifs_debug.h for meanings */
475
476         return count;
477 }
478
479 static const struct file_operations cifsFYI_proc_fops = {
480         .owner          = THIS_MODULE,
481         .open           = cifsFYI_proc_open,
482         .read           = seq_read,
483         .llseek         = seq_lseek,
484         .release        = single_release,
485         .write          = cifsFYI_proc_write,
486 };
487
488 static int cifs_oplock_proc_show(struct seq_file *m, void *v)
489 {
490         seq_printf(m, "%d\n", oplockEnabled);
491         return 0;
492 }
493
494 static int cifs_oplock_proc_open(struct inode *inode, struct file *file)
495 {
496         return single_open(file, cifs_oplock_proc_show, NULL);
497 }
498
499 static ssize_t cifs_oplock_proc_write(struct file *file,
500                 const char __user *buffer, size_t count, loff_t *ppos)
501 {
502         char c;
503         int rc;
504
505         rc = get_user(c, buffer);
506         if (rc)
507                 return rc;
508         if (c == '0' || c == 'n' || c == 'N')
509                 oplockEnabled = 0;
510         else if (c == '1' || c == 'y' || c == 'Y')
511                 oplockEnabled = 1;
512
513         return count;
514 }
515
516 static const struct file_operations cifs_oplock_proc_fops = {
517         .owner          = THIS_MODULE,
518         .open           = cifs_oplock_proc_open,
519         .read           = seq_read,
520         .llseek         = seq_lseek,
521         .release        = single_release,
522         .write          = cifs_oplock_proc_write,
523 };
524
525 static int cifs_experimental_proc_show(struct seq_file *m, void *v)
526 {
527         seq_printf(m, "%d\n", experimEnabled);
528         return 0;
529 }
530
531 static int cifs_experimental_proc_open(struct inode *inode, struct file *file)
532 {
533         return single_open(file, cifs_experimental_proc_show, NULL);
534 }
535
536 static ssize_t cifs_experimental_proc_write(struct file *file,
537                 const char __user *buffer, size_t count, loff_t *ppos)
538 {
539         char c;
540         int rc;
541
542         rc = get_user(c, buffer);
543         if (rc)
544                 return rc;
545         if (c == '0' || c == 'n' || c == 'N')
546                 experimEnabled = 0;
547         else if (c == '1' || c == 'y' || c == 'Y')
548                 experimEnabled = 1;
549         else if (c == '2')
550                 experimEnabled = 2;
551
552         return count;
553 }
554
555 static const struct file_operations cifs_experimental_proc_fops = {
556         .owner          = THIS_MODULE,
557         .open           = cifs_experimental_proc_open,
558         .read           = seq_read,
559         .llseek         = seq_lseek,
560         .release        = single_release,
561         .write          = cifs_experimental_proc_write,
562 };
563
564 static int cifs_linux_ext_proc_show(struct seq_file *m, void *v)
565 {
566         seq_printf(m, "%d\n", linuxExtEnabled);
567         return 0;
568 }
569
570 static int cifs_linux_ext_proc_open(struct inode *inode, struct file *file)
571 {
572         return single_open(file, cifs_linux_ext_proc_show, NULL);
573 }
574
575 static ssize_t cifs_linux_ext_proc_write(struct file *file,
576                 const char __user *buffer, size_t count, loff_t *ppos)
577 {
578         char c;
579         int rc;
580
581         rc = get_user(c, buffer);
582         if (rc)
583                 return rc;
584         if (c == '0' || c == 'n' || c == 'N')
585                 linuxExtEnabled = 0;
586         else if (c == '1' || c == 'y' || c == 'Y')
587                 linuxExtEnabled = 1;
588
589         return count;
590 }
591
592 static const struct file_operations cifs_linux_ext_proc_fops = {
593         .owner          = THIS_MODULE,
594         .open           = cifs_linux_ext_proc_open,
595         .read           = seq_read,
596         .llseek         = seq_lseek,
597         .release        = single_release,
598         .write          = cifs_linux_ext_proc_write,
599 };
600
601 static int cifs_lookup_cache_proc_show(struct seq_file *m, void *v)
602 {
603         seq_printf(m, "%d\n", lookupCacheEnabled);
604         return 0;
605 }
606
607 static int cifs_lookup_cache_proc_open(struct inode *inode, struct file *file)
608 {
609         return single_open(file, cifs_lookup_cache_proc_show, NULL);
610 }
611
612 static ssize_t cifs_lookup_cache_proc_write(struct file *file,
613                 const char __user *buffer, size_t count, loff_t *ppos)
614 {
615         char c;
616         int rc;
617
618         rc = get_user(c, buffer);
619         if (rc)
620                 return rc;
621         if (c == '0' || c == 'n' || c == 'N')
622                 lookupCacheEnabled = 0;
623         else if (c == '1' || c == 'y' || c == 'Y')
624                 lookupCacheEnabled = 1;
625
626         return count;
627 }
628
629 static const struct file_operations cifs_lookup_cache_proc_fops = {
630         .owner          = THIS_MODULE,
631         .open           = cifs_lookup_cache_proc_open,
632         .read           = seq_read,
633         .llseek         = seq_lseek,
634         .release        = single_release,
635         .write          = cifs_lookup_cache_proc_write,
636 };
637
638 static int traceSMB_proc_show(struct seq_file *m, void *v)
639 {
640         seq_printf(m, "%d\n", traceSMB);
641         return 0;
642 }
643
644 static int traceSMB_proc_open(struct inode *inode, struct file *file)
645 {
646         return single_open(file, traceSMB_proc_show, NULL);
647 }
648
649 static ssize_t traceSMB_proc_write(struct file *file, const char __user *buffer,
650                 size_t count, loff_t *ppos)
651 {
652         char c;
653         int rc;
654
655         rc = get_user(c, buffer);
656         if (rc)
657                 return rc;
658         if (c == '0' || c == 'n' || c == 'N')
659                 traceSMB = 0;
660         else if (c == '1' || c == 'y' || c == 'Y')
661                 traceSMB = 1;
662
663         return count;
664 }
665
666 static const struct file_operations traceSMB_proc_fops = {
667         .owner          = THIS_MODULE,
668         .open           = traceSMB_proc_open,
669         .read           = seq_read,
670         .llseek         = seq_lseek,
671         .release        = single_release,
672         .write          = traceSMB_proc_write,
673 };
674
675 static int cifs_multiuser_mount_proc_show(struct seq_file *m, void *v)
676 {
677         seq_printf(m, "%d\n", multiuser_mount);
678         return 0;
679 }
680
681 static int cifs_multiuser_mount_proc_open(struct inode *inode, struct file *fh)
682 {
683         return single_open(fh, cifs_multiuser_mount_proc_show, NULL);
684 }
685
686 static ssize_t cifs_multiuser_mount_proc_write(struct file *file,
687                 const char __user *buffer, size_t count, loff_t *ppos)
688 {
689         char c;
690         int rc;
691
692         rc = get_user(c, buffer);
693         if (rc)
694                 return rc;
695         if (c == '0' || c == 'n' || c == 'N')
696                 multiuser_mount = 0;
697         else if (c == '1' || c == 'y' || c == 'Y')
698                 multiuser_mount = 1;
699
700         return count;
701 }
702
703 static const struct file_operations cifs_multiuser_mount_proc_fops = {
704         .owner          = THIS_MODULE,
705         .open           = cifs_multiuser_mount_proc_open,
706         .read           = seq_read,
707         .llseek         = seq_lseek,
708         .release        = single_release,
709         .write          = cifs_multiuser_mount_proc_write,
710 };
711
712 static int cifs_security_flags_proc_show(struct seq_file *m, void *v)
713 {
714         seq_printf(m, "0x%x\n", extended_security);
715         return 0;
716 }
717
718 static int cifs_security_flags_proc_open(struct inode *inode, struct file *file)
719 {
720         return single_open(file, cifs_security_flags_proc_show, NULL);
721 }
722
723 static ssize_t cifs_security_flags_proc_write(struct file *file,
724                 const char __user *buffer, size_t count, loff_t *ppos)
725 {
726         unsigned int flags;
727         char flags_string[12];
728         char c;
729
730         if ((count < 1) || (count > 11))
731                 return -EINVAL;
732
733         memset(flags_string, 0, 12);
734
735         if (copy_from_user(flags_string, buffer, count))
736                 return -EFAULT;
737
738         if (count < 3) {
739                 /* single char or single char followed by null */
740                 c = flags_string[0];
741                 if (c == '0' || c == 'n' || c == 'N') {
742                         extended_security = CIFSSEC_DEF; /* default */
743                         return count;
744                 } else if (c == '1' || c == 'y' || c == 'Y') {
745                         extended_security = CIFSSEC_MAX;
746                         return count;
747                 } else if (!isdigit(c)) {
748                         cERROR(1, ("invalid flag %c", c));
749                         return -EINVAL;
750                 }
751         }
752         /* else we have a number */
753
754         flags = simple_strtoul(flags_string, NULL, 0);
755
756         cFYI(1, ("sec flags 0x%x", flags));
757
758         if (flags <= 0)  {
759                 cERROR(1, ("invalid security flags %s", flags_string));
760                 return -EINVAL;
761         }
762
763         if (flags & ~CIFSSEC_MASK) {
764                 cERROR(1, ("attempt to set unsupported security flags 0x%x",
765                         flags & ~CIFSSEC_MASK));
766                 return -EINVAL;
767         }
768         /* flags look ok - update the global security flags for cifs module */
769         extended_security = flags;
770         if (extended_security & CIFSSEC_MUST_SIGN) {
771                 /* requiring signing implies signing is allowed */
772                 extended_security |= CIFSSEC_MAY_SIGN;
773                 cFYI(1, ("packet signing now required"));
774         } else if ((extended_security & CIFSSEC_MAY_SIGN) == 0) {
775                 cFYI(1, ("packet signing disabled"));
776         }
777         /* BB should we turn on MAY flags for other MUST options? */
778         return count;
779 }
780
781 static const struct file_operations cifs_security_flags_proc_fops = {
782         .owner          = THIS_MODULE,
783         .open           = cifs_security_flags_proc_open,
784         .read           = seq_read,
785         .llseek         = seq_lseek,
786         .release        = single_release,
787         .write          = cifs_security_flags_proc_write,
788 };
789 #else
790 inline void cifs_proc_init(void)
791 {
792 }
793
794 inline void cifs_proc_clean(void)
795 {
796 }
797 #endif /* PROC_FS */