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 |
| 5 | * |
| 6 | * Copyright (C) International Business Machines Corp., 2002,2003 |
| 7 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 8 | * |
| 9 | * This library is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU Lesser General Public License as published |
| 11 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 17 | * the GNU Lesser General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU Lesser General Public License |
| 20 | * along with this library; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | #include <linux/fs.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 24 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/stat.h> |
| 26 | #include <linux/fcntl.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 27 | #include <linux/mpage.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/pagemap.h> |
| 29 | #include <linux/pagevec.h> |
| 30 | #include <linux/smp_lock.h> |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 31 | #include <linux/writeback.h> |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 32 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/div64.h> |
| 34 | #include "cifsfs.h" |
| 35 | #include "cifspdu.h" |
| 36 | #include "cifsglob.h" |
| 37 | #include "cifsproto.h" |
| 38 | #include "cifs_unicode.h" |
| 39 | #include "cifs_debug.h" |
| 40 | #include "cifs_fs_sb.h" |
| 41 | |
| 42 | static inline struct cifsFileInfo *cifs_init_private( |
| 43 | struct cifsFileInfo *private_data, struct inode *inode, |
| 44 | struct file *file, __u16 netfid) |
| 45 | { |
| 46 | memset(private_data, 0, sizeof(struct cifsFileInfo)); |
| 47 | private_data->netfid = netfid; |
| 48 | private_data->pid = current->tgid; |
| 49 | init_MUTEX(&private_data->fh_sem); |
| 50 | private_data->pfile = file; /* needed for writepage */ |
| 51 | private_data->pInode = inode; |
| 52 | private_data->invalidHandle = FALSE; |
| 53 | private_data->closePend = FALSE; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 54 | /* we have to track num writers to the inode, since writepages |
| 55 | does not tell us which handle the write is for so there can |
| 56 | be a close (overlapping with write) of the filehandle that |
| 57 | cifs_writepages chose to use */ |
| 58 | atomic_set(&private_data->wrtPending,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | return private_data; |
| 61 | } |
| 62 | |
| 63 | static inline int cifs_convert_flags(unsigned int flags) |
| 64 | { |
| 65 | if ((flags & O_ACCMODE) == O_RDONLY) |
| 66 | return GENERIC_READ; |
| 67 | else if ((flags & O_ACCMODE) == O_WRONLY) |
| 68 | return GENERIC_WRITE; |
| 69 | else if ((flags & O_ACCMODE) == O_RDWR) { |
| 70 | /* GENERIC_ALL is too much permission to request |
| 71 | can cause unnecessary access denied on create */ |
| 72 | /* return GENERIC_ALL; */ |
| 73 | return (GENERIC_READ | GENERIC_WRITE); |
| 74 | } |
| 75 | |
| 76 | return 0x20197; |
| 77 | } |
| 78 | |
| 79 | static inline int cifs_get_disposition(unsigned int flags) |
| 80 | { |
| 81 | if ((flags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) |
| 82 | return FILE_CREATE; |
| 83 | else if ((flags & (O_CREAT | O_TRUNC)) == (O_CREAT | O_TRUNC)) |
| 84 | return FILE_OVERWRITE_IF; |
| 85 | else if ((flags & O_CREAT) == O_CREAT) |
| 86 | return FILE_OPEN_IF; |
Steve French | 55aa2e0 | 2006-05-30 18:09:31 +0000 | [diff] [blame] | 87 | else if ((flags & O_TRUNC) == O_TRUNC) |
| 88 | return FILE_OVERWRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | else |
| 90 | return FILE_OPEN; |
| 91 | } |
| 92 | |
| 93 | /* all arguments to this function must be checked for validity in caller */ |
| 94 | static inline int cifs_open_inode_helper(struct inode *inode, struct file *file, |
| 95 | struct cifsInodeInfo *pCifsInode, struct cifsFileInfo *pCifsFile, |
| 96 | struct cifsTconInfo *pTcon, int *oplock, FILE_ALL_INFO *buf, |
| 97 | char *full_path, int xid) |
| 98 | { |
| 99 | struct timespec temp; |
| 100 | int rc; |
| 101 | |
| 102 | /* want handles we can use to read with first |
| 103 | in the list so we do not have to walk the |
| 104 | list to search for one in prepare_write */ |
| 105 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) { |
| 106 | list_add_tail(&pCifsFile->flist, |
| 107 | &pCifsInode->openFileList); |
| 108 | } else { |
| 109 | list_add(&pCifsFile->flist, |
| 110 | &pCifsInode->openFileList); |
| 111 | } |
| 112 | write_unlock(&GlobalSMBSeslock); |
| 113 | write_unlock(&file->f_owner.lock); |
| 114 | if (pCifsInode->clientCanCacheRead) { |
| 115 | /* we have the inode open somewhere else |
| 116 | no need to discard cache data */ |
| 117 | goto client_can_cache; |
| 118 | } |
| 119 | |
| 120 | /* BB need same check in cifs_create too? */ |
| 121 | /* if not oplocked, invalidate inode pages if mtime or file |
| 122 | size changed */ |
| 123 | temp = cifs_NTtimeToUnix(le64_to_cpu(buf->LastWriteTime)); |
| 124 | if (timespec_equal(&file->f_dentry->d_inode->i_mtime, &temp) && |
| 125 | (file->f_dentry->d_inode->i_size == |
| 126 | (loff_t)le64_to_cpu(buf->EndOfFile))) { |
| 127 | cFYI(1, ("inode unchanged on server")); |
| 128 | } else { |
| 129 | if (file->f_dentry->d_inode->i_mapping) { |
| 130 | /* BB no need to lock inode until after invalidate |
| 131 | since namei code should already have it locked? */ |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 132 | filemap_write_and_wait(file->f_dentry->d_inode->i_mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
| 134 | cFYI(1, ("invalidating remote inode since open detected it " |
| 135 | "changed")); |
| 136 | invalidate_remote_inode(file->f_dentry->d_inode); |
| 137 | } |
| 138 | |
| 139 | client_can_cache: |
| 140 | if (pTcon->ses->capabilities & CAP_UNIX) |
| 141 | rc = cifs_get_inode_info_unix(&file->f_dentry->d_inode, |
| 142 | full_path, inode->i_sb, xid); |
| 143 | else |
| 144 | rc = cifs_get_inode_info(&file->f_dentry->d_inode, |
| 145 | full_path, buf, inode->i_sb, xid); |
| 146 | |
| 147 | if ((*oplock & 0xF) == OPLOCK_EXCLUSIVE) { |
| 148 | pCifsInode->clientCanCacheAll = TRUE; |
| 149 | pCifsInode->clientCanCacheRead = TRUE; |
| 150 | cFYI(1, ("Exclusive Oplock granted on inode %p", |
| 151 | file->f_dentry->d_inode)); |
| 152 | } else if ((*oplock & 0xF) == OPLOCK_READ) |
| 153 | pCifsInode->clientCanCacheRead = TRUE; |
| 154 | |
| 155 | return rc; |
| 156 | } |
| 157 | |
| 158 | int cifs_open(struct inode *inode, struct file *file) |
| 159 | { |
| 160 | int rc = -EACCES; |
| 161 | int xid, oplock; |
| 162 | struct cifs_sb_info *cifs_sb; |
| 163 | struct cifsTconInfo *pTcon; |
| 164 | struct cifsFileInfo *pCifsFile; |
| 165 | struct cifsInodeInfo *pCifsInode; |
| 166 | struct list_head *tmp; |
| 167 | char *full_path = NULL; |
| 168 | int desiredAccess; |
| 169 | int disposition; |
| 170 | __u16 netfid; |
| 171 | FILE_ALL_INFO *buf = NULL; |
| 172 | |
| 173 | xid = GetXid(); |
| 174 | |
| 175 | cifs_sb = CIFS_SB(inode->i_sb); |
| 176 | pTcon = cifs_sb->tcon; |
| 177 | |
| 178 | if (file->f_flags & O_CREAT) { |
| 179 | /* search inode for this file and fill in file->private_data */ |
| 180 | pCifsInode = CIFS_I(file->f_dentry->d_inode); |
| 181 | read_lock(&GlobalSMBSeslock); |
| 182 | list_for_each(tmp, &pCifsInode->openFileList) { |
| 183 | pCifsFile = list_entry(tmp, struct cifsFileInfo, |
| 184 | flist); |
| 185 | if ((pCifsFile->pfile == NULL) && |
| 186 | (pCifsFile->pid == current->tgid)) { |
| 187 | /* mode set in cifs_create */ |
| 188 | |
| 189 | /* needed for writepage */ |
| 190 | pCifsFile->pfile = file; |
| 191 | |
| 192 | file->private_data = pCifsFile; |
| 193 | break; |
| 194 | } |
| 195 | } |
| 196 | read_unlock(&GlobalSMBSeslock); |
| 197 | if (file->private_data != NULL) { |
| 198 | rc = 0; |
| 199 | FreeXid(xid); |
| 200 | return rc; |
| 201 | } else { |
| 202 | if (file->f_flags & O_EXCL) |
| 203 | cERROR(1, ("could not find file instance for " |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 204 | "new file %p", file)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 208 | full_path = build_path_from_dentry(file->f_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | if (full_path == NULL) { |
| 210 | FreeXid(xid); |
| 211 | return -ENOMEM; |
| 212 | } |
| 213 | |
| 214 | cFYI(1, (" inode = 0x%p file flags are 0x%x for %s", |
| 215 | inode, file->f_flags, full_path)); |
| 216 | desiredAccess = cifs_convert_flags(file->f_flags); |
| 217 | |
| 218 | /********************************************************************* |
| 219 | * open flag mapping table: |
| 220 | * |
| 221 | * POSIX Flag CIFS Disposition |
| 222 | * ---------- ---------------- |
| 223 | * O_CREAT FILE_OPEN_IF |
| 224 | * O_CREAT | O_EXCL FILE_CREATE |
| 225 | * O_CREAT | O_TRUNC FILE_OVERWRITE_IF |
| 226 | * O_TRUNC FILE_OVERWRITE |
| 227 | * none of the above FILE_OPEN |
| 228 | * |
| 229 | * Note that there is not a direct match between disposition |
| 230 | * FILE_SUPERSEDE (ie create whether or not file exists although |
| 231 | * O_CREAT | O_TRUNC is similar but truncates the existing |
| 232 | * file rather than creating a new file as FILE_SUPERSEDE does |
| 233 | * (which uses the attributes / metadata passed in on open call) |
| 234 | *? |
| 235 | *? O_SYNC is a reasonable match to CIFS writethrough flag |
| 236 | *? and the read write flags match reasonably. O_LARGEFILE |
| 237 | *? is irrelevant because largefile support is always used |
| 238 | *? by this client. Flags O_APPEND, O_DIRECT, O_DIRECTORY, |
| 239 | * O_FASYNC, O_NOFOLLOW, O_NONBLOCK need further investigation |
| 240 | *********************************************************************/ |
| 241 | |
| 242 | disposition = cifs_get_disposition(file->f_flags); |
| 243 | |
| 244 | if (oplockEnabled) |
| 245 | oplock = REQ_OPLOCK; |
| 246 | else |
| 247 | oplock = FALSE; |
| 248 | |
| 249 | /* BB pass O_SYNC flag through on file attributes .. BB */ |
| 250 | |
| 251 | /* Also refresh inode by passing in file_info buf returned by SMBOpen |
| 252 | and calling get_inode_info with returned buf (at least helps |
| 253 | non-Unix server case) */ |
| 254 | |
| 255 | /* BB we can not do this if this is the second open of a file |
| 256 | and the first handle has writebehind data, we might be |
| 257 | able to simply do a filemap_fdatawrite/filemap_fdatawait first */ |
| 258 | buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
| 259 | if (!buf) { |
| 260 | rc = -ENOMEM; |
| 261 | goto out; |
| 262 | } |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame^] | 263 | |
| 264 | if (cifs_sb->tcon->ses->capabilities & CAP_NT_SMBS) |
| 265 | rc = CIFSSMBOpen(xid, pTcon, full_path, disposition, |
| 266 | desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 267 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags |
| 268 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame^] | 269 | else |
| 270 | rc = -EIO; /* no NT SMB support fall into legacy open below */ |
| 271 | |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 272 | if (rc == -EIO) { |
| 273 | /* Old server, try legacy style OpenX */ |
| 274 | rc = SMBLegacyOpen(xid, pTcon, full_path, disposition, |
| 275 | desiredAccess, CREATE_NOT_DIR, &netfid, &oplock, buf, |
| 276 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags |
| 277 | & CIFS_MOUNT_MAP_SPECIAL_CHR); |
| 278 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | if (rc) { |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 280 | cFYI(1, ("cifs_open returned 0x%x", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | goto out; |
| 282 | } |
| 283 | file->private_data = |
| 284 | kmalloc(sizeof(struct cifsFileInfo), GFP_KERNEL); |
| 285 | if (file->private_data == NULL) { |
| 286 | rc = -ENOMEM; |
| 287 | goto out; |
| 288 | } |
| 289 | pCifsFile = cifs_init_private(file->private_data, inode, file, netfid); |
| 290 | write_lock(&file->f_owner.lock); |
| 291 | write_lock(&GlobalSMBSeslock); |
| 292 | list_add(&pCifsFile->tlist, &pTcon->openFileList); |
| 293 | |
| 294 | pCifsInode = CIFS_I(file->f_dentry->d_inode); |
| 295 | if (pCifsInode) { |
| 296 | rc = cifs_open_inode_helper(inode, file, pCifsInode, |
| 297 | pCifsFile, pTcon, |
| 298 | &oplock, buf, full_path, xid); |
| 299 | } else { |
| 300 | write_unlock(&GlobalSMBSeslock); |
| 301 | write_unlock(&file->f_owner.lock); |
| 302 | } |
| 303 | |
| 304 | if (oplock & CIFS_CREATE_ACTION) { |
| 305 | /* time to set mode which we can not set earlier due to |
| 306 | problems creating new read-only files */ |
| 307 | if (cifs_sb->tcon->ses->capabilities & CAP_UNIX) { |
| 308 | CIFSSMBUnixSetPerms(xid, pTcon, full_path, |
| 309 | inode->i_mode, |
| 310 | (__u64)-1, (__u64)-1, 0 /* dev */, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 311 | cifs_sb->local_nls, |
| 312 | cifs_sb->mnt_cifs_flags & |
| 313 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } else { |
| 315 | /* BB implement via Windows security descriptors eg |
| 316 | CIFSSMBWinSetPerms(xid, pTcon, full_path, mode, |
| 317 | -1, -1, local_nls); |
| 318 | in the meantime could set r/o dos attribute when |
| 319 | perms are eg: mode & 0222 == 0 */ |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | out: |
| 324 | kfree(buf); |
| 325 | kfree(full_path); |
| 326 | FreeXid(xid); |
| 327 | return rc; |
| 328 | } |
| 329 | |
| 330 | /* Try to reaquire byte range locks that were released when session */ |
| 331 | /* to server was lost */ |
| 332 | static int cifs_relock_file(struct cifsFileInfo *cifsFile) |
| 333 | { |
| 334 | int rc = 0; |
| 335 | |
| 336 | /* BB list all locks open on this file and relock */ |
| 337 | |
| 338 | return rc; |
| 339 | } |
| 340 | |
| 341 | static int cifs_reopen_file(struct inode *inode, struct file *file, |
| 342 | int can_flush) |
| 343 | { |
| 344 | int rc = -EACCES; |
| 345 | int xid, oplock; |
| 346 | struct cifs_sb_info *cifs_sb; |
| 347 | struct cifsTconInfo *pTcon; |
| 348 | struct cifsFileInfo *pCifsFile; |
| 349 | struct cifsInodeInfo *pCifsInode; |
| 350 | char *full_path = NULL; |
| 351 | int desiredAccess; |
| 352 | int disposition = FILE_OPEN; |
| 353 | __u16 netfid; |
| 354 | |
| 355 | if (inode == NULL) |
| 356 | return -EBADF; |
| 357 | if (file->private_data) { |
| 358 | pCifsFile = (struct cifsFileInfo *)file->private_data; |
| 359 | } else |
| 360 | return -EBADF; |
| 361 | |
| 362 | xid = GetXid(); |
| 363 | down(&pCifsFile->fh_sem); |
| 364 | if (pCifsFile->invalidHandle == FALSE) { |
| 365 | up(&pCifsFile->fh_sem); |
| 366 | FreeXid(xid); |
| 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | if (file->f_dentry == NULL) { |
| 371 | up(&pCifsFile->fh_sem); |
| 372 | cFYI(1, ("failed file reopen, no valid name if dentry freed")); |
| 373 | FreeXid(xid); |
| 374 | return -EBADF; |
| 375 | } |
| 376 | cifs_sb = CIFS_SB(inode->i_sb); |
| 377 | pTcon = cifs_sb->tcon; |
| 378 | /* can not grab rename sem here because various ops, including |
| 379 | those that already have the rename sem can end up causing writepage |
| 380 | to get called and if the server was down that means we end up here, |
| 381 | and we can never tell if the caller already has the rename_sem */ |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 382 | full_path = build_path_from_dentry(file->f_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | if (full_path == NULL) { |
| 384 | up(&pCifsFile->fh_sem); |
| 385 | FreeXid(xid); |
| 386 | return -ENOMEM; |
| 387 | } |
| 388 | |
| 389 | cFYI(1, (" inode = 0x%p file flags are 0x%x for %s", |
| 390 | inode, file->f_flags,full_path)); |
| 391 | desiredAccess = cifs_convert_flags(file->f_flags); |
| 392 | |
| 393 | if (oplockEnabled) |
| 394 | oplock = REQ_OPLOCK; |
| 395 | else |
| 396 | oplock = FALSE; |
| 397 | |
| 398 | /* Can not refresh inode by passing in file_info buf to be returned |
| 399 | by SMBOpen and then calling get_inode_info with returned buf |
| 400 | since file might have write behind data that needs to be flushed |
| 401 | and server version of file size can be stale. If we knew for sure |
| 402 | that inode was not dirty locally we could do this */ |
| 403 | |
| 404 | /* buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); |
| 405 | if (buf == 0) { |
| 406 | up(&pCifsFile->fh_sem); |
| 407 | kfree(full_path); |
| 408 | FreeXid(xid); |
| 409 | return -ENOMEM; |
| 410 | } */ |
| 411 | rc = CIFSSMBOpen(xid, pTcon, full_path, disposition, desiredAccess, |
| 412 | CREATE_NOT_DIR, &netfid, &oplock, NULL, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 413 | cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & |
| 414 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | if (rc) { |
| 416 | up(&pCifsFile->fh_sem); |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 417 | cFYI(1, ("cifs_open returned 0x%x", rc)); |
| 418 | cFYI(1, ("oplock: %d", oplock)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } else { |
| 420 | pCifsFile->netfid = netfid; |
| 421 | pCifsFile->invalidHandle = FALSE; |
| 422 | up(&pCifsFile->fh_sem); |
| 423 | pCifsInode = CIFS_I(inode); |
| 424 | if (pCifsInode) { |
| 425 | if (can_flush) { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 426 | filemap_write_and_wait(inode->i_mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | /* temporarily disable caching while we |
| 428 | go to server to get inode info */ |
| 429 | pCifsInode->clientCanCacheAll = FALSE; |
| 430 | pCifsInode->clientCanCacheRead = FALSE; |
| 431 | if (pTcon->ses->capabilities & CAP_UNIX) |
| 432 | rc = cifs_get_inode_info_unix(&inode, |
| 433 | full_path, inode->i_sb, xid); |
| 434 | else |
| 435 | rc = cifs_get_inode_info(&inode, |
| 436 | full_path, NULL, inode->i_sb, |
| 437 | xid); |
| 438 | } /* else we are writing out data to server already |
| 439 | and could deadlock if we tried to flush data, and |
| 440 | since we do not know if we have data that would |
| 441 | invalidate the current end of file on the server |
| 442 | we can not go to the server to get the new inod |
| 443 | info */ |
| 444 | if ((oplock & 0xF) == OPLOCK_EXCLUSIVE) { |
| 445 | pCifsInode->clientCanCacheAll = TRUE; |
| 446 | pCifsInode->clientCanCacheRead = TRUE; |
| 447 | cFYI(1, ("Exclusive Oplock granted on inode %p", |
| 448 | file->f_dentry->d_inode)); |
| 449 | } else if ((oplock & 0xF) == OPLOCK_READ) { |
| 450 | pCifsInode->clientCanCacheRead = TRUE; |
| 451 | pCifsInode->clientCanCacheAll = FALSE; |
| 452 | } else { |
| 453 | pCifsInode->clientCanCacheRead = FALSE; |
| 454 | pCifsInode->clientCanCacheAll = FALSE; |
| 455 | } |
| 456 | cifs_relock_file(pCifsFile); |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | kfree(full_path); |
| 461 | FreeXid(xid); |
| 462 | return rc; |
| 463 | } |
| 464 | |
| 465 | int cifs_close(struct inode *inode, struct file *file) |
| 466 | { |
| 467 | int rc = 0; |
| 468 | int xid; |
| 469 | struct cifs_sb_info *cifs_sb; |
| 470 | struct cifsTconInfo *pTcon; |
| 471 | struct cifsFileInfo *pSMBFile = |
| 472 | (struct cifsFileInfo *)file->private_data; |
| 473 | |
| 474 | xid = GetXid(); |
| 475 | |
| 476 | cifs_sb = CIFS_SB(inode->i_sb); |
| 477 | pTcon = cifs_sb->tcon; |
| 478 | if (pSMBFile) { |
| 479 | pSMBFile->closePend = TRUE; |
| 480 | write_lock(&file->f_owner.lock); |
| 481 | if (pTcon) { |
| 482 | /* no sense reconnecting to close a file that is |
| 483 | already closed */ |
| 484 | if (pTcon->tidStatus != CifsNeedReconnect) { |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 485 | int timeout = 2; |
| 486 | while((atomic_read(&pSMBFile->wrtPending) != 0) |
| 487 | && (timeout < 1000) ) { |
| 488 | /* Give write a better chance to get to |
| 489 | server ahead of the close. We do not |
| 490 | want to add a wait_q here as it would |
| 491 | increase the memory utilization as |
| 492 | the struct would be in each open file, |
| 493 | but this should give enough time to |
| 494 | clear the socket */ |
Steve French | c119b87 | 2005-11-18 12:27:27 -0800 | [diff] [blame] | 495 | write_unlock(&file->f_owner.lock); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 496 | cERROR(1,("close with pending writes")); |
| 497 | msleep(timeout); |
Steve French | c119b87 | 2005-11-18 12:27:27 -0800 | [diff] [blame] | 498 | write_lock(&file->f_owner.lock); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 499 | timeout *= 4; |
| 500 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | write_unlock(&file->f_owner.lock); |
| 502 | rc = CIFSSMBClose(xid, pTcon, |
| 503 | pSMBFile->netfid); |
| 504 | write_lock(&file->f_owner.lock); |
| 505 | } |
| 506 | } |
Steve French | cbe0476 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 507 | write_lock(&GlobalSMBSeslock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | list_del(&pSMBFile->flist); |
| 509 | list_del(&pSMBFile->tlist); |
Steve French | cbe0476 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 510 | write_unlock(&GlobalSMBSeslock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | write_unlock(&file->f_owner.lock); |
| 512 | kfree(pSMBFile->search_resume_name); |
| 513 | kfree(file->private_data); |
| 514 | file->private_data = NULL; |
| 515 | } else |
| 516 | rc = -EBADF; |
| 517 | |
| 518 | if (list_empty(&(CIFS_I(inode)->openFileList))) { |
| 519 | cFYI(1, ("closing last open instance for inode %p", inode)); |
| 520 | /* if the file is not open we do not know if we can cache info |
| 521 | on this inode, much less write behind and read ahead */ |
| 522 | CIFS_I(inode)->clientCanCacheRead = FALSE; |
| 523 | CIFS_I(inode)->clientCanCacheAll = FALSE; |
| 524 | } |
| 525 | if ((rc ==0) && CIFS_I(inode)->write_behind_rc) |
| 526 | rc = CIFS_I(inode)->write_behind_rc; |
| 527 | FreeXid(xid); |
| 528 | return rc; |
| 529 | } |
| 530 | |
| 531 | int cifs_closedir(struct inode *inode, struct file *file) |
| 532 | { |
| 533 | int rc = 0; |
| 534 | int xid; |
| 535 | struct cifsFileInfo *pCFileStruct = |
| 536 | (struct cifsFileInfo *)file->private_data; |
| 537 | char *ptmp; |
| 538 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 539 | cFYI(1, ("Closedir inode = 0x%p", inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
| 541 | xid = GetXid(); |
| 542 | |
| 543 | if (pCFileStruct) { |
| 544 | struct cifsTconInfo *pTcon; |
| 545 | struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 546 | |
| 547 | pTcon = cifs_sb->tcon; |
| 548 | |
| 549 | cFYI(1, ("Freeing private data in close dir")); |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 550 | if ((pCFileStruct->srch_inf.endOfSearch == FALSE) && |
| 551 | (pCFileStruct->invalidHandle == FALSE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | pCFileStruct->invalidHandle = TRUE; |
| 553 | rc = CIFSFindClose(xid, pTcon, pCFileStruct->netfid); |
| 554 | cFYI(1, ("Closing uncompleted readdir with rc %d", |
| 555 | rc)); |
| 556 | /* not much we can do if it fails anyway, ignore rc */ |
| 557 | rc = 0; |
| 558 | } |
| 559 | ptmp = pCFileStruct->srch_inf.ntwrk_buf_start; |
| 560 | if (ptmp) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 561 | cFYI(1, ("closedir free smb buf in srch struct")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | pCFileStruct->srch_inf.ntwrk_buf_start = NULL; |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 563 | if(pCFileStruct->srch_inf.smallBuf) |
| 564 | cifs_small_buf_release(ptmp); |
| 565 | else |
| 566 | cifs_buf_release(ptmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | ptmp = pCFileStruct->search_resume_name; |
| 569 | if (ptmp) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 570 | cFYI(1, ("closedir free resume name")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | pCFileStruct->search_resume_name = NULL; |
| 572 | kfree(ptmp); |
| 573 | } |
| 574 | kfree(file->private_data); |
| 575 | file->private_data = NULL; |
| 576 | } |
| 577 | /* BB can we lock the filestruct while this is going on? */ |
| 578 | FreeXid(xid); |
| 579 | return rc; |
| 580 | } |
| 581 | |
| 582 | int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) |
| 583 | { |
| 584 | int rc, xid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | __u32 numLock = 0; |
| 586 | __u32 numUnlock = 0; |
| 587 | __u64 length; |
| 588 | int wait_flag = FALSE; |
| 589 | struct cifs_sb_info *cifs_sb; |
| 590 | struct cifsTconInfo *pTcon; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 591 | __u16 netfid; |
| 592 | __u8 lockType = LOCKING_ANDX_LARGE_FILES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
| 594 | length = 1 + pfLock->fl_end - pfLock->fl_start; |
| 595 | rc = -EACCES; |
| 596 | xid = GetXid(); |
| 597 | |
| 598 | cFYI(1, ("Lock parm: 0x%x flockflags: " |
| 599 | "0x%x flocktype: 0x%x start: %lld end: %lld", |
| 600 | cmd, pfLock->fl_flags, pfLock->fl_type, pfLock->fl_start, |
| 601 | pfLock->fl_end)); |
| 602 | |
| 603 | if (pfLock->fl_flags & FL_POSIX) |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 604 | cFYI(1, ("Posix")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | if (pfLock->fl_flags & FL_FLOCK) |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 606 | cFYI(1, ("Flock")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | if (pfLock->fl_flags & FL_SLEEP) { |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 608 | cFYI(1, ("Blocking lock")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | wait_flag = TRUE; |
| 610 | } |
| 611 | if (pfLock->fl_flags & FL_ACCESS) |
| 612 | cFYI(1, ("Process suspended by mandatory locking - " |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 613 | "not implemented yet")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | if (pfLock->fl_flags & FL_LEASE) |
| 615 | cFYI(1, ("Lease on file - not implemented yet")); |
| 616 | if (pfLock->fl_flags & |
| 617 | (~(FL_POSIX | FL_FLOCK | FL_SLEEP | FL_ACCESS | FL_LEASE))) |
| 618 | cFYI(1, ("Unknown lock flags 0x%x", pfLock->fl_flags)); |
| 619 | |
| 620 | if (pfLock->fl_type == F_WRLCK) { |
| 621 | cFYI(1, ("F_WRLCK ")); |
| 622 | numLock = 1; |
| 623 | } else if (pfLock->fl_type == F_UNLCK) { |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 624 | cFYI(1, ("F_UNLCK")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | numUnlock = 1; |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 626 | /* Check if unlock includes more than |
| 627 | one lock range */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | } else if (pfLock->fl_type == F_RDLCK) { |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 629 | cFYI(1, ("F_RDLCK")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | lockType |= LOCKING_ANDX_SHARED_LOCK; |
| 631 | numLock = 1; |
| 632 | } else if (pfLock->fl_type == F_EXLCK) { |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 633 | cFYI(1, ("F_EXLCK")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | numLock = 1; |
| 635 | } else if (pfLock->fl_type == F_SHLCK) { |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 636 | cFYI(1, ("F_SHLCK")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | lockType |= LOCKING_ANDX_SHARED_LOCK; |
| 638 | numLock = 1; |
| 639 | } else |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 640 | cFYI(1, ("Unknown type of lock")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
| 642 | cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 643 | pTcon = cifs_sb->tcon; |
| 644 | |
| 645 | if (file->private_data == NULL) { |
| 646 | FreeXid(xid); |
| 647 | return -EBADF; |
| 648 | } |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 649 | netfid = ((struct cifsFileInfo *)file->private_data)->netfid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 651 | |
| 652 | /* BB add code here to normalize offset and length to |
| 653 | account for negative length which we can not accept over the |
| 654 | wire */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | if (IS_GETLK(cmd)) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 656 | if(experimEnabled && |
Steve French | 82940a4 | 2006-03-02 03:24:57 +0000 | [diff] [blame] | 657 | (cifs_sb->tcon->ses->capabilities & CAP_UNIX) && |
| 658 | (CIFS_UNIX_FCNTL_CAP & |
| 659 | le64_to_cpu(cifs_sb->tcon->fsUnixInfo.Capability))) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 660 | int posix_lock_type; |
| 661 | if(lockType & LOCKING_ANDX_SHARED_LOCK) |
| 662 | posix_lock_type = CIFS_RDLCK; |
| 663 | else |
| 664 | posix_lock_type = CIFS_WRLCK; |
| 665 | rc = CIFSSMBPosixLock(xid, pTcon, netfid, 1 /* get */, |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 666 | length, pfLock, |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 667 | posix_lock_type, wait_flag); |
| 668 | FreeXid(xid); |
| 669 | return rc; |
| 670 | } |
| 671 | |
| 672 | /* BB we could chain these into one lock request BB */ |
| 673 | rc = CIFSSMBLock(xid, pTcon, netfid, length, pfLock->fl_start, |
| 674 | 0, 1, lockType, 0 /* wait flag */ ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | if (rc == 0) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 676 | rc = CIFSSMBLock(xid, pTcon, netfid, length, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | pfLock->fl_start, 1 /* numUnlock */ , |
| 678 | 0 /* numLock */ , lockType, |
| 679 | 0 /* wait flag */ ); |
| 680 | pfLock->fl_type = F_UNLCK; |
| 681 | if (rc != 0) |
| 682 | cERROR(1, ("Error unlocking previously locked " |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 683 | "range %d during test of lock", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | rc = 0; |
| 685 | |
| 686 | } else { |
| 687 | /* if rc == ERR_SHARING_VIOLATION ? */ |
| 688 | rc = 0; /* do not change lock type to unlock |
| 689 | since range in use */ |
| 690 | } |
| 691 | |
| 692 | FreeXid(xid); |
| 693 | return rc; |
| 694 | } |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 695 | if (experimEnabled && |
Steve French | 82940a4 | 2006-03-02 03:24:57 +0000 | [diff] [blame] | 696 | (cifs_sb->tcon->ses->capabilities & CAP_UNIX) && |
| 697 | (CIFS_UNIX_FCNTL_CAP & |
| 698 | le64_to_cpu(cifs_sb->tcon->fsUnixInfo.Capability))) { |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 699 | int posix_lock_type; |
| 700 | if(lockType & LOCKING_ANDX_SHARED_LOCK) |
| 701 | posix_lock_type = CIFS_RDLCK; |
| 702 | else |
| 703 | posix_lock_type = CIFS_WRLCK; |
| 704 | |
| 705 | if(numUnlock == 1) |
Steve French | beb84dc | 2006-03-03 23:36:34 +0000 | [diff] [blame] | 706 | posix_lock_type = CIFS_UNLCK; |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 707 | else if(numLock == 0) { |
| 708 | /* if no lock or unlock then nothing |
| 709 | to do since we do not know what it is */ |
| 710 | FreeXid(xid); |
| 711 | return -EOPNOTSUPP; |
| 712 | } |
| 713 | rc = CIFSSMBPosixLock(xid, pTcon, netfid, 0 /* set */, |
Steve French | fc94cdb | 2006-05-30 18:03:32 +0000 | [diff] [blame] | 714 | length, pfLock, |
Steve French | 08547b0 | 2006-02-28 22:39:25 +0000 | [diff] [blame] | 715 | posix_lock_type, wait_flag); |
| 716 | } else |
| 717 | rc = CIFSSMBLock(xid, pTcon, netfid, length, pfLock->fl_start, |
| 718 | numUnlock, numLock, lockType, wait_flag); |
Steve French | d634cc1 | 2005-08-26 14:42:59 -0500 | [diff] [blame] | 719 | if (pfLock->fl_flags & FL_POSIX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | posix_lock_file_wait(file, pfLock); |
| 721 | FreeXid(xid); |
| 722 | return rc; |
| 723 | } |
| 724 | |
| 725 | ssize_t cifs_user_write(struct file *file, const char __user *write_data, |
| 726 | size_t write_size, loff_t *poffset) |
| 727 | { |
| 728 | int rc = 0; |
| 729 | unsigned int bytes_written = 0; |
| 730 | unsigned int total_written; |
| 731 | struct cifs_sb_info *cifs_sb; |
| 732 | struct cifsTconInfo *pTcon; |
| 733 | int xid, long_op; |
| 734 | struct cifsFileInfo *open_file; |
| 735 | |
| 736 | if (file->f_dentry == NULL) |
| 737 | return -EBADF; |
| 738 | |
| 739 | cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 740 | if (cifs_sb == NULL) |
| 741 | return -EBADF; |
| 742 | |
| 743 | pTcon = cifs_sb->tcon; |
| 744 | |
| 745 | /* cFYI(1, |
| 746 | (" write %d bytes to offset %lld of %s", write_size, |
| 747 | *poffset, file->f_dentry->d_name.name)); */ |
| 748 | |
| 749 | if (file->private_data == NULL) |
| 750 | return -EBADF; |
| 751 | else |
| 752 | open_file = (struct cifsFileInfo *) file->private_data; |
| 753 | |
| 754 | xid = GetXid(); |
| 755 | if (file->f_dentry->d_inode == NULL) { |
| 756 | FreeXid(xid); |
| 757 | return -EBADF; |
| 758 | } |
| 759 | |
| 760 | if (*poffset > file->f_dentry->d_inode->i_size) |
| 761 | long_op = 2; /* writes past end of file can take a long time */ |
| 762 | else |
| 763 | long_op = 1; |
| 764 | |
| 765 | for (total_written = 0; write_size > total_written; |
| 766 | total_written += bytes_written) { |
| 767 | rc = -EAGAIN; |
| 768 | while (rc == -EAGAIN) { |
| 769 | if (file->private_data == NULL) { |
| 770 | /* file has been closed on us */ |
| 771 | FreeXid(xid); |
| 772 | /* if we have gotten here we have written some data |
| 773 | and blocked, and the file has been freed on us while |
| 774 | we blocked so return what we managed to write */ |
| 775 | return total_written; |
| 776 | } |
| 777 | if (open_file->closePend) { |
| 778 | FreeXid(xid); |
| 779 | if (total_written) |
| 780 | return total_written; |
| 781 | else |
| 782 | return -EBADF; |
| 783 | } |
| 784 | if (open_file->invalidHandle) { |
| 785 | if ((file->f_dentry == NULL) || |
| 786 | (file->f_dentry->d_inode == NULL)) { |
| 787 | FreeXid(xid); |
| 788 | return total_written; |
| 789 | } |
| 790 | /* we could deadlock if we called |
| 791 | filemap_fdatawait from here so tell |
| 792 | reopen_file not to flush data to server |
| 793 | now */ |
| 794 | rc = cifs_reopen_file(file->f_dentry->d_inode, |
| 795 | file, FALSE); |
| 796 | if (rc != 0) |
| 797 | break; |
| 798 | } |
| 799 | |
| 800 | rc = CIFSSMBWrite(xid, pTcon, |
| 801 | open_file->netfid, |
| 802 | min_t(const int, cifs_sb->wsize, |
| 803 | write_size - total_written), |
| 804 | *poffset, &bytes_written, |
| 805 | NULL, write_data + total_written, long_op); |
| 806 | } |
| 807 | if (rc || (bytes_written == 0)) { |
| 808 | if (total_written) |
| 809 | break; |
| 810 | else { |
| 811 | FreeXid(xid); |
| 812 | return rc; |
| 813 | } |
| 814 | } else |
| 815 | *poffset += bytes_written; |
| 816 | long_op = FALSE; /* subsequent writes fast - |
| 817 | 15 seconds is plenty */ |
| 818 | } |
| 819 | |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 820 | cifs_stats_bytes_written(pTcon, total_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
| 822 | /* since the write may have blocked check these pointers again */ |
| 823 | if (file->f_dentry) { |
| 824 | if (file->f_dentry->d_inode) { |
| 825 | struct inode *inode = file->f_dentry->d_inode; |
| 826 | inode->i_ctime = inode->i_mtime = |
| 827 | current_fs_time(inode->i_sb); |
| 828 | if (total_written > 0) { |
| 829 | if (*poffset > file->f_dentry->d_inode->i_size) |
| 830 | i_size_write(file->f_dentry->d_inode, |
| 831 | *poffset); |
| 832 | } |
| 833 | mark_inode_dirty_sync(file->f_dentry->d_inode); |
| 834 | } |
| 835 | } |
| 836 | FreeXid(xid); |
| 837 | return total_written; |
| 838 | } |
| 839 | |
| 840 | static ssize_t cifs_write(struct file *file, const char *write_data, |
| 841 | size_t write_size, loff_t *poffset) |
| 842 | { |
| 843 | int rc = 0; |
| 844 | unsigned int bytes_written = 0; |
| 845 | unsigned int total_written; |
| 846 | struct cifs_sb_info *cifs_sb; |
| 847 | struct cifsTconInfo *pTcon; |
| 848 | int xid, long_op; |
| 849 | struct cifsFileInfo *open_file; |
| 850 | |
| 851 | if (file->f_dentry == NULL) |
| 852 | return -EBADF; |
| 853 | |
| 854 | cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 855 | if (cifs_sb == NULL) |
| 856 | return -EBADF; |
| 857 | |
| 858 | pTcon = cifs_sb->tcon; |
| 859 | |
Steve French | ab2f218 | 2005-09-15 20:44:50 -0700 | [diff] [blame] | 860 | cFYI(1,("write %zd bytes to offset %lld of %s", write_size, |
| 861 | *poffset, file->f_dentry->d_name.name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
| 863 | if (file->private_data == NULL) |
| 864 | return -EBADF; |
| 865 | else |
| 866 | open_file = (struct cifsFileInfo *)file->private_data; |
| 867 | |
| 868 | xid = GetXid(); |
| 869 | if (file->f_dentry->d_inode == NULL) { |
| 870 | FreeXid(xid); |
| 871 | return -EBADF; |
| 872 | } |
| 873 | |
| 874 | if (*poffset > file->f_dentry->d_inode->i_size) |
| 875 | long_op = 2; /* writes past end of file can take a long time */ |
| 876 | else |
| 877 | long_op = 1; |
| 878 | |
| 879 | for (total_written = 0; write_size > total_written; |
| 880 | total_written += bytes_written) { |
| 881 | rc = -EAGAIN; |
| 882 | while (rc == -EAGAIN) { |
| 883 | if (file->private_data == NULL) { |
| 884 | /* file has been closed on us */ |
| 885 | FreeXid(xid); |
| 886 | /* if we have gotten here we have written some data |
| 887 | and blocked, and the file has been freed on us |
| 888 | while we blocked so return what we managed to |
| 889 | write */ |
| 890 | return total_written; |
| 891 | } |
| 892 | if (open_file->closePend) { |
| 893 | FreeXid(xid); |
| 894 | if (total_written) |
| 895 | return total_written; |
| 896 | else |
| 897 | return -EBADF; |
| 898 | } |
| 899 | if (open_file->invalidHandle) { |
| 900 | if ((file->f_dentry == NULL) || |
| 901 | (file->f_dentry->d_inode == NULL)) { |
| 902 | FreeXid(xid); |
| 903 | return total_written; |
| 904 | } |
| 905 | /* we could deadlock if we called |
| 906 | filemap_fdatawait from here so tell |
| 907 | reopen_file not to flush data to |
| 908 | server now */ |
| 909 | rc = cifs_reopen_file(file->f_dentry->d_inode, |
| 910 | file, FALSE); |
| 911 | if (rc != 0) |
| 912 | break; |
| 913 | } |
Steve French | c01f36a | 2006-05-30 18:05:10 +0000 | [diff] [blame] | 914 | if(experimEnabled || (pTcon->ses->server && |
Steve French | 0877583 | 2006-05-30 18:08:26 +0000 | [diff] [blame] | 915 | ((pTcon->ses->server->secMode & |
| 916 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Steve French | c01f36a | 2006-05-30 18:05:10 +0000 | [diff] [blame] | 917 | == 0))) { |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 918 | struct kvec iov[2]; |
| 919 | unsigned int len; |
| 920 | |
Steve French | 0ae0efa | 2005-10-10 10:57:19 -0700 | [diff] [blame] | 921 | len = min((size_t)cifs_sb->wsize, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 922 | write_size - total_written); |
| 923 | /* iov[0] is reserved for smb header */ |
| 924 | iov[1].iov_base = (char *)write_data + |
| 925 | total_written; |
| 926 | iov[1].iov_len = len; |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 927 | rc = CIFSSMBWrite2(xid, pTcon, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 928 | open_file->netfid, len, |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 929 | *poffset, &bytes_written, |
Steve French | 3e84469 | 2005-10-03 13:37:24 -0700 | [diff] [blame] | 930 | iov, 1, long_op); |
Steve French | d6e04ae | 2005-06-13 13:24:43 -0500 | [diff] [blame] | 931 | } else |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 932 | rc = CIFSSMBWrite(xid, pTcon, |
| 933 | open_file->netfid, |
| 934 | min_t(const int, cifs_sb->wsize, |
| 935 | write_size - total_written), |
| 936 | *poffset, &bytes_written, |
| 937 | write_data + total_written, |
| 938 | NULL, long_op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | } |
| 940 | if (rc || (bytes_written == 0)) { |
| 941 | if (total_written) |
| 942 | break; |
| 943 | else { |
| 944 | FreeXid(xid); |
| 945 | return rc; |
| 946 | } |
| 947 | } else |
| 948 | *poffset += bytes_written; |
| 949 | long_op = FALSE; /* subsequent writes fast - |
| 950 | 15 seconds is plenty */ |
| 951 | } |
| 952 | |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 953 | cifs_stats_bytes_written(pTcon, total_written); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
| 955 | /* since the write may have blocked check these pointers again */ |
| 956 | if (file->f_dentry) { |
| 957 | if (file->f_dentry->d_inode) { |
| 958 | file->f_dentry->d_inode->i_ctime = |
| 959 | file->f_dentry->d_inode->i_mtime = CURRENT_TIME; |
| 960 | if (total_written > 0) { |
| 961 | if (*poffset > file->f_dentry->d_inode->i_size) |
| 962 | i_size_write(file->f_dentry->d_inode, |
| 963 | *poffset); |
| 964 | } |
| 965 | mark_inode_dirty_sync(file->f_dentry->d_inode); |
| 966 | } |
| 967 | } |
| 968 | FreeXid(xid); |
| 969 | return total_written; |
| 970 | } |
| 971 | |
Steve French | dd99cd8 | 2005-10-05 19:32:49 -0700 | [diff] [blame] | 972 | struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode) |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 973 | { |
| 974 | struct cifsFileInfo *open_file; |
Steve French | dd99cd8 | 2005-10-05 19:32:49 -0700 | [diff] [blame] | 975 | int rc; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 976 | |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 977 | /* Having a null inode here (because mapping->host was set to zero by |
| 978 | the VFS or MM) should not happen but we had reports of on oops (due to |
| 979 | it being zero) during stress testcases so we need to check for it */ |
| 980 | |
| 981 | if(cifs_inode == NULL) { |
| 982 | cERROR(1,("Null inode passed to cifs_writeable_file")); |
| 983 | dump_stack(); |
| 984 | return NULL; |
| 985 | } |
| 986 | |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 987 | read_lock(&GlobalSMBSeslock); |
| 988 | list_for_each_entry(open_file, &cifs_inode->openFileList, flist) { |
| 989 | if (open_file->closePend) |
| 990 | continue; |
| 991 | if (open_file->pfile && |
| 992 | ((open_file->pfile->f_flags & O_RDWR) || |
| 993 | (open_file->pfile->f_flags & O_WRONLY))) { |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 994 | atomic_inc(&open_file->wrtPending); |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 995 | read_unlock(&GlobalSMBSeslock); |
Steve French | 0ae0efa | 2005-10-10 10:57:19 -0700 | [diff] [blame] | 996 | if((open_file->invalidHandle) && |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 997 | (!open_file->closePend) /* BB fixme -since the second clause can not be true remove it BB */) { |
Steve French | dd99cd8 | 2005-10-05 19:32:49 -0700 | [diff] [blame] | 998 | rc = cifs_reopen_file(&cifs_inode->vfs_inode, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 999 | open_file->pfile, FALSE); |
| 1000 | /* if it fails, try another handle - might be */ |
| 1001 | /* dangerous to hold up writepages with retry */ |
| 1002 | if(rc) { |
Steve French | 4a77118 | 2005-10-05 15:14:33 -0700 | [diff] [blame] | 1003 | cFYI(1,("failed on reopen file in wp")); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1004 | read_lock(&GlobalSMBSeslock); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1005 | /* can not use this handle, no write |
| 1006 | pending on this one after all */ |
| 1007 | atomic_dec |
| 1008 | (&open_file->wrtPending); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1009 | continue; |
| 1010 | } |
| 1011 | } |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1012 | return open_file; |
| 1013 | } |
| 1014 | } |
| 1015 | read_unlock(&GlobalSMBSeslock); |
| 1016 | return NULL; |
| 1017 | } |
| 1018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to) |
| 1020 | { |
| 1021 | struct address_space *mapping = page->mapping; |
| 1022 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1023 | char *write_data; |
| 1024 | int rc = -EFAULT; |
| 1025 | int bytes_written = 0; |
| 1026 | struct cifs_sb_info *cifs_sb; |
| 1027 | struct cifsTconInfo *pTcon; |
| 1028 | struct inode *inode; |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1029 | struct cifsFileInfo *open_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
| 1031 | if (!mapping || !mapping->host) |
| 1032 | return -EFAULT; |
| 1033 | |
| 1034 | inode = page->mapping->host; |
| 1035 | cifs_sb = CIFS_SB(inode->i_sb); |
| 1036 | pTcon = cifs_sb->tcon; |
| 1037 | |
| 1038 | offset += (loff_t)from; |
| 1039 | write_data = kmap(page); |
| 1040 | write_data += from; |
| 1041 | |
| 1042 | if ((to > PAGE_CACHE_SIZE) || (from > to)) { |
| 1043 | kunmap(page); |
| 1044 | return -EIO; |
| 1045 | } |
| 1046 | |
| 1047 | /* racing with truncate? */ |
| 1048 | if (offset > mapping->host->i_size) { |
| 1049 | kunmap(page); |
| 1050 | return 0; /* don't care */ |
| 1051 | } |
| 1052 | |
| 1053 | /* check to make sure that we are not extending the file */ |
| 1054 | if (mapping->host->i_size - offset < (loff_t)to) |
| 1055 | to = (unsigned)(mapping->host->i_size - offset); |
| 1056 | |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1057 | open_file = find_writable_file(CIFS_I(mapping->host)); |
| 1058 | if (open_file) { |
| 1059 | bytes_written = cifs_write(open_file->pfile, write_data, |
| 1060 | to-from, &offset); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1061 | atomic_dec(&open_file->wrtPending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | /* Does mm or vfs already set times? */ |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1063 | inode->i_atime = inode->i_mtime = current_fs_time(inode->i_sb); |
| 1064 | if ((bytes_written > 0) && (offset)) { |
| 1065 | rc = 0; |
| 1066 | } else if (bytes_written < 0) { |
| 1067 | if (rc != -EBADF) |
| 1068 | rc = bytes_written; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | } |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1070 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | cFYI(1, ("No writeable filehandles for inode")); |
| 1072 | rc = -EIO; |
| 1073 | } |
| 1074 | |
| 1075 | kunmap(page); |
| 1076 | return rc; |
| 1077 | } |
| 1078 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | static int cifs_writepages(struct address_space *mapping, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1080 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | { |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1082 | struct backing_dev_info *bdi = mapping->backing_dev_info; |
| 1083 | unsigned int bytes_to_write; |
| 1084 | unsigned int bytes_written; |
| 1085 | struct cifs_sb_info *cifs_sb; |
| 1086 | int done = 0; |
| 1087 | pgoff_t end = -1; |
| 1088 | pgoff_t index; |
| 1089 | int is_range = 0; |
| 1090 | struct kvec iov[32]; |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1091 | int len; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1092 | int n_iov = 0; |
| 1093 | pgoff_t next; |
| 1094 | int nr_pages; |
| 1095 | __u64 offset = 0; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1096 | struct cifsFileInfo *open_file; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1097 | struct page *page; |
| 1098 | struct pagevec pvec; |
| 1099 | int rc = 0; |
| 1100 | int scanned = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | int xid; |
| 1102 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1103 | cifs_sb = CIFS_SB(mapping->host->i_sb); |
| 1104 | |
| 1105 | /* |
| 1106 | * If wsize is smaller that the page cache size, default to writing |
| 1107 | * one page at a time via cifs_writepage |
| 1108 | */ |
| 1109 | if (cifs_sb->wsize < PAGE_CACHE_SIZE) |
| 1110 | return generic_writepages(mapping, wbc); |
| 1111 | |
Steve French | 4a77118 | 2005-10-05 15:14:33 -0700 | [diff] [blame] | 1112 | if((cifs_sb->tcon->ses) && (cifs_sb->tcon->ses->server)) |
| 1113 | if(cifs_sb->tcon->ses->server->secMode & |
| 1114 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1115 | if(!experimEnabled) |
| 1116 | return generic_writepages(mapping, wbc); |
Steve French | 4a77118 | 2005-10-05 15:14:33 -0700 | [diff] [blame] | 1117 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1118 | /* |
| 1119 | * BB: Is this meaningful for a non-block-device file system? |
| 1120 | * If it is, we should test it again after we do I/O |
| 1121 | */ |
| 1122 | if (wbc->nonblocking && bdi_write_congested(bdi)) { |
| 1123 | wbc->encountered_congestion = 1; |
| 1124 | return 0; |
| 1125 | } |
| 1126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | xid = GetXid(); |
| 1128 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1129 | pagevec_init(&pvec, 0); |
| 1130 | if (wbc->sync_mode == WB_SYNC_NONE) |
| 1131 | index = mapping->writeback_index; /* Start from prev offset */ |
| 1132 | else { |
| 1133 | index = 0; |
| 1134 | scanned = 1; |
| 1135 | } |
| 1136 | if (wbc->start || wbc->end) { |
| 1137 | index = wbc->start >> PAGE_CACHE_SHIFT; |
| 1138 | end = wbc->end >> PAGE_CACHE_SHIFT; |
| 1139 | is_range = 1; |
| 1140 | scanned = 1; |
| 1141 | } |
| 1142 | retry: |
| 1143 | while (!done && (index <= end) && |
| 1144 | (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, |
| 1145 | PAGECACHE_TAG_DIRTY, |
| 1146 | min(end - index, (pgoff_t)PAGEVEC_SIZE - 1) + 1))) { |
| 1147 | int first; |
| 1148 | unsigned int i; |
| 1149 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1150 | first = -1; |
| 1151 | next = 0; |
| 1152 | n_iov = 0; |
| 1153 | bytes_to_write = 0; |
| 1154 | |
| 1155 | for (i = 0; i < nr_pages; i++) { |
| 1156 | page = pvec.pages[i]; |
| 1157 | /* |
| 1158 | * At this point we hold neither mapping->tree_lock nor |
| 1159 | * lock on the page itself: the page may be truncated or |
| 1160 | * invalidated (changing page->mapping to NULL), or even |
| 1161 | * swizzled back from swapper_space to tmpfs file |
| 1162 | * mapping |
| 1163 | */ |
| 1164 | |
| 1165 | if (first < 0) |
| 1166 | lock_page(page); |
| 1167 | else if (TestSetPageLocked(page)) |
| 1168 | break; |
| 1169 | |
| 1170 | if (unlikely(page->mapping != mapping)) { |
| 1171 | unlock_page(page); |
| 1172 | break; |
| 1173 | } |
| 1174 | |
| 1175 | if (unlikely(is_range) && (page->index > end)) { |
| 1176 | done = 1; |
| 1177 | unlock_page(page); |
| 1178 | break; |
| 1179 | } |
| 1180 | |
| 1181 | if (next && (page->index != next)) { |
| 1182 | /* Not next consecutive page */ |
| 1183 | unlock_page(page); |
| 1184 | break; |
| 1185 | } |
| 1186 | |
| 1187 | if (wbc->sync_mode != WB_SYNC_NONE) |
| 1188 | wait_on_page_writeback(page); |
| 1189 | |
| 1190 | if (PageWriteback(page) || |
| 1191 | !test_clear_page_dirty(page)) { |
| 1192 | unlock_page(page); |
| 1193 | break; |
| 1194 | } |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1195 | |
| 1196 | if (page_offset(page) >= mapping->host->i_size) { |
| 1197 | done = 1; |
| 1198 | unlock_page(page); |
| 1199 | break; |
| 1200 | } |
| 1201 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1202 | /* |
| 1203 | * BB can we get rid of this? pages are held by pvec |
| 1204 | */ |
| 1205 | page_cache_get(page); |
| 1206 | |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1207 | len = min(mapping->host->i_size - page_offset(page), |
| 1208 | (loff_t)PAGE_CACHE_SIZE); |
| 1209 | |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1210 | /* reserve iov[0] for the smb header */ |
| 1211 | n_iov++; |
| 1212 | iov[n_iov].iov_base = kmap(page); |
Steve French | 84d2f07 | 2005-10-12 15:32:05 -0700 | [diff] [blame] | 1213 | iov[n_iov].iov_len = len; |
| 1214 | bytes_to_write += len; |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1215 | |
| 1216 | if (first < 0) { |
| 1217 | first = i; |
| 1218 | offset = page_offset(page); |
| 1219 | } |
| 1220 | next = page->index + 1; |
| 1221 | if (bytes_to_write + PAGE_CACHE_SIZE > cifs_sb->wsize) |
| 1222 | break; |
| 1223 | } |
| 1224 | if (n_iov) { |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1225 | /* Search for a writable handle every time we call |
| 1226 | * CIFSSMBWrite2. We can't rely on the last handle |
| 1227 | * we used to still be valid |
| 1228 | */ |
| 1229 | open_file = find_writable_file(CIFS_I(mapping->host)); |
| 1230 | if (!open_file) { |
| 1231 | cERROR(1, ("No writable handles for inode")); |
| 1232 | rc = -EBADF; |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 1233 | } else { |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1234 | rc = CIFSSMBWrite2(xid, cifs_sb->tcon, |
| 1235 | open_file->netfid, |
| 1236 | bytes_to_write, offset, |
| 1237 | &bytes_written, iov, n_iov, |
| 1238 | 1); |
| 1239 | atomic_dec(&open_file->wrtPending); |
| 1240 | if (rc || bytes_written < bytes_to_write) { |
| 1241 | cERROR(1,("Write2 ret %d, written = %d", |
| 1242 | rc, bytes_written)); |
| 1243 | /* BB what if continued retry is |
| 1244 | requested via mount flags? */ |
| 1245 | set_bit(AS_EIO, &mapping->flags); |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1246 | } else { |
| 1247 | cifs_stats_bytes_written(cifs_sb->tcon, |
| 1248 | bytes_written); |
| 1249 | } |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1250 | } |
| 1251 | for (i = 0; i < n_iov; i++) { |
| 1252 | page = pvec.pages[first + i]; |
Steve French | eb9bdaa | 2006-01-27 15:11:47 -0800 | [diff] [blame] | 1253 | /* Should we also set page error on |
| 1254 | success rc but too little data written? */ |
| 1255 | /* BB investigate retry logic on temporary |
| 1256 | server crash cases and how recovery works |
| 1257 | when page marked as error */ |
| 1258 | if(rc) |
| 1259 | SetPageError(page); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1260 | kunmap(page); |
| 1261 | unlock_page(page); |
| 1262 | page_cache_release(page); |
| 1263 | } |
| 1264 | if ((wbc->nr_to_write -= n_iov) <= 0) |
| 1265 | done = 1; |
| 1266 | index = next; |
| 1267 | } |
| 1268 | pagevec_release(&pvec); |
| 1269 | } |
| 1270 | if (!scanned && !done) { |
| 1271 | /* |
| 1272 | * We hit the last page and there is more work to be done: wrap |
| 1273 | * back to the start of the file |
| 1274 | */ |
| 1275 | scanned = 1; |
| 1276 | index = 0; |
| 1277 | goto retry; |
| 1278 | } |
| 1279 | if (!is_range) |
| 1280 | mapping->writeback_index = index; |
| 1281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | FreeXid(xid); |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | return rc; |
| 1285 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
| 1287 | static int cifs_writepage(struct page* page, struct writeback_control *wbc) |
| 1288 | { |
| 1289 | int rc = -EFAULT; |
| 1290 | int xid; |
| 1291 | |
| 1292 | xid = GetXid(); |
| 1293 | /* BB add check for wbc flags */ |
| 1294 | page_cache_get(page); |
| 1295 | if (!PageUptodate(page)) { |
| 1296 | cFYI(1, ("ppw - page not up to date")); |
| 1297 | } |
| 1298 | |
| 1299 | rc = cifs_partialpagewrite(page, 0, PAGE_CACHE_SIZE); |
| 1300 | SetPageUptodate(page); /* BB add check for error and Clearuptodate? */ |
| 1301 | unlock_page(page); |
| 1302 | page_cache_release(page); |
| 1303 | FreeXid(xid); |
| 1304 | return rc; |
| 1305 | } |
| 1306 | |
| 1307 | static int cifs_commit_write(struct file *file, struct page *page, |
| 1308 | unsigned offset, unsigned to) |
| 1309 | { |
| 1310 | int xid; |
| 1311 | int rc = 0; |
| 1312 | struct inode *inode = page->mapping->host; |
| 1313 | loff_t position = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to; |
| 1314 | char *page_data; |
| 1315 | |
| 1316 | xid = GetXid(); |
| 1317 | cFYI(1, ("commit write for page %p up to position %lld for %d", |
| 1318 | page, position, to)); |
| 1319 | if (position > inode->i_size) { |
| 1320 | i_size_write(inode, position); |
| 1321 | /* if (file->private_data == NULL) { |
| 1322 | rc = -EBADF; |
| 1323 | } else { |
| 1324 | open_file = (struct cifsFileInfo *)file->private_data; |
| 1325 | cifs_sb = CIFS_SB(inode->i_sb); |
| 1326 | rc = -EAGAIN; |
| 1327 | while (rc == -EAGAIN) { |
| 1328 | if ((open_file->invalidHandle) && |
| 1329 | (!open_file->closePend)) { |
| 1330 | rc = cifs_reopen_file( |
| 1331 | file->f_dentry->d_inode, file); |
| 1332 | if (rc != 0) |
| 1333 | break; |
| 1334 | } |
| 1335 | if (!open_file->closePend) { |
| 1336 | rc = CIFSSMBSetFileSize(xid, |
| 1337 | cifs_sb->tcon, position, |
| 1338 | open_file->netfid, |
| 1339 | open_file->pid, FALSE); |
| 1340 | } else { |
| 1341 | rc = -EBADF; |
| 1342 | break; |
| 1343 | } |
| 1344 | } |
| 1345 | cFYI(1, (" SetEOF (commit write) rc = %d", rc)); |
| 1346 | } */ |
| 1347 | } |
| 1348 | if (!PageUptodate(page)) { |
| 1349 | position = ((loff_t)page->index << PAGE_CACHE_SHIFT) + offset; |
| 1350 | /* can not rely on (or let) writepage write this data */ |
| 1351 | if (to < offset) { |
| 1352 | cFYI(1, ("Illegal offsets, can not copy from %d to %d", |
| 1353 | offset, to)); |
| 1354 | FreeXid(xid); |
| 1355 | return rc; |
| 1356 | } |
| 1357 | /* this is probably better than directly calling |
| 1358 | partialpage_write since in this function the file handle is |
| 1359 | known which we might as well leverage */ |
| 1360 | /* BB check if anything else missing out of ppw |
| 1361 | such as updating last write time */ |
| 1362 | page_data = kmap(page); |
| 1363 | rc = cifs_write(file, page_data + offset, to-offset, |
| 1364 | &position); |
| 1365 | if (rc > 0) |
| 1366 | rc = 0; |
| 1367 | /* else if (rc < 0) should we set writebehind rc? */ |
| 1368 | kunmap(page); |
| 1369 | } else { |
| 1370 | set_page_dirty(page); |
| 1371 | } |
| 1372 | |
| 1373 | FreeXid(xid); |
| 1374 | return rc; |
| 1375 | } |
| 1376 | |
| 1377 | int cifs_fsync(struct file *file, struct dentry *dentry, int datasync) |
| 1378 | { |
| 1379 | int xid; |
| 1380 | int rc = 0; |
| 1381 | struct inode *inode = file->f_dentry->d_inode; |
| 1382 | |
| 1383 | xid = GetXid(); |
| 1384 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1385 | cFYI(1, ("Sync file - name: %s datasync: 0x%x", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | dentry->d_name.name, datasync)); |
| 1387 | |
| 1388 | rc = filemap_fdatawrite(inode->i_mapping); |
| 1389 | if (rc == 0) |
| 1390 | CIFS_I(inode)->write_behind_rc = 0; |
| 1391 | FreeXid(xid); |
| 1392 | return rc; |
| 1393 | } |
| 1394 | |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1395 | /* static void cifs_sync_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | { |
| 1397 | struct address_space *mapping; |
| 1398 | struct inode *inode; |
| 1399 | unsigned long index = page->index; |
| 1400 | unsigned int rpages = 0; |
| 1401 | int rc = 0; |
| 1402 | |
| 1403 | cFYI(1, ("sync page %p",page)); |
| 1404 | mapping = page->mapping; |
| 1405 | if (!mapping) |
| 1406 | return 0; |
| 1407 | inode = mapping->host; |
| 1408 | if (!inode) |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1409 | return; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | |
| 1411 | /* fill in rpages then |
| 1412 | result = cifs_pagein_inode(inode, index, rpages); */ /* BB finish */ |
| 1413 | |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1414 | /* 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] | 1415 | |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1416 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | if (rc < 0) |
| 1418 | return rc; |
| 1419 | return 0; |
NeilBrown | 3978d71 | 2006-03-26 01:37:17 -0800 | [diff] [blame] | 1420 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | } */ |
| 1422 | |
| 1423 | /* |
| 1424 | * As file closes, flush all cached write data for this inode checking |
| 1425 | * for write behind errors. |
| 1426 | */ |
| 1427 | int cifs_flush(struct file *file) |
| 1428 | { |
| 1429 | struct inode * inode = file->f_dentry->d_inode; |
| 1430 | int rc = 0; |
| 1431 | |
| 1432 | /* Rather than do the steps manually: |
| 1433 | lock the inode for writing |
| 1434 | loop through pages looking for write behind data (dirty pages) |
| 1435 | coalesce into contiguous 16K (or smaller) chunks to write to server |
| 1436 | send to server (prefer in parallel) |
| 1437 | deal with writebehind errors |
| 1438 | unlock inode for writing |
| 1439 | filemapfdatawrite appears easier for the time being */ |
| 1440 | |
| 1441 | rc = filemap_fdatawrite(inode->i_mapping); |
| 1442 | if (!rc) /* reset wb rc if we were able to write out dirty pages */ |
| 1443 | CIFS_I(inode)->write_behind_rc = 0; |
| 1444 | |
| 1445 | cFYI(1, ("Flush inode %p file %p rc %d",inode,file,rc)); |
| 1446 | |
| 1447 | return rc; |
| 1448 | } |
| 1449 | |
| 1450 | ssize_t cifs_user_read(struct file *file, char __user *read_data, |
| 1451 | size_t read_size, loff_t *poffset) |
| 1452 | { |
| 1453 | int rc = -EACCES; |
| 1454 | unsigned int bytes_read = 0; |
| 1455 | unsigned int total_read = 0; |
| 1456 | unsigned int current_read_size; |
| 1457 | struct cifs_sb_info *cifs_sb; |
| 1458 | struct cifsTconInfo *pTcon; |
| 1459 | int xid; |
| 1460 | struct cifsFileInfo *open_file; |
| 1461 | char *smb_read_data; |
| 1462 | char __user *current_offset; |
| 1463 | struct smb_com_read_rsp *pSMBr; |
| 1464 | |
| 1465 | xid = GetXid(); |
| 1466 | cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 1467 | pTcon = cifs_sb->tcon; |
| 1468 | |
| 1469 | if (file->private_data == NULL) { |
| 1470 | FreeXid(xid); |
| 1471 | return -EBADF; |
| 1472 | } |
| 1473 | open_file = (struct cifsFileInfo *)file->private_data; |
| 1474 | |
| 1475 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) { |
| 1476 | cFYI(1, ("attempting read on write only file instance")); |
| 1477 | } |
| 1478 | for (total_read = 0, current_offset = read_data; |
| 1479 | read_size > total_read; |
| 1480 | total_read += bytes_read, current_offset += bytes_read) { |
| 1481 | current_read_size = min_t(const int, read_size - total_read, |
| 1482 | cifs_sb->rsize); |
| 1483 | rc = -EAGAIN; |
| 1484 | smb_read_data = NULL; |
| 1485 | while (rc == -EAGAIN) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1486 | int buf_type = CIFS_NO_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if ((open_file->invalidHandle) && |
| 1488 | (!open_file->closePend)) { |
| 1489 | rc = cifs_reopen_file(file->f_dentry->d_inode, |
| 1490 | file, TRUE); |
| 1491 | if (rc != 0) |
| 1492 | break; |
| 1493 | } |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1494 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1495 | open_file->netfid, |
| 1496 | current_read_size, *poffset, |
| 1497 | &bytes_read, &smb_read_data, |
| 1498 | &buf_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | pSMBr = (struct smb_com_read_rsp *)smb_read_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | if (smb_read_data) { |
Steve French | 93544cc | 2006-02-14 22:30:52 -0600 | [diff] [blame] | 1501 | if (copy_to_user(current_offset, |
| 1502 | smb_read_data + |
| 1503 | 4 /* RFC1001 length field */ + |
| 1504 | le16_to_cpu(pSMBr->DataOffset), |
| 1505 | bytes_read)) { |
| 1506 | rc = -EFAULT; |
| 1507 | } |
| 1508 | |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1509 | if(buf_type == CIFS_SMALL_BUFFER) |
| 1510 | cifs_small_buf_release(smb_read_data); |
| 1511 | else if(buf_type == CIFS_LARGE_BUFFER) |
| 1512 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | smb_read_data = NULL; |
| 1514 | } |
| 1515 | } |
| 1516 | if (rc || (bytes_read == 0)) { |
| 1517 | if (total_read) { |
| 1518 | break; |
| 1519 | } else { |
| 1520 | FreeXid(xid); |
| 1521 | return rc; |
| 1522 | } |
| 1523 | } else { |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1524 | cifs_stats_bytes_read(pTcon, bytes_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | *poffset += bytes_read; |
| 1526 | } |
| 1527 | } |
| 1528 | FreeXid(xid); |
| 1529 | return total_read; |
| 1530 | } |
| 1531 | |
| 1532 | |
| 1533 | static ssize_t cifs_read(struct file *file, char *read_data, size_t read_size, |
| 1534 | loff_t *poffset) |
| 1535 | { |
| 1536 | int rc = -EACCES; |
| 1537 | unsigned int bytes_read = 0; |
| 1538 | unsigned int total_read; |
| 1539 | unsigned int current_read_size; |
| 1540 | struct cifs_sb_info *cifs_sb; |
| 1541 | struct cifsTconInfo *pTcon; |
| 1542 | int xid; |
| 1543 | char *current_offset; |
| 1544 | struct cifsFileInfo *open_file; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1545 | int buf_type = CIFS_NO_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | |
| 1547 | xid = GetXid(); |
| 1548 | cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 1549 | pTcon = cifs_sb->tcon; |
| 1550 | |
| 1551 | if (file->private_data == NULL) { |
| 1552 | FreeXid(xid); |
| 1553 | return -EBADF; |
| 1554 | } |
| 1555 | open_file = (struct cifsFileInfo *)file->private_data; |
| 1556 | |
| 1557 | if ((file->f_flags & O_ACCMODE) == O_WRONLY) |
| 1558 | cFYI(1, ("attempting read on write only file instance")); |
| 1559 | |
| 1560 | for (total_read = 0, current_offset = read_data; |
| 1561 | read_size > total_read; |
| 1562 | total_read += bytes_read, current_offset += bytes_read) { |
| 1563 | current_read_size = min_t(const int, read_size - total_read, |
| 1564 | cifs_sb->rsize); |
Steve French | f9f5c817 | 2005-09-15 23:06:38 -0700 | [diff] [blame] | 1565 | /* For windows me and 9x we do not want to request more |
| 1566 | than it negotiated since it will refuse the read then */ |
| 1567 | if((pTcon->ses) && |
| 1568 | !(pTcon->ses->capabilities & CAP_LARGE_FILES)) { |
| 1569 | current_read_size = min_t(const int, current_read_size, |
| 1570 | pTcon->ses->server->maxBuf - 128); |
| 1571 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | rc = -EAGAIN; |
| 1573 | while (rc == -EAGAIN) { |
| 1574 | if ((open_file->invalidHandle) && |
| 1575 | (!open_file->closePend)) { |
| 1576 | rc = cifs_reopen_file(file->f_dentry->d_inode, |
| 1577 | file, TRUE); |
| 1578 | if (rc != 0) |
| 1579 | break; |
| 1580 | } |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1581 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1582 | open_file->netfid, |
| 1583 | current_read_size, *poffset, |
| 1584 | &bytes_read, ¤t_offset, |
| 1585 | &buf_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | } |
| 1587 | if (rc || (bytes_read == 0)) { |
| 1588 | if (total_read) { |
| 1589 | break; |
| 1590 | } else { |
| 1591 | FreeXid(xid); |
| 1592 | return rc; |
| 1593 | } |
| 1594 | } else { |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1595 | cifs_stats_bytes_read(pTcon, total_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | *poffset += bytes_read; |
| 1597 | } |
| 1598 | } |
| 1599 | FreeXid(xid); |
| 1600 | return total_read; |
| 1601 | } |
| 1602 | |
| 1603 | int cifs_file_mmap(struct file *file, struct vm_area_struct *vma) |
| 1604 | { |
| 1605 | struct dentry *dentry = file->f_dentry; |
| 1606 | int rc, xid; |
| 1607 | |
| 1608 | xid = GetXid(); |
| 1609 | rc = cifs_revalidate(dentry); |
| 1610 | if (rc) { |
| 1611 | cFYI(1, ("Validation prior to mmap failed, error=%d", rc)); |
| 1612 | FreeXid(xid); |
| 1613 | return rc; |
| 1614 | } |
| 1615 | rc = generic_file_mmap(file, vma); |
| 1616 | FreeXid(xid); |
| 1617 | return rc; |
| 1618 | } |
| 1619 | |
| 1620 | |
| 1621 | static void cifs_copy_cache_pages(struct address_space *mapping, |
| 1622 | struct list_head *pages, int bytes_read, char *data, |
| 1623 | struct pagevec *plru_pvec) |
| 1624 | { |
| 1625 | struct page *page; |
| 1626 | char *target; |
| 1627 | |
| 1628 | while (bytes_read > 0) { |
| 1629 | if (list_empty(pages)) |
| 1630 | break; |
| 1631 | |
| 1632 | page = list_entry(pages->prev, struct page, lru); |
| 1633 | list_del(&page->lru); |
| 1634 | |
| 1635 | if (add_to_page_cache(page, mapping, page->index, |
| 1636 | GFP_KERNEL)) { |
| 1637 | page_cache_release(page); |
| 1638 | cFYI(1, ("Add page cache failed")); |
Steve French | 3079ca6 | 2005-06-09 14:44:07 -0700 | [diff] [blame] | 1639 | data += PAGE_CACHE_SIZE; |
| 1640 | bytes_read -= PAGE_CACHE_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | continue; |
| 1642 | } |
| 1643 | |
| 1644 | target = kmap_atomic(page,KM_USER0); |
| 1645 | |
| 1646 | if (PAGE_CACHE_SIZE > bytes_read) { |
| 1647 | memcpy(target, data, bytes_read); |
| 1648 | /* zero the tail end of this partial page */ |
| 1649 | memset(target + bytes_read, 0, |
| 1650 | PAGE_CACHE_SIZE - bytes_read); |
| 1651 | bytes_read = 0; |
| 1652 | } else { |
| 1653 | memcpy(target, data, PAGE_CACHE_SIZE); |
| 1654 | bytes_read -= PAGE_CACHE_SIZE; |
| 1655 | } |
| 1656 | kunmap_atomic(target, KM_USER0); |
| 1657 | |
| 1658 | flush_dcache_page(page); |
| 1659 | SetPageUptodate(page); |
| 1660 | unlock_page(page); |
| 1661 | if (!pagevec_add(plru_pvec, page)) |
| 1662 | __pagevec_lru_add(plru_pvec); |
| 1663 | data += PAGE_CACHE_SIZE; |
| 1664 | } |
| 1665 | return; |
| 1666 | } |
| 1667 | |
| 1668 | static int cifs_readpages(struct file *file, struct address_space *mapping, |
| 1669 | struct list_head *page_list, unsigned num_pages) |
| 1670 | { |
| 1671 | int rc = -EACCES; |
| 1672 | int xid; |
| 1673 | loff_t offset; |
| 1674 | struct page *page; |
| 1675 | struct cifs_sb_info *cifs_sb; |
| 1676 | struct cifsTconInfo *pTcon; |
| 1677 | int bytes_read = 0; |
| 1678 | unsigned int read_size,i; |
| 1679 | char *smb_read_data = NULL; |
| 1680 | struct smb_com_read_rsp *pSMBr; |
| 1681 | struct pagevec lru_pvec; |
| 1682 | struct cifsFileInfo *open_file; |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1683 | int buf_type = CIFS_NO_BUFFER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | |
| 1685 | xid = GetXid(); |
| 1686 | if (file->private_data == NULL) { |
| 1687 | FreeXid(xid); |
| 1688 | return -EBADF; |
| 1689 | } |
| 1690 | open_file = (struct cifsFileInfo *)file->private_data; |
| 1691 | cifs_sb = CIFS_SB(file->f_dentry->d_sb); |
| 1692 | pTcon = cifs_sb->tcon; |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | pagevec_init(&lru_pvec, 0); |
| 1695 | |
| 1696 | for (i = 0; i < num_pages; ) { |
| 1697 | unsigned contig_pages; |
| 1698 | struct page *tmp_page; |
| 1699 | unsigned long expected_index; |
| 1700 | |
| 1701 | if (list_empty(page_list)) |
| 1702 | break; |
| 1703 | |
| 1704 | page = list_entry(page_list->prev, struct page, lru); |
| 1705 | offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1706 | |
| 1707 | /* count adjacent pages that we will read into */ |
| 1708 | contig_pages = 0; |
| 1709 | expected_index = |
| 1710 | list_entry(page_list->prev, struct page, lru)->index; |
| 1711 | list_for_each_entry_reverse(tmp_page,page_list,lru) { |
| 1712 | if (tmp_page->index == expected_index) { |
| 1713 | contig_pages++; |
| 1714 | expected_index++; |
| 1715 | } else |
| 1716 | break; |
| 1717 | } |
| 1718 | if (contig_pages + i > num_pages) |
| 1719 | contig_pages = num_pages - i; |
| 1720 | |
| 1721 | /* for reads over a certain size could initiate async |
| 1722 | read ahead */ |
| 1723 | |
| 1724 | read_size = contig_pages * PAGE_CACHE_SIZE; |
| 1725 | /* Read size needs to be in multiples of one page */ |
| 1726 | read_size = min_t(const unsigned int, read_size, |
| 1727 | cifs_sb->rsize & PAGE_CACHE_MASK); |
| 1728 | |
| 1729 | rc = -EAGAIN; |
| 1730 | while (rc == -EAGAIN) { |
| 1731 | if ((open_file->invalidHandle) && |
| 1732 | (!open_file->closePend)) { |
| 1733 | rc = cifs_reopen_file(file->f_dentry->d_inode, |
| 1734 | file, TRUE); |
| 1735 | if (rc != 0) |
| 1736 | break; |
| 1737 | } |
| 1738 | |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 1739 | rc = CIFSSMBRead(xid, pTcon, |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1740 | open_file->netfid, |
| 1741 | read_size, offset, |
| 1742 | &bytes_read, &smb_read_data, |
| 1743 | &buf_type); |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 1744 | /* BB more RC checks ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | if (rc== -EAGAIN) { |
| 1746 | if (smb_read_data) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1747 | if(buf_type == CIFS_SMALL_BUFFER) |
| 1748 | cifs_small_buf_release(smb_read_data); |
| 1749 | else if(buf_type == CIFS_LARGE_BUFFER) |
| 1750 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | smb_read_data = NULL; |
| 1752 | } |
| 1753 | } |
| 1754 | } |
| 1755 | if ((rc < 0) || (smb_read_data == NULL)) { |
| 1756 | cFYI(1, ("Read error in readpages: %d", rc)); |
| 1757 | /* clean up remaing pages off list */ |
| 1758 | while (!list_empty(page_list) && (i < num_pages)) { |
| 1759 | page = list_entry(page_list->prev, struct page, |
| 1760 | lru); |
| 1761 | list_del(&page->lru); |
| 1762 | page_cache_release(page); |
| 1763 | } |
| 1764 | break; |
| 1765 | } else if (bytes_read > 0) { |
| 1766 | pSMBr = (struct smb_com_read_rsp *)smb_read_data; |
| 1767 | cifs_copy_cache_pages(mapping, page_list, bytes_read, |
| 1768 | smb_read_data + 4 /* RFC1001 hdr */ + |
| 1769 | le16_to_cpu(pSMBr->DataOffset), &lru_pvec); |
| 1770 | |
| 1771 | i += bytes_read >> PAGE_CACHE_SHIFT; |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 1772 | cifs_stats_bytes_read(pTcon, bytes_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | if ((int)(bytes_read & PAGE_CACHE_MASK) != bytes_read) { |
| 1774 | i++; /* account for partial page */ |
| 1775 | |
| 1776 | /* server copy of file can have smaller size |
| 1777 | than client */ |
| 1778 | /* BB do we need to verify this common case ? |
| 1779 | this case is ok - if we are at server EOF |
| 1780 | we will hit it on next read */ |
| 1781 | |
| 1782 | /* while (!list_empty(page_list) && (i < num_pages)) { |
| 1783 | page = list_entry(page_list->prev, |
| 1784 | struct page, list); |
| 1785 | list_del(&page->list); |
| 1786 | page_cache_release(page); |
| 1787 | } |
| 1788 | break; */ |
| 1789 | } |
| 1790 | } else { |
| 1791 | cFYI(1, ("No bytes read (%d) at offset %lld . " |
| 1792 | "Cleaning remaining pages from readahead list", |
| 1793 | bytes_read, offset)); |
| 1794 | /* BB turn off caching and do new lookup on |
| 1795 | file size at server? */ |
| 1796 | while (!list_empty(page_list) && (i < num_pages)) { |
| 1797 | page = list_entry(page_list->prev, struct page, |
| 1798 | lru); |
| 1799 | list_del(&page->lru); |
| 1800 | |
| 1801 | /* BB removeme - replace with zero of page? */ |
| 1802 | page_cache_release(page); |
| 1803 | } |
| 1804 | break; |
| 1805 | } |
| 1806 | if (smb_read_data) { |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1807 | if(buf_type == CIFS_SMALL_BUFFER) |
| 1808 | cifs_small_buf_release(smb_read_data); |
| 1809 | else if(buf_type == CIFS_LARGE_BUFFER) |
| 1810 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | smb_read_data = NULL; |
| 1812 | } |
| 1813 | bytes_read = 0; |
| 1814 | } |
| 1815 | |
| 1816 | pagevec_lru_add(&lru_pvec); |
| 1817 | |
| 1818 | /* need to free smb_read_data buf before exit */ |
| 1819 | if (smb_read_data) { |
Steve French | 47c886b | 2006-01-18 14:20:39 -0800 | [diff] [blame] | 1820 | if(buf_type == CIFS_SMALL_BUFFER) |
| 1821 | cifs_small_buf_release(smb_read_data); |
| 1822 | else if(buf_type == CIFS_LARGE_BUFFER) |
| 1823 | cifs_buf_release(smb_read_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | smb_read_data = NULL; |
| 1825 | } |
| 1826 | |
| 1827 | FreeXid(xid); |
| 1828 | return rc; |
| 1829 | } |
| 1830 | |
| 1831 | static int cifs_readpage_worker(struct file *file, struct page *page, |
| 1832 | loff_t *poffset) |
| 1833 | { |
| 1834 | char *read_data; |
| 1835 | int rc; |
| 1836 | |
| 1837 | page_cache_get(page); |
| 1838 | read_data = kmap(page); |
| 1839 | /* for reads over a certain size could initiate async read ahead */ |
| 1840 | |
| 1841 | rc = cifs_read(file, read_data, PAGE_CACHE_SIZE, poffset); |
| 1842 | |
| 1843 | if (rc < 0) |
| 1844 | goto io_error; |
| 1845 | else |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1846 | cFYI(1, ("Bytes read %d",rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | |
| 1848 | file->f_dentry->d_inode->i_atime = |
| 1849 | current_fs_time(file->f_dentry->d_inode->i_sb); |
| 1850 | |
| 1851 | if (PAGE_CACHE_SIZE > rc) |
| 1852 | memset(read_data + rc, 0, PAGE_CACHE_SIZE - rc); |
| 1853 | |
| 1854 | flush_dcache_page(page); |
| 1855 | SetPageUptodate(page); |
| 1856 | rc = 0; |
| 1857 | |
| 1858 | io_error: |
| 1859 | kunmap(page); |
| 1860 | page_cache_release(page); |
| 1861 | return rc; |
| 1862 | } |
| 1863 | |
| 1864 | static int cifs_readpage(struct file *file, struct page *page) |
| 1865 | { |
| 1866 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1867 | int rc = -EACCES; |
| 1868 | int xid; |
| 1869 | |
| 1870 | xid = GetXid(); |
| 1871 | |
| 1872 | if (file->private_data == NULL) { |
| 1873 | FreeXid(xid); |
| 1874 | return -EBADF; |
| 1875 | } |
| 1876 | |
| 1877 | cFYI(1, ("readpage %p at offset %d 0x%x\n", |
| 1878 | page, (int)offset, (int)offset)); |
| 1879 | |
| 1880 | rc = cifs_readpage_worker(file, page, &offset); |
| 1881 | |
| 1882 | unlock_page(page); |
| 1883 | |
| 1884 | FreeXid(xid); |
| 1885 | return rc; |
| 1886 | } |
| 1887 | |
| 1888 | /* We do not want to update the file size from server for inodes |
| 1889 | open for write - to avoid races with writepage extending |
| 1890 | the file - in the future we could consider allowing |
| 1891 | refreshing the inode only on increases in the file size |
| 1892 | but this is tricky to do without racing with writebehind |
| 1893 | page caching in the current Linux kernel design */ |
| 1894 | int is_size_safe_to_change(struct cifsInodeInfo *cifsInode) |
| 1895 | { |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1896 | struct cifsFileInfo *open_file = NULL; |
| 1897 | |
| 1898 | if (cifsInode) |
| 1899 | open_file = find_writable_file(cifsInode); |
| 1900 | |
| 1901 | if(open_file) { |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1902 | struct cifs_sb_info *cifs_sb; |
| 1903 | |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1904 | /* there is not actually a write pending so let |
| 1905 | this handle go free and allow it to |
| 1906 | be closable if needed */ |
| 1907 | atomic_dec(&open_file->wrtPending); |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1908 | |
| 1909 | cifs_sb = CIFS_SB(cifsInode->vfs_inode.i_sb); |
| 1910 | if ( cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO ) { |
| 1911 | /* since no page cache to corrupt on directio |
| 1912 | we can change size safely */ |
| 1913 | return 1; |
| 1914 | } |
| 1915 | |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1916 | return 0; |
Steve French | 23e7dd7 | 2005-10-20 13:44:56 -0700 | [diff] [blame] | 1917 | } else |
Steve French | 6148a74 | 2005-10-05 12:23:19 -0700 | [diff] [blame] | 1918 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | } |
| 1920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | static int cifs_prepare_write(struct file *file, struct page *page, |
| 1922 | unsigned from, unsigned to) |
| 1923 | { |
| 1924 | int rc = 0; |
| 1925 | loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT; |
| 1926 | cFYI(1, ("prepare write for page %p from %d to %d",page,from,to)); |
| 1927 | if (!PageUptodate(page)) { |
| 1928 | /* if (to - from != PAGE_CACHE_SIZE) { |
| 1929 | void *kaddr = kmap_atomic(page, KM_USER0); |
| 1930 | memset(kaddr, 0, from); |
| 1931 | memset(kaddr + to, 0, PAGE_CACHE_SIZE - to); |
| 1932 | flush_dcache_page(page); |
| 1933 | kunmap_atomic(kaddr, KM_USER0); |
| 1934 | } */ |
| 1935 | /* If we are writing a full page it will be up to date, |
| 1936 | no need to read from the server */ |
| 1937 | if ((to == PAGE_CACHE_SIZE) && (from == 0)) |
| 1938 | SetPageUptodate(page); |
| 1939 | |
| 1940 | /* might as well read a page, it is fast enough */ |
| 1941 | if ((file->f_flags & O_ACCMODE) != O_WRONLY) { |
| 1942 | rc = cifs_readpage_worker(file, page, &offset); |
| 1943 | } else { |
| 1944 | /* should we try using another file handle if there is one - |
| 1945 | how would we lock it to prevent close of that handle |
| 1946 | racing with this read? |
| 1947 | In any case this will be written out by commit_write */ |
| 1948 | } |
| 1949 | } |
| 1950 | |
| 1951 | /* BB should we pass any errors back? |
| 1952 | e.g. if we do not have read access to the file */ |
| 1953 | return 0; |
| 1954 | } |
| 1955 | |
| 1956 | struct address_space_operations cifs_addr_ops = { |
| 1957 | .readpage = cifs_readpage, |
| 1958 | .readpages = cifs_readpages, |
| 1959 | .writepage = cifs_writepage, |
Steve French | 37c0eb4 | 2005-10-05 14:50:29 -0700 | [diff] [blame] | 1960 | .writepages = cifs_writepages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | .prepare_write = cifs_prepare_write, |
| 1962 | .commit_write = cifs_commit_write, |
| 1963 | .set_page_dirty = __set_page_dirty_nobuffers, |
| 1964 | /* .sync_page = cifs_sync_page, */ |
| 1965 | /* .direct_IO = */ |
| 1966 | }; |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 1967 | |
| 1968 | /* |
| 1969 | * cifs_readpages requires the server to support a buffer large enough to |
| 1970 | * contain the header plus one complete page of data. Otherwise, we need |
| 1971 | * to leave cifs_readpages out of the address space operations. |
| 1972 | */ |
| 1973 | struct address_space_operations cifs_addr_ops_smallbuf = { |
| 1974 | .readpage = cifs_readpage, |
| 1975 | .writepage = cifs_writepage, |
| 1976 | .writepages = cifs_writepages, |
| 1977 | .prepare_write = cifs_prepare_write, |
| 1978 | .commit_write = cifs_commit_write, |
| 1979 | .set_page_dirty = __set_page_dirty_nobuffers, |
| 1980 | /* .sync_page = cifs_sync_page, */ |
| 1981 | /* .direct_IO = */ |
| 1982 | }; |