Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/cifsfs.c |
| 3 | * |
Steve French | 35c11fd | 2007-02-27 05:09:35 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2007 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * Common Internet FileSystem (CIFS) client |
| 8 | * |
| 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. |
| 13 | * |
| 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. |
| 18 | * |
| 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 |
| 22 | */ |
| 23 | |
| 24 | /* Note that BB means BUGBUG (ie something to fix eventually) */ |
| 25 | |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/fs.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> |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 35 | #include <linux/delay.h> |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 36 | #include <linux/kthread.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 37 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "cifsfs.h" |
| 39 | #include "cifspdu.h" |
| 40 | #define DECLARE_GLOBALS_HERE |
| 41 | #include "cifsglob.h" |
| 42 | #include "cifsproto.h" |
| 43 | #include "cifs_debug.h" |
| 44 | #include "cifs_fs_sb.h" |
| 45 | #include <linux/mm.h> |
| 46 | #define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDUs */ |
| 47 | |
| 48 | #ifdef CONFIG_CIFS_QUOTA |
| 49 | static struct quotactl_ops cifs_quotactl_ops; |
Steve French | 35c11fd | 2007-02-27 05:09:35 +0000 | [diff] [blame] | 50 | #endif /* QUOTA */ |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | int cifsFYI = 0; |
| 53 | int cifsERROR = 1; |
| 54 | int traceSMB = 0; |
| 55 | unsigned int oplockEnabled = 1; |
| 56 | unsigned int experimEnabled = 0; |
| 57 | unsigned int linuxExtEnabled = 1; |
| 58 | unsigned int lookupCacheEnabled = 1; |
| 59 | unsigned int multiuser_mount = 0; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 60 | unsigned int extended_security = CIFSSEC_DEF; |
| 61 | /* unsigned int ntlmv2_support = 0; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | unsigned int sign_CIFS_PDUs = 1; |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 63 | extern struct task_struct *oplockThread; /* remove sparse warning */ |
| 64 | struct task_struct *oplockThread = NULL; |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 65 | /* extern struct task_struct * dnotifyThread; remove sparse warning */ |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 66 | static struct task_struct *dnotifyThread = NULL; |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 67 | static const struct super_operations cifs_super_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE; |
| 69 | module_param(CIFSMaxBufSize, int, 0); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 70 | MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header). " |
| 71 | "Default: 16384 Range: 8192 to 130048"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL; |
| 73 | module_param(cifs_min_rcv, int, 0); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 74 | MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: " |
| 75 | "1 to 64"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | unsigned int cifs_min_small = 30; |
| 77 | module_param(cifs_min_small, int, 0); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 78 | MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 " |
| 79 | "Range: 2 to 256"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | unsigned int cifs_max_pending = CIFS_MAX_REQ; |
| 81 | module_param(cifs_max_pending, int, 0); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 82 | MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server. " |
| 83 | "Default: 50 Range: 2 to 256"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | extern mempool_t *cifs_sm_req_poolp; |
| 86 | extern mempool_t *cifs_req_poolp; |
| 87 | extern mempool_t *cifs_mid_poolp; |
| 88 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 89 | extern struct kmem_cache *cifs_oplock_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | static int |
| 92 | cifs_read_super(struct super_block *sb, void *data, |
| 93 | const char *devname, int silent) |
| 94 | { |
| 95 | struct inode *inode; |
| 96 | struct cifs_sb_info *cifs_sb; |
| 97 | int rc = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 98 | |
Steve French | 1b2b212 | 2007-02-17 04:30:54 +0000 | [diff] [blame] | 99 | /* BB should we make this contingent on mount parm? */ |
| 100 | sb->s_flags |= MS_NODIRATIME | MS_NOATIME; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 101 | sb->s_fs_info = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | cifs_sb = CIFS_SB(sb); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 103 | if (cifs_sb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | rc = cifs_mount(sb, cifs_sb, data, devname); |
| 107 | |
| 108 | if (rc) { |
| 109 | if (!silent) |
| 110 | cERROR(1, |
| 111 | ("cifs_mount failed w/return code = %d", rc)); |
| 112 | goto out_mount_failed; |
| 113 | } |
| 114 | |
| 115 | sb->s_magic = CIFS_MAGIC_NUMBER; |
| 116 | sb->s_op = &cifs_super_ops; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 117 | /* if (cifs_sb->tcon->ses->server->maxBuf > MAX_CIFS_HDR_SIZE + 512) |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 118 | sb->s_blocksize = |
| 119 | cifs_sb->tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #ifdef CONFIG_CIFS_QUOTA |
| 121 | sb->s_qcop = &cifs_quotactl_ops; |
| 122 | #endif |
| 123 | sb->s_blocksize = CIFS_MAX_MSGSIZE; |
| 124 | sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */ |
| 125 | inode = iget(sb, ROOT_I); |
| 126 | |
| 127 | if (!inode) { |
| 128 | rc = -ENOMEM; |
| 129 | goto out_no_root; |
| 130 | } |
| 131 | |
| 132 | sb->s_root = d_alloc_root(inode); |
| 133 | |
| 134 | if (!sb->s_root) { |
| 135 | rc = -ENOMEM; |
| 136 | goto out_no_root; |
| 137 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 138 | |
Steve French | 7521a3c | 2007-07-11 18:30:34 +0000 | [diff] [blame] | 139 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 140 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
| 141 | cFYI(1, ("export ops supported")); |
| 142 | sb->s_export_op = &cifs_export_ops; |
| 143 | } |
| 144 | #endif /* EXPERIMENTAL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | return 0; |
| 147 | |
| 148 | out_no_root: |
| 149 | cERROR(1, ("cifs_read_super: get root inode failed")); |
| 150 | if (inode) |
| 151 | iput(inode); |
| 152 | |
| 153 | out_mount_failed: |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 154 | if (cifs_sb) { |
| 155 | if (cifs_sb->local_nls) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 156 | unload_nls(cifs_sb->local_nls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | kfree(cifs_sb); |
| 158 | } |
| 159 | return rc; |
| 160 | } |
| 161 | |
| 162 | static void |
| 163 | cifs_put_super(struct super_block *sb) |
| 164 | { |
| 165 | int rc = 0; |
| 166 | struct cifs_sb_info *cifs_sb; |
| 167 | |
| 168 | cFYI(1, ("In cifs_put_super")); |
| 169 | cifs_sb = CIFS_SB(sb); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 170 | if (cifs_sb == NULL) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 171 | cFYI(1, ("Empty cifs superblock info passed to unmount")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return; |
| 173 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 174 | rc = cifs_umount(sb, cifs_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | if (rc) { |
| 176 | cERROR(1, ("cifs_umount failed with return code %d", rc)); |
| 177 | } |
| 178 | unload_nls(cifs_sb->local_nls); |
| 179 | kfree(cifs_sb); |
| 180 | return; |
| 181 | } |
| 182 | |
| 183 | static int |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 184 | cifs_statfs(struct dentry *dentry, struct kstatfs *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 186 | struct super_block *sb = dentry->d_sb; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 187 | int xid; |
Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 188 | int rc = -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | struct cifs_sb_info *cifs_sb; |
| 190 | struct cifsTconInfo *pTcon; |
| 191 | |
| 192 | xid = GetXid(); |
| 193 | |
| 194 | cifs_sb = CIFS_SB(sb); |
| 195 | pTcon = cifs_sb->tcon; |
| 196 | |
| 197 | buf->f_type = CIFS_MAGIC_NUMBER; |
| 198 | |
| 199 | /* instead could get the real value via SMB_QUERY_FS_ATTRIBUTE_INFO */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 200 | buf->f_namelen = PATH_MAX; /* PATH_MAX may be too long - it would |
Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 201 | presumably be total path, but note |
| 202 | that some servers (includinng Samba 3) |
| 203 | have a shorter maximum path */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | buf->f_files = 0; /* undefined */ |
| 205 | buf->f_ffree = 0; /* unlimited */ |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* BB we could add a second check for a QFS Unix capability bit */ |
Steve French | f28ac91 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 208 | /* BB FIXME check CIFS_POSIX_EXTENSIONS Unix cap first FIXME BB */ |
Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 209 | if ((pTcon->ses->capabilities & CAP_UNIX) && (CIFS_POSIX_EXTENSIONS & |
| 210 | le64_to_cpu(pTcon->fsUnixInfo.Capability))) |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 211 | rc = CIFSSMBQFSPosixInfo(xid, pTcon, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
| 213 | /* Only need to call the old QFSInfo if failed |
| 214 | on newer one */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 215 | if (rc) |
| 216 | if (pTcon->ses->capabilities & CAP_NT_SMBS) |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 217 | rc = CIFSSMBQFSInfo(xid, pTcon, buf); /* not supported by OS2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 219 | /* Some old Windows servers also do not support level 103, retry with |
| 220 | older level one if old server failed the previous call or we |
| 221 | bypassed it because we detected that this was an older LANMAN sess */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 222 | if (rc) |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 223 | rc = SMBOldQFSInfo(xid, pTcon, buf); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 224 | /* int f_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | __fsid_t f_fsid; |
| 226 | int f_namelen; */ |
Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 227 | /* BB get from info in tcon struct at mount time call to QFSAttrInfo */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | FreeXid(xid); |
Steve French | c81156d | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 229 | return 0; /* always return success? what if volume is no |
| 230 | longer available? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 233 | static int cifs_permission(struct inode *inode, int mask, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | struct cifs_sb_info *cifs_sb; |
| 236 | |
| 237 | cifs_sb = CIFS_SB(inode->i_sb); |
| 238 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 239 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | return 0; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 241 | else /* file mode might have been restricted at mount time |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 242 | on the client (above and beyond ACL on servers) for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | servers which do not support setting and viewing mode bits, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 244 | so allowing client to check permissions is useful */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | return generic_permission(inode, mask, NULL); |
| 246 | } |
| 247 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 248 | static struct kmem_cache *cifs_inode_cachep; |
| 249 | static struct kmem_cache *cifs_req_cachep; |
| 250 | static struct kmem_cache *cifs_mid_cachep; |
| 251 | struct kmem_cache *cifs_oplock_cachep; |
| 252 | static struct kmem_cache *cifs_sm_req_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | mempool_t *cifs_sm_req_poolp; |
| 254 | mempool_t *cifs_req_poolp; |
| 255 | mempool_t *cifs_mid_poolp; |
| 256 | |
| 257 | static struct inode * |
| 258 | cifs_alloc_inode(struct super_block *sb) |
| 259 | { |
| 260 | struct cifsInodeInfo *cifs_inode; |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 261 | cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | if (!cifs_inode) |
| 263 | return NULL; |
| 264 | cifs_inode->cifsAttrs = 0x20; /* default */ |
| 265 | atomic_set(&cifs_inode->inUse, 0); |
| 266 | cifs_inode->time = 0; |
| 267 | /* Until the file is open and we have gotten oplock |
| 268 | info back from the server, can not assume caching of |
| 269 | file data or metadata */ |
| 270 | cifs_inode->clientCanCacheRead = FALSE; |
| 271 | cifs_inode->clientCanCacheAll = FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 273 | |
Steve French | 1b2b212 | 2007-02-17 04:30:54 +0000 | [diff] [blame] | 274 | /* Can not set i_flags here - they get immediately overwritten |
| 275 | to zero by the VFS */ |
| 276 | /* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME;*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | INIT_LIST_HEAD(&cifs_inode->openFileList); |
| 278 | return &cifs_inode->vfs_inode; |
| 279 | } |
| 280 | |
| 281 | static void |
| 282 | cifs_destroy_inode(struct inode *inode) |
| 283 | { |
| 284 | kmem_cache_free(cifs_inode_cachep, CIFS_I(inode)); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * cifs_show_options() is for displaying mount options in /proc/mounts. |
| 289 | * Not all settable options are displayed but most of the important |
| 290 | * ones are. |
| 291 | */ |
| 292 | static int |
| 293 | cifs_show_options(struct seq_file *s, struct vfsmount *m) |
| 294 | { |
| 295 | struct cifs_sb_info *cifs_sb; |
| 296 | |
| 297 | cifs_sb = CIFS_SB(m->mnt_sb); |
| 298 | |
| 299 | if (cifs_sb) { |
| 300 | if (cifs_sb->tcon) { |
Steve French | 004c46b | 2007-02-17 04:34:13 +0000 | [diff] [blame] | 301 | /* BB add prepath to mount options displayed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | seq_printf(s, ",unc=%s", cifs_sb->tcon->treeName); |
| 303 | if (cifs_sb->tcon->ses) { |
| 304 | if (cifs_sb->tcon->ses->userName) |
| 305 | seq_printf(s, ",username=%s", |
| 306 | cifs_sb->tcon->ses->userName); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 307 | if (cifs_sb->tcon->ses->domainName) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | seq_printf(s, ",domain=%s", |
| 309 | cifs_sb->tcon->ses->domainName); |
| 310 | } |
Steve French | d5d1850 | 2007-10-17 21:31:52 +0000 | [diff] [blame] | 311 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) || |
| 312 | !(cifs_sb->tcon->unix_ext)) |
| 313 | seq_printf(s, ",uid=%d", cifs_sb->mnt_uid); |
| 314 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) || |
| 315 | !(cifs_sb->tcon->unix_ext)) |
| 316 | seq_printf(s, ",gid=%d", cifs_sb->mnt_gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 318 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) |
| 319 | seq_printf(s, ",posixpaths"); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 320 | seq_printf(s, ",rsize=%d", cifs_sb->rsize); |
| 321 | seq_printf(s, ",wsize=%d", cifs_sb->wsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } |
| 323 | return 0; |
| 324 | } |
| 325 | |
| 326 | #ifdef CONFIG_CIFS_QUOTA |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 327 | int cifs_xquota_set(struct super_block *sb, int quota_type, qid_t qid, |
| 328 | struct fs_disk_quota *pdquota) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { |
| 330 | int xid; |
| 331 | int rc = 0; |
| 332 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 333 | struct cifsTconInfo *pTcon; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 334 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 335 | if (cifs_sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | pTcon = cifs_sb->tcon; |
| 337 | else |
| 338 | return -EIO; |
| 339 | |
| 340 | |
| 341 | xid = GetXid(); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 342 | if (pTcon) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 343 | cFYI(1, ("set type: 0x%x id: %d", quota_type, qid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } else { |
Cyrill Gorcunov | 95ba736 | 2007-08-24 00:23:36 +0000 | [diff] [blame] | 345 | rc = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | FreeXid(xid); |
| 349 | return rc; |
| 350 | } |
| 351 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 352 | int cifs_xquota_get(struct super_block *sb, int quota_type, qid_t qid, |
| 353 | struct fs_disk_quota *pdquota) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
| 355 | int xid; |
| 356 | int rc = 0; |
| 357 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 358 | struct cifsTconInfo *pTcon; |
| 359 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 360 | if (cifs_sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | pTcon = cifs_sb->tcon; |
| 362 | else |
| 363 | return -EIO; |
| 364 | |
| 365 | xid = GetXid(); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 366 | if (pTcon) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 367 | cFYI(1, ("set type: 0x%x id: %d", quota_type, qid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } else { |
| 369 | rc = -EIO; |
| 370 | } |
| 371 | |
| 372 | FreeXid(xid); |
| 373 | return rc; |
| 374 | } |
| 375 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 376 | int cifs_xstate_set(struct super_block *sb, unsigned int flags, int operation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 378 | int xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | int rc = 0; |
| 380 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 381 | struct cifsTconInfo *pTcon; |
| 382 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 383 | if (cifs_sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | pTcon = cifs_sb->tcon; |
| 385 | else |
| 386 | return -EIO; |
| 387 | |
| 388 | xid = GetXid(); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 389 | if (pTcon) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 390 | cFYI(1, ("flags: 0x%x operation: 0x%x", flags, operation)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | } else { |
| 392 | rc = -EIO; |
| 393 | } |
| 394 | |
| 395 | FreeXid(xid); |
| 396 | return rc; |
| 397 | } |
| 398 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 399 | int cifs_xstate_get(struct super_block *sb, struct fs_quota_stat *qstats) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | { |
| 401 | int xid; |
| 402 | int rc = 0; |
| 403 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 404 | struct cifsTconInfo *pTcon; |
| 405 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 406 | if (cifs_sb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | pTcon = cifs_sb->tcon; |
| 408 | } else { |
| 409 | return -EIO; |
| 410 | } |
| 411 | xid = GetXid(); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 412 | if (pTcon) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 413 | cFYI(1, ("pqstats %p", qstats)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | } else { |
| 415 | rc = -EIO; |
| 416 | } |
| 417 | |
| 418 | FreeXid(xid); |
| 419 | return rc; |
| 420 | } |
| 421 | |
| 422 | static struct quotactl_ops cifs_quotactl_ops = { |
| 423 | .set_xquota = cifs_xquota_set, |
| 424 | .get_xquota = cifs_xquota_set, |
| 425 | .set_xstate = cifs_xstate_set, |
| 426 | .get_xstate = cifs_xstate_get, |
| 427 | }; |
| 428 | #endif |
| 429 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 430 | static void cifs_umount_begin(struct vfsmount *vfsmnt, int flags) |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 431 | { |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 432 | struct cifs_sb_info *cifs_sb; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 433 | struct cifsTconInfo *tcon; |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 434 | |
Trond Myklebust | 8b512d9 | 2006-06-09 09:34:18 -0400 | [diff] [blame] | 435 | if (!(flags & MNT_FORCE)) |
| 436 | return; |
| 437 | cifs_sb = CIFS_SB(vfsmnt->mnt_sb); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 438 | if (cifs_sb == NULL) |
Steve French | 9e2e85f | 2005-10-10 14:28:38 -0700 | [diff] [blame] | 439 | return; |
| 440 | |
| 441 | tcon = cifs_sb->tcon; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 442 | if (tcon == NULL) |
Steve French | 9e2e85f | 2005-10-10 14:28:38 -0700 | [diff] [blame] | 443 | return; |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 444 | down(&tcon->tconSem); |
| 445 | if (atomic_read(&tcon->useCount) == 1) |
| 446 | tcon->tidStatus = CifsExiting; |
| 447 | up(&tcon->tconSem); |
| 448 | |
Steve French | 3a5ff61 | 2006-07-14 22:37:11 +0000 | [diff] [blame] | 449 | /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */ |
Steve French | 7b7abfe | 2005-11-09 15:21:09 -0800 | [diff] [blame] | 450 | /* cancel_notify_requests(tcon); */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 451 | if (tcon->ses && tcon->ses->server) { |
| 452 | cFYI(1, ("wake up tasks now - umount begin not complete")); |
Steve French | 9e2e85f | 2005-10-10 14:28:38 -0700 | [diff] [blame] | 453 | wake_up_all(&tcon->ses->server->request_q); |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 454 | wake_up_all(&tcon->ses->server->response_q); |
| 455 | msleep(1); /* yield */ |
| 456 | /* we have to kick the requests once more */ |
| 457 | wake_up_all(&tcon->ses->server->response_q); |
| 458 | msleep(1); |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 459 | } |
| 460 | /* BB FIXME - finish add checks for tidStatus BB */ |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 461 | |
| 462 | return; |
| 463 | } |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 464 | |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 465 | #ifdef CONFIG_CIFS_STATS2 |
| 466 | static int cifs_show_stats(struct seq_file *s, struct vfsmount *mnt) |
| 467 | { |
| 468 | /* BB FIXME */ |
| 469 | return 0; |
| 470 | } |
| 471 | #endif |
| 472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | static int cifs_remount(struct super_block *sb, int *flags, char *data) |
| 474 | { |
| 475 | *flags |= MS_NODIRATIME; |
| 476 | return 0; |
| 477 | } |
| 478 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 479 | static const struct super_operations cifs_super_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | .read_inode = cifs_read_inode, |
| 481 | .put_super = cifs_put_super, |
| 482 | .statfs = cifs_statfs, |
| 483 | .alloc_inode = cifs_alloc_inode, |
| 484 | .destroy_inode = cifs_destroy_inode, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 485 | /* .drop_inode = generic_delete_inode, |
| 486 | .delete_inode = cifs_delete_inode, */ /* Do not need above two |
| 487 | functions unless later we add lazy close of inodes or unless the |
| 488 | kernel forgets to call us with the same number of releases (closes) |
| 489 | as opens */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | .show_options = cifs_show_options, |
Steve French | 7b7abfe | 2005-11-09 15:21:09 -0800 | [diff] [blame] | 491 | .umount_begin = cifs_umount_begin, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | .remount_fs = cifs_remount, |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 493 | #ifdef CONFIG_CIFS_STATS2 |
Steve French | f46d3e1 | 2006-09-30 01:08:55 +0000 | [diff] [blame] | 494 | .show_stats = cifs_show_stats, |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 495 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | }; |
| 497 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 498 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | cifs_get_sb(struct file_system_type *fs_type, |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 500 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | { |
| 502 | int rc; |
| 503 | struct super_block *sb = sget(fs_type, NULL, set_anon_super, NULL); |
| 504 | |
| 505 | cFYI(1, ("Devname: %s flags: %d ", dev_name, flags)); |
| 506 | |
| 507 | if (IS_ERR(sb)) |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 508 | return PTR_ERR(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | sb->s_flags = flags; |
| 511 | |
Theodore Ts'o | 9b04c99 | 2006-03-24 03:15:10 -0800 | [diff] [blame] | 512 | rc = cifs_read_super(sb, data, dev_name, flags & MS_SILENT ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | if (rc) { |
| 514 | up_write(&sb->s_umount); |
| 515 | deactivate_super(sb); |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 516 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | sb->s_flags |= MS_ACTIVE; |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 519 | return simple_set_mnt(mnt, sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 522 | static ssize_t cifs_file_aio_write(struct kiocb *iocb, const struct iovec *iov, |
| 523 | unsigned long nr_segs, loff_t pos) |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 524 | { |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 525 | struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode; |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 526 | ssize_t written; |
| 527 | |
Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 528 | written = generic_file_aio_write(iocb, iov, nr_segs, pos); |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 529 | if (!CIFS_I(inode)->clientCanCacheAll) |
| 530 | filemap_fdatawrite(inode->i_mapping); |
| 531 | return written; |
| 532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 534 | static loff_t cifs_llseek(struct file *file, loff_t offset, int origin) |
| 535 | { |
| 536 | /* origin == SEEK_END => we must revalidate the cached file length */ |
Steve French | 0889a94 | 2006-09-23 22:11:07 +0000 | [diff] [blame] | 537 | if (origin == SEEK_END) { |
Steve French | 030e9d8 | 2007-02-01 04:27:59 +0000 | [diff] [blame] | 538 | int retval; |
| 539 | |
| 540 | /* some applications poll for the file length in this strange |
| 541 | way so we must seek to end on non-oplocked files by |
| 542 | setting the revalidate time to zero */ |
Christoph Hellwig | c33f8d3 | 2007-04-02 18:47:20 +0000 | [diff] [blame] | 543 | CIFS_I(file->f_path.dentry->d_inode)->time = 0; |
Steve French | 030e9d8 | 2007-02-01 04:27:59 +0000 | [diff] [blame] | 544 | |
| 545 | retval = cifs_revalidate(file->f_path.dentry); |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 546 | if (retval < 0) |
| 547 | return (loff_t)retval; |
| 548 | } |
| 549 | return remote_llseek(file, offset, origin); |
| 550 | } |
| 551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | static struct file_system_type cifs_fs_type = { |
| 553 | .owner = THIS_MODULE, |
| 554 | .name = "cifs", |
| 555 | .get_sb = cifs_get_sb, |
| 556 | .kill_sb = kill_anon_super, |
| 557 | /* .fs_flags */ |
| 558 | }; |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 559 | const struct inode_operations cifs_dir_inode_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | .create = cifs_create, |
| 561 | .lookup = cifs_lookup, |
| 562 | .getattr = cifs_getattr, |
| 563 | .unlink = cifs_unlink, |
| 564 | .link = cifs_hardlink, |
| 565 | .mkdir = cifs_mkdir, |
| 566 | .rmdir = cifs_rmdir, |
| 567 | .rename = cifs_rename, |
| 568 | .permission = cifs_permission, |
| 569 | /* revalidate:cifs_revalidate, */ |
| 570 | .setattr = cifs_setattr, |
| 571 | .symlink = cifs_symlink, |
| 572 | .mknod = cifs_mknod, |
| 573 | #ifdef CONFIG_CIFS_XATTR |
| 574 | .setxattr = cifs_setxattr, |
| 575 | .getxattr = cifs_getxattr, |
| 576 | .listxattr = cifs_listxattr, |
| 577 | .removexattr = cifs_removexattr, |
| 578 | #endif |
| 579 | }; |
| 580 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 581 | const struct inode_operations cifs_file_inode_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | /* revalidate:cifs_revalidate, */ |
| 583 | .setattr = cifs_setattr, |
| 584 | .getattr = cifs_getattr, /* do we need this anymore? */ |
| 585 | .rename = cifs_rename, |
| 586 | .permission = cifs_permission, |
| 587 | #ifdef CONFIG_CIFS_XATTR |
| 588 | .setxattr = cifs_setxattr, |
| 589 | .getxattr = cifs_getxattr, |
| 590 | .listxattr = cifs_listxattr, |
| 591 | .removexattr = cifs_removexattr, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 592 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | }; |
| 594 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 595 | const struct inode_operations cifs_symlink_inode_ops = { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 596 | .readlink = generic_readlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | .follow_link = cifs_follow_link, |
| 598 | .put_link = cifs_put_link, |
| 599 | .permission = cifs_permission, |
| 600 | /* BB add the following two eventually */ |
| 601 | /* revalidate: cifs_revalidate, |
| 602 | setattr: cifs_notify_change, *//* BB do we need notify change */ |
| 603 | #ifdef CONFIG_CIFS_XATTR |
| 604 | .setxattr = cifs_setxattr, |
| 605 | .getxattr = cifs_getxattr, |
| 606 | .listxattr = cifs_listxattr, |
| 607 | .removexattr = cifs_removexattr, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 608 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | }; |
| 610 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 611 | const struct file_operations cifs_file_ops = { |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 612 | .read = do_sync_read, |
| 613 | .write = do_sync_write, |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 614 | .aio_read = generic_file_aio_read, |
| 615 | .aio_write = cifs_file_aio_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | .open = cifs_open, |
| 617 | .release = cifs_close, |
| 618 | .lock = cifs_lock, |
| 619 | .fsync = cifs_fsync, |
| 620 | .flush = cifs_flush, |
| 621 | .mmap = cifs_file_mmap, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 622 | .splice_read = generic_file_splice_read, |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 623 | .llseek = cifs_llseek, |
Steve French | c67593a | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 624 | #ifdef CONFIG_CIFS_POSIX |
| 625 | .ioctl = cifs_ioctl, |
| 626 | #endif /* CONFIG_CIFS_POSIX */ |
| 627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | .dir_notify = cifs_dir_notify, |
| 630 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
| 631 | }; |
| 632 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 633 | const struct file_operations cifs_file_direct_ops = { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 634 | /* no mmap, no aio, no readv - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | BB reevaluate whether they can be done with directio, no cache */ |
| 636 | .read = cifs_user_read, |
| 637 | .write = cifs_user_write, |
| 638 | .open = cifs_open, |
| 639 | .release = cifs_close, |
| 640 | .lock = cifs_lock, |
| 641 | .fsync = cifs_fsync, |
| 642 | .flush = cifs_flush, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 643 | .splice_read = generic_file_splice_read, |
Steve French | c67593a | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 644 | #ifdef CONFIG_CIFS_POSIX |
| 645 | .ioctl = cifs_ioctl, |
| 646 | #endif /* CONFIG_CIFS_POSIX */ |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 647 | .llseek = cifs_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 649 | .dir_notify = cifs_dir_notify, |
| 650 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
| 651 | }; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 652 | const struct file_operations cifs_file_nobrl_ops = { |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 653 | .read = do_sync_read, |
| 654 | .write = do_sync_write, |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 655 | .aio_read = generic_file_aio_read, |
| 656 | .aio_write = cifs_file_aio_write, |
| 657 | .open = cifs_open, |
| 658 | .release = cifs_close, |
| 659 | .fsync = cifs_fsync, |
| 660 | .flush = cifs_flush, |
| 661 | .mmap = cifs_file_mmap, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 662 | .splice_read = generic_file_splice_read, |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 663 | .llseek = cifs_llseek, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 664 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 665 | .ioctl = cifs_ioctl, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 666 | #endif /* CONFIG_CIFS_POSIX */ |
| 667 | |
| 668 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 669 | .dir_notify = cifs_dir_notify, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 670 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
| 671 | }; |
| 672 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 673 | const struct file_operations cifs_file_direct_nobrl_ops = { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 674 | /* no mmap, no aio, no readv - |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 675 | BB reevaluate whether they can be done with directio, no cache */ |
| 676 | .read = cifs_user_read, |
| 677 | .write = cifs_user_write, |
| 678 | .open = cifs_open, |
| 679 | .release = cifs_close, |
| 680 | .fsync = cifs_fsync, |
| 681 | .flush = cifs_flush, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 682 | .splice_read = generic_file_splice_read, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 683 | #ifdef CONFIG_CIFS_POSIX |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 684 | .ioctl = cifs_ioctl, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 685 | #endif /* CONFIG_CIFS_POSIX */ |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 686 | .llseek = cifs_llseek, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 687 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 688 | .dir_notify = cifs_dir_notify, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 689 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
| 690 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 692 | const struct file_operations cifs_dir_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | .readdir = cifs_readdir, |
| 694 | .release = cifs_closedir, |
| 695 | .read = generic_read_dir, |
| 696 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 697 | .dir_notify = cifs_dir_notify, |
| 698 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 699 | .ioctl = cifs_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | }; |
| 701 | |
| 702 | static void |
Christoph Lameter | 4ba9b9d | 2007-10-16 23:25:51 -0700 | [diff] [blame] | 703 | cifs_init_once(struct kmem_cache *cachep, void *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | { |
| 705 | struct cifsInodeInfo *cifsi = inode; |
| 706 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 707 | inode_init_once(&cifsi->vfs_inode); |
| 708 | INIT_LIST_HEAD(&cifsi->lockList); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | } |
| 710 | |
| 711 | static int |
| 712 | cifs_init_inodecache(void) |
| 713 | { |
| 714 | cifs_inode_cachep = kmem_cache_create("cifs_inode_cache", |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 715 | sizeof(struct cifsInodeInfo), |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 716 | 0, (SLAB_RECLAIM_ACCOUNT| |
| 717 | SLAB_MEM_SPREAD), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 718 | cifs_init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | if (cifs_inode_cachep == NULL) |
| 720 | return -ENOMEM; |
| 721 | |
| 722 | return 0; |
| 723 | } |
| 724 | |
| 725 | static void |
| 726 | cifs_destroy_inodecache(void) |
| 727 | { |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 728 | kmem_cache_destroy(cifs_inode_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | static int |
| 732 | cifs_init_request_bufs(void) |
| 733 | { |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 734 | if (CIFSMaxBufSize < 8192) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | /* Buffer size can not be smaller than 2 * PATH_MAX since maximum |
| 736 | Unicode path name has to fit in any SMB/CIFS path based frames */ |
| 737 | CIFSMaxBufSize = 8192; |
| 738 | } else if (CIFSMaxBufSize > 1024*127) { |
| 739 | CIFSMaxBufSize = 1024 * 127; |
| 740 | } else { |
| 741 | CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/ |
| 742 | } |
| 743 | /* cERROR(1,("CIFSMaxBufSize %d 0x%x",CIFSMaxBufSize,CIFSMaxBufSize)); */ |
| 744 | cifs_req_cachep = kmem_cache_create("cifs_request", |
| 745 | CIFSMaxBufSize + |
| 746 | MAX_CIFS_HDR_SIZE, 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 747 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | if (cifs_req_cachep == NULL) |
| 749 | return -ENOMEM; |
| 750 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 751 | if (cifs_min_rcv < 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | cifs_min_rcv = 1; |
| 753 | else if (cifs_min_rcv > 64) { |
| 754 | cifs_min_rcv = 64; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 755 | cERROR(1, ("cifs_min_rcv set to maximum (64)")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 758 | cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv, |
| 759 | cifs_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 761 | if (cifs_req_poolp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | kmem_cache_destroy(cifs_req_cachep); |
| 763 | return -ENOMEM; |
| 764 | } |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 765 | /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | almost all handle based requests (but not write response, nor is it |
| 767 | sufficient for path based requests). A smaller size would have |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 768 | been more efficient (compacting multiple slab items on one 4k page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | for the case in which debug was on, but this larger size allows |
| 770 | more SMBs to use small buffer alloc and is still much more |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 771 | efficient to alloc 1 per page off the slab compared to 17K (5page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | alloc of large cifs buffers even when page debugging is on */ |
| 773 | cifs_sm_req_cachep = kmem_cache_create("cifs_small_rq", |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 774 | MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 775 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | if (cifs_sm_req_cachep == NULL) { |
| 777 | mempool_destroy(cifs_req_poolp); |
| 778 | kmem_cache_destroy(cifs_req_cachep); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 779 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | } |
| 781 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 782 | if (cifs_min_small < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | cifs_min_small = 2; |
| 784 | else if (cifs_min_small > 256) { |
| 785 | cifs_min_small = 256; |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 786 | cFYI(1, ("cifs_min_small set to maximum (256)")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 789 | cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small, |
| 790 | cifs_sm_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 792 | if (cifs_sm_req_poolp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | mempool_destroy(cifs_req_poolp); |
| 794 | kmem_cache_destroy(cifs_req_cachep); |
| 795 | kmem_cache_destroy(cifs_sm_req_cachep); |
| 796 | return -ENOMEM; |
| 797 | } |
| 798 | |
| 799 | return 0; |
| 800 | } |
| 801 | |
| 802 | static void |
| 803 | cifs_destroy_request_bufs(void) |
| 804 | { |
| 805 | mempool_destroy(cifs_req_poolp); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 806 | kmem_cache_destroy(cifs_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | mempool_destroy(cifs_sm_req_poolp); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 808 | kmem_cache_destroy(cifs_sm_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | static int |
| 812 | cifs_init_mids(void) |
| 813 | { |
| 814 | cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids", |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 815 | sizeof(struct mid_q_entry), 0, |
| 816 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | if (cifs_mid_cachep == NULL) |
| 818 | return -ENOMEM; |
| 819 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 820 | /* 3 is a reasonable minimum number of simultaneous operations */ |
| 821 | cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 822 | if (cifs_mid_poolp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | kmem_cache_destroy(cifs_mid_cachep); |
| 824 | return -ENOMEM; |
| 825 | } |
| 826 | |
| 827 | cifs_oplock_cachep = kmem_cache_create("cifs_oplock_structs", |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 828 | sizeof(struct oplock_q_entry), 0, |
| 829 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | if (cifs_oplock_cachep == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | mempool_destroy(cifs_mid_poolp); |
Akinobu Mita | e6985c7 | 2007-06-04 16:14:59 +0000 | [diff] [blame] | 832 | kmem_cache_destroy(cifs_mid_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | return -ENOMEM; |
| 834 | } |
| 835 | |
| 836 | return 0; |
| 837 | } |
| 838 | |
| 839 | static void |
| 840 | cifs_destroy_mids(void) |
| 841 | { |
| 842 | mempool_destroy(cifs_mid_poolp); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 843 | kmem_cache_destroy(cifs_mid_cachep); |
| 844 | kmem_cache_destroy(cifs_oplock_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | } |
| 846 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 847 | static int cifs_oplock_thread(void *dummyarg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 849 | struct oplock_q_entry *oplock_item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | struct cifsTconInfo *pTcon; |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 851 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | __u16 netfid; |
| 853 | int rc; |
| 854 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 855 | set_freezable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | do { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 857 | if (try_to_freeze()) |
Steve French | ede1327 | 2005-08-30 20:10:14 -0700 | [diff] [blame] | 858 | continue; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | spin_lock(&GlobalMid_Lock); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 861 | if (list_empty(&GlobalOplock_Q)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | spin_unlock(&GlobalMid_Lock); |
| 863 | set_current_state(TASK_INTERRUPTIBLE); |
| 864 | schedule_timeout(39*HZ); |
| 865 | } else { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 866 | oplock_item = list_entry(GlobalOplock_Q.next, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | struct oplock_q_entry, qhead); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 868 | if (oplock_item) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 869 | cFYI(1, ("found oplock item to write out")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | pTcon = oplock_item->tcon; |
| 871 | inode = oplock_item->pinode; |
| 872 | netfid = oplock_item->netfid; |
| 873 | spin_unlock(&GlobalMid_Lock); |
| 874 | DeleteOplockQEntry(oplock_item); |
| 875 | /* can not grab inode sem here since it would |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 876 | deadlock when oplock received on delete |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 877 | since vfs_unlink holds the i_mutex across |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | the call */ |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 879 | /* mutex_lock(&inode->i_mutex);*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | if (S_ISREG(inode->i_mode)) { |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 881 | rc = |
| 882 | filemap_fdatawrite(inode->i_mapping); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 883 | if (CIFS_I(inode)->clientCanCacheRead |
| 884 | == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | filemap_fdatawait(inode->i_mapping); |
| 886 | invalidate_remote_inode(inode); |
| 887 | } |
| 888 | } else |
| 889 | rc = 0; |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 890 | /* mutex_unlock(&inode->i_mutex);*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | if (rc) |
| 892 | CIFS_I(inode)->write_behind_rc = rc; |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 893 | cFYI(1, ("Oplock flush inode %p rc %d", |
| 894 | inode, rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 896 | /* releasing stale oplock after recent reconnect |
| 897 | of smb session using a now incorrect file |
| 898 | handle is not a data integrity issue but do |
| 899 | not bother sending an oplock release if session |
| 900 | to server still is disconnected since oplock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | already released by the server in that case */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 902 | if (pTcon->tidStatus != CifsNeedReconnect) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | rc = CIFSSMBLock(0, pTcon, netfid, |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 904 | 0 /* len */ , 0 /* offset */, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | 0, LOCKING_ANDX_OPLOCK_RELEASE, |
| 906 | 0 /* wait flag */); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 907 | cFYI(1, ("Oplock release rc = %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | } |
| 909 | } else |
| 910 | spin_unlock(&GlobalMid_Lock); |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 911 | set_current_state(TASK_INTERRUPTIBLE); |
| 912 | schedule_timeout(1); /* yield in case q were corrupt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | } |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 914 | } while (!kthread_should_stop()); |
| 915 | |
| 916 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
| 918 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 919 | static int cifs_dnotify_thread(void *dummyarg) |
Steve French | 8d0d509 | 2005-08-18 09:41:43 -0700 | [diff] [blame] | 920 | { |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 921 | struct list_head *tmp; |
| 922 | struct cifsSesInfo *ses; |
| 923 | |
Steve French | 8d0d509 | 2005-08-18 09:41:43 -0700 | [diff] [blame] | 924 | do { |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 925 | if (try_to_freeze()) |
Steve French | 16abbec | 2005-08-30 13:10:14 -0700 | [diff] [blame] | 926 | continue; |
Steve French | 8d0d509 | 2005-08-18 09:41:43 -0700 | [diff] [blame] | 927 | set_current_state(TASK_INTERRUPTIBLE); |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 928 | schedule_timeout(15*HZ); |
| 929 | read_lock(&GlobalSMBSeslock); |
| 930 | /* check if any stuck requests that need |
| 931 | to be woken up and wakeq so the |
| 932 | thread can wake up and error out */ |
| 933 | list_for_each(tmp, &GlobalSMBSessionList) { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 934 | ses = list_entry(tmp, struct cifsSesInfo, |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 935 | cifsSessionList); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 936 | if (ses && ses->server && |
Steve French | 2a138ebb | 2005-11-29 21:22:19 -0800 | [diff] [blame] | 937 | atomic_read(&ses->server->inFlight)) |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 938 | wake_up_all(&ses->server->response_q); |
| 939 | } |
| 940 | read_unlock(&GlobalSMBSeslock); |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 941 | } while (!kthread_should_stop()); |
| 942 | |
| 943 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | static int __init |
| 947 | init_cifs(void) |
| 948 | { |
| 949 | int rc = 0; |
| 950 | #ifdef CONFIG_PROC_FS |
| 951 | cifs_proc_init(); |
| 952 | #endif |
Steve French | 2cd646a | 2006-09-28 19:43:08 +0000 | [diff] [blame] | 953 | /* INIT_LIST_HEAD(&GlobalServerList);*/ /* BB not implemented yet */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | INIT_LIST_HEAD(&GlobalSMBSessionList); |
| 955 | INIT_LIST_HEAD(&GlobalTreeConnectionList); |
| 956 | INIT_LIST_HEAD(&GlobalOplock_Q); |
Steve French | 4ca9c19 | 2005-10-10 19:52:13 -0700 | [diff] [blame] | 957 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 958 | INIT_LIST_HEAD(&GlobalDnotifyReqList); |
| 959 | INIT_LIST_HEAD(&GlobalDnotifyRsp_Q); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 960 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | /* |
| 962 | * Initialize Global counters |
| 963 | */ |
| 964 | atomic_set(&sesInfoAllocCount, 0); |
| 965 | atomic_set(&tconInfoAllocCount, 0); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 966 | atomic_set(&tcpSesAllocCount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | atomic_set(&tcpSesReconnectCount, 0); |
| 968 | atomic_set(&tconInfoReconnectCount, 0); |
| 969 | |
| 970 | atomic_set(&bufAllocCount, 0); |
Steve French | 4498eed5 | 2005-12-03 13:58:57 -0800 | [diff] [blame] | 971 | atomic_set(&smBufAllocCount, 0); |
| 972 | #ifdef CONFIG_CIFS_STATS2 |
| 973 | atomic_set(&totBufAllocCount, 0); |
| 974 | atomic_set(&totSmBufAllocCount, 0); |
| 975 | #endif /* CONFIG_CIFS_STATS2 */ |
| 976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | atomic_set(&midCount, 0); |
| 978 | GlobalCurrentXid = 0; |
| 979 | GlobalTotalActiveXid = 0; |
| 980 | GlobalMaxActiveXid = 0; |
Steve French | 2cd646a | 2006-09-28 19:43:08 +0000 | [diff] [blame] | 981 | memset(Local_System_Name, 0, 15); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | rwlock_init(&GlobalSMBSeslock); |
| 983 | spin_lock_init(&GlobalMid_Lock); |
| 984 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 985 | if (cifs_max_pending < 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | cifs_max_pending = 2; |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 987 | cFYI(1, ("cifs_max_pending set to min of 2")); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 988 | } else if (cifs_max_pending > 256) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | cifs_max_pending = 256; |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 990 | cFYI(1, ("cifs_max_pending set to max of 256")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | } |
| 992 | |
| 993 | rc = cifs_init_inodecache(); |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 994 | if (rc) |
| 995 | goto out_clean_proc; |
| 996 | |
| 997 | rc = cifs_init_mids(); |
| 998 | if (rc) |
| 999 | goto out_destroy_inodecache; |
| 1000 | |
| 1001 | rc = cifs_init_request_bufs(); |
| 1002 | if (rc) |
| 1003 | goto out_destroy_mids; |
| 1004 | |
| 1005 | rc = register_filesystem(&cifs_fs_type); |
| 1006 | if (rc) |
| 1007 | goto out_destroy_request_bufs; |
| 1008 | |
| 1009 | oplockThread = kthread_run(cifs_oplock_thread, NULL, "cifsoplockd"); |
| 1010 | if (IS_ERR(oplockThread)) { |
| 1011 | rc = PTR_ERR(oplockThread); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1012 | cERROR(1, ("error %d create oplock thread", rc)); |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1013 | goto out_unregister_filesystem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1015 | |
| 1016 | dnotifyThread = kthread_run(cifs_dnotify_thread, NULL, "cifsdnotifyd"); |
| 1017 | if (IS_ERR(dnotifyThread)) { |
| 1018 | rc = PTR_ERR(dnotifyThread); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1019 | cERROR(1, ("error %d create dnotify thread", rc)); |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1020 | goto out_stop_oplock_thread; |
| 1021 | } |
| 1022 | |
| 1023 | return 0; |
| 1024 | |
| 1025 | out_stop_oplock_thread: |
| 1026 | kthread_stop(oplockThread); |
| 1027 | out_unregister_filesystem: |
| 1028 | unregister_filesystem(&cifs_fs_type); |
| 1029 | out_destroy_request_bufs: |
| 1030 | cifs_destroy_request_bufs(); |
| 1031 | out_destroy_mids: |
| 1032 | cifs_destroy_mids(); |
| 1033 | out_destroy_inodecache: |
| 1034 | cifs_destroy_inodecache(); |
| 1035 | out_clean_proc: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | #ifdef CONFIG_PROC_FS |
| 1037 | cifs_proc_clean(); |
| 1038 | #endif |
| 1039 | return rc; |
| 1040 | } |
| 1041 | |
| 1042 | static void __exit |
| 1043 | exit_cifs(void) |
| 1044 | { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 1045 | cFYI(0, ("exit_cifs")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | #ifdef CONFIG_PROC_FS |
| 1047 | cifs_proc_clean(); |
| 1048 | #endif |
| 1049 | unregister_filesystem(&cifs_fs_type); |
| 1050 | cifs_destroy_inodecache(); |
| 1051 | cifs_destroy_mids(); |
| 1052 | cifs_destroy_request_bufs(); |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1053 | kthread_stop(oplockThread); |
| 1054 | kthread_stop(dnotifyThread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | } |
| 1056 | |
| 1057 | MODULE_AUTHOR("Steve French <sfrench@us.ibm.com>"); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1058 | MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | MODULE_DESCRIPTION |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 1060 | ("VFS to access servers complying with the SNIA CIFS Specification " |
| 1061 | "e.g. Samba and Windows"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | MODULE_VERSION(CIFS_VERSION); |
| 1063 | module_init(init_cifs) |
| 1064 | module_exit(exit_cifs) |