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