blob: a0df3e73c2b128e01ede3519b1c2aae2d8b09f28 [file] [log] [blame]
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -07001/*
2 * linux/fs/9p/vfs_file.c
3 *
4 * This file contians vfs file ops for 9P2000.
5 *
6 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
8 *
9 * This program is free software; you can redistribute it and/or modify
Eric Van Hensbergen42e8c502006-03-25 03:07:28 -080010 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070012 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
23 *
24 */
25
26#include <linux/module.h>
27#include <linux/errno.h>
28#include <linux/fs.h>
Al Viro914e2632006-10-18 13:55:46 -040029#include <linux/sched.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070030#include <linux/file.h>
31#include <linux/stat.h>
32#include <linux/string.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070033#include <linux/inet.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070034#include <linux/list.h>
Abhishek Kulkarni637d0202009-09-22 11:34:05 -050035#include <linux/pagemap.h>
M. Mohan Kumara0990272010-09-27 11:34:24 +053036#include <linux/utsname.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070037#include <asm/uaccess.h>
38#include <linux/idr.h>
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050039#include <net/9p/9p.h>
40#include <net/9p/client.h>
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070041
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070042#include "v9fs.h"
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070043#include "v9fs_vfs.h"
44#include "fid.h"
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -050045#include "cache.h"
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070046
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +053047static const struct vm_operations_struct v9fs_file_vm_ops;
48
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070049/**
50 * v9fs_file_open - open a file (or directory)
51 * @inode: inode to be opened
52 * @file: file being opened
53 *
54 */
55
56int v9fs_file_open(struct inode *inode, struct file *file)
57{
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -080058 int err;
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +053059 struct v9fs_inode *v9inode;
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050060 struct v9fs_session_info *v9ses;
61 struct p9_fid *fid;
62 int omode;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -070063
Joe Perches5d385152011-11-28 10:40:46 -080064 p9_debug(P9_DEBUG_VFS, "inode: %p file: %p\n", inode, file);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +053065 v9inode = V9FS_I(inode);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050066 v9ses = v9fs_inode2v9ses(inode);
M. Mohan Kumaref565472010-06-22 19:47:50 +053067 if (v9fs_proto_dotl(v9ses))
Aneesh Kumar K.Vf88657c2011-08-03 19:55:32 +053068 omode = v9fs_open_to_dotl_flags(file->f_flags);
M. Mohan Kumaref565472010-06-22 19:47:50 +053069 else
70 omode = v9fs_uflags2omode(file->f_flags,
71 v9fs_proto_dotu(v9ses));
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050072 fid = file->private_data;
73 if (!fid) {
74 fid = v9fs_fid_clone(file->f_path.dentry);
75 if (IS_ERR(fid))
76 return PTR_ERR(fid);
77
78 err = p9_client_open(fid, omode);
Eric Van Hensbergen9523a842007-07-13 13:01:27 -050079 if (err < 0) {
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050080 p9_client_clunk(fid);
81 return err;
82 }
M. Mohan Kumaref565472010-06-22 19:47:50 +053083 if ((file->f_flags & O_APPEND) &&
84 (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)))
Eric Van Hensbergen2e4bef42008-06-24 17:39:39 -050085 generic_file_llseek(file, 0, SEEK_END);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -080086 }
87
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050088 file->private_data = fid;
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +053089 mutex_lock(&v9inode->v_mutex);
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +053090 if (v9ses->cache && !v9inode->writeback_fid &&
91 ((file->f_flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +053092 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +053093 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +053094 * we do it during open time instead of
95 * page dirty time via write_begin/page_mkwrite
96 * because we want write after unlink usecase
97 * to work.
98 */
99 fid = v9fs_writeback_fid(file->f_path.dentry);
100 if (IS_ERR(fid)) {
101 err = PTR_ERR(fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530102 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530103 goto out_error;
104 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530105 v9inode->writeback_fid = (void *) fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530106 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530107 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530108 if (v9ses->cache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500109 v9fs_cache_inode_set_cookie(inode, file);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700110 return 0;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530111out_error:
112 p9_client_clunk(file->private_data);
113 file->private_data = NULL;
114 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700115}
116
117/**
118 * v9fs_file_lock - lock a file (or directory)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600119 * @filp: file to be locked
120 * @cmd: lock command
121 * @fl: file lock structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700122 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600123 * Bugs: this looks like a local only lock, we should extend into 9P
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700124 * by using open exclusive
125 */
126
127static int v9fs_file_lock(struct file *filp, int cmd, struct file_lock *fl)
128{
129 int res = 0;
Al Viro496ad9a2013-01-23 17:07:38 -0500130 struct inode *inode = file_inode(filp);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700131
Joe Perches5d385152011-11-28 10:40:46 -0800132 p9_debug(P9_DEBUG_VFS, "filp: %p lock: %p\n", filp, fl);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700133
134 /* No mandatory locks */
Sachin Prabhuf78233d2010-03-13 09:03:55 -0600135 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700136 return -ENOLCK;
137
138 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800139 filemap_write_and_wait(inode->i_mapping);
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800140 invalidate_mapping_pages(&inode->i_data, 0, -1);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700141 }
142
143 return res;
144}
145
M. Mohan Kumara0990272010-09-27 11:34:24 +0530146static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl)
147{
148 struct p9_flock flock;
149 struct p9_fid *fid;
150 uint8_t status;
151 int res = 0;
152 unsigned char fl_type;
153
154 fid = filp->private_data;
155 BUG_ON(fid == NULL);
156
157 if ((fl->fl_flags & FL_POSIX) != FL_POSIX)
158 BUG();
159
160 res = posix_lock_file_wait(filp, fl);
161 if (res < 0)
162 goto out;
163
164 /* convert posix lock to p9 tlock args */
165 memset(&flock, 0, sizeof(flock));
Jim Garlick51b8b4f2011-08-21 00:21:18 +0530166 /* map the lock type */
167 switch (fl->fl_type) {
168 case F_RDLCK:
169 flock.type = P9_LOCK_TYPE_RDLCK;
170 break;
171 case F_WRLCK:
172 flock.type = P9_LOCK_TYPE_WRLCK;
173 break;
174 case F_UNLCK:
175 flock.type = P9_LOCK_TYPE_UNLCK;
176 break;
177 }
M. Mohan Kumara0990272010-09-27 11:34:24 +0530178 flock.start = fl->fl_start;
179 if (fl->fl_end == OFFSET_MAX)
180 flock.length = 0;
181 else
182 flock.length = fl->fl_end - fl->fl_start + 1;
183 flock.proc_id = fl->fl_pid;
Will Deacon50192ab2013-08-21 18:24:47 +0100184 flock.client_id = fid->clnt->name;
M. Mohan Kumara0990272010-09-27 11:34:24 +0530185 if (IS_SETLKW(cmd))
186 flock.flags = P9_LOCK_FLAGS_BLOCK;
187
188 /*
189 * if its a blocked request and we get P9_LOCK_BLOCKED as the status
190 * for lock request, keep on trying
191 */
192 for (;;) {
193 res = p9_client_lock_dotl(fid, &flock, &status);
194 if (res < 0)
195 break;
196
197 if (status != P9_LOCK_BLOCKED)
198 break;
199 if (status == P9_LOCK_BLOCKED && !IS_SETLKW(cmd))
200 break;
Jim Garlicka0ea7872012-01-03 15:27:50 -0600201 if (schedule_timeout_interruptible(P9_LOCK_TIMEOUT) != 0)
202 break;
M. Mohan Kumara0990272010-09-27 11:34:24 +0530203 }
204
205 /* map 9p status to VFS status */
206 switch (status) {
207 case P9_LOCK_SUCCESS:
208 res = 0;
209 break;
210 case P9_LOCK_BLOCKED:
211 res = -EAGAIN;
212 break;
213 case P9_LOCK_ERROR:
214 case P9_LOCK_GRACE:
215 res = -ENOLCK;
216 break;
217 default:
218 BUG();
219 }
220
221 /*
222 * incase server returned error for lock request, revert
223 * it locally
224 */
225 if (res < 0 && fl->fl_type != F_UNLCK) {
226 fl_type = fl->fl_type;
227 fl->fl_type = F_UNLCK;
228 res = posix_lock_file_wait(filp, fl);
229 fl->fl_type = fl_type;
230 }
231out:
232 return res;
233}
234
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530235static int v9fs_file_getlock(struct file *filp, struct file_lock *fl)
236{
237 struct p9_getlock glock;
238 struct p9_fid *fid;
239 int res = 0;
240
241 fid = filp->private_data;
242 BUG_ON(fid == NULL);
243
244 posix_test_lock(filp, fl);
245 /*
246 * if we have a conflicting lock locally, no need to validate
247 * with server
248 */
249 if (fl->fl_type != F_UNLCK)
250 return res;
251
252 /* convert posix lock to p9 tgetlock args */
253 memset(&glock, 0, sizeof(glock));
Jim Garlick51b8b4f2011-08-21 00:21:18 +0530254 glock.type = P9_LOCK_TYPE_UNLCK;
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530255 glock.start = fl->fl_start;
256 if (fl->fl_end == OFFSET_MAX)
257 glock.length = 0;
258 else
259 glock.length = fl->fl_end - fl->fl_start + 1;
260 glock.proc_id = fl->fl_pid;
Will Deacon50192ab2013-08-21 18:24:47 +0100261 glock.client_id = fid->clnt->name;
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530262
263 res = p9_client_getlock_dotl(fid, &glock);
264 if (res < 0)
265 return res;
Jim Garlick51b8b4f2011-08-21 00:21:18 +0530266 /* map 9p lock type to os lock type */
267 switch (glock.type) {
268 case P9_LOCK_TYPE_RDLCK:
269 fl->fl_type = F_RDLCK;
270 break;
271 case P9_LOCK_TYPE_WRLCK:
272 fl->fl_type = F_WRLCK;
273 break;
274 case P9_LOCK_TYPE_UNLCK:
275 fl->fl_type = F_UNLCK;
276 break;
277 }
278 if (glock.type != P9_LOCK_TYPE_UNLCK) {
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530279 fl->fl_start = glock.start;
280 if (glock.length == 0)
281 fl->fl_end = OFFSET_MAX;
282 else
283 fl->fl_end = glock.start + glock.length - 1;
284 fl->fl_pid = glock.proc_id;
Jim Garlick51b8b4f2011-08-21 00:21:18 +0530285 }
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530286 return res;
287}
288
M. Mohan Kumara0990272010-09-27 11:34:24 +0530289/**
290 * v9fs_file_lock_dotl - lock a file (or directory)
291 * @filp: file to be locked
292 * @cmd: lock command
293 * @fl: file lock structure
294 *
295 */
296
297static int v9fs_file_lock_dotl(struct file *filp, int cmd, struct file_lock *fl)
298{
Al Viro496ad9a2013-01-23 17:07:38 -0500299 struct inode *inode = file_inode(filp);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530300 int ret = -ENOLCK;
301
Joe Perches5d385152011-11-28 10:40:46 -0800302 p9_debug(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n",
303 filp, cmd, fl, filp->f_path.dentry->d_name.name);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530304
305 /* No mandatory locks */
306 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
307 goto out_err;
308
309 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
310 filemap_write_and_wait(inode->i_mapping);
311 invalidate_mapping_pages(&inode->i_data, 0, -1);
312 }
313
314 if (IS_SETLK(cmd) || IS_SETLKW(cmd))
315 ret = v9fs_file_do_lock(filp, cmd, fl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530316 else if (IS_GETLK(cmd))
317 ret = v9fs_file_getlock(filp, fl);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530318 else
319 ret = -EINVAL;
320out_err:
321 return ret;
322}
323
324/**
325 * v9fs_file_flock_dotl - lock a file
326 * @filp: file to be locked
327 * @cmd: lock command
328 * @fl: file lock structure
329 *
330 */
331
332static int v9fs_file_flock_dotl(struct file *filp, int cmd,
333 struct file_lock *fl)
334{
Al Viro496ad9a2013-01-23 17:07:38 -0500335 struct inode *inode = file_inode(filp);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530336 int ret = -ENOLCK;
337
Joe Perches5d385152011-11-28 10:40:46 -0800338 p9_debug(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n",
339 filp, cmd, fl, filp->f_path.dentry->d_name.name);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530340
341 /* No mandatory locks */
342 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
343 goto out_err;
344
345 if (!(fl->fl_flags & FL_FLOCK))
346 goto out_err;
347
348 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
349 filemap_write_and_wait(inode->i_mapping);
350 invalidate_mapping_pages(&inode->i_data, 0, -1);
351 }
352 /* Convert flock to posix lock */
353 fl->fl_owner = (fl_owner_t)filp;
354 fl->fl_start = 0;
355 fl->fl_end = OFFSET_MAX;
356 fl->fl_flags |= FL_POSIX;
357 fl->fl_flags ^= FL_FLOCK;
358
359 if (IS_SETLK(cmd) | IS_SETLKW(cmd))
360 ret = v9fs_file_do_lock(filp, cmd, fl);
361 else
362 ret = -EINVAL;
363out_err:
364 return ret;
365}
366
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700367/**
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530368 * v9fs_fid_readn - read from a fid
369 * @fid: fid to read
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700370 * @data: data buffer to read data into
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500371 * @udata: user data buffer to read data into
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700372 * @count: size of buffer
373 * @offset: offset at which to read data
374 *
375 */
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500376ssize_t
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530377v9fs_fid_readn(struct p9_fid *fid, char *data, char __user *udata, u32 count,
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500378 u64 offset)
379{
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000380 int n, total, size;
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500381
Joe Perches5d385152011-11-28 10:40:46 -0800382 p9_debug(P9_DEBUG_VFS, "fid %d offset %llu count %d\n",
383 fid->fid, (long long unsigned)offset, count);
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500384 n = 0;
385 total = 0;
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000386 size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500387 do {
388 n = p9_client_read(fid, data, udata, offset, count);
389 if (n <= 0)
390 break;
391
392 if (data)
393 data += n;
394 if (udata)
395 udata += n;
396
397 offset += n;
398 count -= n;
399 total += n;
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000400 } while (count > 0 && n == size);
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500401
402 if (n < 0)
403 total = n;
404
405 return total;
406}
407
408/**
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530409 * v9fs_file_readn - read from a file
410 * @filp: file pointer to read
411 * @data: data buffer to read data into
412 * @udata: user data buffer to read data into
413 * @count: size of buffer
414 * @offset: offset at which to read data
415 *
416 */
417ssize_t
418v9fs_file_readn(struct file *filp, char *data, char __user *udata, u32 count,
419 u64 offset)
420{
421 return v9fs_fid_readn(filp->private_data, data, udata, count, offset);
422}
423
424/**
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500425 * v9fs_file_read - read from a file
426 * @filp: file pointer to read
427 * @udata: user data buffer to read data into
428 * @count: size of buffer
429 * @offset: offset at which to read data
430 *
431 */
432
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700433static ssize_t
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500434v9fs_file_read(struct file *filp, char __user *udata, size_t count,
Latchesar Ionkov19cba8a2005-10-11 08:29:03 -0700435 loff_t * offset)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700436{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500437 int ret;
438 struct p9_fid *fid;
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000439 size_t size;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700440
Joe Perches5d385152011-11-28 10:40:46 -0800441 p9_debug(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500442 fid = filp->private_data;
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500443
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000444 size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
445 if (count > size)
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500446 ret = v9fs_file_readn(filp, NULL, udata, count, *offset);
447 else
448 ret = p9_client_read(fid, NULL, udata, *offset, count);
449
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500450 if (ret > 0)
451 *offset += ret;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700452
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500453 return ret;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700454}
455
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530456ssize_t
457v9fs_file_write_internal(struct inode *inode, struct p9_fid *fid,
458 const char __user *data, size_t count,
459 loff_t *offset, int invalidate)
460{
461 int n;
Aneesh Kumar K.Vfa6ea162011-02-28 17:04:04 +0530462 loff_t i_size;
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530463 size_t total = 0;
464 struct p9_client *clnt;
465 loff_t origin = *offset;
466 unsigned long pg_start, pg_end;
467
Joe Perches5d385152011-11-28 10:40:46 -0800468 p9_debug(P9_DEBUG_VFS, "data %p count %d offset %x\n",
469 data, (int)count, (int)*offset);
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530470
471 clnt = fid->clnt;
472 do {
473 n = p9_client_write(fid, NULL, data+total, origin+total, count);
474 if (n <= 0)
475 break;
476 count -= n;
477 total += n;
478 } while (count > 0);
479
480 if (invalidate && (total > 0)) {
481 pg_start = origin >> PAGE_CACHE_SHIFT;
482 pg_end = (origin + total - 1) >> PAGE_CACHE_SHIFT;
483 if (inode->i_mapping && inode->i_mapping->nrpages)
484 invalidate_inode_pages2_range(inode->i_mapping,
485 pg_start, pg_end);
486 *offset += total;
Aneesh Kumar K.Vfa6ea162011-02-28 17:04:04 +0530487 i_size = i_size_read(inode);
488 if (*offset > i_size) {
489 inode_add_bytes(inode, *offset - i_size);
490 i_size_write(inode, *offset);
491 }
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530492 }
493 if (n < 0)
494 return n;
495
496 return total;
497}
498
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700499/**
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700500 * v9fs_file_write - write to a file
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600501 * @filp: file pointer to write
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700502 * @data: data buffer to write data from
503 * @count: size of buffer
504 * @offset: offset at which to write data
505 *
506 */
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700507static ssize_t
508v9fs_file_write(struct file *filp, const char __user * data,
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530509 size_t count, loff_t *offset)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700510{
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530511 ssize_t retval = 0;
jvraofc0f2962010-03-08 22:07:02 +0000512 loff_t origin = *offset;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700513
Eric Van Hensbergendfb0ec22008-10-13 20:36:16 -0500514
Harsh Prateek Bora3834b122010-08-03 11:55:40 +0000515 retval = generic_write_checks(filp, &origin, &count, 0);
516 if (retval)
517 goto out;
518
519 retval = -EINVAL;
520 if ((ssize_t) count < 0)
521 goto out;
522 retval = 0;
523 if (!count)
524 goto out;
525
Al Viro496ad9a2013-01-23 17:07:38 -0500526 retval = v9fs_file_write_internal(file_inode(filp),
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530527 filp->private_data,
M. Mohan Kumaraaf0ef12011-03-16 21:40:49 +0530528 data, count, &origin, 1);
529 /* update offset on successful write */
530 if (retval > 0)
531 *offset = origin;
Harsh Prateek Bora3834b122010-08-03 11:55:40 +0000532out:
533 return retval;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700534}
535
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530536
Josef Bacik02c24a82011-07-16 20:44:56 -0400537static int v9fs_file_fsync(struct file *filp, loff_t start, loff_t end,
538 int datasync)
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600539{
540 struct p9_fid *fid;
Josef Bacik02c24a82011-07-16 20:44:56 -0400541 struct inode *inode = filp->f_mapping->host;
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600542 struct p9_wstat wstat;
543 int retval;
544
Josef Bacik02c24a82011-07-16 20:44:56 -0400545 retval = filemap_write_and_wait_range(inode->i_mapping, start, end);
546 if (retval)
547 return retval;
548
549 mutex_lock(&inode->i_mutex);
Joe Perches5d385152011-11-28 10:40:46 -0800550 p9_debug(P9_DEBUG_VFS, "filp %p datasync %x\n", filp, datasync);
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600551
552 fid = filp->private_data;
553 v9fs_blank_wstat(&wstat);
554
555 retval = p9_client_wstat(fid, &wstat);
Josef Bacik02c24a82011-07-16 20:44:56 -0400556 mutex_unlock(&inode->i_mutex);
557
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600558 return retval;
559}
560
Josef Bacik02c24a82011-07-16 20:44:56 -0400561int v9fs_file_fsync_dotl(struct file *filp, loff_t start, loff_t end,
562 int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700563{
564 struct p9_fid *fid;
Josef Bacik02c24a82011-07-16 20:44:56 -0400565 struct inode *inode = filp->f_mapping->host;
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700566 int retval;
567
Josef Bacik02c24a82011-07-16 20:44:56 -0400568 retval = filemap_write_and_wait_range(inode->i_mapping, start, end);
569 if (retval)
570 return retval;
571
572 mutex_lock(&inode->i_mutex);
Joe Perches5d385152011-11-28 10:40:46 -0800573 p9_debug(P9_DEBUG_VFS, "filp %p datasync %x\n", filp, datasync);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700574
575 fid = filp->private_data;
576
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -0700577 retval = p9_client_fsync(fid, datasync);
Josef Bacik02c24a82011-07-16 20:44:56 -0400578 mutex_unlock(&inode->i_mutex);
579
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700580 return retval;
581}
582
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530583static int
584v9fs_file_mmap(struct file *file, struct vm_area_struct *vma)
585{
586 int retval;
587
588 retval = generic_file_mmap(file, vma);
589 if (!retval)
590 vma->vm_ops = &v9fs_file_vm_ops;
591
592 return retval;
593}
594
595static int
596v9fs_vm_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
597{
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530598 struct v9fs_inode *v9inode;
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530599 struct page *page = vmf->page;
600 struct file *filp = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -0500601 struct inode *inode = file_inode(filp);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530602
603
Joe Perches5d385152011-11-28 10:40:46 -0800604 p9_debug(P9_DEBUG_VFS, "page %p fid %lx\n",
605 page, (unsigned long)filp->private_data);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530606
Jan Kara120c2bc2012-06-12 16:20:25 +0200607 /* Update file times before taking page lock */
608 file_update_time(filp);
609
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530610 v9inode = V9FS_I(inode);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530611 /* make sure the cache has finished storing the page */
612 v9fs_fscache_wait_on_page_write(inode, page);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530613 BUG_ON(!v9inode->writeback_fid);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530614 lock_page(page);
615 if (page->mapping != inode->i_mapping)
616 goto out_unlock;
Darrick J. Wong13575ca2013-02-21 16:42:53 -0800617 wait_for_stable_page(page);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530618
619 return VM_FAULT_LOCKED;
620out_unlock:
621 unlock_page(page);
622 return VM_FAULT_NOPAGE;
623}
624
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530625static ssize_t
626v9fs_direct_read(struct file *filp, char __user *udata, size_t count,
627 loff_t *offsetp)
628{
629 loff_t size, offset;
630 struct inode *inode;
631 struct address_space *mapping;
632
633 offset = *offsetp;
634 mapping = filp->f_mapping;
635 inode = mapping->host;
636 if (!count)
637 return 0;
638 size = i_size_read(inode);
639 if (offset < size)
640 filemap_write_and_wait_range(mapping, offset,
641 offset + count - 1);
642
643 return v9fs_file_read(filp, udata, count, offsetp);
644}
645
646/**
647 * v9fs_cached_file_read - read from a file
648 * @filp: file pointer to read
649 * @udata: user data buffer to read data into
650 * @count: size of buffer
651 * @offset: offset at which to read data
652 *
653 */
654static ssize_t
655v9fs_cached_file_read(struct file *filp, char __user *data, size_t count,
656 loff_t *offset)
657{
658 if (filp->f_flags & O_DIRECT)
659 return v9fs_direct_read(filp, data, count, offset);
660 return do_sync_read(filp, data, count, offset);
661}
662
663static ssize_t
664v9fs_direct_write(struct file *filp, const char __user * data,
665 size_t count, loff_t *offsetp)
666{
667 loff_t offset;
668 ssize_t retval;
669 struct inode *inode;
670 struct address_space *mapping;
671
672 offset = *offsetp;
673 mapping = filp->f_mapping;
674 inode = mapping->host;
675 if (!count)
676 return 0;
677
678 mutex_lock(&inode->i_mutex);
679 retval = filemap_write_and_wait_range(mapping, offset,
680 offset + count - 1);
681 if (retval)
682 goto err_out;
683 /*
684 * After a write we want buffered reads to be sure to go to disk to get
685 * the new data. We invalidate clean cached page from the region we're
686 * about to write. We do this *before* the write so that if we fail
687 * here we fall back to buffered write
688 */
689 if (mapping->nrpages) {
690 pgoff_t pg_start = offset >> PAGE_CACHE_SHIFT;
691 pgoff_t pg_end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
692
693 retval = invalidate_inode_pages2_range(mapping,
694 pg_start, pg_end);
695 /*
696 * If a page can not be invalidated, fall back
697 * to buffered write.
698 */
699 if (retval) {
700 if (retval == -EBUSY)
701 goto buff_write;
702 goto err_out;
703 }
704 }
705 retval = v9fs_file_write(filp, data, count, offsetp);
706err_out:
707 mutex_unlock(&inode->i_mutex);
708 return retval;
709
710buff_write:
711 mutex_unlock(&inode->i_mutex);
712 return do_sync_write(filp, data, count, offsetp);
713}
714
715/**
716 * v9fs_cached_file_write - write to a file
717 * @filp: file pointer to write
718 * @data: data buffer to write data from
719 * @count: size of buffer
720 * @offset: offset at which to write data
721 *
722 */
723static ssize_t
724v9fs_cached_file_write(struct file *filp, const char __user * data,
725 size_t count, loff_t *offset)
726{
727
728 if (filp->f_flags & O_DIRECT)
729 return v9fs_direct_write(filp, data, count, offset);
730 return do_sync_write(filp, data, count, offset);
731}
732
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530733static const struct vm_operations_struct v9fs_file_vm_ops = {
734 .fault = filemap_fault,
735 .page_mkwrite = v9fs_vm_page_mkwrite,
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -0700736 .remap_pages = generic_file_remap_pages,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530737};
738
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530739
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530740const struct file_operations v9fs_cached_file_operations = {
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600741 .llseek = generic_file_llseek,
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530742 .read = v9fs_cached_file_read,
743 .write = v9fs_cached_file_write,
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600744 .aio_read = generic_file_aio_read,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530745 .aio_write = generic_file_aio_write,
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600746 .open = v9fs_file_open,
747 .release = v9fs_dir_release,
748 .lock = v9fs_file_lock,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530749 .mmap = v9fs_file_mmap,
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600750 .fsync = v9fs_file_fsync,
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600751};
752
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530753const struct file_operations v9fs_cached_file_operations_dotl = {
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700754 .llseek = generic_file_llseek,
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530755 .read = v9fs_cached_file_read,
756 .write = v9fs_cached_file_write,
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700757 .aio_read = generic_file_aio_read,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530758 .aio_write = generic_file_aio_write,
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700759 .open = v9fs_file_open,
760 .release = v9fs_dir_release,
M. Mohan Kumara0990272010-09-27 11:34:24 +0530761 .lock = v9fs_file_lock_dotl,
762 .flock = v9fs_file_flock_dotl,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530763 .mmap = v9fs_file_mmap,
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700764 .fsync = v9fs_file_fsync_dotl,
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700765};
766
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800767const struct file_operations v9fs_file_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700768 .llseek = generic_file_llseek,
769 .read = v9fs_file_read,
770 .write = v9fs_file_write,
771 .open = v9fs_file_open,
772 .release = v9fs_dir_release,
773 .lock = v9fs_file_lock,
Eric Van Hensbergen14b88692008-02-06 19:25:05 -0600774 .mmap = generic_file_readonly_mmap,
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600775 .fsync = v9fs_file_fsync,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700776};
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000777
778const struct file_operations v9fs_file_operations_dotl = {
779 .llseek = generic_file_llseek,
780 .read = v9fs_file_read,
781 .write = v9fs_file_write,
782 .open = v9fs_file_open,
783 .release = v9fs_dir_release,
M. Mohan Kumara0990272010-09-27 11:34:24 +0530784 .lock = v9fs_file_lock_dotl,
785 .flock = v9fs_file_flock_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000786 .mmap = generic_file_readonly_mmap,
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700787 .fsync = v9fs_file_fsync_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000788};