Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/file.c |
| 3 | * |
| 4 | * vfs operations that deal with files |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 5 | * |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 6 | * Copyright (C) International Business Machines Corp., 2002,2010 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Author(s): Steve French (sfrench@us.ibm.com) |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 8 | * Jeremy Allison (jra@samba.org) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * This library is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU Lesser General Public License as published |
| 12 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This library is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 18 | * the GNU Lesser General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU Lesser General Public License |
| 21 | * along with this library; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | #include <linux/fs.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 25 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/stat.h> |
| 27 | #include <linux/fcntl.h> |
| 28 | #include <linux/pagemap.h> |
| 29 | #include <linux/pagevec.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 30 | #include <linux/writeback.h> |
Andrew Morton | 6f88cc2 | 2006-12-10 02:19:44 -0800 | [diff] [blame] | 31 | #include <linux/task_io_accounting_ops.h> |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 32 | #include <linux/delay.h> |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 33 | #include <linux/mount.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/div64.h> |
| 36 | #include "cifsfs.h" |
| 37 | #include "cifspdu.h" |
| 38 | #include "cifsglob.h" |
| 39 | #include "cifsproto.h" |
| 40 | #include "cifs_unicode.h" |
| 41 | #include "cifs_debug.h" |
| 42 | #include "cifs_fs_sb.h" |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 43 | #include "fscache.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | static inline int cifs_convert_flags(unsigned int flags) |
| 46 | { |
| 47 | if ((flags & O_ACCMODE) == O_RDONLY) |
| 48 | return GENERIC_READ; |
| 49 | else if ((flags & O_ACCMODE) == O_WRONLY) |
| 50 | return GENERIC_WRITE; |
| 51 | else if ((flags & O_ACCMODE) == O_RDWR) { |
| 52 | /* GENERIC_ALL is too much permission to request |
| 53 | can cause unnecessary access denied on create */ |
| 54 | /* return GENERIC_ALL; */ |
| 55 | return (GENERIC_READ | GENERIC_WRITE); |
| 56 | } |
| 57 | |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 58 | return (READ_CONTROL | FILE_WRITE_ATTRIBUTES | FILE_READ_ATTRIBUTES | |
| 59 | FILE_WRITE_EA | FILE_APPEND_DATA | FILE_WRITE_DATA | |
| 60 | FILE_READ_DATA); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 61 | } |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 62 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 63 | static u32 cifs_posix_convert_flags(unsigned int flags) |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 64 | { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 65 | u32 posix_flags = 0; |
Jeff Layton | e10f7b5 | 2008-05-14 10:21:33 -0700 | [diff] [blame] | 66 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 67 | if ((flags & O_ACCMODE) == O_RDONLY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 68 | posix_flags = SMB_O_RDONLY; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 69 | else if ((flags & O_ACCMODE) == O_WRONLY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 70 | posix_flags = SMB_O_WRONLY; |
| 71 | else if ((flags & O_ACCMODE) == O_RDWR) |
| 72 | posix_flags = SMB_O_RDWR; |
| 73 | |
| 74 | if (flags & O_CREAT) |
| 75 | posix_flags |= SMB_O_CREAT; |
| 76 | if (flags & O_EXCL) |
| 77 | posix_flags |= SMB_O_EXCL; |
| 78 | if (flags & O_TRUNC) |
| 79 | posix_flags |= SMB_O_TRUNC; |
| 80 | /* be safe and imply O_SYNC for O_DSYNC */ |
Christoph Hellwig | 6b2f3d1 | 2009-10-27 11:05:28 +0100 | [diff] [blame] | 81 | if (flags & O_DSYNC) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 82 | posix_flags |= SMB_O_SYNC; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 83 | if (flags & O_DIRECTORY) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 84 | posix_flags |= SMB_O_DIRECTORY; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 85 | if (flags & O_NOFOLLOW) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 86 | posix_flags |= SMB_O_NOFOLLOW; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 87 | if (flags & O_DIRECT) |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 88 | posix_flags |= SMB_O_DIRECT; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 89 | |
| 90 | return posix_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static inline int cifs_get_disposition(unsigned int flags) |
| 94 | { |
| 95 | if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) |
| 96 | return FILE_CREATE; |
| 97 | else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC)) |
| 98 | return FILE_OVERWRITE_IF; |
| 99 | else if ((flags & O_CREAT) == O_CREAT) |
| 100 | return FILE_OPEN_IF; |
Steve French | 55aa2e0 | 2006-05-30 18:09:31 +0000 | [diff] [blame] | 101 | else if ((flags & O_TRUNC) == O_TRUNC) |
| 102 | return FILE_OVERWRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | else |
| 104 | return FILE_OPEN; |
| 105 | } |
| 106 | |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 107 | static inline int cifs_open_inode_helper(struct inode *inode, |
Suresh Jayaraman | a347ecb | 2010-09-17 19:43:10 +0530 | [diff] [blame] | 108 | struct cifsTconInfo *pTcon, __u32 oplock, FILE_ALL_INFO *buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | char *full_path, int xid) |
| 110 | { |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 111 | struct cifsInodeInfo *pCifsInode = CIFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | struct timespec temp; |
| 113 | int rc; |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | if (pCifsInode->clientCanCacheRead) { |
| 116 | /* we have the inode open somewhere else |
| 117 | no need to discard cache data */ |
| 118 | goto client_can_cache; |
| 119 | } |
| 120 | |
| 121 | /* BB need same check in cifs_create too? */ |
| 122 | /* if not oplocked, invalidate inode pages if mtime or file |
| 123 | size changed */ |
Jeff Layton | 07119a4 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 124 | temp = cifs_NTtimeToUnix(buf->LastWriteTime); |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 125 | if (timespec_equal(&inode->i_mtime, &temp) && |
| 126 | (inode->i_size == |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | (loff_t)le64_to_cpu(buf->EndOfFile))) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 128 | cFYI(1, "inode unchanged on server"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } else { |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 130 | if (inode->i_mapping) { |
Steve French | ff215713 | 2010-03-09 20:30:42 +0000 | [diff] [blame] | 131 | /* BB no need to lock inode until after invalidate |
| 132 | since namei code should already have it locked? */ |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 133 | rc = filemap_write_and_wait(inode->i_mapping); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 134 | mapping_set_error(inode->i_mapping, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 136 | cFYI(1, "invalidating remote inode since open detected it " |
| 137 | "changed"); |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 138 | invalidate_remote_inode(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | client_can_cache: |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 142 | if (pTcon->unix_ext) |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 143 | rc = cifs_get_inode_info_unix(&inode, full_path, inode->i_sb, |
| 144 | xid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | else |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 146 | rc = cifs_get_inode_info(&inode, full_path, buf, inode->i_sb, |
| 147 | xid, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Suresh Jayaraman | a347ecb | 2010-09-17 19:43:10 +0530 | [diff] [blame] | 149 | if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 150 | pCifsInode->clientCanCacheAll = true; |
| 151 | pCifsInode->clientCanCacheRead = true; |
Jeff Layton | db46024 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 152 | cFYI(1, "Exclusive Oplock granted on inode %p", inode); |
Suresh Jayaraman | a347ecb | 2010-09-17 19:43:10 +0530 | [diff] [blame] | 153 | } else if ((oplock & 0xF) == OPLOCK_READ) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 154 | pCifsInode->clientCanCacheRead = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | return rc; |
| 157 | } |
| 158 | |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 159 | int cifs_posix_open(char *full_path, struct inode **pinode, |
| 160 | struct super_block *sb, int mode, unsigned int f_flags, |
| 161 | __u32 *poplock, __u16 *pnetfid, int xid) |
| 162 | { |
| 163 | int rc; |
| 164 | FILE_UNIX_BASIC_INFO *presp_data; |
| 165 | __u32 posix_flags = 0; |
| 166 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
| 167 | struct cifs_fattr fattr; |
| 168 | struct tcon_link *tlink; |
| 169 | struct cifsTconInfo *tcon; |
| 170 | |
| 171 | cFYI(1, "posix open %s", full_path); |
| 172 | |
| 173 | presp_data = kzalloc(sizeof(FILE_UNIX_BASIC_INFO), GFP_KERNEL); |
| 174 | if (presp_data == NULL) |
| 175 | return -ENOMEM; |
| 176 | |
| 177 | tlink = cifs_sb_tlink(cifs_sb); |
| 178 | if (IS_ERR(tlink)) { |
| 179 | rc = PTR_ERR(tlink); |
| 180 | goto posix_open_ret; |
| 181 | } |
| 182 | |
| 183 | tcon = tlink_tcon(tlink); |
| 184 | mode &= ~current_umask(); |
| 185 | |
| 186 | posix_flags = cifs_posix_convert_flags(f_flags); |
| 187 | rc = CIFSPOSIXCreate(xid, tcon, posix_flags, mode, pnetfid, presp_data, |
| 188 | poplock, full_path, cifs_sb->local_nls, |
| 189 | cifs_sb->mnt_cifs_flags & |
| 190 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 191 | cifs_put_tlink(tlink); |
| 192 | |
| 193 | if (rc) |
| 194 | goto posix_open_ret; |
| 195 | |
| 196 | if (presp_data->Type == cpu_to_le32(-1)) |
| 197 | goto posix_open_ret; /* open ok, caller does qpathinfo */ |
| 198 | |
| 199 | if (!pinode) |
| 200 | goto posix_open_ret; /* caller does not need info */ |
| 201 | |
| 202 | cifs_unix_basic_to_fattr(&fattr, presp_data, cifs_sb); |
| 203 | |
| 204 | /* get new inode and set it up */ |
| 205 | if (*pinode == NULL) { |
| 206 | cifs_fill_uniqueid(sb, &fattr); |
| 207 | *pinode = cifs_iget(sb, &fattr); |
| 208 | if (!*pinode) { |
| 209 | rc = -ENOMEM; |
| 210 | goto posix_open_ret; |
| 211 | } |
| 212 | } else { |
| 213 | cifs_fattr_to_inode(*pinode, &fattr); |
| 214 | } |
| 215 | |
| 216 | posix_open_ret: |
| 217 | kfree(presp_data); |
| 218 | return rc; |
| 219 | } |
| 220 | |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 221 | struct cifsFileInfo * |
| 222 | cifs_new_fileinfo(__u16 fileHandle, struct file *file, |
| 223 | struct tcon_link *tlink, __u32 oplock) |
| 224 | { |
| 225 | struct dentry *dentry = file->f_path.dentry; |
| 226 | struct inode *inode = dentry->d_inode; |
| 227 | struct cifsInodeInfo *pCifsInode = CIFS_I(inode); |
| 228 | struct cifsFileInfo *pCifsFile; |
| 229 | |
| 230 | pCifsFile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL); |
| 231 | if (pCifsFile == NULL) |
| 232 | return pCifsFile; |
| 233 | |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 234 | pCifsFile->count = 1; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 235 | pCifsFile->netfid = fileHandle; |
| 236 | pCifsFile->pid = current->tgid; |
| 237 | pCifsFile->uid = current_fsuid(); |
| 238 | pCifsFile->dentry = dget(dentry); |
| 239 | pCifsFile->f_flags = file->f_flags; |
| 240 | pCifsFile->invalidHandle = false; |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 241 | pCifsFile->tlink = cifs_get_tlink(tlink); |
| 242 | mutex_init(&pCifsFile->fh_mutex); |
| 243 | mutex_init(&pCifsFile->lock_mutex); |
| 244 | INIT_LIST_HEAD(&pCifsFile->llist); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 245 | INIT_WORK(&pCifsFile->oplock_break, cifs_oplock_break); |
| 246 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 247 | spin_lock(&cifs_file_list_lock); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 248 | list_add(&pCifsFile->tlist, &(tlink_tcon(tlink)->openFileList)); |
| 249 | /* if readable file instance put first in list*/ |
| 250 | if (file->f_mode & FMODE_READ) |
| 251 | list_add(&pCifsFile->flist, &pCifsInode->openFileList); |
| 252 | else |
| 253 | list_add_tail(&pCifsFile->flist, &pCifsInode->openFileList); |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 254 | spin_unlock(&cifs_file_list_lock); |
Jeff Layton | 15ecb43 | 2010-10-15 15:34:02 -0400 | [diff] [blame] | 255 | |
| 256 | if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) { |
| 257 | pCifsInode->clientCanCacheAll = true; |
| 258 | pCifsInode->clientCanCacheRead = true; |
| 259 | cFYI(1, "Exclusive Oplock inode %p", inode); |
| 260 | } else if ((oplock & 0xF) == OPLOCK_READ) |
| 261 | pCifsInode->clientCanCacheRead = true; |
| 262 | |
| 263 | file->private_data = pCifsFile; |
| 264 | return pCifsFile; |
| 265 | } |
| 266 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 267 | /* |
| 268 | * Release a reference on the file private data. This may involve closing |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 269 | * the filehandle out on the server. Must be called without holding |
| 270 | * cifs_file_list_lock. |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 271 | */ |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 272 | void cifsFileInfo_put(struct cifsFileInfo *cifs_file) |
| 273 | { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 274 | struct cifsTconInfo *tcon = tlink_tcon(cifs_file->tlink); |
| 275 | struct cifsInodeInfo *cifsi = CIFS_I(cifs_file->dentry->d_inode); |
| 276 | struct cifsLockInfo *li, *tmp; |
| 277 | |
| 278 | spin_lock(&cifs_file_list_lock); |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 279 | if (--cifs_file->count > 0) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 280 | spin_unlock(&cifs_file_list_lock); |
| 281 | return; |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 282 | } |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 283 | |
| 284 | /* remove it from the lists */ |
| 285 | list_del(&cifs_file->flist); |
| 286 | list_del(&cifs_file->tlist); |
| 287 | |
| 288 | if (list_empty(&cifsi->openFileList)) { |
| 289 | cFYI(1, "closing last open instance for inode %p", |
| 290 | cifs_file->dentry->d_inode); |
| 291 | cifsi->clientCanCacheRead = false; |
| 292 | cifsi->clientCanCacheAll = false; |
| 293 | } |
| 294 | spin_unlock(&cifs_file_list_lock); |
| 295 | |
| 296 | if (!tcon->need_reconnect && !cifs_file->invalidHandle) { |
| 297 | int xid, rc; |
| 298 | |
| 299 | xid = GetXid(); |
| 300 | rc = CIFSSMBClose(xid, tcon, cifs_file->netfid); |
| 301 | FreeXid(xid); |
| 302 | } |
| 303 | |
| 304 | /* Delete any outstanding lock records. We'll lose them when the file |
| 305 | * is closed anyway. |
| 306 | */ |
| 307 | mutex_lock(&cifs_file->lock_mutex); |
| 308 | list_for_each_entry_safe(li, tmp, &cifs_file->llist, llist) { |
| 309 | list_del(&li->llist); |
| 310 | kfree(li); |
| 311 | } |
| 312 | mutex_unlock(&cifs_file->lock_mutex); |
| 313 | |
| 314 | cifs_put_tlink(cifs_file->tlink); |
| 315 | dput(cifs_file->dentry); |
| 316 | kfree(cifs_file); |
Jeff Layton | b33879a | 2010-10-15 15:34:04 -0400 | [diff] [blame] | 317 | } |
| 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | int cifs_open(struct inode *inode, struct file *file) |
| 320 | { |
| 321 | int rc = -EACCES; |
Jeff Layton | 590a3fe | 2009-09-12 11:54:28 -0400 | [diff] [blame] | 322 | int xid; |
| 323 | __u32 oplock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | struct cifs_sb_info *cifs_sb; |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 325 | struct cifsTconInfo *tcon; |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 326 | struct tcon_link *tlink; |
Jeff Layton | 6ca9f3b | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 327 | struct cifsFileInfo *pCifsFile = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | struct cifsInodeInfo *pCifsInode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | char *full_path = NULL; |
| 330 | int desiredAccess; |
| 331 | int disposition; |
| 332 | __u16 netfid; |
| 333 | FILE_ALL_INFO *buf = NULL; |
| 334 | |
| 335 | xid = GetXid(); |
| 336 | |
| 337 | cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 338 | tlink = cifs_sb_tlink(cifs_sb); |
| 339 | if (IS_ERR(tlink)) { |
| 340 | FreeXid(xid); |
| 341 | return PTR_ERR(tlink); |
| 342 | } |
| 343 | tcon = tlink_tcon(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Steve French | a6ce493 | 2009-04-09 01:14:32 +0000 | [diff] [blame] | 345 | pCifsInode = CIFS_I(file->f_path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 347 | full_path = build_path_from_dentry(file->f_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | if (full_path == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 349 | rc = -ENOMEM; |
Jeff Layton | 232341b | 2010-08-05 13:58:38 -0400 | [diff] [blame] | 350 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 353 | cFYI(1, "inode = 0x%p file flags are 0x%x for %s", |
| 354 | inode, file->f_flags, full_path); |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 355 | |
| 356 | if (oplockEnabled) |
| 357 | oplock = REQ_OPLOCK; |
| 358 | else |
| 359 | oplock = 0; |
| 360 | |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 361 | if (!tcon->broken_posix_open && tcon->unix_ext && |
| 362 | (tcon->ses->capabilities & CAP_UNIX) && |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 363 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 364 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 365 | /* can not refresh inode info since size could be stale */ |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 366 | rc = cifs_posix_open(full_path, &inode, inode->i_sb, |
Steve French | fa588e0 | 2010-04-22 19:21:55 +0000 | [diff] [blame] | 367 | cifs_sb->mnt_file_mode /* ignored */, |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 368 | file->f_flags, &oplock, &netfid, xid); |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 369 | if (rc == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 370 | cFYI(1, "posix open succeeded"); |
Jeff Layton | 47c78b7 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 371 | |
Jeff Layton | abfe1ee | 2010-10-15 15:33:58 -0400 | [diff] [blame] | 372 | pCifsFile = cifs_new_fileinfo(netfid, file, tlink, |
| 373 | oplock); |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 374 | if (pCifsFile == NULL) { |
| 375 | CIFSSMBClose(xid, tcon, netfid); |
| 376 | rc = -ENOMEM; |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 377 | } |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 378 | |
| 379 | cifs_fscache_set_inode_cookie(inode, file); |
| 380 | |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 381 | goto out; |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 382 | } else if ((rc == -EINVAL) || (rc == -EOPNOTSUPP)) { |
| 383 | if (tcon->ses->serverNOS) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 384 | cERROR(1, "server %s of type %s returned" |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 385 | " unexpected error on SMB posix open" |
| 386 | ", disabling posix open support." |
| 387 | " Check if server update available.", |
| 388 | tcon->ses->serverName, |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 389 | tcon->ses->serverNOS); |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 390 | tcon->broken_posix_open = true; |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 391 | } else if ((rc != -EIO) && (rc != -EREMOTE) && |
| 392 | (rc != -EOPNOTSUPP)) /* path not found or net err */ |
| 393 | goto out; |
Steve French | 64cc2c6 | 2009-03-04 19:54:08 +0000 | [diff] [blame] | 394 | /* else fallthrough to retry open the old way on network i/o |
| 395 | or DFS errors */ |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 396 | } |
| 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | desiredAccess = cifs_convert_flags(file->f_flags); |
| 399 | |
| 400 | /********************************************************************* |
| 401 | * open flag mapping table: |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 402 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | * POSIX Flag CIFS Disposition |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 404 | * ---------- ---------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | * O_CREAT FILE_OPEN_IF |
| 406 | * O_CREAT | O_EXCL FILE_CREATE |
| 407 | * O_CREAT | O_TRUNC FILE_OVERWRITE_IF |
| 408 | * O_TRUNC FILE_OVERWRITE |
| 409 | * none of the above FILE_OPEN |
| 410 | * |
| 411 | * Note that there is not a direct match between disposition |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 412 | * FILE_SUPERSEDE (ie create whether or not file exists although |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | * O_CREAT | O_TRUNC is similar but truncates the existing |
| 414 | * file rather than creating a new file as FILE_SUPERSEDE does |
| 415 | * (which uses the attributes / metadata passed in on open call) |
| 416 | *? |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 417 | *? O_SYNC is a reasonable match to CIFS writethrough flag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | *? and the read write flags match reasonably. O_LARGEFILE |
| 419 | *? is irrelevant because largefile support is always used |
| 420 | *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY, |
| 421 | * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation |
| 422 | *********************************************************************/ |
| 423 | |
| 424 | disposition = cifs_get_disposition(file->f_flags); |
| 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | /* BB pass O_SYNC flag through on file attributes .. BB */ |
| 427 | |
| 428 | /* Also refresh inode by passing in file_info buf returned by SMBOpen |
| 429 | and calling get_inode_info with returned buf (at least helps |
| 430 | non-Unix server case) */ |
| 431 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 432 | /* BB we can not do this if this is the second open of a file |
| 433 | and the first handle has writebehind data, we might be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | able to simply do a filemap_fdatawrite/filemap_fdatawait first */ |
| 435 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
| 436 | if (!buf) { |
| 437 | rc = -ENOMEM; |
| 438 | goto out; |
| 439 | } |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 440 | |
Jeff Layton | a6e8a84 | 2010-09-20 16:01:33 -0700 | [diff] [blame] | 441 | if (tcon->ses->capabilities & CAP_NT_SMBS) |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 442 | rc = CIFSSMBOpen(xid, tcon, full_path, disposition, |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 443 | desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 444 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags |
| 445 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 446 | else |
| 447 | rc = -EIO; /* no NT SMB support fall into legacy open below */ |
| 448 | |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 449 | if (rc == -EIO) { |
| 450 | /* Old server, try legacy style OpenX */ |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 451 | rc = SMBLegacyOpen(xid, tcon, full_path, disposition, |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 452 | desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf, |
| 453 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags |
| 454 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 455 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 457 | cFYI(1, "cifs_open returned 0x%x", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | goto out; |
| 459 | } |
Jeff Layton | 3321b79 | 2009-09-25 09:53:37 -0400 | [diff] [blame] | 460 | |
Suresh Jayaraman | a347ecb | 2010-09-17 19:43:10 +0530 | [diff] [blame] | 461 | rc = cifs_open_inode_helper(inode, tcon, oplock, buf, full_path, xid); |
Jeff Layton | 47c78b7 | 2010-06-16 13:40:17 -0400 | [diff] [blame] | 462 | if (rc != 0) |
| 463 | goto out; |
| 464 | |
Jeff Layton | abfe1ee | 2010-10-15 15:33:58 -0400 | [diff] [blame] | 465 | pCifsFile = cifs_new_fileinfo(netfid, file, tlink, oplock); |
Jeff Layton | 6ca9f3b | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 466 | if (pCifsFile == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | rc = -ENOMEM; |
| 468 | goto out; |
| 469 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 471 | cifs_fscache_set_inode_cookie(inode, file); |
| 472 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 473 | if (oplock & CIFS_CREATE_ACTION) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | /* time to set mode which we can not set earlier due to |
| 475 | problems creating new read-only files */ |
Steve French | 276a74a | 2009-03-03 18:00:34 +0000 | [diff] [blame] | 476 | if (tcon->unix_ext) { |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 477 | struct cifs_unix_set_info_args args = { |
| 478 | .mode = inode->i_mode, |
| 479 | .uid = NO_CHANGE_64, |
| 480 | .gid = NO_CHANGE_64, |
| 481 | .ctime = NO_CHANGE_64, |
| 482 | .atime = NO_CHANGE_64, |
| 483 | .mtime = NO_CHANGE_64, |
| 484 | .device = 0, |
| 485 | }; |
Jeff Layton | 01ea95e | 2009-07-09 20:02:49 -0400 | [diff] [blame] | 486 | CIFSSMBUnixSetPathInfo(xid, tcon, full_path, &args, |
| 487 | cifs_sb->local_nls, |
| 488 | cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 489 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | } |
| 491 | } |
| 492 | |
| 493 | out: |
| 494 | kfree(buf); |
| 495 | kfree(full_path); |
| 496 | FreeXid(xid); |
Jeff Layton | 7ffec37 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 497 | cifs_put_tlink(tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | return rc; |
| 499 | } |
| 500 | |
Adrian Bunk | 0418726 | 2006-06-30 18:23:04 +0200 | [diff] [blame] | 501 | /* Try to reacquire byte range locks that were released when session */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | /* to server was lost */ |
| 503 | static int cifs_relock_file(struct cifsFileInfo *cifsFile) |
| 504 | { |
| 505 | int rc = 0; |
| 506 | |
| 507 | /* BB list all locks open on this file and relock */ |
| 508 | |
| 509 | return rc; |
| 510 | } |
| 511 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 512 | static int cifs_reopen_file(struct cifsFileInfo *pCifsFile, bool can_flush) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
| 514 | int rc = -EACCES; |
Jeff Layton | 590a3fe | 2009-09-12 11:54:28 -0400 | [diff] [blame] | 515 | int xid; |
| 516 | __u32 oplock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | struct cifs_sb_info *cifs_sb; |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 518 | struct cifsTconInfo *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | struct cifsInodeInfo *pCifsInode; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 520 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | char *full_path = NULL; |
| 522 | int desiredAccess; |
| 523 | int disposition = FILE_OPEN; |
| 524 | __u16 netfid; |
| 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | xid = GetXid(); |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 527 | mutex_lock(&pCifsFile->fh_mutex); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 528 | if (!pCifsFile->invalidHandle) { |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 529 | mutex_unlock(&pCifsFile->fh_mutex); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 530 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 532 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 535 | inode = pCifsFile->dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | cifs_sb = CIFS_SB(inode->i_sb); |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 537 | tcon = tlink_tcon(pCifsFile->tlink); |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | /* can not grab rename sem here because various ops, including |
| 540 | those that already have the rename sem can end up causing writepage |
| 541 | to get called and if the server was down that means we end up here, |
| 542 | and we can never tell if the caller already has the rename_sem */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 543 | full_path = build_path_from_dentry(pCifsFile->dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (full_path == NULL) { |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 545 | rc = -ENOMEM; |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 546 | mutex_unlock(&pCifsFile->fh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | FreeXid(xid); |
Steve French | 3a9f462 | 2007-04-04 17:10:24 +0000 | [diff] [blame] | 548 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 551 | cFYI(1, "inode = 0x%p file flags 0x%x for %s", |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 552 | inode, pCifsFile->f_flags, full_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
| 554 | if (oplockEnabled) |
| 555 | oplock = REQ_OPLOCK; |
| 556 | else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 557 | oplock = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 559 | if (tcon->unix_ext && (tcon->ses->capabilities & CAP_UNIX) && |
| 560 | (CIFS_UNIX_POSIX_PATH_OPS_CAP & |
| 561 | le64_to_cpu(tcon->fsUnixInfo.Capability))) { |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 562 | |
| 563 | /* |
| 564 | * O_CREAT, O_EXCL and O_TRUNC already had their effect on the |
| 565 | * original open. Must mask them off for a reopen. |
| 566 | */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 567 | unsigned int oflags = pCifsFile->f_flags & |
| 568 | ~(O_CREAT | O_EXCL | O_TRUNC); |
Jeff Layton | 608712f | 2010-10-15 15:33:56 -0400 | [diff] [blame] | 569 | |
Jeff Layton | 2422f67 | 2010-06-16 13:40:16 -0400 | [diff] [blame] | 570 | rc = cifs_posix_open(full_path, NULL, inode->i_sb, |
Steve French | fa588e0 | 2010-04-22 19:21:55 +0000 | [diff] [blame] | 571 | cifs_sb->mnt_file_mode /* ignored */, |
| 572 | oflags, &oplock, &netfid, xid); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 573 | if (rc == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 574 | cFYI(1, "posix reopen succeeded"); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 575 | goto reopen_success; |
| 576 | } |
| 577 | /* fallthrough to retry open the old way on errors, especially |
| 578 | in the reconnect path it is important to retry hard */ |
| 579 | } |
| 580 | |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 581 | desiredAccess = cifs_convert_flags(pCifsFile->f_flags); |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | /* Can not refresh inode by passing in file_info buf to be returned |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 584 | by SMBOpen and then calling get_inode_info with returned buf |
| 585 | since file might have write behind data that needs to be flushed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | and server version of file size can be stale. If we knew for sure |
| 587 | that inode was not dirty locally we could do this */ |
| 588 | |
Steve French | 7fc8f4e | 2009-02-23 20:43:11 +0000 | [diff] [blame] | 589 | rc = CIFSSMBOpen(xid, tcon, full_path, disposition, desiredAccess, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | CREATE_NOT_DIR, &netfid, &oplock, NULL, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 591 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 592 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | if (rc) { |
Jeff Layton | f0a71eb | 2009-06-27 07:04:55 -0400 | [diff] [blame] | 594 | mutex_unlock(&pCifsFile->fh_mutex); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 595 | cFYI(1, "cifs_open returned 0x%x", rc); |
| 596 | cFYI(1, "oplock: %d", oplock); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 597 | goto reopen_error_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 599 | |
| 600 | reopen_success: |
| 601 | pCifsFile->netfid = netfid; |
| 602 | pCifsFile->invalidHandle = false; |
| 603 | mutex_unlock(&pCifsFile->fh_mutex); |
| 604 | pCifsInode = CIFS_I(inode); |
| 605 | |
| 606 | if (can_flush) { |
| 607 | rc = filemap_write_and_wait(inode->i_mapping); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 608 | mapping_set_error(inode->i_mapping, rc); |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 609 | |
| 610 | pCifsInode->clientCanCacheAll = false; |
| 611 | pCifsInode->clientCanCacheRead = false; |
| 612 | if (tcon->unix_ext) |
| 613 | rc = cifs_get_inode_info_unix(&inode, |
| 614 | full_path, inode->i_sb, xid); |
| 615 | else |
| 616 | rc = cifs_get_inode_info(&inode, |
| 617 | full_path, NULL, inode->i_sb, |
| 618 | xid, NULL); |
| 619 | } /* else we are writing out data to server already |
| 620 | and could deadlock if we tried to flush data, and |
| 621 | since we do not know if we have data that would |
| 622 | invalidate the current end of file on the server |
| 623 | we can not go to the server to get the new inod |
| 624 | info */ |
| 625 | if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) { |
| 626 | pCifsInode->clientCanCacheAll = true; |
| 627 | pCifsInode->clientCanCacheRead = true; |
| 628 | cFYI(1, "Exclusive Oplock granted on inode %p", |
| 629 | pCifsFile->dentry->d_inode); |
| 630 | } else if ((oplock & 0xF) == OPLOCK_READ) { |
| 631 | pCifsInode->clientCanCacheRead = true; |
| 632 | pCifsInode->clientCanCacheAll = false; |
| 633 | } else { |
| 634 | pCifsInode->clientCanCacheRead = false; |
| 635 | pCifsInode->clientCanCacheAll = false; |
| 636 | } |
| 637 | cifs_relock_file(pCifsFile); |
| 638 | |
| 639 | reopen_error_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | kfree(full_path); |
| 641 | FreeXid(xid); |
| 642 | return rc; |
| 643 | } |
| 644 | |
| 645 | int cifs_close(struct inode *inode, struct file *file) |
| 646 | { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 647 | cifsFileInfo_put(file->private_data); |
| 648 | file->private_data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 650 | /* return code from the ->release op is always ignored */ |
| 651 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | int cifs_closedir(struct inode *inode, struct file *file) |
| 655 | { |
| 656 | int rc = 0; |
| 657 | int xid; |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 658 | struct cifsFileInfo *pCFileStruct = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | char *ptmp; |
| 660 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 661 | cFYI(1, "Closedir inode = 0x%p", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
| 663 | xid = GetXid(); |
| 664 | |
| 665 | if (pCFileStruct) { |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 666 | struct cifsTconInfo *pTcon = tlink_tcon(pCFileStruct->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 668 | cFYI(1, "Freeing private data in close dir"); |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 669 | spin_lock(&cifs_file_list_lock); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 670 | if (!pCFileStruct->srch_inf.endOfSearch && |
| 671 | !pCFileStruct->invalidHandle) { |
| 672 | pCFileStruct->invalidHandle = true; |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 673 | spin_unlock(&cifs_file_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 675 | cFYI(1, "Closing uncompleted readdir with rc %d", |
| 676 | rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | /* not much we can do if it fails anyway, ignore rc */ |
| 678 | rc = 0; |
Steve French | ddb4cbf | 2008-11-20 20:00:44 +0000 | [diff] [blame] | 679 | } else |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 680 | spin_unlock(&cifs_file_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | ptmp = pCFileStruct->srch_inf.ntwrk_buf_start; |
| 682 | if (ptmp) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 683 | cFYI(1, "closedir free smb buf in srch struct"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | pCFileStruct->srch_inf.ntwrk_buf_start = NULL; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 685 | if (pCFileStruct->srch_inf.smallBuf) |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 686 | cifs_small_buf_release(ptmp); |
| 687 | else |
| 688 | cifs_buf_release(ptmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | } |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 690 | cifs_put_tlink(pCFileStruct->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | kfree(file->private_data); |
| 692 | file->private_data = NULL; |
| 693 | } |
| 694 | /* BB can we lock the filestruct while this is going on? */ |
| 695 | FreeXid(xid); |
| 696 | return rc; |
| 697 | } |
| 698 | |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 699 | static int store_file_lock(struct cifsFileInfo *fid, __u64 len, |
| 700 | __u64 offset, __u8 lockType) |
| 701 | { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 702 | struct cifsLockInfo *li = |
| 703 | kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 704 | if (li == NULL) |
| 705 | return -ENOMEM; |
| 706 | li->offset = offset; |
| 707 | li->length = len; |
| 708 | li->type = lockType; |
Roland Dreier | 796e566 | 2007-05-03 04:33:45 +0000 | [diff] [blame] | 709 | mutex_lock(&fid->lock_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 710 | list_add(&li->llist, &fid->llist); |
Roland Dreier | 796e566 | 2007-05-03 04:33:45 +0000 | [diff] [blame] | 711 | mutex_unlock(&fid->lock_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 712 | return 0; |
| 713 | } |
| 714 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) |
| 716 | { |
| 717 | int rc, xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | __u32 numLock = 0; |
| 719 | __u32 numUnlock = 0; |
| 720 | __u64 length; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 721 | bool wait_flag = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | struct cifs_sb_info *cifs_sb; |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 723 | struct cifsTconInfo *tcon; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 724 | __u16 netfid; |
| 725 | __u8 lockType = LOCKING_ANDX_LARGE_FILES; |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 726 | bool posix_locking = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | length = 1 + pfLock->fl_end - pfLock->fl_start; |
| 729 | rc = -EACCES; |
| 730 | xid = GetXid(); |
| 731 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 732 | cFYI(1, "Lock parm: 0x%x flockflags: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | "0x%x flocktype: 0x%x start: %lld end: %lld", |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 734 | cmd, pfLock->fl_flags, pfLock->fl_type, pfLock->fl_start, |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 735 | pfLock->fl_end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
| 737 | if (pfLock->fl_flags & FL_POSIX) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 738 | cFYI(1, "Posix"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | if (pfLock->fl_flags & FL_FLOCK) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 740 | cFYI(1, "Flock"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | if (pfLock->fl_flags & FL_SLEEP) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 742 | cFYI(1, "Blocking lock"); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 743 | wait_flag = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
| 745 | if (pfLock->fl_flags & FL_ACCESS) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 746 | cFYI(1, "Process suspended by mandatory locking - " |
| 747 | "not implemented yet"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | if (pfLock->fl_flags & FL_LEASE) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 749 | cFYI(1, "Lease on file - not implemented yet"); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 750 | if (pfLock->fl_flags & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE))) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 752 | cFYI(1, "Unknown lock flags 0x%x", pfLock->fl_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | |
| 754 | if (pfLock->fl_type == F_WRLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 755 | cFYI(1, "F_WRLCK "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | numLock = 1; |
| 757 | } else if (pfLock->fl_type == F_UNLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 758 | cFYI(1, "F_UNLCK"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | numUnlock = 1; |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 760 | /* Check if unlock includes more than |
| 761 | one lock range */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | } else if (pfLock->fl_type == F_RDLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 763 | cFYI(1, "F_RDLCK"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | lockType |= LOCKING_ANDX_SHARED_LOCK; |
| 765 | numLock = 1; |
| 766 | } else if (pfLock->fl_type == F_EXLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 767 | cFYI(1, "F_EXLCK"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | numLock = 1; |
| 769 | } else if (pfLock->fl_type == F_SHLCK) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 770 | cFYI(1, "F_SHLCK"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | lockType |= LOCKING_ANDX_SHARED_LOCK; |
| 772 | numLock = 1; |
| 773 | } else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 774 | cFYI(1, "Unknown type of lock"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 776 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 777 | tcon = tlink_tcon(((struct cifsFileInfo *)file->private_data)->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
| 779 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 780 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 782 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 784 | netfid = ((struct cifsFileInfo *)file->private_data)->netfid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 786 | if ((tcon->ses->capabilities & CAP_UNIX) && |
| 787 | (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && |
Steve French | acc18aa | 2008-12-02 18:53:55 +0000 | [diff] [blame] | 788 | ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 789 | posix_locking = 1; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 790 | /* BB add code here to normalize offset and length to |
| 791 | account for negative length which we can not accept over the |
| 792 | wire */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | if (IS_GETLK(cmd)) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 794 | if (posix_locking) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 795 | int posix_lock_type; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 796 | if (lockType & LOCKING_ANDX_SHARED_LOCK) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 797 | posix_lock_type = CIFS_RDLCK; |
| 798 | else |
| 799 | posix_lock_type = CIFS_WRLCK; |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 800 | rc = CIFSSMBPosixLock(xid, tcon, netfid, 1 /* get */, |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 801 | length, pfLock, |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 802 | posix_lock_type, wait_flag); |
| 803 | FreeXid(xid); |
| 804 | return rc; |
| 805 | } |
| 806 | |
| 807 | /* BB we could chain these into one lock request BB */ |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 808 | rc = CIFSSMBLock(xid, tcon, netfid, length, pfLock->fl_start, |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 809 | 0, 1, lockType, 0 /* wait flag */ ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | if (rc == 0) { |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 811 | rc = CIFSSMBLock(xid, tcon, netfid, length, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | pfLock->fl_start, 1 /* numUnlock */ , |
| 813 | 0 /* numLock */ , lockType, |
| 814 | 0 /* wait flag */ ); |
| 815 | pfLock->fl_type = F_UNLCK; |
| 816 | if (rc != 0) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 817 | cERROR(1, "Error unlocking previously locked " |
| 818 | "range %d during test of lock", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | rc = 0; |
| 820 | |
| 821 | } else { |
| 822 | /* if rc == ERR_SHARING_VIOLATION ? */ |
Pavel Shilovsky | f05337c | 2010-04-05 09:59:14 +0400 | [diff] [blame] | 823 | rc = 0; |
| 824 | |
| 825 | if (lockType & LOCKING_ANDX_SHARED_LOCK) { |
| 826 | pfLock->fl_type = F_WRLCK; |
| 827 | } else { |
| 828 | rc = CIFSSMBLock(xid, tcon, netfid, length, |
| 829 | pfLock->fl_start, 0, 1, |
| 830 | lockType | LOCKING_ANDX_SHARED_LOCK, |
| 831 | 0 /* wait flag */); |
| 832 | if (rc == 0) { |
| 833 | rc = CIFSSMBLock(xid, tcon, netfid, |
| 834 | length, pfLock->fl_start, 1, 0, |
| 835 | lockType | |
| 836 | LOCKING_ANDX_SHARED_LOCK, |
| 837 | 0 /* wait flag */); |
| 838 | pfLock->fl_type = F_RDLCK; |
| 839 | if (rc != 0) |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 840 | cERROR(1, "Error unlocking " |
Pavel Shilovsky | f05337c | 2010-04-05 09:59:14 +0400 | [diff] [blame] | 841 | "previously locked range %d " |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 842 | "during test of lock", rc); |
Pavel Shilovsky | f05337c | 2010-04-05 09:59:14 +0400 | [diff] [blame] | 843 | rc = 0; |
| 844 | } else { |
| 845 | pfLock->fl_type = F_WRLCK; |
| 846 | rc = 0; |
| 847 | } |
| 848 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | FreeXid(xid); |
| 852 | return rc; |
| 853 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 854 | |
| 855 | if (!numLock && !numUnlock) { |
| 856 | /* if no lock or unlock then nothing |
| 857 | to do since we do not know what it is */ |
| 858 | FreeXid(xid); |
| 859 | return -EOPNOTSUPP; |
| 860 | } |
| 861 | |
| 862 | if (posix_locking) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 863 | int posix_lock_type; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 864 | if (lockType & LOCKING_ANDX_SHARED_LOCK) |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 865 | posix_lock_type = CIFS_RDLCK; |
| 866 | else |
| 867 | posix_lock_type = CIFS_WRLCK; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 868 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 869 | if (numUnlock == 1) |
Steve French | beb84dc | 2006-03-03 23:36:34 +0000 | [diff] [blame] | 870 | posix_lock_type = CIFS_UNLCK; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 871 | |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 872 | rc = CIFSSMBPosixLock(xid, tcon, netfid, 0 /* set */, |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 873 | length, pfLock, |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 874 | posix_lock_type, wait_flag); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 875 | } else { |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 876 | struct cifsFileInfo *fid = file->private_data; |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 877 | |
| 878 | if (numLock) { |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 879 | rc = CIFSSMBLock(xid, tcon, netfid, length, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 880 | pfLock->fl_start, |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 881 | 0, numLock, lockType, wait_flag); |
| 882 | |
| 883 | if (rc == 0) { |
| 884 | /* For Windows locks we must store them. */ |
| 885 | rc = store_file_lock(fid, length, |
| 886 | pfLock->fl_start, lockType); |
| 887 | } |
| 888 | } else if (numUnlock) { |
| 889 | /* For each stored lock that this unlock overlaps |
| 890 | completely, unlock it. */ |
| 891 | int stored_rc = 0; |
| 892 | struct cifsLockInfo *li, *tmp; |
| 893 | |
Steve French | 6b70c95 | 2006-09-21 07:35:29 +0000 | [diff] [blame] | 894 | rc = 0; |
Roland Dreier | 796e566 | 2007-05-03 04:33:45 +0000 | [diff] [blame] | 895 | mutex_lock(&fid->lock_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 896 | list_for_each_entry_safe(li, tmp, &fid->llist, llist) { |
| 897 | if (pfLock->fl_start <= li->offset && |
Steve French | c19eb71 | 2007-08-24 03:22:48 +0000 | [diff] [blame] | 898 | (pfLock->fl_start + length) >= |
Jeff Layton | 39db810 | 2007-08-24 03:16:51 +0000 | [diff] [blame] | 899 | (li->offset + li->length)) { |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 900 | stored_rc = CIFSSMBLock(xid, tcon, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 901 | netfid, |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 902 | li->length, li->offset, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 903 | 1, 0, li->type, false); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 904 | if (stored_rc) |
| 905 | rc = stored_rc; |
Pavel Shilovsky | 2c964d1 | 2010-04-21 19:44:24 +0000 | [diff] [blame] | 906 | else { |
| 907 | list_del(&li->llist); |
| 908 | kfree(li); |
| 909 | } |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 910 | } |
| 911 | } |
Roland Dreier | 796e566 | 2007-05-03 04:33:45 +0000 | [diff] [blame] | 912 | mutex_unlock(&fid->lock_mutex); |
Jeremy Allison | 7ee1af7 | 2006-08-02 21:56:33 +0000 | [diff] [blame] | 913 | } |
| 914 | } |
| 915 | |
Steve French | d634cc1 | 2005-08-26 14:42:59 -0500 | [diff] [blame] | 916 | if (pfLock->fl_flags & FL_POSIX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | posix_lock_file_wait(file, pfLock); |
| 918 | FreeXid(xid); |
| 919 | return rc; |
| 920 | } |
| 921 | |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 922 | /* |
| 923 | * Set the timeout on write requests past EOF. For some servers (Windows) |
| 924 | * these calls can be very long. |
| 925 | * |
| 926 | * If we're writing >10M past the EOF we give a 180s timeout. Anything less |
| 927 | * than that gets a 45s timeout. Writes not past EOF get 15s timeouts. |
| 928 | * The 10M cutoff is totally arbitrary. A better scheme for this would be |
| 929 | * welcome if someone wants to suggest one. |
| 930 | * |
| 931 | * We may be able to do a better job with this if there were some way to |
| 932 | * declare that a file should be sparse. |
| 933 | */ |
| 934 | static int |
| 935 | cifs_write_timeout(struct cifsInodeInfo *cifsi, loff_t offset) |
| 936 | { |
| 937 | if (offset <= cifsi->server_eof) |
| 938 | return CIFS_STD_OP; |
| 939 | else if (offset > (cifsi->server_eof + (10 * 1024 * 1024))) |
| 940 | return CIFS_VLONG_OP; |
| 941 | else |
| 942 | return CIFS_LONG_OP; |
| 943 | } |
| 944 | |
| 945 | /* update the file size (if needed) after a write */ |
| 946 | static void |
| 947 | cifs_update_eof(struct cifsInodeInfo *cifsi, loff_t offset, |
| 948 | unsigned int bytes_written) |
| 949 | { |
| 950 | loff_t end_of_write = offset + bytes_written; |
| 951 | |
| 952 | if (end_of_write > cifsi->server_eof) |
| 953 | cifsi->server_eof = end_of_write; |
| 954 | } |
| 955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | ssize_t cifs_user_write(struct file *file, const char __user *write_data, |
| 957 | size_t write_size, loff_t *poffset) |
| 958 | { |
Jiri Slaby | 50ae28f | 2010-11-01 16:08:55 +0100 | [diff] [blame^] | 959 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | int rc = 0; |
| 961 | unsigned int bytes_written = 0; |
| 962 | unsigned int total_written; |
| 963 | struct cifs_sb_info *cifs_sb; |
| 964 | struct cifsTconInfo *pTcon; |
| 965 | int xid, long_op; |
| 966 | struct cifsFileInfo *open_file; |
Jiri Slaby | 50ae28f | 2010-11-01 16:08:55 +0100 | [diff] [blame^] | 967 | struct cifsInodeInfo *cifsi = CIFS_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 969 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 971 | /* cFYI(1, " write %d bytes to offset %lld of %s", write_size, |
| 972 | *poffset, file->f_path.dentry->d_name.name); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
| 974 | if (file->private_data == NULL) |
| 975 | return -EBADF; |
Jeff Layton | ba00ba6 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 976 | |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 977 | open_file = file->private_data; |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 978 | pTcon = tlink_tcon(open_file->tlink); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 979 | |
Jeff Layton | 838726c | 2008-08-28 07:54:59 -0400 | [diff] [blame] | 980 | rc = generic_write_checks(file, poffset, &write_size, 0); |
| 981 | if (rc) |
| 982 | return rc; |
| 983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 986 | long_op = cifs_write_timeout(cifsi, *poffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | for (total_written = 0; write_size > total_written; |
| 988 | total_written += bytes_written) { |
| 989 | rc = -EAGAIN; |
| 990 | while (rc == -EAGAIN) { |
| 991 | if (file->private_data == NULL) { |
| 992 | /* file has been closed on us */ |
| 993 | FreeXid(xid); |
| 994 | /* if we have gotten here we have written some data |
| 995 | and blocked, and the file has been freed on us while |
| 996 | we blocked so return what we managed to write */ |
| 997 | return total_written; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 998 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | if (open_file->invalidHandle) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | /* we could deadlock if we called |
| 1001 | filemap_fdatawait from here so tell |
| 1002 | reopen_file not to flush data to server |
| 1003 | now */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1004 | rc = cifs_reopen_file(open_file, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | if (rc != 0) |
| 1006 | break; |
| 1007 | } |
| 1008 | |
| 1009 | rc = CIFSSMBWrite(xid, pTcon, |
| 1010 | open_file->netfid, |
| 1011 | min_t(const int, cifs_sb->wsize, |
| 1012 | write_size - total_written), |
| 1013 | *poffset, &bytes_written, |
| 1014 | NULL, write_data + total_written, long_op); |
| 1015 | } |
| 1016 | if (rc || (bytes_written == 0)) { |
| 1017 | if (total_written) |
| 1018 | break; |
| 1019 | else { |
| 1020 | FreeXid(xid); |
| 1021 | return rc; |
| 1022 | } |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1023 | } else { |
| 1024 | cifs_update_eof(cifsi, *poffset, bytes_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | *poffset += bytes_written; |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1026 | } |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1027 | long_op = CIFS_STD_OP; /* subsequent writes fast - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | 15 seconds is plenty */ |
| 1029 | } |
| 1030 | |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1031 | cifs_stats_bytes_written(pTcon, total_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1033 | /* Do not update local mtime - server will set its actual value on write |
Jiri Slaby | 50ae28f | 2010-11-01 16:08:55 +0100 | [diff] [blame^] | 1034 | * inode->i_ctime = inode->i_mtime = |
| 1035 | * current_fs_time(inode->i_sb);*/ |
| 1036 | if (total_written > 0) { |
| 1037 | spin_lock(&inode->i_lock); |
| 1038 | if (*poffset > inode->i_size) |
| 1039 | i_size_write(inode, *poffset); |
| 1040 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | } |
Jiri Slaby | 50ae28f | 2010-11-01 16:08:55 +0100 | [diff] [blame^] | 1042 | mark_inode_dirty_sync(inode); |
| 1043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | FreeXid(xid); |
| 1045 | return total_written; |
| 1046 | } |
| 1047 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1048 | static ssize_t cifs_write(struct cifsFileInfo *open_file, |
| 1049 | const char *write_data, size_t write_size, |
| 1050 | loff_t *poffset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | { |
| 1052 | int rc = 0; |
| 1053 | unsigned int bytes_written = 0; |
| 1054 | unsigned int total_written; |
| 1055 | struct cifs_sb_info *cifs_sb; |
| 1056 | struct cifsTconInfo *pTcon; |
| 1057 | int xid, long_op; |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1058 | struct dentry *dentry = open_file->dentry; |
| 1059 | struct cifsInodeInfo *cifsi = CIFS_I(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1061 | cifs_sb = CIFS_SB(dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1063 | cFYI(1, "write %zd bytes to offset %lld of %s", write_size, |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1064 | *poffset, dentry->d_name.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1066 | pTcon = tlink_tcon(open_file->tlink); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1067 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1070 | long_op = cifs_write_timeout(cifsi, *poffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | for (total_written = 0; write_size > total_written; |
| 1072 | total_written += bytes_written) { |
| 1073 | rc = -EAGAIN; |
| 1074 | while (rc == -EAGAIN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | if (open_file->invalidHandle) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | /* we could deadlock if we called |
| 1077 | filemap_fdatawait from here so tell |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1078 | reopen_file not to flush data to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | server now */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1080 | rc = cifs_reopen_file(open_file, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | if (rc != 0) |
| 1082 | break; |
| 1083 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1084 | if (experimEnabled || (pTcon->ses->server && |
| 1085 | ((pTcon->ses->server->secMode & |
Steve French | 0877583 | 2006-05-30 18:08:26 +0000 | [diff] [blame] | 1086 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Steve French | c01f36a | 2006-05-30 18:05:10 +0000 | [diff] [blame] | 1087 | == 0))) { |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1088 | struct kvec iov[2]; |
| 1089 | unsigned int len; |
| 1090 | |
Steve French | 0ae0efa | 2005-10-10 10:57:19 -0700 | [diff] [blame] | 1091 | len = min((size_t)cifs_sb->wsize, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1092 | write_size - total_written); |
| 1093 | /* iov[0] is reserved for smb header */ |
| 1094 | iov[1].iov_base = (char *)write_data + |
| 1095 | total_written; |
| 1096 | iov[1].iov_len = len; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1097 | rc = CIFSSMBWrite2(xid, pTcon, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1098 | open_file->netfid, len, |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1099 | *poffset, &bytes_written, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 1100 | iov, 1, long_op); |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 1101 | } else |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1102 | rc = CIFSSMBWrite(xid, pTcon, |
| 1103 | open_file->netfid, |
| 1104 | min_t(const int, cifs_sb->wsize, |
| 1105 | write_size - total_written), |
| 1106 | *poffset, &bytes_written, |
| 1107 | write_data + total_written, |
| 1108 | NULL, long_op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | } |
| 1110 | if (rc || (bytes_written == 0)) { |
| 1111 | if (total_written) |
| 1112 | break; |
| 1113 | else { |
| 1114 | FreeXid(xid); |
| 1115 | return rc; |
| 1116 | } |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1117 | } else { |
| 1118 | cifs_update_eof(cifsi, *poffset, bytes_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | *poffset += bytes_written; |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1120 | } |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 1121 | long_op = CIFS_STD_OP; /* subsequent writes fast - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | 15 seconds is plenty */ |
| 1123 | } |
| 1124 | |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1125 | cifs_stats_bytes_written(pTcon, total_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1127 | if (total_written > 0) { |
| 1128 | spin_lock(&dentry->d_inode->i_lock); |
| 1129 | if (*poffset > dentry->d_inode->i_size) |
| 1130 | i_size_write(dentry->d_inode, *poffset); |
| 1131 | spin_unlock(&dentry->d_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | } |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1133 | mark_inode_dirty_sync(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | FreeXid(xid); |
| 1135 | return total_written; |
| 1136 | } |
| 1137 | |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1138 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1139 | struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *cifs_inode, |
| 1140 | bool fsuid_only) |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1141 | { |
| 1142 | struct cifsFileInfo *open_file = NULL; |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1143 | struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); |
| 1144 | |
| 1145 | /* only filter by fsuid on multiuser mounts */ |
| 1146 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 1147 | fsuid_only = false; |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1148 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1149 | spin_lock(&cifs_file_list_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1150 | /* we could simply get the first_list_entry since write-only entries |
| 1151 | are always at the end of the list but since the first entry might |
| 1152 | have a close pending, we go through the whole list */ |
| 1153 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1154 | if (fsuid_only && open_file->uid != current_fsuid()) |
| 1155 | continue; |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 1156 | if (OPEN_FMODE(open_file->f_flags) & FMODE_READ) { |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1157 | if (!open_file->invalidHandle) { |
| 1158 | /* found a good file */ |
| 1159 | /* lock it so it will not be closed on us */ |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1160 | cifsFileInfo_get(open_file); |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1161 | spin_unlock(&cifs_file_list_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1162 | return open_file; |
| 1163 | } /* else might as well continue, and look for |
| 1164 | another, or simply have the caller reopen it |
| 1165 | again rather than trying to fix this handle */ |
| 1166 | } else /* write only file */ |
| 1167 | break; /* write only files are last so must be done */ |
| 1168 | } |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1169 | spin_unlock(&cifs_file_list_lock); |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 1170 | return NULL; |
| 1171 | } |
| 1172 | #endif |
| 1173 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1174 | struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode, |
| 1175 | bool fsuid_only) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1176 | { |
| 1177 | struct cifsFileInfo *open_file; |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1178 | struct cifs_sb_info *cifs_sb = CIFS_SB(cifs_inode->vfs_inode.i_sb); |
Jeff Layton | 2846d38 | 2008-09-22 21:33:33 -0400 | [diff] [blame] | 1179 | bool any_available = false; |
Steve French | dd99cd8 | 2005-10-05 19:32:49 -0700 | [diff] [blame] | 1180 | int rc; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1181 | |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1182 | /* Having a null inode here (because mapping->host was set to zero by |
| 1183 | the VFS or MM) should not happen but we had reports of on oops (due to |
| 1184 | it being zero) during stress testcases so we need to check for it */ |
| 1185 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1186 | if (cifs_inode == NULL) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1187 | cERROR(1, "Null inode passed to cifs_writeable_file"); |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1188 | dump_stack(); |
| 1189 | return NULL; |
| 1190 | } |
| 1191 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1192 | /* only filter by fsuid on multiuser mounts */ |
| 1193 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 1194 | fsuid_only = false; |
| 1195 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1196 | spin_lock(&cifs_file_list_lock); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1197 | refind_writable: |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1198 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1199 | if (!any_available && open_file->pid != current->tgid) |
| 1200 | continue; |
| 1201 | if (fsuid_only && open_file->uid != current_fsuid()) |
| 1202 | continue; |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 1203 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1204 | cifsFileInfo_get(open_file); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1205 | |
| 1206 | if (!open_file->invalidHandle) { |
| 1207 | /* found a good writable file */ |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1208 | spin_unlock(&cifs_file_list_lock); |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1209 | return open_file; |
| 1210 | } |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 1211 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1212 | spin_unlock(&cifs_file_list_lock); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1213 | |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1214 | /* Had to unlock since following call can block */ |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1215 | rc = cifs_reopen_file(open_file, false); |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1216 | if (!rc) |
| 1217 | return open_file; |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1218 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1219 | /* if it fails, try another handle if possible */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1220 | cFYI(1, "wp failed on reopen file"); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1221 | cifsFileInfo_put(open_file); |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 1222 | |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1223 | spin_lock(&cifs_file_list_lock); |
| 1224 | |
Steve French | 9b22b0b | 2007-10-02 01:11:08 +0000 | [diff] [blame] | 1225 | /* else we simply continue to the next entry. Thus |
| 1226 | we do not loop on reopen errors. If we |
| 1227 | can not reopen the file, for example if we |
| 1228 | reconnected to a server with another client |
| 1229 | racing to delete or lock the file we would not |
| 1230 | make progress if we restarted before the beginning |
| 1231 | of the loop here. */ |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1232 | } |
| 1233 | } |
Jeff Layton | 2846d38 | 2008-09-22 21:33:33 -0400 | [diff] [blame] | 1234 | /* couldn't find useable FH with same pid, try any available */ |
| 1235 | if (!any_available) { |
| 1236 | any_available = true; |
| 1237 | goto refind_writable; |
| 1238 | } |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 1239 | spin_unlock(&cifs_file_list_lock); |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1240 | return NULL; |
| 1241 | } |
| 1242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to) |
| 1244 | { |
| 1245 | struct address_space *mapping = page->mapping; |
| 1246 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1247 | char *write_data; |
| 1248 | int rc = -EFAULT; |
| 1249 | int bytes_written = 0; |
| 1250 | struct cifs_sb_info *cifs_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | struct inode *inode; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1252 | struct cifsFileInfo *open_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
| 1254 | if (!mapping || !mapping->host) |
| 1255 | return -EFAULT; |
| 1256 | |
| 1257 | inode = page->mapping->host; |
| 1258 | cifs_sb = CIFS_SB(inode->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | |
| 1260 | offset += (loff_t)from; |
| 1261 | write_data = kmap(page); |
| 1262 | write_data += from; |
| 1263 | |
| 1264 | if ((to > PAGE_CACHE_SIZE) || (from > to)) { |
| 1265 | kunmap(page); |
| 1266 | return -EIO; |
| 1267 | } |
| 1268 | |
| 1269 | /* racing with truncate? */ |
| 1270 | if (offset > mapping->host->i_size) { |
| 1271 | kunmap(page); |
| 1272 | return 0; /* don't care */ |
| 1273 | } |
| 1274 | |
| 1275 | /* check to make sure that we are not extending the file */ |
| 1276 | if (mapping->host->i_size - offset < (loff_t)to) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1277 | to = (unsigned)(mapping->host->i_size - offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1279 | open_file = find_writable_file(CIFS_I(mapping->host), false); |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1280 | if (open_file) { |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1281 | bytes_written = cifs_write(open_file, write_data, |
| 1282 | to - from, &offset); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1283 | cifsFileInfo_put(open_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | /* Does mm or vfs already set times? */ |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1285 | inode->i_atime = inode->i_mtime = current_fs_time(inode->i_sb); |
Steve French | bb5a9a0 | 2007-12-31 04:21:29 +0000 | [diff] [blame] | 1286 | if ((bytes_written > 0) && (offset)) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1287 | rc = 0; |
Steve French | bb5a9a0 | 2007-12-31 04:21:29 +0000 | [diff] [blame] | 1288 | else if (bytes_written < 0) |
| 1289 | rc = bytes_written; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1290 | } else { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1291 | cFYI(1, "No writeable filehandles for inode"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | rc = -EIO; |
| 1293 | } |
| 1294 | |
| 1295 | kunmap(page); |
| 1296 | return rc; |
| 1297 | } |
| 1298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | static int cifs_writepages(struct address_space *mapping, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1300 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1302 | unsigned int bytes_to_write; |
| 1303 | unsigned int bytes_written; |
| 1304 | struct cifs_sb_info *cifs_sb; |
| 1305 | int done = 0; |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1306 | pgoff_t end; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1307 | pgoff_t index; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1308 | int range_whole = 0; |
| 1309 | struct kvec *iov; |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1310 | int len; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1311 | int n_iov = 0; |
| 1312 | pgoff_t next; |
| 1313 | int nr_pages; |
| 1314 | __u64 offset = 0; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1315 | struct cifsFileInfo *open_file; |
Jeff Layton | ba00ba6 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 1316 | struct cifsTconInfo *tcon; |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1317 | struct cifsInodeInfo *cifsi = CIFS_I(mapping->host); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1318 | struct page *page; |
| 1319 | struct pagevec pvec; |
| 1320 | int rc = 0; |
| 1321 | int scanned = 0; |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1322 | int xid, long_op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1324 | cifs_sb = CIFS_SB(mapping->host->i_sb); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1325 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1326 | /* |
| 1327 | * If wsize is smaller that the page cache size, default to writing |
| 1328 | * one page at a time via cifs_writepage |
| 1329 | */ |
| 1330 | if (cifs_sb->wsize < PAGE_CACHE_SIZE) |
| 1331 | return generic_writepages(mapping, wbc); |
| 1332 | |
Steve French | 9a0c823 | 2007-02-02 04:21:57 +0000 | [diff] [blame] | 1333 | iov = kmalloc(32 * sizeof(struct kvec), GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1334 | if (iov == NULL) |
Steve French | 9a0c823 | 2007-02-02 04:21:57 +0000 | [diff] [blame] | 1335 | return generic_writepages(mapping, wbc); |
| 1336 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1337 | /* |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1338 | * if there's no open file, then this is likely to fail too, |
| 1339 | * but it'll at least handle the return. Maybe it should be |
| 1340 | * a BUG() instead? |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1341 | */ |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1342 | open_file = find_writable_file(CIFS_I(mapping->host), false); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1343 | if (!open_file) { |
Steve French | 9a0c823 | 2007-02-02 04:21:57 +0000 | [diff] [blame] | 1344 | kfree(iov); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1345 | return generic_writepages(mapping, wbc); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1348 | tcon = tlink_tcon(open_file->tlink); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1349 | if (!experimEnabled && tcon->ses->server->secMode & |
| 1350 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) { |
| 1351 | cifsFileInfo_put(open_file); |
Dan Carpenter | 6b03590 | 2010-10-27 23:19:32 +0200 | [diff] [blame] | 1352 | kfree(iov); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1353 | return generic_writepages(mapping, wbc); |
| 1354 | } |
| 1355 | cifsFileInfo_put(open_file); |
| 1356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | xid = GetXid(); |
| 1358 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1359 | pagevec_init(&pvec, 0); |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1360 | if (wbc->range_cyclic) { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1361 | index = mapping->writeback_index; /* Start from prev offset */ |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1362 | end = -1; |
| 1363 | } else { |
| 1364 | index = wbc->range_start >> PAGE_CACHE_SHIFT; |
| 1365 | end = wbc->range_end >> PAGE_CACHE_SHIFT; |
| 1366 | if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) |
| 1367 | range_whole = 1; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1368 | scanned = 1; |
| 1369 | } |
| 1370 | retry: |
| 1371 | while (!done && (index <= end) && |
| 1372 | (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, |
| 1373 | PAGECACHE_TAG_DIRTY, |
| 1374 | min(end - index, (pgoff_t)PAGEVEC_SIZE - 1) + 1))) { |
| 1375 | int first; |
| 1376 | unsigned int i; |
| 1377 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1378 | first = -1; |
| 1379 | next = 0; |
| 1380 | n_iov = 0; |
| 1381 | bytes_to_write = 0; |
| 1382 | |
| 1383 | for (i = 0; i < nr_pages; i++) { |
| 1384 | page = pvec.pages[i]; |
| 1385 | /* |
| 1386 | * At this point we hold neither mapping->tree_lock nor |
| 1387 | * lock on the page itself: the page may be truncated or |
| 1388 | * invalidated (changing page->mapping to NULL), or even |
| 1389 | * swizzled back from swapper_space to tmpfs file |
| 1390 | * mapping |
| 1391 | */ |
| 1392 | |
| 1393 | if (first < 0) |
| 1394 | lock_page(page); |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 1395 | else if (!trylock_page(page)) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1396 | break; |
| 1397 | |
| 1398 | if (unlikely(page->mapping != mapping)) { |
| 1399 | unlock_page(page); |
| 1400 | break; |
| 1401 | } |
| 1402 | |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1403 | if (!wbc->range_cyclic && page->index > end) { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1404 | done = 1; |
| 1405 | unlock_page(page); |
| 1406 | break; |
| 1407 | } |
| 1408 | |
| 1409 | if (next && (page->index != next)) { |
| 1410 | /* Not next consecutive page */ |
| 1411 | unlock_page(page); |
| 1412 | break; |
| 1413 | } |
| 1414 | |
| 1415 | if (wbc->sync_mode != WB_SYNC_NONE) |
| 1416 | wait_on_page_writeback(page); |
| 1417 | |
| 1418 | if (PageWriteback(page) || |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1419 | !clear_page_dirty_for_io(page)) { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1420 | unlock_page(page); |
| 1421 | break; |
| 1422 | } |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1423 | |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1424 | /* |
| 1425 | * This actually clears the dirty bit in the radix tree. |
| 1426 | * See cifs_writepage() for more commentary. |
| 1427 | */ |
| 1428 | set_page_writeback(page); |
| 1429 | |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1430 | if (page_offset(page) >= mapping->host->i_size) { |
| 1431 | done = 1; |
| 1432 | unlock_page(page); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1433 | end_page_writeback(page); |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1434 | break; |
| 1435 | } |
| 1436 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1437 | /* |
| 1438 | * BB can we get rid of this? pages are held by pvec |
| 1439 | */ |
| 1440 | page_cache_get(page); |
| 1441 | |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1442 | len = min(mapping->host->i_size - page_offset(page), |
| 1443 | (loff_t)PAGE_CACHE_SIZE); |
| 1444 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1445 | /* reserve iov[0] for the smb header */ |
| 1446 | n_iov++; |
| 1447 | iov[n_iov].iov_base = kmap(page); |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1448 | iov[n_iov].iov_len = len; |
| 1449 | bytes_to_write += len; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1450 | |
| 1451 | if (first < 0) { |
| 1452 | first = i; |
| 1453 | offset = page_offset(page); |
| 1454 | } |
| 1455 | next = page->index + 1; |
| 1456 | if (bytes_to_write + PAGE_CACHE_SIZE > cifs_sb->wsize) |
| 1457 | break; |
| 1458 | } |
| 1459 | if (n_iov) { |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1460 | open_file = find_writable_file(CIFS_I(mapping->host), |
| 1461 | false); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1462 | if (!open_file) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1463 | cERROR(1, "No writable handles for inode"); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1464 | rc = -EBADF; |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 1465 | } else { |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1466 | long_op = cifs_write_timeout(cifsi, offset); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1467 | rc = CIFSSMBWrite2(xid, tcon, open_file->netfid, |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1468 | bytes_to_write, offset, |
| 1469 | &bytes_written, iov, n_iov, |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1470 | long_op); |
Dave Kleikamp | 6ab409b | 2009-08-31 11:07:12 -0400 | [diff] [blame] | 1471 | cifsFileInfo_put(open_file); |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 1472 | cifs_update_eof(cifsi, offset, bytes_written); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1473 | } |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1474 | |
| 1475 | if (rc || bytes_written < bytes_to_write) { |
| 1476 | cERROR(1, "Write2 ret %d, wrote %d", |
| 1477 | rc, bytes_written); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 1478 | mapping_set_error(mapping, rc); |
Jeff Layton | f3983c2 | 2010-09-22 16:17:40 -0700 | [diff] [blame] | 1479 | } else { |
| 1480 | cifs_stats_bytes_written(tcon, bytes_written); |
| 1481 | } |
| 1482 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1483 | for (i = 0; i < n_iov; i++) { |
| 1484 | page = pvec.pages[first + i]; |
Steve French | eb9bdaa | 2006-01-27 15:11:47 -0800 | [diff] [blame] | 1485 | /* Should we also set page error on |
| 1486 | success rc but too little data written? */ |
| 1487 | /* BB investigate retry logic on temporary |
| 1488 | server crash cases and how recovery works |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1489 | when page marked as error */ |
| 1490 | if (rc) |
Steve French | eb9bdaa | 2006-01-27 15:11:47 -0800 | [diff] [blame] | 1491 | SetPageError(page); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1492 | kunmap(page); |
| 1493 | unlock_page(page); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1494 | end_page_writeback(page); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1495 | page_cache_release(page); |
| 1496 | } |
| 1497 | if ((wbc->nr_to_write -= n_iov) <= 0) |
| 1498 | done = 1; |
| 1499 | index = next; |
Dave Kleikamp | b066a48 | 2008-11-18 03:49:05 +0000 | [diff] [blame] | 1500 | } else |
| 1501 | /* Need to re-find the pages we skipped */ |
| 1502 | index = pvec.pages[0]->index + 1; |
| 1503 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1504 | pagevec_release(&pvec); |
| 1505 | } |
| 1506 | if (!scanned && !done) { |
| 1507 | /* |
| 1508 | * We hit the last page and there is more work to be done: wrap |
| 1509 | * back to the start of the file |
| 1510 | */ |
| 1511 | scanned = 1; |
| 1512 | index = 0; |
| 1513 | goto retry; |
| 1514 | } |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 1515 | if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1516 | mapping->writeback_index = index; |
| 1517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | FreeXid(xid); |
Steve French | 9a0c823 | 2007-02-02 04:21:57 +0000 | [diff] [blame] | 1519 | kfree(iov); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | return rc; |
| 1521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1523 | static int cifs_writepage(struct page *page, struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | { |
| 1525 | int rc = -EFAULT; |
| 1526 | int xid; |
| 1527 | |
| 1528 | xid = GetXid(); |
| 1529 | /* BB add check for wbc flags */ |
| 1530 | page_cache_get(page); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1531 | if (!PageUptodate(page)) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1532 | cFYI(1, "ppw - page not up to date"); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1533 | |
| 1534 | /* |
| 1535 | * Set the "writeback" flag, and clear "dirty" in the radix tree. |
| 1536 | * |
| 1537 | * A writepage() implementation always needs to do either this, |
| 1538 | * or re-dirty the page with "redirty_page_for_writepage()" in |
| 1539 | * the case of a failure. |
| 1540 | * |
| 1541 | * Just unlocking the page will cause the radix tree tag-bits |
| 1542 | * to fail to update with the state of the page correctly. |
| 1543 | */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1544 | set_page_writeback(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | rc = cifs_partialpagewrite(page, 0, PAGE_CACHE_SIZE); |
| 1546 | SetPageUptodate(page); /* BB add check for error and Clearuptodate? */ |
| 1547 | unlock_page(page); |
Linus Torvalds | cb876f4 | 2006-12-23 16:19:07 -0800 | [diff] [blame] | 1548 | end_page_writeback(page); |
| 1549 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | FreeXid(xid); |
| 1551 | return rc; |
| 1552 | } |
| 1553 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1554 | static int cifs_write_end(struct file *file, struct address_space *mapping, |
| 1555 | loff_t pos, unsigned len, unsigned copied, |
| 1556 | struct page *page, void *fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1558 | int rc; |
| 1559 | struct inode *inode = mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1561 | cFYI(1, "write_end for page %p from pos %lld with %d bytes", |
| 1562 | page, pos, copied); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1563 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 1564 | if (PageChecked(page)) { |
| 1565 | if (copied == len) |
| 1566 | SetPageUptodate(page); |
| 1567 | ClearPageChecked(page); |
| 1568 | } else if (!PageUptodate(page) && copied == PAGE_CACHE_SIZE) |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1569 | SetPageUptodate(page); |
| 1570 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | if (!PageUptodate(page)) { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1572 | char *page_data; |
| 1573 | unsigned offset = pos & (PAGE_CACHE_SIZE - 1); |
| 1574 | int xid; |
| 1575 | |
| 1576 | xid = GetXid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | /* this is probably better than directly calling |
| 1578 | partialpage_write since in this function the file handle is |
| 1579 | known which we might as well leverage */ |
| 1580 | /* BB check if anything else missing out of ppw |
| 1581 | such as updating last write time */ |
| 1582 | page_data = kmap(page); |
Jeff Layton | 7da4b49 | 2010-10-15 15:34:00 -0400 | [diff] [blame] | 1583 | rc = cifs_write(file->private_data, page_data + offset, |
| 1584 | copied, &pos); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1585 | /* if (rc < 0) should we set writebehind rc? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | kunmap(page); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1587 | |
| 1588 | FreeXid(xid); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1589 | } else { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1590 | rc = copied; |
| 1591 | pos += copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | set_page_dirty(page); |
| 1593 | } |
| 1594 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 1595 | if (rc > 0) { |
| 1596 | spin_lock(&inode->i_lock); |
| 1597 | if (pos > inode->i_size) |
| 1598 | i_size_write(inode, pos); |
| 1599 | spin_unlock(&inode->i_lock); |
| 1600 | } |
| 1601 | |
| 1602 | unlock_page(page); |
| 1603 | page_cache_release(page); |
| 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | return rc; |
| 1606 | } |
| 1607 | |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 1608 | int cifs_fsync(struct file *file, int datasync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | { |
| 1610 | int xid; |
| 1611 | int rc = 0; |
Steve French | b298f22 | 2009-02-21 21:17:43 +0000 | [diff] [blame] | 1612 | struct cifsTconInfo *tcon; |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 1613 | struct cifsFileInfo *smbfile = file->private_data; |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1614 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | |
| 1616 | xid = GetXid(); |
| 1617 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1618 | cFYI(1, "Sync file - name: %s datasync: 0x%x", |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 1619 | file->f_path.dentry->d_name.name, datasync); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1620 | |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1621 | rc = filemap_write_and_wait(inode->i_mapping); |
| 1622 | if (rc == 0) { |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 1623 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 1624 | |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1625 | tcon = tlink_tcon(smbfile->tlink); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 1626 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)) |
Steve French | b298f22 | 2009-02-21 21:17:43 +0000 | [diff] [blame] | 1627 | rc = CIFSSMBFlush(xid, tcon, smbfile->netfid); |
Jeff Layton | cea2180 | 2007-11-20 23:19:03 +0000 | [diff] [blame] | 1628 | } |
Steve French | b298f22 | 2009-02-21 21:17:43 +0000 | [diff] [blame] | 1629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | FreeXid(xid); |
| 1631 | return rc; |
| 1632 | } |
| 1633 | |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1634 | /* static void cifs_sync_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | { |
| 1636 | struct address_space *mapping; |
| 1637 | struct inode *inode; |
| 1638 | unsigned long index = page->index; |
| 1639 | unsigned int rpages = 0; |
| 1640 | int rc = 0; |
| 1641 | |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 1642 | cFYI(1, "sync page %p", page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | mapping = page->mapping; |
| 1644 | if (!mapping) |
| 1645 | return 0; |
| 1646 | inode = mapping->host; |
| 1647 | if (!inode) |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1648 | return; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1650 | /* fill in rpages then |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | result = cifs_pagein_inode(inode, index, rpages); */ /* BB finish */ |
| 1652 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1653 | /* cFYI(1, "rpages is %d for sync page of Index %ld", rpages, index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1655 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | if (rc < 0) |
| 1657 | return rc; |
| 1658 | return 0; |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1659 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | } */ |
| 1661 | |
| 1662 | /* |
| 1663 | * As file closes, flush all cached write data for this inode checking |
| 1664 | * for write behind errors. |
| 1665 | */ |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 1666 | int cifs_flush(struct file *file, fl_owner_t id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1668 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | int rc = 0; |
| 1670 | |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 1671 | if (file->f_mode & FMODE_WRITE) |
Jeff Layton | d3f1322 | 2010-10-15 15:34:07 -0400 | [diff] [blame] | 1672 | rc = filemap_write_and_wait(inode->i_mapping); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1673 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1674 | cFYI(1, "Flush inode %p file %p rc %d", inode, file, rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | |
| 1676 | return rc; |
| 1677 | } |
| 1678 | |
| 1679 | ssize_t cifs_user_read(struct file *file, char __user *read_data, |
| 1680 | size_t read_size, loff_t *poffset) |
| 1681 | { |
| 1682 | int rc = -EACCES; |
| 1683 | unsigned int bytes_read = 0; |
| 1684 | unsigned int total_read = 0; |
| 1685 | unsigned int current_read_size; |
| 1686 | struct cifs_sb_info *cifs_sb; |
| 1687 | struct cifsTconInfo *pTcon; |
| 1688 | int xid; |
| 1689 | struct cifsFileInfo *open_file; |
| 1690 | char *smb_read_data; |
| 1691 | char __user *current_offset; |
| 1692 | struct smb_com_read_rsp *pSMBr; |
| 1693 | |
| 1694 | xid = GetXid(); |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1695 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | |
| 1697 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1698 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1700 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | } |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 1702 | open_file = file->private_data; |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1703 | pTcon = tlink_tcon(open_file->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1705 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1706 | cFYI(1, "attempting read on write only file instance"); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | for (total_read = 0, current_offset = read_data; |
| 1709 | read_size > total_read; |
| 1710 | total_read += bytes_read, current_offset += bytes_read) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1711 | current_read_size = min_t(const int, read_size - total_read, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | cifs_sb->rsize); |
| 1713 | rc = -EAGAIN; |
| 1714 | smb_read_data = NULL; |
| 1715 | while (rc == -EAGAIN) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1716 | int buf_type = CIFS_NO_BUFFER; |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1717 | if (open_file->invalidHandle) { |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1718 | rc = cifs_reopen_file(open_file, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | if (rc != 0) |
| 1720 | break; |
| 1721 | } |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1722 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1723 | open_file->netfid, |
| 1724 | current_read_size, *poffset, |
| 1725 | &bytes_read, &smb_read_data, |
| 1726 | &buf_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | pSMBr = (struct smb_com_read_rsp *)smb_read_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | if (smb_read_data) { |
Steve French | 93544cc | 2006-02-14 22:30:52 -0600 | [diff] [blame] | 1729 | if (copy_to_user(current_offset, |
| 1730 | smb_read_data + |
| 1731 | 4 /* RFC1001 length field */ + |
| 1732 | le16_to_cpu(pSMBr->DataOffset), |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 1733 | bytes_read)) |
Steve French | 93544cc | 2006-02-14 22:30:52 -0600 | [diff] [blame] | 1734 | rc = -EFAULT; |
Steve French | 93544cc | 2006-02-14 22:30:52 -0600 | [diff] [blame] | 1735 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1736 | if (buf_type == CIFS_SMALL_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1737 | cifs_small_buf_release(smb_read_data); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1738 | else if (buf_type == CIFS_LARGE_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1739 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | smb_read_data = NULL; |
| 1741 | } |
| 1742 | } |
| 1743 | if (rc || (bytes_read == 0)) { |
| 1744 | if (total_read) { |
| 1745 | break; |
| 1746 | } else { |
| 1747 | FreeXid(xid); |
| 1748 | return rc; |
| 1749 | } |
| 1750 | } else { |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1751 | cifs_stats_bytes_read(pTcon, bytes_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | *poffset += bytes_read; |
| 1753 | } |
| 1754 | } |
| 1755 | FreeXid(xid); |
| 1756 | return total_read; |
| 1757 | } |
| 1758 | |
| 1759 | |
| 1760 | static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size, |
| 1761 | loff_t *poffset) |
| 1762 | { |
| 1763 | int rc = -EACCES; |
| 1764 | unsigned int bytes_read = 0; |
| 1765 | unsigned int total_read; |
| 1766 | unsigned int current_read_size; |
| 1767 | struct cifs_sb_info *cifs_sb; |
| 1768 | struct cifsTconInfo *pTcon; |
| 1769 | int xid; |
| 1770 | char *current_offset; |
| 1771 | struct cifsFileInfo *open_file; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1772 | int buf_type = CIFS_NO_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | |
| 1774 | xid = GetXid(); |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1775 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | |
| 1777 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1778 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1780 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | } |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 1782 | open_file = file->private_data; |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1783 | pTcon = tlink_tcon(open_file->tlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | |
| 1785 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1786 | cFYI(1, "attempting read on write only file instance"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1788 | for (total_read = 0, current_offset = read_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | read_size > total_read; |
| 1790 | total_read += bytes_read, current_offset += bytes_read) { |
| 1791 | current_read_size = min_t(const int, read_size - total_read, |
| 1792 | cifs_sb->rsize); |
Steve French | f9f5c817 | 2005-09-15 23:06:38 -0700 | [diff] [blame] | 1793 | /* For windows me and 9x we do not want to request more |
| 1794 | than it negotiated since it will refuse the read then */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1795 | if ((pTcon->ses) && |
Steve French | f9f5c817 | 2005-09-15 23:06:38 -0700 | [diff] [blame] | 1796 | !(pTcon->ses->capabilities & CAP_LARGE_FILES)) { |
| 1797 | current_read_size = min_t(const int, current_read_size, |
| 1798 | pTcon->ses->server->maxBuf - 128); |
| 1799 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | rc = -EAGAIN; |
| 1801 | while (rc == -EAGAIN) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1802 | if (open_file->invalidHandle) { |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1803 | rc = cifs_reopen_file(open_file, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | if (rc != 0) |
| 1805 | break; |
| 1806 | } |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1807 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1808 | open_file->netfid, |
| 1809 | current_read_size, *poffset, |
| 1810 | &bytes_read, ¤t_offset, |
| 1811 | &buf_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | } |
| 1813 | if (rc || (bytes_read == 0)) { |
| 1814 | if (total_read) { |
| 1815 | break; |
| 1816 | } else { |
| 1817 | FreeXid(xid); |
| 1818 | return rc; |
| 1819 | } |
| 1820 | } else { |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1821 | cifs_stats_bytes_read(pTcon, total_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | *poffset += bytes_read; |
| 1823 | } |
| 1824 | } |
| 1825 | FreeXid(xid); |
| 1826 | return total_read; |
| 1827 | } |
| 1828 | |
| 1829 | int cifs_file_mmap(struct file *file, struct vm_area_struct *vma) |
| 1830 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | int rc, xid; |
| 1832 | |
| 1833 | xid = GetXid(); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 1834 | rc = cifs_revalidate_file(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1836 | cFYI(1, "Validation prior to mmap failed, error=%d", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | FreeXid(xid); |
| 1838 | return rc; |
| 1839 | } |
| 1840 | rc = generic_file_mmap(file, vma); |
| 1841 | FreeXid(xid); |
| 1842 | return rc; |
| 1843 | } |
| 1844 | |
| 1845 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1846 | static void cifs_copy_cache_pages(struct address_space *mapping, |
Nick Piggin | 315e995 | 2010-04-21 03:18:28 +0000 | [diff] [blame] | 1847 | struct list_head *pages, int bytes_read, char *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | { |
| 1849 | struct page *page; |
| 1850 | char *target; |
| 1851 | |
| 1852 | while (bytes_read > 0) { |
| 1853 | if (list_empty(pages)) |
| 1854 | break; |
| 1855 | |
| 1856 | page = list_entry(pages->prev, struct page, lru); |
| 1857 | list_del(&page->lru); |
| 1858 | |
Nick Piggin | 315e995 | 2010-04-21 03:18:28 +0000 | [diff] [blame] | 1859 | if (add_to_page_cache_lru(page, mapping, page->index, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | GFP_KERNEL)) { |
| 1861 | page_cache_release(page); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1862 | cFYI(1, "Add page cache failed"); |
Steve French | 3079ca6 | 2005-06-09 14:44:07 -0700 | [diff] [blame] | 1863 | data += PAGE_CACHE_SIZE; |
| 1864 | bytes_read -= PAGE_CACHE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | continue; |
| 1866 | } |
Jeff Layton | 06b4367 | 2010-06-01 10:54:45 -0400 | [diff] [blame] | 1867 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1869 | target = kmap_atomic(page, KM_USER0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | |
| 1871 | if (PAGE_CACHE_SIZE > bytes_read) { |
| 1872 | memcpy(target, data, bytes_read); |
| 1873 | /* zero the tail end of this partial page */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1874 | memset(target + bytes_read, 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | PAGE_CACHE_SIZE - bytes_read); |
| 1876 | bytes_read = 0; |
| 1877 | } else { |
| 1878 | memcpy(target, data, PAGE_CACHE_SIZE); |
| 1879 | bytes_read -= PAGE_CACHE_SIZE; |
| 1880 | } |
| 1881 | kunmap_atomic(target, KM_USER0); |
| 1882 | |
| 1883 | flush_dcache_page(page); |
| 1884 | SetPageUptodate(page); |
| 1885 | unlock_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | data += PAGE_CACHE_SIZE; |
Suresh Jayaraman | 9dc0655 | 2010-07-05 18:13:11 +0530 | [diff] [blame] | 1887 | |
| 1888 | /* add page to FS-Cache */ |
| 1889 | cifs_readpage_to_fscache(mapping->host, page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | } |
| 1891 | return; |
| 1892 | } |
| 1893 | |
| 1894 | static int cifs_readpages(struct file *file, struct address_space *mapping, |
| 1895 | struct list_head *page_list, unsigned num_pages) |
| 1896 | { |
| 1897 | int rc = -EACCES; |
| 1898 | int xid; |
| 1899 | loff_t offset; |
| 1900 | struct page *page; |
| 1901 | struct cifs_sb_info *cifs_sb; |
| 1902 | struct cifsTconInfo *pTcon; |
Steve French | 2c2130e | 2007-10-12 19:10:28 +0000 | [diff] [blame] | 1903 | unsigned int bytes_read = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1904 | unsigned int read_size, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | char *smb_read_data = NULL; |
| 1906 | struct smb_com_read_rsp *pSMBr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | struct cifsFileInfo *open_file; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1908 | int buf_type = CIFS_NO_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | |
| 1910 | xid = GetXid(); |
| 1911 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1912 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 1914 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | } |
Joe Perches | c21dfb6 | 2010-07-12 13:50:14 -0700 | [diff] [blame] | 1916 | open_file = file->private_data; |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1917 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1918 | pTcon = tlink_tcon(open_file->tlink); |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1919 | |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 1920 | /* |
| 1921 | * Reads as many pages as possible from fscache. Returns -ENOBUFS |
| 1922 | * immediately if the cookie is negative |
| 1923 | */ |
| 1924 | rc = cifs_readpages_from_fscache(mapping->host, mapping, page_list, |
| 1925 | &num_pages); |
| 1926 | if (rc == 0) |
| 1927 | goto read_complete; |
| 1928 | |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 1929 | cFYI(DBG2, "rpages: num pages %d", num_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | for (i = 0; i < num_pages; ) { |
| 1931 | unsigned contig_pages; |
| 1932 | struct page *tmp_page; |
| 1933 | unsigned long expected_index; |
| 1934 | |
| 1935 | if (list_empty(page_list)) |
| 1936 | break; |
| 1937 | |
| 1938 | page = list_entry(page_list->prev, struct page, lru); |
| 1939 | offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1940 | |
| 1941 | /* count adjacent pages that we will read into */ |
| 1942 | contig_pages = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1943 | expected_index = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | list_entry(page_list->prev, struct page, lru)->index; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1945 | list_for_each_entry_reverse(tmp_page, page_list, lru) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | if (tmp_page->index == expected_index) { |
| 1947 | contig_pages++; |
| 1948 | expected_index++; |
| 1949 | } else |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1950 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | } |
| 1952 | if (contig_pages + i > num_pages) |
| 1953 | contig_pages = num_pages - i; |
| 1954 | |
| 1955 | /* for reads over a certain size could initiate async |
| 1956 | read ahead */ |
| 1957 | |
| 1958 | read_size = contig_pages * PAGE_CACHE_SIZE; |
| 1959 | /* Read size needs to be in multiples of one page */ |
| 1960 | read_size = min_t(const unsigned int, read_size, |
| 1961 | cifs_sb->rsize & PAGE_CACHE_MASK); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1962 | cFYI(DBG2, "rpages: read size 0x%x contiguous pages %d", |
| 1963 | read_size, contig_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | rc = -EAGAIN; |
| 1965 | while (rc == -EAGAIN) { |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 1966 | if (open_file->invalidHandle) { |
Jeff Layton | 1588617 | 2010-10-15 15:33:59 -0400 | [diff] [blame] | 1967 | rc = cifs_reopen_file(open_file, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | if (rc != 0) |
| 1969 | break; |
| 1970 | } |
| 1971 | |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1972 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1973 | open_file->netfid, |
| 1974 | read_size, offset, |
| 1975 | &bytes_read, &smb_read_data, |
| 1976 | &buf_type); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1977 | /* BB more RC checks ? */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1978 | if (rc == -EAGAIN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | if (smb_read_data) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1980 | if (buf_type == CIFS_SMALL_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1981 | cifs_small_buf_release(smb_read_data); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1982 | else if (buf_type == CIFS_LARGE_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1983 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | smb_read_data = NULL; |
| 1985 | } |
| 1986 | } |
| 1987 | } |
| 1988 | if ((rc < 0) || (smb_read_data == NULL)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 1989 | cFYI(1, "Read error in readpages: %d", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | break; |
| 1991 | } else if (bytes_read > 0) { |
Andrew Morton | 6f88cc2 | 2006-12-10 02:19:44 -0800 | [diff] [blame] | 1992 | task_io_account_read(bytes_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | pSMBr = (struct smb_com_read_rsp *)smb_read_data; |
| 1994 | cifs_copy_cache_pages(mapping, page_list, bytes_read, |
| 1995 | smb_read_data + 4 /* RFC1001 hdr */ + |
Nick Piggin | 315e995 | 2010-04-21 03:18:28 +0000 | [diff] [blame] | 1996 | le16_to_cpu(pSMBr->DataOffset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | |
| 1998 | i += bytes_read >> PAGE_CACHE_SHIFT; |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1999 | cifs_stats_bytes_read(pTcon, bytes_read); |
Steve French | 2c2130e | 2007-10-12 19:10:28 +0000 | [diff] [blame] | 2000 | if ((bytes_read & PAGE_CACHE_MASK) != bytes_read) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | i++; /* account for partial page */ |
| 2002 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2003 | /* server copy of file can have smaller size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | than client */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2005 | /* BB do we need to verify this common case ? |
| 2006 | this case is ok - if we are at server EOF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | we will hit it on next read */ |
| 2008 | |
OGAWA Hirofumi | 05ac9d4 | 2006-11-02 22:07:08 -0800 | [diff] [blame] | 2009 | /* break; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | } |
| 2011 | } else { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2012 | cFYI(1, "No bytes read (%d) at offset %lld . " |
Steve French | f19159d | 2010-04-21 04:12:10 +0000 | [diff] [blame] | 2013 | "Cleaning remaining pages from readahead list", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2014 | bytes_read, offset); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2015 | /* BB turn off caching and do new lookup on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | file size at server? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | break; |
| 2018 | } |
| 2019 | if (smb_read_data) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2020 | if (buf_type == CIFS_SMALL_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 2021 | cifs_small_buf_release(smb_read_data); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2022 | else if (buf_type == CIFS_LARGE_BUFFER) |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 2023 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | smb_read_data = NULL; |
| 2025 | } |
| 2026 | bytes_read = 0; |
| 2027 | } |
| 2028 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | /* need to free smb_read_data buf before exit */ |
| 2030 | if (smb_read_data) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2031 | if (buf_type == CIFS_SMALL_BUFFER) |
Steve French | 47c886b | 2006-01-18 14:20:39 -0800 | [diff] [blame] | 2032 | cifs_small_buf_release(smb_read_data); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2033 | else if (buf_type == CIFS_LARGE_BUFFER) |
Steve French | 47c886b | 2006-01-18 14:20:39 -0800 | [diff] [blame] | 2034 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | smb_read_data = NULL; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2036 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 2038 | read_complete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | FreeXid(xid); |
| 2040 | return rc; |
| 2041 | } |
| 2042 | |
| 2043 | static int cifs_readpage_worker(struct file *file, struct page *page, |
| 2044 | loff_t *poffset) |
| 2045 | { |
| 2046 | char *read_data; |
| 2047 | int rc; |
| 2048 | |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 2049 | /* Is the page cached? */ |
| 2050 | rc = cifs_readpage_from_fscache(file->f_path.dentry->d_inode, page); |
| 2051 | if (rc == 0) |
| 2052 | goto read_complete; |
| 2053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | page_cache_get(page); |
| 2055 | read_data = kmap(page); |
| 2056 | /* for reads over a certain size could initiate async read ahead */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2059 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | if (rc < 0) |
| 2061 | goto io_error; |
| 2062 | else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2063 | cFYI(1, "Bytes read %d", rc); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2064 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 2065 | file->f_path.dentry->d_inode->i_atime = |
| 2066 | current_fs_time(file->f_path.dentry->d_inode->i_sb); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2067 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | if (PAGE_CACHE_SIZE > rc) |
| 2069 | memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc); |
| 2070 | |
| 2071 | flush_dcache_page(page); |
| 2072 | SetPageUptodate(page); |
Suresh Jayaraman | 9dc0655 | 2010-07-05 18:13:11 +0530 | [diff] [blame] | 2073 | |
| 2074 | /* send this page to the cache */ |
| 2075 | cifs_readpage_to_fscache(file->f_path.dentry->d_inode, page); |
| 2076 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | rc = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2078 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | io_error: |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2080 | kunmap(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | page_cache_release(page); |
Suresh Jayaraman | 56698236 | 2010-07-05 18:13:25 +0530 | [diff] [blame] | 2082 | |
| 2083 | read_complete: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | return rc; |
| 2085 | } |
| 2086 | |
| 2087 | static int cifs_readpage(struct file *file, struct page *page) |
| 2088 | { |
| 2089 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 2090 | int rc = -EACCES; |
| 2091 | int xid; |
| 2092 | |
| 2093 | xid = GetXid(); |
| 2094 | |
| 2095 | if (file->private_data == NULL) { |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 2096 | rc = -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | FreeXid(xid); |
Suresh Jayaraman | 0f3bc09 | 2009-06-25 18:12:34 +0530 | [diff] [blame] | 2098 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | } |
| 2100 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2101 | cFYI(1, "readpage %p at offset %d 0x%x\n", |
| 2102 | page, (int)offset, (int)offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | |
| 2104 | rc = cifs_readpage_worker(file, page, &offset); |
| 2105 | |
| 2106 | unlock_page(page); |
| 2107 | |
| 2108 | FreeXid(xid); |
| 2109 | return rc; |
| 2110 | } |
| 2111 | |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 2112 | static int is_inode_writable(struct cifsInodeInfo *cifs_inode) |
| 2113 | { |
| 2114 | struct cifsFileInfo *open_file; |
| 2115 | |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 2116 | spin_lock(&cifs_file_list_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 2117 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
Jeff Layton | 2e396b8 | 2010-10-15 15:34:01 -0400 | [diff] [blame] | 2118 | if (OPEN_FMODE(open_file->f_flags) & FMODE_WRITE) { |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 2119 | spin_unlock(&cifs_file_list_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 2120 | return 1; |
| 2121 | } |
| 2122 | } |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 2123 | spin_unlock(&cifs_file_list_lock); |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 2124 | return 0; |
| 2125 | } |
| 2126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | /* We do not want to update the file size from server for inodes |
| 2128 | open for write - to avoid races with writepage extending |
| 2129 | the file - in the future we could consider allowing |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2130 | refreshing the inode only on increases in the file size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | but this is tricky to do without racing with writebehind |
| 2132 | page caching in the current Linux kernel design */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2133 | bool is_size_safe_to_change(struct cifsInodeInfo *cifsInode, __u64 end_of_file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | { |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 2135 | if (!cifsInode) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2136 | return true; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 2137 | |
Steve French | a403a0a | 2007-07-26 15:54:16 +0000 | [diff] [blame] | 2138 | if (is_inode_writable(cifsInode)) { |
| 2139 | /* This inode is open for write at least once */ |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 2140 | struct cifs_sb_info *cifs_sb; |
| 2141 | |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 2142 | cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 2143 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2144 | /* since no page cache to corrupt on directio |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 2145 | we can change size safely */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2146 | return true; |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 2147 | } |
| 2148 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2149 | if (i_size_read(&cifsInode->vfs_inode) < end_of_file) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2150 | return true; |
Steve French | 7ba52631 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 2151 | |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2152 | return false; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 2153 | } else |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2154 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | } |
| 2156 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2157 | static int cifs_write_begin(struct file *file, struct address_space *mapping, |
| 2158 | loff_t pos, unsigned len, unsigned flags, |
| 2159 | struct page **pagep, void **fsdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | { |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2161 | pgoff_t index = pos >> PAGE_CACHE_SHIFT; |
| 2162 | loff_t offset = pos & (PAGE_CACHE_SIZE - 1); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2163 | loff_t page_start = pos & PAGE_MASK; |
| 2164 | loff_t i_size; |
| 2165 | struct page *page; |
| 2166 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2168 | cFYI(1, "write_begin from %lld len %d", (long long)pos, len); |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2169 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 2170 | page = grab_cache_page_write_begin(mapping, index, flags); |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2171 | if (!page) { |
| 2172 | rc = -ENOMEM; |
| 2173 | goto out; |
| 2174 | } |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2175 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2176 | if (PageUptodate(page)) |
| 2177 | goto out; |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 2178 | |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2179 | /* |
| 2180 | * If we write a full page it will be up to date, no need to read from |
| 2181 | * the server. If the write is short, we'll end up doing a sync write |
| 2182 | * instead. |
| 2183 | */ |
| 2184 | if (len == PAGE_CACHE_SIZE) |
| 2185 | goto out; |
| 2186 | |
| 2187 | /* |
| 2188 | * optimize away the read when we have an oplock, and we're not |
| 2189 | * expecting to use any of the data we'd be reading in. That |
| 2190 | * is, when the page lies beyond the EOF, or straddles the EOF |
| 2191 | * and the write will cover all of the existing data. |
| 2192 | */ |
| 2193 | if (CIFS_I(mapping->host)->clientCanCacheRead) { |
| 2194 | i_size = i_size_read(mapping->host); |
| 2195 | if (page_start >= i_size || |
| 2196 | (offset == 0 && (pos + len) >= i_size)) { |
| 2197 | zero_user_segments(page, 0, offset, |
| 2198 | offset + len, |
| 2199 | PAGE_CACHE_SIZE); |
| 2200 | /* |
| 2201 | * PageChecked means that the parts of the page |
| 2202 | * to which we're not writing are considered up |
| 2203 | * to date. Once the data is copied to the |
| 2204 | * page, it can be set uptodate. |
| 2205 | */ |
| 2206 | SetPageChecked(page); |
| 2207 | goto out; |
| 2208 | } |
| 2209 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2211 | if ((file->f_flags & O_ACCMODE) != O_WRONLY) { |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2212 | /* |
| 2213 | * might as well read a page, it is fast enough. If we get |
| 2214 | * an error, we don't need to return it. cifs_write_end will |
| 2215 | * do a sync write instead since PG_uptodate isn't set. |
| 2216 | */ |
| 2217 | cifs_readpage_worker(file, page, &page_start); |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 2218 | } else { |
| 2219 | /* we could try using another file handle if there is one - |
| 2220 | but how would we lock it to prevent close of that handle |
| 2221 | racing with this read? In any case |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2222 | this will be written out by write_end so is fine */ |
Steve French | 8a23626 | 2007-03-06 00:31:00 +0000 | [diff] [blame] | 2223 | } |
Jeff Layton | a98ee8c | 2008-11-26 19:32:33 +0000 | [diff] [blame] | 2224 | out: |
| 2225 | *pagep = page; |
| 2226 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | } |
| 2228 | |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 2229 | static int cifs_release_page(struct page *page, gfp_t gfp) |
| 2230 | { |
| 2231 | if (PagePrivate(page)) |
| 2232 | return 0; |
| 2233 | |
| 2234 | return cifs_fscache_release_page(page, gfp); |
| 2235 | } |
| 2236 | |
| 2237 | static void cifs_invalidate_page(struct page *page, unsigned long offset) |
| 2238 | { |
| 2239 | struct cifsInodeInfo *cifsi = CIFS_I(page->mapping->host); |
| 2240 | |
| 2241 | if (offset == 0) |
| 2242 | cifs_fscache_invalidate_page(page, &cifsi->vfs_inode); |
| 2243 | } |
| 2244 | |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 2245 | void cifs_oplock_break(struct work_struct *work) |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2246 | { |
| 2247 | struct cifsFileInfo *cfile = container_of(work, struct cifsFileInfo, |
| 2248 | oplock_break); |
Jeff Layton | a5e18bc | 2010-10-11 15:07:18 -0400 | [diff] [blame] | 2249 | struct inode *inode = cfile->dentry->d_inode; |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2250 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2251 | int rc = 0; |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2252 | |
| 2253 | if (inode && S_ISREG(inode->i_mode)) { |
Steve French | d54ff73 | 2010-04-27 04:38:15 +0000 | [diff] [blame] | 2254 | if (cinode->clientCanCacheRead) |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 2255 | break_lease(inode, O_RDONLY); |
Steve French | d54ff73 | 2010-04-27 04:38:15 +0000 | [diff] [blame] | 2256 | else |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 2257 | break_lease(inode, O_WRONLY); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2258 | rc = filemap_fdatawrite(inode->i_mapping); |
| 2259 | if (cinode->clientCanCacheRead == 0) { |
Jeff Layton | eb4b756 | 2010-10-22 14:52:29 -0400 | [diff] [blame] | 2260 | rc = filemap_fdatawait(inode->i_mapping); |
| 2261 | mapping_set_error(inode->i_mapping, rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2262 | invalidate_remote_inode(inode); |
| 2263 | } |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2264 | cFYI(1, "Oplock flush inode %p rc %d", inode, rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2265 | } |
| 2266 | |
| 2267 | /* |
| 2268 | * releasing stale oplock after recent reconnect of smb session using |
| 2269 | * a now incorrect file handle is not a data integrity issue but do |
| 2270 | * not bother sending an oplock release if session to server still is |
| 2271 | * disconnected since oplock already released by the server |
| 2272 | */ |
Steve French | cdff08e | 2010-10-21 22:46:14 +0000 | [diff] [blame] | 2273 | if (!cfile->oplock_break_cancelled) { |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 2274 | rc = CIFSSMBLock(0, tlink_tcon(cfile->tlink), cfile->netfid, 0, |
| 2275 | 0, 0, 0, LOCKING_ANDX_OPLOCK_RELEASE, false); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 2276 | cFYI(1, "Oplock release rc = %d", rc); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2277 | } |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 2278 | |
| 2279 | /* |
| 2280 | * We might have kicked in before is_valid_oplock_break() |
| 2281 | * finished grabbing reference for us. Make sure it's done by |
Suresh Jayaraman | 6573e9b | 2010-10-18 23:52:18 +0530 | [diff] [blame] | 2282 | * waiting for cifs_file_list_lock. |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 2283 | */ |
Jeff Layton | 4477288 | 2010-10-15 15:34:03 -0400 | [diff] [blame] | 2284 | spin_lock(&cifs_file_list_lock); |
| 2285 | spin_unlock(&cifs_file_list_lock); |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 2286 | |
| 2287 | cifs_oplock_break_put(cfile); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2288 | } |
| 2289 | |
Jeff Layton | 5f6dbc9 | 2010-10-15 15:34:06 -0400 | [diff] [blame] | 2290 | /* must be called while holding cifs_file_list_lock */ |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 2291 | void cifs_oplock_break_get(struct cifsFileInfo *cfile) |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2292 | { |
Jeff Layton | d7c86ff | 2010-10-11 15:07:19 -0400 | [diff] [blame] | 2293 | cifs_sb_active(cfile->dentry->d_sb); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2294 | cifsFileInfo_get(cfile); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2295 | } |
| 2296 | |
Tejun Heo | 9b64697 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 2297 | void cifs_oplock_break_put(struct cifsFileInfo *cfile) |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2298 | { |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2299 | cifsFileInfo_put(cfile); |
Jeff Layton | d7c86ff | 2010-10-11 15:07:19 -0400 | [diff] [blame] | 2300 | cifs_sb_deactive(cfile->dentry->d_sb); |
Jeff Layton | 3bc303c | 2009-09-21 06:47:50 -0400 | [diff] [blame] | 2301 | } |
| 2302 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 2303 | const struct address_space_operations cifs_addr_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | .readpage = cifs_readpage, |
| 2305 | .readpages = cifs_readpages, |
| 2306 | .writepage = cifs_writepage, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 2307 | .writepages = cifs_writepages, |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2308 | .write_begin = cifs_write_begin, |
| 2309 | .write_end = cifs_write_end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | .set_page_dirty = __set_page_dirty_nobuffers, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 2311 | .releasepage = cifs_release_page, |
| 2312 | .invalidatepage = cifs_invalidate_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2313 | /* .sync_page = cifs_sync_page, */ |
| 2314 | /* .direct_IO = */ |
| 2315 | }; |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 2316 | |
| 2317 | /* |
| 2318 | * cifs_readpages requires the server to support a buffer large enough to |
| 2319 | * contain the header plus one complete page of data. Otherwise, we need |
| 2320 | * to leave cifs_readpages out of the address space operations. |
| 2321 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 2322 | const struct address_space_operations cifs_addr_ops_smallbuf = { |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 2323 | .readpage = cifs_readpage, |
| 2324 | .writepage = cifs_writepage, |
| 2325 | .writepages = cifs_writepages, |
Nick Piggin | d941477 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 2326 | .write_begin = cifs_write_begin, |
| 2327 | .write_end = cifs_write_end, |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 2328 | .set_page_dirty = __set_page_dirty_nobuffers, |
Suresh Jayaraman | 85f2d6b | 2010-07-05 18:13:00 +0530 | [diff] [blame] | 2329 | .releasepage = cifs_release_page, |
| 2330 | .invalidatepage = cifs_invalidate_page, |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 2331 | /* .sync_page = cifs_sync_page, */ |
| 2332 | /* .direct_IO = */ |
| 2333 | }; |