blob: 3c173fcc2c5a0902be016dd20e6a48411f5d3a55 [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
M. Mohan Kumaref565472010-06-22 19:47:50 +053064 P9_DPRINTK(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))
68 omode = file->f_flags;
69 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_TRUNC) {
Abhishek Kulkarni7549ae32009-09-22 11:34:05 -050084 i_size_write(inode, 0);
Eric Van Hensbergen9523a842007-07-13 13:01:27 -050085 inode->i_blocks = 0;
86 }
M. Mohan Kumaref565472010-06-22 19:47:50 +053087 if ((file->f_flags & O_APPEND) &&
88 (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses)))
Eric Van Hensbergen2e4bef42008-06-24 17:39:39 -050089 generic_file_llseek(file, 0, SEEK_END);
Latchesar Ionkov6a3124a2006-03-02 02:54:30 -080090 }
91
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -050092 file->private_data = fid;
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +053093 mutex_lock(&v9inode->v_mutex);
Aneesh Kumar K.V7add6972011-03-08 16:39:49 +053094 if (v9ses->cache && !v9inode->writeback_fid &&
95 ((file->f_flags & O_ACCMODE) != O_RDONLY)) {
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +053096 /*
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +053097 * clone a fid and add it to writeback_fid
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +053098 * we do it during open time instead of
99 * page dirty time via write_begin/page_mkwrite
100 * because we want write after unlink usecase
101 * to work.
102 */
103 fid = v9fs_writeback_fid(file->f_path.dentry);
104 if (IS_ERR(fid)) {
105 err = PTR_ERR(fid);
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530106 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530107 goto out_error;
108 }
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530109 v9inode->writeback_fid = (void *) fid;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530110 }
Aneesh Kumar K.V5a7e0a82011-03-08 16:39:46 +0530111 mutex_unlock(&v9inode->v_mutex);
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530112#ifdef CONFIG_9P_FSCACHE
Aneesh Kumar K.V46848de2011-02-28 17:03:55 +0530113 if (v9ses->cache)
Abhishek Kulkarni60e78d22009-09-23 13:00:27 -0500114 v9fs_cache_inode_set_cookie(inode, file);
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530115#endif
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700116 return 0;
Aneesh Kumar K.V3cf387d2011-02-28 17:03:57 +0530117out_error:
118 p9_client_clunk(file->private_data);
119 file->private_data = NULL;
120 return err;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700121}
122
123/**
124 * v9fs_file_lock - lock a file (or directory)
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600125 * @filp: file to be locked
126 * @cmd: lock command
127 * @fl: file lock structure
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700128 *
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600129 * Bugs: this looks like a local only lock, we should extend into 9P
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700130 * by using open exclusive
131 */
132
133static int v9fs_file_lock(struct file *filp, int cmd, struct file_lock *fl)
134{
135 int res = 0;
Josef "Jeff" Sipekd6f787b2006-12-08 02:36:45 -0800136 struct inode *inode = filp->f_path.dentry->d_inode;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700137
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500138 P9_DPRINTK(P9_DEBUG_VFS, "filp: %p lock: %p\n", filp, fl);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700139
140 /* No mandatory locks */
Sachin Prabhuf78233d2010-03-13 09:03:55 -0600141 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700142 return -ENOLCK;
143
144 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800145 filemap_write_and_wait(inode->i_mapping);
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800146 invalidate_mapping_pages(&inode->i_data, 0, -1);
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700147 }
148
149 return res;
150}
151
M. Mohan Kumara0990272010-09-27 11:34:24 +0530152static int v9fs_file_do_lock(struct file *filp, int cmd, struct file_lock *fl)
153{
154 struct p9_flock flock;
155 struct p9_fid *fid;
156 uint8_t status;
157 int res = 0;
158 unsigned char fl_type;
159
160 fid = filp->private_data;
161 BUG_ON(fid == NULL);
162
163 if ((fl->fl_flags & FL_POSIX) != FL_POSIX)
164 BUG();
165
166 res = posix_lock_file_wait(filp, fl);
167 if (res < 0)
168 goto out;
169
170 /* convert posix lock to p9 tlock args */
171 memset(&flock, 0, sizeof(flock));
172 flock.type = fl->fl_type;
173 flock.start = fl->fl_start;
174 if (fl->fl_end == OFFSET_MAX)
175 flock.length = 0;
176 else
177 flock.length = fl->fl_end - fl->fl_start + 1;
178 flock.proc_id = fl->fl_pid;
179 flock.client_id = utsname()->nodename;
180 if (IS_SETLKW(cmd))
181 flock.flags = P9_LOCK_FLAGS_BLOCK;
182
183 /*
184 * if its a blocked request and we get P9_LOCK_BLOCKED as the status
185 * for lock request, keep on trying
186 */
187 for (;;) {
188 res = p9_client_lock_dotl(fid, &flock, &status);
189 if (res < 0)
190 break;
191
192 if (status != P9_LOCK_BLOCKED)
193 break;
194 if (status == P9_LOCK_BLOCKED && !IS_SETLKW(cmd))
195 break;
196 schedule_timeout_interruptible(P9_LOCK_TIMEOUT);
197 }
198
199 /* map 9p status to VFS status */
200 switch (status) {
201 case P9_LOCK_SUCCESS:
202 res = 0;
203 break;
204 case P9_LOCK_BLOCKED:
205 res = -EAGAIN;
206 break;
207 case P9_LOCK_ERROR:
208 case P9_LOCK_GRACE:
209 res = -ENOLCK;
210 break;
211 default:
212 BUG();
213 }
214
215 /*
216 * incase server returned error for lock request, revert
217 * it locally
218 */
219 if (res < 0 && fl->fl_type != F_UNLCK) {
220 fl_type = fl->fl_type;
221 fl->fl_type = F_UNLCK;
222 res = posix_lock_file_wait(filp, fl);
223 fl->fl_type = fl_type;
224 }
225out:
226 return res;
227}
228
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530229static int v9fs_file_getlock(struct file *filp, struct file_lock *fl)
230{
231 struct p9_getlock glock;
232 struct p9_fid *fid;
233 int res = 0;
234
235 fid = filp->private_data;
236 BUG_ON(fid == NULL);
237
238 posix_test_lock(filp, fl);
239 /*
240 * if we have a conflicting lock locally, no need to validate
241 * with server
242 */
243 if (fl->fl_type != F_UNLCK)
244 return res;
245
246 /* convert posix lock to p9 tgetlock args */
247 memset(&glock, 0, sizeof(glock));
248 glock.type = fl->fl_type;
249 glock.start = fl->fl_start;
250 if (fl->fl_end == OFFSET_MAX)
251 glock.length = 0;
252 else
253 glock.length = fl->fl_end - fl->fl_start + 1;
254 glock.proc_id = fl->fl_pid;
255 glock.client_id = utsname()->nodename;
256
257 res = p9_client_getlock_dotl(fid, &glock);
258 if (res < 0)
259 return res;
260 if (glock.type != F_UNLCK) {
261 fl->fl_type = glock.type;
262 fl->fl_start = glock.start;
263 if (glock.length == 0)
264 fl->fl_end = OFFSET_MAX;
265 else
266 fl->fl_end = glock.start + glock.length - 1;
267 fl->fl_pid = glock.proc_id;
268 } else
269 fl->fl_type = F_UNLCK;
270
271 return res;
272}
273
M. Mohan Kumara0990272010-09-27 11:34:24 +0530274/**
275 * v9fs_file_lock_dotl - lock a file (or directory)
276 * @filp: file to be locked
277 * @cmd: lock command
278 * @fl: file lock structure
279 *
280 */
281
282static int v9fs_file_lock_dotl(struct file *filp, int cmd, struct file_lock *fl)
283{
284 struct inode *inode = filp->f_path.dentry->d_inode;
285 int ret = -ENOLCK;
286
287 P9_DPRINTK(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n", filp,
288 cmd, fl, filp->f_path.dentry->d_name.name);
289
290 /* No mandatory locks */
291 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
292 goto out_err;
293
294 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
295 filemap_write_and_wait(inode->i_mapping);
296 invalidate_mapping_pages(&inode->i_data, 0, -1);
297 }
298
299 if (IS_SETLK(cmd) || IS_SETLKW(cmd))
300 ret = v9fs_file_do_lock(filp, cmd, fl);
M. Mohan Kumar1d769cd2010-09-27 12:22:13 +0530301 else if (IS_GETLK(cmd))
302 ret = v9fs_file_getlock(filp, fl);
M. Mohan Kumara0990272010-09-27 11:34:24 +0530303 else
304 ret = -EINVAL;
305out_err:
306 return ret;
307}
308
309/**
310 * v9fs_file_flock_dotl - lock a file
311 * @filp: file to be locked
312 * @cmd: lock command
313 * @fl: file lock structure
314 *
315 */
316
317static int v9fs_file_flock_dotl(struct file *filp, int cmd,
318 struct file_lock *fl)
319{
320 struct inode *inode = filp->f_path.dentry->d_inode;
321 int ret = -ENOLCK;
322
323 P9_DPRINTK(P9_DEBUG_VFS, "filp: %p cmd:%d lock: %p name: %s\n", filp,
324 cmd, fl, filp->f_path.dentry->d_name.name);
325
326 /* No mandatory locks */
327 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
328 goto out_err;
329
330 if (!(fl->fl_flags & FL_FLOCK))
331 goto out_err;
332
333 if ((IS_SETLK(cmd) || IS_SETLKW(cmd)) && fl->fl_type != F_UNLCK) {
334 filemap_write_and_wait(inode->i_mapping);
335 invalidate_mapping_pages(&inode->i_data, 0, -1);
336 }
337 /* Convert flock to posix lock */
338 fl->fl_owner = (fl_owner_t)filp;
339 fl->fl_start = 0;
340 fl->fl_end = OFFSET_MAX;
341 fl->fl_flags |= FL_POSIX;
342 fl->fl_flags ^= FL_FLOCK;
343
344 if (IS_SETLK(cmd) | IS_SETLKW(cmd))
345 ret = v9fs_file_do_lock(filp, cmd, fl);
346 else
347 ret = -EINVAL;
348out_err:
349 return ret;
350}
351
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700352/**
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530353 * v9fs_fid_readn - read from a fid
354 * @fid: fid to read
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700355 * @data: data buffer to read data into
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500356 * @udata: user data buffer to read data into
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700357 * @count: size of buffer
358 * @offset: offset at which to read data
359 *
360 */
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500361ssize_t
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530362v9fs_fid_readn(struct p9_fid *fid, char *data, char __user *udata, u32 count,
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500363 u64 offset)
364{
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000365 int n, total, size;
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500366
Eric Van Hensbergen51a87c52008-10-16 08:30:07 -0500367 P9_DPRINTK(P9_DEBUG_VFS, "fid %d offset %llu count %d\n", fid->fid,
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530368 (long long unsigned) offset, count);
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500369 n = 0;
370 total = 0;
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000371 size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500372 do {
373 n = p9_client_read(fid, data, udata, offset, count);
374 if (n <= 0)
375 break;
376
377 if (data)
378 data += n;
379 if (udata)
380 udata += n;
381
382 offset += n;
383 count -= n;
384 total += n;
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000385 } while (count > 0 && n == size);
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500386
387 if (n < 0)
388 total = n;
389
390 return total;
391}
392
393/**
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530394 * v9fs_file_readn - read from a file
395 * @filp: file pointer to read
396 * @data: data buffer to read data into
397 * @udata: user data buffer to read data into
398 * @count: size of buffer
399 * @offset: offset at which to read data
400 *
401 */
402ssize_t
403v9fs_file_readn(struct file *filp, char *data, char __user *udata, u32 count,
404 u64 offset)
405{
406 return v9fs_fid_readn(filp->private_data, data, udata, count, offset);
407}
408
409/**
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500410 * v9fs_file_read - read from a file
411 * @filp: file pointer to read
412 * @udata: user data buffer to read data into
413 * @count: size of buffer
414 * @offset: offset at which to read data
415 *
416 */
417
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700418static ssize_t
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500419v9fs_file_read(struct file *filp, char __user *udata, size_t count,
Latchesar Ionkov19cba8a2005-10-11 08:29:03 -0700420 loff_t * offset)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700421{
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500422 int ret;
423 struct p9_fid *fid;
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000424 size_t size;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700425
Eric Van Hensbergenea2e7992008-10-22 18:48:45 -0500426 P9_DPRINTK(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset);
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500427 fid = filp->private_data;
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500428
M. Mohan Kumar97e84422010-06-04 11:59:07 +0000429 size = fid->iounit ? fid->iounit : fid->clnt->msize - P9_IOHDRSZ;
430 if (count > size)
Eric Van Hensbergenfbedadc2008-10-13 20:36:16 -0500431 ret = v9fs_file_readn(filp, NULL, udata, count, *offset);
432 else
433 ret = p9_client_read(fid, NULL, udata, *offset, count);
434
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500435 if (ret > 0)
436 *offset += ret;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700437
Latchesar Ionkovbd238fb2007-07-10 17:57:28 -0500438 return ret;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700439}
440
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530441ssize_t
442v9fs_file_write_internal(struct inode *inode, struct p9_fid *fid,
443 const char __user *data, size_t count,
444 loff_t *offset, int invalidate)
445{
446 int n;
Aneesh Kumar K.Vfa6ea162011-02-28 17:04:04 +0530447 loff_t i_size;
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530448 size_t total = 0;
449 struct p9_client *clnt;
450 loff_t origin = *offset;
451 unsigned long pg_start, pg_end;
452
453 P9_DPRINTK(P9_DEBUG_VFS, "data %p count %d offset %x\n", data,
454 (int)count, (int)*offset);
455
456 clnt = fid->clnt;
457 do {
458 n = p9_client_write(fid, NULL, data+total, origin+total, count);
459 if (n <= 0)
460 break;
461 count -= n;
462 total += n;
463 } while (count > 0);
464
465 if (invalidate && (total > 0)) {
466 pg_start = origin >> PAGE_CACHE_SHIFT;
467 pg_end = (origin + total - 1) >> PAGE_CACHE_SHIFT;
468 if (inode->i_mapping && inode->i_mapping->nrpages)
469 invalidate_inode_pages2_range(inode->i_mapping,
470 pg_start, pg_end);
471 *offset += total;
Aneesh Kumar K.Vfa6ea162011-02-28 17:04:04 +0530472 i_size = i_size_read(inode);
473 if (*offset > i_size) {
474 inode_add_bytes(inode, *offset - i_size);
475 i_size_write(inode, *offset);
476 }
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530477 }
478 if (n < 0)
479 return n;
480
481 return total;
482}
483
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700484/**
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700485 * v9fs_file_write - write to a file
Eric Van Hensbergenee443992008-03-05 07:08:09 -0600486 * @filp: file pointer to write
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700487 * @data: data buffer to write data from
488 * @count: size of buffer
489 * @offset: offset at which to write data
490 *
491 */
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700492static ssize_t
493v9fs_file_write(struct file *filp, const char __user * data,
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530494 size_t count, loff_t *offset)
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700495{
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530496 ssize_t retval = 0;
jvraofc0f2962010-03-08 22:07:02 +0000497 loff_t origin = *offset;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700498
Eric Van Hensbergendfb0ec22008-10-13 20:36:16 -0500499
Harsh Prateek Bora3834b122010-08-03 11:55:40 +0000500 retval = generic_write_checks(filp, &origin, &count, 0);
501 if (retval)
502 goto out;
503
504 retval = -EINVAL;
505 if ((ssize_t) count < 0)
506 goto out;
507 retval = 0;
508 if (!count)
509 goto out;
510
M. Mohan Kumaraaf0ef12011-03-16 21:40:49 +0530511 retval = v9fs_file_write_internal(filp->f_path.dentry->d_inode,
Aneesh Kumar K.V17311772011-02-28 17:03:56 +0530512 filp->private_data,
M. Mohan Kumaraaf0ef12011-03-16 21:40:49 +0530513 data, count, &origin, 1);
514 /* update offset on successful write */
515 if (retval > 0)
516 *offset = origin;
Harsh Prateek Bora3834b122010-08-03 11:55:40 +0000517out:
518 return retval;
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700519}
520
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530521
Josef Bacik02c24a82011-07-16 20:44:56 -0400522static int v9fs_file_fsync(struct file *filp, loff_t start, loff_t end,
523 int datasync)
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600524{
525 struct p9_fid *fid;
Josef Bacik02c24a82011-07-16 20:44:56 -0400526 struct inode *inode = filp->f_mapping->host;
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600527 struct p9_wstat wstat;
528 int retval;
529
Josef Bacik02c24a82011-07-16 20:44:56 -0400530 retval = filemap_write_and_wait_range(inode->i_mapping, start, end);
531 if (retval)
532 return retval;
533
534 mutex_lock(&inode->i_mutex);
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200535 P9_DPRINTK(P9_DEBUG_VFS, "filp %p datasync %x\n", filp, datasync);
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600536
537 fid = filp->private_data;
538 v9fs_blank_wstat(&wstat);
539
540 retval = p9_client_wstat(fid, &wstat);
Josef Bacik02c24a82011-07-16 20:44:56 -0400541 mutex_unlock(&inode->i_mutex);
542
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600543 return retval;
544}
545
Josef Bacik02c24a82011-07-16 20:44:56 -0400546int v9fs_file_fsync_dotl(struct file *filp, loff_t start, loff_t end,
547 int datasync)
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700548{
549 struct p9_fid *fid;
Josef Bacik02c24a82011-07-16 20:44:56 -0400550 struct inode *inode = filp->f_mapping->host;
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700551 int retval;
552
Josef Bacik02c24a82011-07-16 20:44:56 -0400553 retval = filemap_write_and_wait_range(inode->i_mapping, start, end);
554 if (retval)
555 return retval;
556
557 mutex_lock(&inode->i_mutex);
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700558 P9_DPRINTK(P9_DEBUG_VFS, "v9fs_file_fsync_dotl: filp %p datasync %x\n",
559 filp, datasync);
560
561 fid = filp->private_data;
562
Venkateswararao Jujjuri (JV)b165d602010-10-22 10:13:12 -0700563 retval = p9_client_fsync(fid, datasync);
Josef Bacik02c24a82011-07-16 20:44:56 -0400564 mutex_unlock(&inode->i_mutex);
565
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700566 return retval;
567}
568
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530569static int
570v9fs_file_mmap(struct file *file, struct vm_area_struct *vma)
571{
572 int retval;
573
574 retval = generic_file_mmap(file, vma);
575 if (!retval)
576 vma->vm_ops = &v9fs_file_vm_ops;
577
578 return retval;
579}
580
581static int
582v9fs_vm_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
583{
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530584 struct v9fs_inode *v9inode;
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530585 struct page *page = vmf->page;
586 struct file *filp = vma->vm_file;
587 struct inode *inode = filp->f_path.dentry->d_inode;
588
589
590 P9_DPRINTK(P9_DEBUG_VFS, "page %p fid %lx\n",
591 page, (unsigned long)filp->private_data);
592
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530593 v9inode = V9FS_I(inode);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530594 /* make sure the cache has finished storing the page */
595 v9fs_fscache_wait_on_page_write(inode, page);
Aneesh Kumar K.V6b39f6d2011-02-28 17:04:03 +0530596 BUG_ON(!v9inode->writeback_fid);
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530597 lock_page(page);
598 if (page->mapping != inode->i_mapping)
599 goto out_unlock;
600
601 return VM_FAULT_LOCKED;
602out_unlock:
603 unlock_page(page);
604 return VM_FAULT_NOPAGE;
605}
606
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530607static ssize_t
608v9fs_direct_read(struct file *filp, char __user *udata, size_t count,
609 loff_t *offsetp)
610{
611 loff_t size, offset;
612 struct inode *inode;
613 struct address_space *mapping;
614
615 offset = *offsetp;
616 mapping = filp->f_mapping;
617 inode = mapping->host;
618 if (!count)
619 return 0;
620 size = i_size_read(inode);
621 if (offset < size)
622 filemap_write_and_wait_range(mapping, offset,
623 offset + count - 1);
624
625 return v9fs_file_read(filp, udata, count, offsetp);
626}
627
628/**
629 * v9fs_cached_file_read - read from a file
630 * @filp: file pointer to read
631 * @udata: user data buffer to read data into
632 * @count: size of buffer
633 * @offset: offset at which to read data
634 *
635 */
636static ssize_t
637v9fs_cached_file_read(struct file *filp, char __user *data, size_t count,
638 loff_t *offset)
639{
640 if (filp->f_flags & O_DIRECT)
641 return v9fs_direct_read(filp, data, count, offset);
642 return do_sync_read(filp, data, count, offset);
643}
644
645static ssize_t
646v9fs_direct_write(struct file *filp, const char __user * data,
647 size_t count, loff_t *offsetp)
648{
649 loff_t offset;
650 ssize_t retval;
651 struct inode *inode;
652 struct address_space *mapping;
653
654 offset = *offsetp;
655 mapping = filp->f_mapping;
656 inode = mapping->host;
657 if (!count)
658 return 0;
659
660 mutex_lock(&inode->i_mutex);
661 retval = filemap_write_and_wait_range(mapping, offset,
662 offset + count - 1);
663 if (retval)
664 goto err_out;
665 /*
666 * After a write we want buffered reads to be sure to go to disk to get
667 * the new data. We invalidate clean cached page from the region we're
668 * about to write. We do this *before* the write so that if we fail
669 * here we fall back to buffered write
670 */
671 if (mapping->nrpages) {
672 pgoff_t pg_start = offset >> PAGE_CACHE_SHIFT;
673 pgoff_t pg_end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
674
675 retval = invalidate_inode_pages2_range(mapping,
676 pg_start, pg_end);
677 /*
678 * If a page can not be invalidated, fall back
679 * to buffered write.
680 */
681 if (retval) {
682 if (retval == -EBUSY)
683 goto buff_write;
684 goto err_out;
685 }
686 }
687 retval = v9fs_file_write(filp, data, count, offsetp);
688err_out:
689 mutex_unlock(&inode->i_mutex);
690 return retval;
691
692buff_write:
693 mutex_unlock(&inode->i_mutex);
694 return do_sync_write(filp, data, count, offsetp);
695}
696
697/**
698 * v9fs_cached_file_write - write to a file
699 * @filp: file pointer to write
700 * @data: data buffer to write data from
701 * @count: size of buffer
702 * @offset: offset at which to write data
703 *
704 */
705static ssize_t
706v9fs_cached_file_write(struct file *filp, const char __user * data,
707 size_t count, loff_t *offset)
708{
709
710 if (filp->f_flags & O_DIRECT)
711 return v9fs_direct_write(filp, data, count, offset);
712 return do_sync_write(filp, data, count, offset);
713}
714
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530715static const struct vm_operations_struct v9fs_file_vm_ops = {
716 .fault = filemap_fault,
717 .page_mkwrite = v9fs_vm_page_mkwrite,
718};
719
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530720
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530721const struct file_operations v9fs_cached_file_operations = {
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600722 .llseek = generic_file_llseek,
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530723 .read = v9fs_cached_file_read,
724 .write = v9fs_cached_file_write,
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600725 .aio_read = generic_file_aio_read,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530726 .aio_write = generic_file_aio_write,
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600727 .open = v9fs_file_open,
728 .release = v9fs_dir_release,
729 .lock = v9fs_file_lock,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530730 .mmap = v9fs_file_mmap,
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600731 .fsync = v9fs_file_fsync,
Eric Van Hensbergene03abc02007-02-11 13:21:39 -0600732};
733
Aneesh Kumar K.V29236f42011-02-28 17:03:54 +0530734const struct file_operations v9fs_cached_file_operations_dotl = {
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700735 .llseek = generic_file_llseek,
Aneesh Kumar K.Ve959b542011-02-28 17:04:04 +0530736 .read = v9fs_cached_file_read,
737 .write = v9fs_cached_file_write,
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700738 .aio_read = generic_file_aio_read,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530739 .aio_write = generic_file_aio_write,
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700740 .open = v9fs_file_open,
741 .release = v9fs_dir_release,
M. Mohan Kumara0990272010-09-27 11:34:24 +0530742 .lock = v9fs_file_lock_dotl,
743 .flock = v9fs_file_flock_dotl,
Aneesh Kumar K.V7263ceb2011-02-28 17:03:58 +0530744 .mmap = v9fs_file_mmap,
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700745 .fsync = v9fs_file_fsync_dotl,
Venkateswararao Jujjuri (JV)b04faaf2010-09-22 16:30:52 -0700746};
747
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800748const struct file_operations v9fs_file_operations = {
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700749 .llseek = generic_file_llseek,
750 .read = v9fs_file_read,
751 .write = v9fs_file_write,
752 .open = v9fs_file_open,
753 .release = v9fs_dir_release,
754 .lock = v9fs_file_lock,
Eric Van Hensbergen14b88692008-02-06 19:25:05 -0600755 .mmap = generic_file_readonly_mmap,
M. Mohan Kumar7a4439c2010-02-08 15:36:48 -0600756 .fsync = v9fs_file_fsync,
Eric Van Hensbergene69e7fe2005-09-09 13:04:18 -0700757};
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000758
759const struct file_operations v9fs_file_operations_dotl = {
760 .llseek = generic_file_llseek,
761 .read = v9fs_file_read,
762 .write = v9fs_file_write,
763 .open = v9fs_file_open,
764 .release = v9fs_dir_release,
M. Mohan Kumara0990272010-09-27 11:34:24 +0530765 .lock = v9fs_file_lock_dotl,
766 .flock = v9fs_file_flock_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000767 .mmap = generic_file_readonly_mmap,
Venkateswararao Jujjuri (JV)920e65d2010-09-22 17:19:19 -0700768 .fsync = v9fs_file_fsync_dotl,
Sripathi Kodi9b6533c2010-03-25 12:41:54 +0000769};