4 * Copyright (C) International Business Machines Corp., 2002,2004
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Common Internet FileSystem (CIFS) client
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 /* Note that BB means BUGBUG (ie something to fix eventually) */
26 #include <linux/module.h>
28 #include <linux/mount.h>
29 #include <linux/slab.h>
30 #include <linux/init.h>
31 #include <linux/list.h>
32 #include <linux/seq_file.h>
33 #include <linux/vfs.h>
34 #include <linux/mempool.h>
37 #define DECLARE_GLOBALS_HERE
39 #include "cifsproto.h"
40 #include "cifs_debug.h"
41 #include "cifs_fs_sb.h"
43 #define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDUs */
45 #ifdef CONFIG_CIFS_QUOTA
46 static struct quotactl_ops cifs_quotactl_ops;
52 unsigned int oplockEnabled = 1;
53 unsigned int experimEnabled = 0;
54 unsigned int linuxExtEnabled = 1;
55 unsigned int lookupCacheEnabled = 1;
56 unsigned int multiuser_mount = 0;
57 unsigned int extended_security = 0;
58 unsigned int ntlmv2_support = 0;
59 unsigned int sign_CIFS_PDUs = 1;
60 extern struct task_struct * oplockThread; /* remove sparse warning */
61 struct task_struct * oplockThread = NULL;
62 extern struct task_struct * dnotifyThread; /* remove sparse warning */
63 struct task_struct * dnotifyThread = NULL;
64 unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
65 module_param(CIFSMaxBufSize, int, 0);
66 MODULE_PARM_DESC(CIFSMaxBufSize,"Network buffer size (not including header). Default: 16384 Range: 8192 to 130048");
67 unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
68 module_param(cifs_min_rcv, int, 0);
69 MODULE_PARM_DESC(cifs_min_rcv,"Network buffers in pool. Default: 4 Range: 1 to 64");
70 unsigned int cifs_min_small = 30;
71 module_param(cifs_min_small, int, 0);
72 MODULE_PARM_DESC(cifs_min_small,"Small network buffers in pool. Default: 30 Range: 2 to 256");
73 unsigned int cifs_max_pending = CIFS_MAX_REQ;
74 module_param(cifs_max_pending, int, 0);
75 MODULE_PARM_DESC(cifs_max_pending,"Simultaneous requests to server. Default: 50 Range: 2 to 256");
77 static DECLARE_COMPLETION(cifs_oplock_exited);
78 static DECLARE_COMPLETION(cifs_dnotify_exited);
80 extern mempool_t *cifs_sm_req_poolp;
81 extern mempool_t *cifs_req_poolp;
82 extern mempool_t *cifs_mid_poolp;
84 extern kmem_cache_t *cifs_oplock_cachep;
87 cifs_read_super(struct super_block *sb, void *data,
88 const char *devname, int silent)
91 struct cifs_sb_info *cifs_sb;
94 sb->s_flags |= MS_NODIRATIME; /* and probably even noatime */
95 sb->s_fs_info = kmalloc(sizeof(struct cifs_sb_info),GFP_KERNEL);
96 cifs_sb = CIFS_SB(sb);
100 memset(cifs_sb,0,sizeof(struct cifs_sb_info));
103 rc = cifs_mount(sb, cifs_sb, data, devname);
108 ("cifs_mount failed w/return code = %d", rc));
109 goto out_mount_failed;
112 sb->s_magic = CIFS_MAGIC_NUMBER;
113 sb->s_op = &cifs_super_ops;
114 /* if(cifs_sb->tcon->ses->server->maxBuf > MAX_CIFS_HDR_SIZE + 512)
115 sb->s_blocksize = cifs_sb->tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE; */
116 #ifdef CONFIG_CIFS_QUOTA
117 sb->s_qcop = &cifs_quotactl_ops;
119 sb->s_blocksize = CIFS_MAX_MSGSIZE;
120 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
121 inode = iget(sb, ROOT_I);
128 sb->s_root = d_alloc_root(inode);
138 cERROR(1, ("cifs_read_super: get root inode failed"));
144 if(cifs_sb->local_nls)
145 unload_nls(cifs_sb->local_nls);
152 cifs_put_super(struct super_block *sb)
155 struct cifs_sb_info *cifs_sb;
157 cFYI(1, ("In cifs_put_super"));
158 cifs_sb = CIFS_SB(sb);
159 if(cifs_sb == NULL) {
160 cFYI(1,("Empty cifs superblock info passed to unmount"));
163 rc = cifs_umount(sb, cifs_sb);
165 cERROR(1, ("cifs_umount failed with return code %d", rc));
167 unload_nls(cifs_sb->local_nls);
173 cifs_statfs(struct super_block *sb, struct kstatfs *buf)
176 int rc = -EOPNOTSUPP;
177 struct cifs_sb_info *cifs_sb;
178 struct cifsTconInfo *pTcon;
182 cifs_sb = CIFS_SB(sb);
183 pTcon = cifs_sb->tcon;
185 buf->f_type = CIFS_MAGIC_NUMBER;
187 /* instead could get the real value via SMB_QUERY_FS_ATTRIBUTE_INFO */
188 buf->f_namelen = PATH_MAX; /* PATH_MAX may be too long - it would
189 presumably be total path, but note
190 that some servers (includinng Samba 3)
191 have a shorter maximum path */
192 buf->f_files = 0; /* undefined */
193 buf->f_ffree = 0; /* unlimited */
195 #ifdef CONFIG_CIFS_EXPERIMENTAL
196 /* BB we could add a second check for a QFS Unix capability bit */
197 /* BB FIXME check CIFS_POSIX_EXTENSIONS Unix cap first FIXME BB */
198 if ((pTcon->ses->capabilities & CAP_UNIX) && (CIFS_POSIX_EXTENSIONS &
199 le64_to_cpu(pTcon->fsUnixInfo.Capability)))
200 rc = CIFSSMBQFSPosixInfo(xid, pTcon, buf);
202 /* Only need to call the old QFSInfo if failed
205 #endif /* CIFS_EXPERIMENTAL */
206 rc = CIFSSMBQFSInfo(xid, pTcon, buf);
208 /* Old Windows servers do not support level 103, retry with level
209 one if old server failed the previous call */
211 rc = SMBOldQFSInfo(xid, pTcon, buf);
216 /* BB get from info in tcon struct at mount time call to QFSAttrInfo */
218 return 0; /* always return success? what if volume is no
222 static int cifs_permission(struct inode * inode, int mask, struct nameidata *nd)
224 struct cifs_sb_info *cifs_sb;
226 cifs_sb = CIFS_SB(inode->i_sb);
228 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
230 } else /* file mode might have been restricted at mount time
231 on the client (above and beyond ACL on servers) for
232 servers which do not support setting and viewing mode bits,
233 so allowing client to check permissions is useful */
234 return generic_permission(inode, mask, NULL);
237 static kmem_cache_t *cifs_inode_cachep;
238 static kmem_cache_t *cifs_req_cachep;
239 static kmem_cache_t *cifs_mid_cachep;
240 kmem_cache_t *cifs_oplock_cachep;
241 static kmem_cache_t *cifs_sm_req_cachep;
242 mempool_t *cifs_sm_req_poolp;
243 mempool_t *cifs_req_poolp;
244 mempool_t *cifs_mid_poolp;
246 static struct inode *
247 cifs_alloc_inode(struct super_block *sb)
249 struct cifsInodeInfo *cifs_inode;
250 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, SLAB_KERNEL);
253 cifs_inode->cifsAttrs = 0x20; /* default */
254 atomic_set(&cifs_inode->inUse, 0);
255 cifs_inode->time = 0;
256 /* Until the file is open and we have gotten oplock
257 info back from the server, can not assume caching of
258 file data or metadata */
259 cifs_inode->clientCanCacheRead = FALSE;
260 cifs_inode->clientCanCacheAll = FALSE;
261 cifs_inode->vfs_inode.i_blksize = CIFS_MAX_MSGSIZE;
262 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
263 cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME;
264 INIT_LIST_HEAD(&cifs_inode->openFileList);
265 return &cifs_inode->vfs_inode;
269 cifs_destroy_inode(struct inode *inode)
271 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
275 * cifs_show_options() is for displaying mount options in /proc/mounts.
276 * Not all settable options are displayed but most of the important
280 cifs_show_options(struct seq_file *s, struct vfsmount *m)
282 struct cifs_sb_info *cifs_sb;
284 cifs_sb = CIFS_SB(m->mnt_sb);
288 seq_printf(s, ",unc=%s", cifs_sb->tcon->treeName);
289 if (cifs_sb->tcon->ses) {
290 if (cifs_sb->tcon->ses->userName)
291 seq_printf(s, ",username=%s",
292 cifs_sb->tcon->ses->userName);
293 if(cifs_sb->tcon->ses->domainName)
294 seq_printf(s, ",domain=%s",
295 cifs_sb->tcon->ses->domainName);
298 seq_printf(s, ",rsize=%d",cifs_sb->rsize);
299 seq_printf(s, ",wsize=%d",cifs_sb->wsize);
304 #ifdef CONFIG_CIFS_QUOTA
305 int cifs_xquota_set(struct super_block * sb, int quota_type, qid_t qid,
306 struct fs_disk_quota * pdquota)
310 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
311 struct cifsTconInfo *pTcon;
314 pTcon = cifs_sb->tcon;
321 cFYI(1,("set type: 0x%x id: %d",quota_type,qid));
330 int cifs_xquota_get(struct super_block * sb, int quota_type, qid_t qid,
331 struct fs_disk_quota * pdquota)
335 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
336 struct cifsTconInfo *pTcon;
339 pTcon = cifs_sb->tcon;
345 cFYI(1,("set type: 0x%x id: %d",quota_type,qid));
354 int cifs_xstate_set(struct super_block * sb, unsigned int flags, int operation)
358 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
359 struct cifsTconInfo *pTcon;
362 pTcon = cifs_sb->tcon;
368 cFYI(1,("flags: 0x%x operation: 0x%x",flags,operation));
377 int cifs_xstate_get(struct super_block * sb, struct fs_quota_stat *qstats)
381 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
382 struct cifsTconInfo *pTcon;
385 pTcon = cifs_sb->tcon;
391 cFYI(1,("pqstats %p",qstats));
400 static struct quotactl_ops cifs_quotactl_ops = {
401 .set_xquota = cifs_xquota_set,
402 .get_xquota = cifs_xquota_set,
403 .set_xstate = cifs_xstate_set,
404 .get_xstate = cifs_xstate_get,
408 #ifdef CONFIG_CIFS_EXPERIMENTAL
409 static void cifs_umount_begin(struct super_block * sblock)
411 struct cifs_sb_info *cifs_sb;
412 struct cifsTconInfo * tcon;
414 cifs_sb = CIFS_SB(sblock);
418 tcon = cifs_sb->tcon;
421 down(&tcon->tconSem);
422 if (atomic_read(&tcon->useCount) == 1)
423 tcon->tidStatus = CifsExiting;
426 /* cancel_brl_requests(tcon); */
427 /* cancel_notify_requests(tcon); */
428 if(tcon->ses && tcon->ses->server)
430 cFYI(1,("wake up tasks now - umount begin not complete"));
431 wake_up_all(&tcon->ses->server->request_q);
433 /* BB FIXME - finish add checks for tidStatus BB */
439 static int cifs_remount(struct super_block *sb, int *flags, char *data)
441 *flags |= MS_NODIRATIME;
445 struct super_operations cifs_super_ops = {
446 .read_inode = cifs_read_inode,
447 .put_super = cifs_put_super,
448 .statfs = cifs_statfs,
449 .alloc_inode = cifs_alloc_inode,
450 .destroy_inode = cifs_destroy_inode,
451 /* .drop_inode = generic_delete_inode,
452 .delete_inode = cifs_delete_inode, *//* Do not need the above two functions
453 unless later we add lazy close of inodes or unless the kernel forgets to call
454 us with the same number of releases (closes) as opens */
455 .show_options = cifs_show_options,
456 #ifdef CONFIG_CIFS_EXPERIMENTAL
457 .umount_begin = cifs_umount_begin,
459 .remount_fs = cifs_remount,
462 static struct super_block *
463 cifs_get_sb(struct file_system_type *fs_type,
464 int flags, const char *dev_name, void *data)
467 struct super_block *sb = sget(fs_type, NULL, set_anon_super, NULL);
469 cFYI(1, ("Devname: %s flags: %d ", dev_name, flags));
476 rc = cifs_read_super(sb, data, dev_name, flags & MS_VERBOSE ? 1 : 0);
478 up_write(&sb->s_umount);
479 deactivate_super(sb);
482 sb->s_flags |= MS_ACTIVE;
487 cifs_read_wrapper(struct file * file, char __user *read_data, size_t read_size,
490 if(file->f_dentry == NULL)
492 else if(file->f_dentry->d_inode == NULL)
495 cFYI(1,("In read_wrapper size %zd at %lld",read_size,*poffset));
497 if(CIFS_I(file->f_dentry->d_inode)->clientCanCacheRead) {
498 return generic_file_read(file,read_data,read_size,poffset);
500 /* BB do we need to lock inode from here until after invalidate? */
501 /* if(file->f_dentry->d_inode->i_mapping) {
502 filemap_fdatawrite(file->f_dentry->d_inode->i_mapping);
503 filemap_fdatawait(file->f_dentry->d_inode->i_mapping);
505 /* cifs_revalidate(file->f_dentry);*/ /* BB fixme */
507 /* BB we should make timer configurable - perhaps
508 by simply calling cifs_revalidate here */
509 /* invalidate_remote_inode(file->f_dentry->d_inode);*/
510 return generic_file_read(file,read_data,read_size,poffset);
515 cifs_write_wrapper(struct file * file, const char __user *write_data,
516 size_t write_size, loff_t * poffset)
520 if(file->f_dentry == NULL)
522 else if(file->f_dentry->d_inode == NULL)
525 cFYI(1,("In write_wrapper size %zd at %lld",write_size,*poffset));
527 written = generic_file_write(file,write_data,write_size,poffset);
528 if(!CIFS_I(file->f_dentry->d_inode)->clientCanCacheAll) {
529 if(file->f_dentry->d_inode->i_mapping) {
530 filemap_fdatawrite(file->f_dentry->d_inode->i_mapping);
537 static struct file_system_type cifs_fs_type = {
538 .owner = THIS_MODULE,
540 .get_sb = cifs_get_sb,
541 .kill_sb = kill_anon_super,
544 struct inode_operations cifs_dir_inode_ops = {
545 .create = cifs_create,
546 .lookup = cifs_lookup,
547 .getattr = cifs_getattr,
548 .unlink = cifs_unlink,
549 .link = cifs_hardlink,
552 .rename = cifs_rename,
553 .permission = cifs_permission,
554 /* revalidate:cifs_revalidate, */
555 .setattr = cifs_setattr,
556 .symlink = cifs_symlink,
558 #ifdef CONFIG_CIFS_XATTR
559 .setxattr = cifs_setxattr,
560 .getxattr = cifs_getxattr,
561 .listxattr = cifs_listxattr,
562 .removexattr = cifs_removexattr,
566 struct inode_operations cifs_file_inode_ops = {
567 /* revalidate:cifs_revalidate, */
568 .setattr = cifs_setattr,
569 .getattr = cifs_getattr, /* do we need this anymore? */
570 .rename = cifs_rename,
571 .permission = cifs_permission,
572 #ifdef CONFIG_CIFS_XATTR
573 .setxattr = cifs_setxattr,
574 .getxattr = cifs_getxattr,
575 .listxattr = cifs_listxattr,
576 .removexattr = cifs_removexattr,
580 struct inode_operations cifs_symlink_inode_ops = {
581 .readlink = generic_readlink,
582 .follow_link = cifs_follow_link,
583 .put_link = cifs_put_link,
584 .permission = cifs_permission,
585 /* BB add the following two eventually */
586 /* revalidate: cifs_revalidate,
587 setattr: cifs_notify_change, *//* BB do we need notify change */
588 #ifdef CONFIG_CIFS_XATTR
589 .setxattr = cifs_setxattr,
590 .getxattr = cifs_getxattr,
591 .listxattr = cifs_listxattr,
592 .removexattr = cifs_removexattr,
596 struct file_operations cifs_file_ops = {
597 .read = cifs_read_wrapper,
598 .write = cifs_write_wrapper,
600 .release = cifs_close,
604 .mmap = cifs_file_mmap,
605 .sendfile = generic_file_sendfile,
606 #ifdef CONFIG_CIFS_POSIX
608 #endif /* CONFIG_CIFS_POSIX */
610 #ifdef CONFIG_CIFS_EXPERIMENTAL
611 .readv = generic_file_readv,
612 .writev = generic_file_writev,
613 .aio_read = generic_file_aio_read,
614 .aio_write = generic_file_aio_write,
615 .dir_notify = cifs_dir_notify,
616 #endif /* CONFIG_CIFS_EXPERIMENTAL */
619 struct file_operations cifs_file_direct_ops = {
620 /* no mmap, no aio, no readv -
621 BB reevaluate whether they can be done with directio, no cache */
622 .read = cifs_user_read,
623 .write = cifs_user_write,
625 .release = cifs_close,
629 .sendfile = generic_file_sendfile, /* BB removeme BB */
630 #ifdef CONFIG_CIFS_POSIX
632 #endif /* CONFIG_CIFS_POSIX */
634 #ifdef CONFIG_CIFS_EXPERIMENTAL
635 .dir_notify = cifs_dir_notify,
636 #endif /* CONFIG_CIFS_EXPERIMENTAL */
639 struct file_operations cifs_dir_ops = {
640 .readdir = cifs_readdir,
641 .release = cifs_closedir,
642 .read = generic_read_dir,
643 #ifdef CONFIG_CIFS_EXPERIMENTAL
644 .dir_notify = cifs_dir_notify,
645 #endif /* CONFIG_CIFS_EXPERIMENTAL */
650 cifs_init_once(void *inode, kmem_cache_t * cachep, unsigned long flags)
652 struct cifsInodeInfo *cifsi = inode;
654 if ((flags & (SLAB_CTOR_VERIFY | SLAB_CTOR_CONSTRUCTOR)) ==
655 SLAB_CTOR_CONSTRUCTOR) {
656 inode_init_once(&cifsi->vfs_inode);
657 INIT_LIST_HEAD(&cifsi->lockList);
662 cifs_init_inodecache(void)
664 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
665 sizeof (struct cifsInodeInfo),
666 0, SLAB_RECLAIM_ACCOUNT,
667 cifs_init_once, NULL);
668 if (cifs_inode_cachep == NULL)
675 cifs_destroy_inodecache(void)
677 if (kmem_cache_destroy(cifs_inode_cachep))
678 printk(KERN_WARNING "cifs_inode_cache: error freeing\n");
682 cifs_init_request_bufs(void)
684 if(CIFSMaxBufSize < 8192) {
685 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
686 Unicode path name has to fit in any SMB/CIFS path based frames */
687 CIFSMaxBufSize = 8192;
688 } else if (CIFSMaxBufSize > 1024*127) {
689 CIFSMaxBufSize = 1024 * 127;
691 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
693 /* cERROR(1,("CIFSMaxBufSize %d 0x%x",CIFSMaxBufSize,CIFSMaxBufSize)); */
694 cifs_req_cachep = kmem_cache_create("cifs_request",
696 MAX_CIFS_HDR_SIZE, 0,
697 SLAB_HWCACHE_ALIGN, NULL, NULL);
698 if (cifs_req_cachep == NULL)
703 else if (cifs_min_rcv > 64) {
705 cERROR(1,("cifs_min_rcv set to maximum (64)"));
708 cifs_req_poolp = mempool_create(cifs_min_rcv,
713 if(cifs_req_poolp == NULL) {
714 kmem_cache_destroy(cifs_req_cachep);
717 /* 256 (MAX_CIFS_HDR_SIZE bytes is enough for most SMB responses and
718 almost all handle based requests (but not write response, nor is it
719 sufficient for path based requests). A smaller size would have
720 been more efficient (compacting multiple slab items on one 4k page)
721 for the case in which debug was on, but this larger size allows
722 more SMBs to use small buffer alloc and is still much more
723 efficient to alloc 1 per page off the slab compared to 17K (5page)
724 alloc of large cifs buffers even when page debugging is on */
725 cifs_sm_req_cachep = kmem_cache_create("cifs_small_rq",
726 MAX_CIFS_HDR_SIZE, 0, SLAB_HWCACHE_ALIGN, NULL, NULL);
727 if (cifs_sm_req_cachep == NULL) {
728 mempool_destroy(cifs_req_poolp);
729 kmem_cache_destroy(cifs_req_cachep);
733 if(cifs_min_small < 2)
735 else if (cifs_min_small > 256) {
736 cifs_min_small = 256;
737 cFYI(1,("cifs_min_small set to maximum (256)"));
740 cifs_sm_req_poolp = mempool_create(cifs_min_small,
745 if(cifs_sm_req_poolp == NULL) {
746 mempool_destroy(cifs_req_poolp);
747 kmem_cache_destroy(cifs_req_cachep);
748 kmem_cache_destroy(cifs_sm_req_cachep);
756 cifs_destroy_request_bufs(void)
758 mempool_destroy(cifs_req_poolp);
759 if (kmem_cache_destroy(cifs_req_cachep))
761 "cifs_destroy_request_cache: error not all structures were freed\n");
762 mempool_destroy(cifs_sm_req_poolp);
763 if (kmem_cache_destroy(cifs_sm_req_cachep))
765 "cifs_destroy_request_cache: cifs_small_rq free error\n");
771 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
772 sizeof (struct mid_q_entry), 0,
773 SLAB_HWCACHE_ALIGN, NULL, NULL);
774 if (cifs_mid_cachep == NULL)
777 cifs_mid_poolp = mempool_create(3 /* a reasonable min simultan opers */,
781 if(cifs_mid_poolp == NULL) {
782 kmem_cache_destroy(cifs_mid_cachep);
786 cifs_oplock_cachep = kmem_cache_create("cifs_oplock_structs",
787 sizeof (struct oplock_q_entry), 0,
788 SLAB_HWCACHE_ALIGN, NULL, NULL);
789 if (cifs_oplock_cachep == NULL) {
790 kmem_cache_destroy(cifs_mid_cachep);
791 mempool_destroy(cifs_mid_poolp);
799 cifs_destroy_mids(void)
801 mempool_destroy(cifs_mid_poolp);
802 if (kmem_cache_destroy(cifs_mid_cachep))
804 "cifs_destroy_mids: error not all structures were freed\n");
806 if (kmem_cache_destroy(cifs_oplock_cachep))
808 "error not all oplock structures were freed\n");
811 static int cifs_oplock_thread(void * dummyarg)
813 struct oplock_q_entry * oplock_item;
814 struct cifsTconInfo *pTcon;
815 struct inode * inode;
819 daemonize("cifsoplockd");
820 allow_signal(SIGTERM);
822 oplockThread = current;
827 spin_lock(&GlobalMid_Lock);
828 if(list_empty(&GlobalOplock_Q)) {
829 spin_unlock(&GlobalMid_Lock);
830 set_current_state(TASK_INTERRUPTIBLE);
831 schedule_timeout(39*HZ);
833 oplock_item = list_entry(GlobalOplock_Q.next,
834 struct oplock_q_entry, qhead);
836 cFYI(1,("found oplock item to write out"));
837 pTcon = oplock_item->tcon;
838 inode = oplock_item->pinode;
839 netfid = oplock_item->netfid;
840 spin_unlock(&GlobalMid_Lock);
841 DeleteOplockQEntry(oplock_item);
842 /* can not grab inode sem here since it would
843 deadlock when oplock received on delete
844 since vfs_unlink holds the i_sem across
846 /* down(&inode->i_sem);*/
847 if (S_ISREG(inode->i_mode)) {
848 rc = filemap_fdatawrite(inode->i_mapping);
849 if(CIFS_I(inode)->clientCanCacheRead == 0) {
850 filemap_fdatawait(inode->i_mapping);
851 invalidate_remote_inode(inode);
855 /* up(&inode->i_sem);*/
857 CIFS_I(inode)->write_behind_rc = rc;
858 cFYI(1,("Oplock flush inode %p rc %d",inode,rc));
860 /* releasing a stale oplock after recent reconnection
861 of smb session using a now incorrect file
862 handle is not a data integrity issue but do
863 not bother sending an oplock release if session
864 to server still is disconnected since oplock
865 already released by the server in that case */
866 if(pTcon->tidStatus != CifsNeedReconnect) {
867 rc = CIFSSMBLock(0, pTcon, netfid,
868 0 /* len */ , 0 /* offset */, 0,
869 0, LOCKING_ANDX_OPLOCK_RELEASE,
871 cFYI(1,("Oplock release rc = %d ",rc));
874 spin_unlock(&GlobalMid_Lock);
875 set_current_state(TASK_INTERRUPTIBLE);
876 schedule_timeout(1); /* yield in case q were corrupt */
878 } while(!signal_pending(current));
880 complete_and_exit (&cifs_oplock_exited, 0);
883 static int cifs_dnotify_thread(void * dummyarg)
885 daemonize("cifsdnotifyd");
886 allow_signal(SIGTERM);
888 dnotifyThread = current;
892 set_current_state(TASK_INTERRUPTIBLE);
893 schedule_timeout(39*HZ);
894 } while(!signal_pending(current));
895 complete_and_exit (&cifs_dnotify_exited, 0);
902 #ifdef CONFIG_PROC_FS
905 INIT_LIST_HEAD(&GlobalServerList); /* BB not implemented yet */
906 INIT_LIST_HEAD(&GlobalSMBSessionList);
907 INIT_LIST_HEAD(&GlobalTreeConnectionList);
908 INIT_LIST_HEAD(&GlobalOplock_Q);
909 #ifdef CONFIG_CIFS_EXPERIMENTAL
910 INIT_LIST_HEAD(&GlobalDnotifyReqList);
911 INIT_LIST_HEAD(&GlobalDnotifyRsp_Q);
914 * Initialize Global counters
916 atomic_set(&sesInfoAllocCount, 0);
917 atomic_set(&tconInfoAllocCount, 0);
918 atomic_set(&tcpSesAllocCount,0);
919 atomic_set(&tcpSesReconnectCount, 0);
920 atomic_set(&tconInfoReconnectCount, 0);
922 atomic_set(&bufAllocCount, 0);
923 atomic_set(&midCount, 0);
924 GlobalCurrentXid = 0;
925 GlobalTotalActiveXid = 0;
926 GlobalMaxActiveXid = 0;
927 rwlock_init(&GlobalSMBSeslock);
928 spin_lock_init(&GlobalMid_Lock);
930 if(cifs_max_pending < 2) {
931 cifs_max_pending = 2;
932 cFYI(1,("cifs_max_pending set to min of 2"));
933 } else if(cifs_max_pending > 256) {
934 cifs_max_pending = 256;
935 cFYI(1,("cifs_max_pending set to max of 256"));
938 rc = cifs_init_inodecache();
940 rc = cifs_init_mids();
942 rc = cifs_init_request_bufs();
944 rc = register_filesystem(&cifs_fs_type);
946 rc = (int)kernel_thread(cifs_oplock_thread, NULL,
947 CLONE_FS | CLONE_FILES | CLONE_VM);
949 rc = (int)kernel_thread(cifs_dnotify_thread, NULL,
950 CLONE_FS | CLONE_FILES | CLONE_VM);
954 cERROR(1,("error %d create dnotify thread", rc));
956 cERROR(1,("error %d create oplock thread",rc));
959 cifs_destroy_request_bufs();
963 cifs_destroy_inodecache();
965 #ifdef CONFIG_PROC_FS
974 cFYI(0, ("In unregister ie exit_cifs"));
975 #ifdef CONFIG_PROC_FS
978 unregister_filesystem(&cifs_fs_type);
979 cifs_destroy_inodecache();
981 cifs_destroy_request_bufs();
983 send_sig(SIGTERM, oplockThread, 1);
984 wait_for_completion(&cifs_oplock_exited);
987 send_sig(SIGTERM, dnotifyThread, 1);
988 wait_for_completion(&cifs_dnotify_exited);
992 MODULE_AUTHOR("Steve French <sfrench@us.ibm.com>");
993 MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
995 ("VFS to access servers complying with the SNIA CIFS Specification e.g. Samba and Windows");
996 MODULE_VERSION(CIFS_VERSION);
997 module_init(init_cifs)
998 module_exit(exit_cifs)