2005-09-09 22:10:30 +02:00
|
|
|
/*
|
|
|
|
FUSE: Filesystem in Userspace
|
2006-04-11 21:16:51 +02:00
|
|
|
Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
|
2005-09-09 22:10:30 +02:00
|
|
|
|
|
|
|
This program can be distributed under the terms of the GNU GPL.
|
|
|
|
See the file COPYING.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fuse_i.h"
|
|
|
|
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/kernel.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-20 23:22:52 +02:00
|
|
|
#include <linux/sched.h>
|
2005-09-09 22:10:30 +02:00
|
|
|
|
2006-03-28 11:56:42 +02:00
|
|
|
static const struct file_operations fuse_direct_io_file_operations;
|
2005-09-09 22:10:37 +02:00
|
|
|
|
2005-11-07 09:59:51 +01:00
|
|
|
static int fuse_send_open(struct inode *inode, struct file *file, int isdir,
|
|
|
|
struct fuse_open_out *outargp)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
struct fuse_open_in inarg;
|
2005-11-07 09:59:51 +01:00
|
|
|
struct fuse_req *req;
|
|
|
|
int err;
|
|
|
|
|
2006-04-11 07:54:58 +02:00
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return PTR_ERR(req);
|
2005-11-07 09:59:51 +01:00
|
|
|
|
|
|
|
memset(&inarg, 0, sizeof(inarg));
|
2007-10-18 12:07:02 +02:00
|
|
|
inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
|
|
|
|
if (!fc->atomic_o_trunc)
|
|
|
|
inarg.flags &= ~O_TRUNC;
|
2005-11-07 09:59:51 +01:00
|
|
|
req->in.h.opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
|
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(inarg);
|
|
|
|
req->in.args[0].value = &inarg;
|
|
|
|
req->out.numargs = 1;
|
|
|
|
req->out.args[0].size = sizeof(*outargp);
|
|
|
|
req->out.args[0].value = outargp;
|
|
|
|
request_send(fc, req);
|
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct fuse_file *fuse_file_alloc(void)
|
|
|
|
{
|
|
|
|
struct fuse_file *ff;
|
|
|
|
ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
|
|
|
|
if (ff) {
|
2006-06-25 14:48:52 +02:00
|
|
|
ff->reserved_req = fuse_request_alloc();
|
|
|
|
if (!ff->reserved_req) {
|
2005-11-07 09:59:51 +01:00
|
|
|
kfree(ff);
|
|
|
|
ff = NULL;
|
2007-11-15 02:00:02 +01:00
|
|
|
} else {
|
|
|
|
INIT_LIST_HEAD(&ff->write_entry);
|
|
|
|
atomic_set(&ff->count, 0);
|
2005-11-07 09:59:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fuse_file_free(struct fuse_file *ff)
|
|
|
|
{
|
2006-06-25 14:48:52 +02:00
|
|
|
fuse_request_free(ff->reserved_req);
|
2005-11-07 09:59:51 +01:00
|
|
|
kfree(ff);
|
|
|
|
}
|
|
|
|
|
2007-10-17 08:31:00 +02:00
|
|
|
static struct fuse_file *fuse_file_get(struct fuse_file *ff)
|
|
|
|
{
|
|
|
|
atomic_inc(&ff->count);
|
|
|
|
return ff;
|
|
|
|
}
|
|
|
|
|
2007-10-17 08:31:04 +02:00
|
|
|
static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
|
|
|
|
{
|
2008-02-06 10:38:39 +01:00
|
|
|
dput(req->misc.release.dentry);
|
|
|
|
mntput(req->misc.release.vfsmount);
|
2007-10-17 08:31:04 +02:00
|
|
|
fuse_put_request(fc, req);
|
|
|
|
}
|
|
|
|
|
2007-10-17 08:31:00 +02:00
|
|
|
static void fuse_file_put(struct fuse_file *ff)
|
|
|
|
{
|
|
|
|
if (atomic_dec_and_test(&ff->count)) {
|
|
|
|
struct fuse_req *req = ff->reserved_req;
|
2008-02-06 10:38:39 +01:00
|
|
|
struct inode *inode = req->misc.release.dentry->d_inode;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2007-10-17 08:31:04 +02:00
|
|
|
req->end = fuse_release_end;
|
2007-10-17 08:31:00 +02:00
|
|
|
request_send_background(fc, req);
|
|
|
|
kfree(ff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-07 09:59:51 +01:00
|
|
|
void fuse_finish_open(struct inode *inode, struct file *file,
|
|
|
|
struct fuse_file *ff, struct fuse_open_out *outarg)
|
|
|
|
{
|
|
|
|
if (outarg->open_flags & FOPEN_DIRECT_IO)
|
|
|
|
file->f_op = &fuse_direct_io_file_operations;
|
|
|
|
if (!(outarg->open_flags & FOPEN_KEEP_CACHE))
|
2007-10-17 08:31:01 +02:00
|
|
|
invalidate_inode_pages2(inode->i_mapping);
|
2005-11-07 09:59:51 +01:00
|
|
|
ff->fh = outarg->fh;
|
2007-10-17 08:31:00 +02:00
|
|
|
file->private_data = fuse_file_get(ff);
|
2005-11-07 09:59:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int fuse_open_common(struct inode *inode, struct file *file, int isdir)
|
|
|
|
{
|
2005-09-09 22:10:30 +02:00
|
|
|
struct fuse_open_out outarg;
|
|
|
|
struct fuse_file *ff;
|
|
|
|
int err;
|
|
|
|
|
2005-09-30 20:59:02 +02:00
|
|
|
/* VFS checks this, but only _after_ ->open() */
|
|
|
|
if (file->f_flags & O_DIRECT)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2005-09-09 22:10:30 +02:00
|
|
|
err = generic_file_open(inode, file);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2005-11-07 09:59:51 +01:00
|
|
|
ff = fuse_file_alloc();
|
2005-09-09 22:10:30 +02:00
|
|
|
if (!ff)
|
2005-11-07 09:59:51 +01:00
|
|
|
return -ENOMEM;
|
2005-09-09 22:10:30 +02:00
|
|
|
|
2005-11-07 09:59:51 +01:00
|
|
|
err = fuse_send_open(inode, file, isdir, &outarg);
|
|
|
|
if (err)
|
|
|
|
fuse_file_free(ff);
|
|
|
|
else {
|
|
|
|
if (isdir)
|
|
|
|
outarg.open_flags &= ~FOPEN_DIRECT_IO;
|
|
|
|
fuse_finish_open(inode, file, ff, &outarg);
|
2005-09-09 22:10:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-10-17 08:31:00 +02:00
|
|
|
void fuse_release_fill(struct fuse_file *ff, u64 nodeid, int flags, int opcode)
|
2006-01-17 07:14:42 +01:00
|
|
|
{
|
2006-06-25 14:48:52 +02:00
|
|
|
struct fuse_req *req = ff->reserved_req;
|
2008-02-06 10:38:39 +01:00
|
|
|
struct fuse_release_in *inarg = &req->misc.release.in;
|
2005-09-09 22:10:30 +02:00
|
|
|
|
|
|
|
inarg->fh = ff->fh;
|
2005-11-07 09:59:51 +01:00
|
|
|
inarg->flags = flags;
|
2006-06-25 14:48:50 +02:00
|
|
|
req->in.h.opcode = opcode;
|
2005-11-07 09:59:51 +01:00
|
|
|
req->in.h.nodeid = nodeid;
|
2005-09-09 22:10:30 +02:00
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(struct fuse_release_in);
|
|
|
|
req->in.args[0].value = inarg;
|
2005-11-07 09:59:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int fuse_release_common(struct inode *inode, struct file *file, int isdir)
|
|
|
|
{
|
|
|
|
struct fuse_file *ff = file->private_data;
|
|
|
|
if (ff) {
|
2007-10-18 12:07:03 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2008-02-06 10:38:39 +01:00
|
|
|
struct fuse_req *req = ff->reserved_req;
|
2007-10-18 12:07:03 +02:00
|
|
|
|
2007-10-17 08:31:00 +02:00
|
|
|
fuse_release_fill(ff, get_node_id(inode), file->f_flags,
|
|
|
|
isdir ? FUSE_RELEASEDIR : FUSE_RELEASE);
|
2006-06-25 14:48:50 +02:00
|
|
|
|
|
|
|
/* Hold vfsmount and dentry until release is finished */
|
2008-02-06 10:38:39 +01:00
|
|
|
req->misc.release.vfsmount = mntget(file->f_path.mnt);
|
|
|
|
req->misc.release.dentry = dget(file->f_path.dentry);
|
2007-10-18 12:07:03 +02:00
|
|
|
|
|
|
|
spin_lock(&fc->lock);
|
|
|
|
list_del(&ff->write_entry);
|
|
|
|
spin_unlock(&fc->lock);
|
2007-10-17 08:31:00 +02:00
|
|
|
/*
|
|
|
|
* Normally this will send the RELEASE request,
|
|
|
|
* however if some asynchronous READ or WRITE requests
|
|
|
|
* are outstanding, the sending will be delayed
|
|
|
|
*/
|
|
|
|
fuse_file_put(ff);
|
2005-11-07 09:59:51 +01:00
|
|
|
}
|
2005-09-09 22:10:30 +02:00
|
|
|
|
|
|
|
/* Return value is ignored by VFS */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-09 22:10:36 +02:00
|
|
|
static int fuse_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return fuse_open_common(inode, file, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return fuse_release_common(inode, file, 0);
|
|
|
|
}
|
|
|
|
|
2006-06-25 14:48:52 +02:00
|
|
|
/*
|
2006-06-25 14:48:55 +02:00
|
|
|
* Scramble the ID space with XTEA, so that the value of the files_struct
|
|
|
|
* pointer is not exposed to userspace.
|
2006-06-25 14:48:52 +02:00
|
|
|
*/
|
2007-10-18 12:07:04 +02:00
|
|
|
u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
|
2006-06-25 14:48:52 +02:00
|
|
|
{
|
2006-06-25 14:48:55 +02:00
|
|
|
u32 *k = fc->scramble_key;
|
|
|
|
u64 v = (unsigned long) id;
|
|
|
|
u32 v0 = v;
|
|
|
|
u32 v1 = v >> 32;
|
|
|
|
u32 sum = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 32; i++) {
|
|
|
|
v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
|
|
|
|
sum += 0x9E3779B9;
|
|
|
|
v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (u64) v0 + ((u64) v1 << 32);
|
2006-06-25 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
2006-06-23 11:05:12 +02:00
|
|
|
static int fuse_flush(struct file *file, fl_owner_t id)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2005-09-09 22:10:30 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
struct fuse_file *ff = file->private_data;
|
|
|
|
struct fuse_req *req;
|
|
|
|
struct fuse_flush_in inarg;
|
|
|
|
int err;
|
|
|
|
|
2006-01-06 09:19:39 +01:00
|
|
|
if (is_bad_inode(inode))
|
|
|
|
return -EIO;
|
|
|
|
|
2005-09-09 22:10:30 +02:00
|
|
|
if (fc->no_flush)
|
|
|
|
return 0;
|
|
|
|
|
2006-06-25 14:48:52 +02:00
|
|
|
req = fuse_get_req_nofail(fc, file);
|
2005-09-09 22:10:30 +02:00
|
|
|
memset(&inarg, 0, sizeof(inarg));
|
|
|
|
inarg.fh = ff->fh;
|
2006-06-25 14:48:55 +02:00
|
|
|
inarg.lock_owner = fuse_lock_owner_id(fc, id);
|
2005-09-09 22:10:30 +02:00
|
|
|
req->in.h.opcode = FUSE_FLUSH;
|
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(inarg);
|
|
|
|
req->in.args[0].value = &inarg;
|
2006-06-25 14:48:52 +02:00
|
|
|
req->force = 1;
|
2005-09-09 22:10:39 +02:00
|
|
|
request_send(fc, req);
|
2005-09-09 22:10:30 +02:00
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
if (err == -ENOSYS) {
|
|
|
|
fc->no_flush = 1;
|
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2005-09-09 22:10:38 +02:00
|
|
|
int fuse_fsync_common(struct file *file, struct dentry *de, int datasync,
|
|
|
|
int isdir)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
|
|
|
struct inode *inode = de->d_inode;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
struct fuse_file *ff = file->private_data;
|
|
|
|
struct fuse_req *req;
|
|
|
|
struct fuse_fsync_in inarg;
|
|
|
|
int err;
|
|
|
|
|
2006-01-06 09:19:39 +01:00
|
|
|
if (is_bad_inode(inode))
|
|
|
|
return -EIO;
|
|
|
|
|
2005-09-09 22:10:38 +02:00
|
|
|
if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
|
2005-09-09 22:10:30 +02:00
|
|
|
return 0;
|
|
|
|
|
2006-04-11 07:54:58 +02:00
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return PTR_ERR(req);
|
2005-09-09 22:10:30 +02:00
|
|
|
|
|
|
|
memset(&inarg, 0, sizeof(inarg));
|
|
|
|
inarg.fh = ff->fh;
|
|
|
|
inarg.fsync_flags = datasync ? 1 : 0;
|
2005-09-09 22:10:38 +02:00
|
|
|
req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
|
2005-09-09 22:10:30 +02:00
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(inarg);
|
|
|
|
req->in.args[0].value = &inarg;
|
|
|
|
request_send(fc, req);
|
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
if (err == -ENOSYS) {
|
2005-09-09 22:10:38 +02:00
|
|
|
if (isdir)
|
|
|
|
fc->no_fsyncdir = 1;
|
|
|
|
else
|
|
|
|
fc->no_fsync = 1;
|
2005-09-09 22:10:30 +02:00
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2005-09-09 22:10:38 +02:00
|
|
|
static int fuse_fsync(struct file *file, struct dentry *de, int datasync)
|
|
|
|
{
|
|
|
|
return fuse_fsync_common(file, de, datasync, 0);
|
|
|
|
}
|
|
|
|
|
2007-11-29 01:22:00 +01:00
|
|
|
void fuse_read_fill(struct fuse_req *req, struct file *file,
|
2006-01-17 07:14:45 +01:00
|
|
|
struct inode *inode, loff_t pos, size_t count, int opcode)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
2006-01-17 07:14:45 +01:00
|
|
|
struct fuse_read_in *inarg = &req->misc.read_in;
|
2007-11-29 01:22:00 +01:00
|
|
|
struct fuse_file *ff = file->private_data;
|
2005-09-09 22:10:30 +02:00
|
|
|
|
2006-01-17 07:14:45 +01:00
|
|
|
inarg->fh = ff->fh;
|
|
|
|
inarg->offset = pos;
|
|
|
|
inarg->size = count;
|
2007-11-29 01:22:00 +01:00
|
|
|
inarg->flags = file->f_flags;
|
2006-01-17 07:14:45 +01:00
|
|
|
req->in.h.opcode = opcode;
|
2005-09-09 22:10:30 +02:00
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(struct fuse_read_in);
|
2006-01-17 07:14:46 +01:00
|
|
|
req->in.args[0].value = inarg;
|
2005-09-09 22:10:30 +02:00
|
|
|
req->out.argpages = 1;
|
|
|
|
req->out.argvar = 1;
|
|
|
|
req->out.numargs = 1;
|
|
|
|
req->out.args[0].size = count;
|
|
|
|
}
|
|
|
|
|
2006-01-17 07:14:28 +01:00
|
|
|
static size_t fuse_send_read(struct fuse_req *req, struct file *file,
|
2007-10-18 12:07:04 +02:00
|
|
|
struct inode *inode, loff_t pos, size_t count,
|
|
|
|
fl_owner_t owner)
|
2005-09-09 22:10:36 +02:00
|
|
|
{
|
2006-01-17 07:14:45 +01:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2007-10-18 12:07:04 +02:00
|
|
|
|
2007-11-29 01:22:00 +01:00
|
|
|
fuse_read_fill(req, file, inode, pos, count, FUSE_READ);
|
2007-10-18 12:07:04 +02:00
|
|
|
if (owner != NULL) {
|
|
|
|
struct fuse_read_in *inarg = &req->misc.read_in;
|
|
|
|
|
|
|
|
inarg->read_flags |= FUSE_READ_LOCKOWNER;
|
|
|
|
inarg->lock_owner = fuse_lock_owner_id(fc, owner);
|
|
|
|
}
|
2006-01-17 07:14:45 +01:00
|
|
|
request_send(fc, req);
|
|
|
|
return req->out.args[0].size;
|
2005-09-09 22:10:36 +02:00
|
|
|
}
|
|
|
|
|
2005-09-09 22:10:30 +02:00
|
|
|
static int fuse_readpage(struct file *file, struct page *page)
|
|
|
|
{
|
|
|
|
struct inode *inode = page->mapping->host;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2006-01-06 09:19:39 +01:00
|
|
|
struct fuse_req *req;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = -EIO;
|
|
|
|
if (is_bad_inode(inode))
|
|
|
|
goto out;
|
|
|
|
|
2006-04-11 07:54:58 +02:00
|
|
|
req = fuse_get_req(fc);
|
|
|
|
err = PTR_ERR(req);
|
|
|
|
if (IS_ERR(req))
|
2005-09-09 22:10:30 +02:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
req->out.page_zeroing = 1;
|
|
|
|
req->num_pages = 1;
|
|
|
|
req->pages[0] = page;
|
2007-10-18 12:07:04 +02:00
|
|
|
fuse_send_read(req, file, inode, page_offset(page), PAGE_CACHE_SIZE,
|
|
|
|
NULL);
|
2005-09-09 22:10:30 +02:00
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
if (!err)
|
|
|
|
SetPageUptodate(page);
|
2005-09-09 22:10:38 +02:00
|
|
|
fuse_invalidate_attr(inode); /* atime changed */
|
2005-09-09 22:10:30 +02:00
|
|
|
out:
|
|
|
|
unlock_page(page);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2006-01-17 07:14:46 +01:00
|
|
|
static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
|
2005-09-09 22:10:33 +02:00
|
|
|
{
|
2006-01-17 07:14:46 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
fuse_invalidate_attr(req->pages[0]->mapping->host); /* atime changed */
|
|
|
|
|
2005-09-09 22:10:33 +02:00
|
|
|
for (i = 0; i < req->num_pages; i++) {
|
|
|
|
struct page *page = req->pages[i];
|
|
|
|
if (!req->out.h.error)
|
|
|
|
SetPageUptodate(page);
|
2006-01-17 07:14:46 +01:00
|
|
|
else
|
|
|
|
SetPageError(page);
|
2005-09-09 22:10:33 +02:00
|
|
|
unlock_page(page);
|
|
|
|
}
|
2007-10-17 08:31:00 +02:00
|
|
|
if (req->ff)
|
|
|
|
fuse_file_put(req->ff);
|
2006-01-17 07:14:46 +01:00
|
|
|
fuse_put_request(fc, req);
|
|
|
|
}
|
|
|
|
|
2007-11-29 01:22:00 +01:00
|
|
|
static void fuse_send_readpages(struct fuse_req *req, struct file *file,
|
2006-01-17 07:14:46 +01:00
|
|
|
struct inode *inode)
|
|
|
|
{
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
loff_t pos = page_offset(req->pages[0]);
|
|
|
|
size_t count = req->num_pages << PAGE_CACHE_SHIFT;
|
|
|
|
req->out.page_zeroing = 1;
|
2007-11-29 01:22:00 +01:00
|
|
|
fuse_read_fill(req, file, inode, pos, count, FUSE_READ);
|
2006-02-01 12:04:40 +01:00
|
|
|
if (fc->async_read) {
|
2007-11-29 01:22:00 +01:00
|
|
|
struct fuse_file *ff = file->private_data;
|
2007-10-17 08:31:00 +02:00
|
|
|
req->ff = fuse_file_get(ff);
|
2006-02-01 12:04:40 +01:00
|
|
|
req->end = fuse_readpages_end;
|
|
|
|
request_send_background(fc, req);
|
|
|
|
} else {
|
|
|
|
request_send(fc, req);
|
|
|
|
fuse_readpages_end(fc, req);
|
|
|
|
}
|
2005-09-09 22:10:33 +02:00
|
|
|
}
|
|
|
|
|
2007-10-17 08:31:00 +02:00
|
|
|
struct fuse_fill_data {
|
2005-09-09 22:10:33 +02:00
|
|
|
struct fuse_req *req;
|
2007-11-29 01:22:00 +01:00
|
|
|
struct file *file;
|
2005-09-09 22:10:33 +02:00
|
|
|
struct inode *inode;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int fuse_readpages_fill(void *_data, struct page *page)
|
|
|
|
{
|
2007-10-17 08:31:00 +02:00
|
|
|
struct fuse_fill_data *data = _data;
|
2005-09-09 22:10:33 +02:00
|
|
|
struct fuse_req *req = data->req;
|
|
|
|
struct inode *inode = data->inode;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
|
|
|
|
if (req->num_pages &&
|
|
|
|
(req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
|
|
|
|
(req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
|
|
|
|
req->pages[req->num_pages - 1]->index + 1 != page->index)) {
|
2007-11-29 01:22:00 +01:00
|
|
|
fuse_send_readpages(req, data->file, inode);
|
2006-04-11 07:54:58 +02:00
|
|
|
data->req = req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req)) {
|
2005-09-09 22:10:33 +02:00
|
|
|
unlock_page(page);
|
2006-04-11 07:54:58 +02:00
|
|
|
return PTR_ERR(req);
|
2005-09-09 22:10:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
req->pages[req->num_pages] = page;
|
|
|
|
req->num_pages ++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_readpages(struct file *file, struct address_space *mapping,
|
|
|
|
struct list_head *pages, unsigned nr_pages)
|
|
|
|
{
|
|
|
|
struct inode *inode = mapping->host;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2007-10-17 08:31:00 +02:00
|
|
|
struct fuse_fill_data data;
|
2005-09-09 22:10:33 +02:00
|
|
|
int err;
|
2006-01-06 09:19:39 +01:00
|
|
|
|
2006-08-14 08:24:27 +02:00
|
|
|
err = -EIO;
|
2006-01-06 09:19:39 +01:00
|
|
|
if (is_bad_inode(inode))
|
2006-11-03 07:07:09 +01:00
|
|
|
goto out;
|
2006-01-06 09:19:39 +01:00
|
|
|
|
2007-11-29 01:22:00 +01:00
|
|
|
data.file = file;
|
2005-09-09 22:10:33 +02:00
|
|
|
data.inode = inode;
|
2006-04-11 07:54:58 +02:00
|
|
|
data.req = fuse_get_req(fc);
|
2006-08-14 08:24:27 +02:00
|
|
|
err = PTR_ERR(data.req);
|
2006-04-11 07:54:58 +02:00
|
|
|
if (IS_ERR(data.req))
|
2006-11-03 07:07:09 +01:00
|
|
|
goto out;
|
2005-09-09 22:10:33 +02:00
|
|
|
|
|
|
|
err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
|
2006-04-11 07:54:49 +02:00
|
|
|
if (!err) {
|
|
|
|
if (data.req->num_pages)
|
2007-11-29 01:22:00 +01:00
|
|
|
fuse_send_readpages(data.req, file, inode);
|
2006-04-11 07:54:49 +02:00
|
|
|
else
|
|
|
|
fuse_put_request(fc, data.req);
|
|
|
|
}
|
2006-11-03 07:07:09 +01:00
|
|
|
out:
|
2006-08-14 08:24:27 +02:00
|
|
|
return err;
|
2005-09-09 22:10:33 +02:00
|
|
|
}
|
|
|
|
|
2007-11-29 01:21:59 +01:00
|
|
|
static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
|
|
|
|
unsigned long nr_segs, loff_t pos)
|
|
|
|
{
|
|
|
|
struct inode *inode = iocb->ki_filp->f_mapping->host;
|
|
|
|
|
|
|
|
if (pos + iov_length(iov, nr_segs) > i_size_read(inode)) {
|
|
|
|
int err;
|
|
|
|
/*
|
|
|
|
* If trying to read past EOF, make sure the i_size
|
|
|
|
* attribute is up-to-date.
|
|
|
|
*/
|
|
|
|
err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return generic_file_aio_read(iocb, iov, nr_segs, pos);
|
|
|
|
}
|
|
|
|
|
2007-11-29 01:22:00 +01:00
|
|
|
static void fuse_write_fill(struct fuse_req *req, struct file *file,
|
2007-10-18 12:07:03 +02:00
|
|
|
struct inode *inode, loff_t pos, size_t count,
|
|
|
|
int writepage)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
2007-10-18 12:07:04 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2007-11-29 01:22:00 +01:00
|
|
|
struct fuse_file *ff = file->private_data;
|
2007-10-18 12:07:03 +02:00
|
|
|
struct fuse_write_in *inarg = &req->misc.write.in;
|
|
|
|
struct fuse_write_out *outarg = &req->misc.write.out;
|
2005-09-09 22:10:30 +02:00
|
|
|
|
2007-10-18 12:07:03 +02:00
|
|
|
memset(inarg, 0, sizeof(struct fuse_write_in));
|
|
|
|
inarg->fh = ff->fh;
|
|
|
|
inarg->offset = pos;
|
|
|
|
inarg->size = count;
|
|
|
|
inarg->write_flags = writepage ? FUSE_WRITE_CACHE : 0;
|
2007-11-29 01:22:00 +01:00
|
|
|
inarg->flags = file->f_flags;
|
2005-09-09 22:10:30 +02:00
|
|
|
req->in.h.opcode = FUSE_WRITE;
|
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.argpages = 1;
|
|
|
|
req->in.numargs = 2;
|
2007-10-18 12:07:04 +02:00
|
|
|
if (fc->minor < 9)
|
|
|
|
req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
|
|
|
|
else
|
|
|
|
req->in.args[0].size = sizeof(struct fuse_write_in);
|
2007-10-18 12:07:03 +02:00
|
|
|
req->in.args[0].value = inarg;
|
2005-09-09 22:10:30 +02:00
|
|
|
req->in.args[1].size = count;
|
|
|
|
req->out.numargs = 1;
|
|
|
|
req->out.args[0].size = sizeof(struct fuse_write_out);
|
2007-10-18 12:07:03 +02:00
|
|
|
req->out.args[0].value = outarg;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t fuse_send_write(struct fuse_req *req, struct file *file,
|
2007-10-18 12:07:04 +02:00
|
|
|
struct inode *inode, loff_t pos, size_t count,
|
|
|
|
fl_owner_t owner)
|
2007-10-18 12:07:03 +02:00
|
|
|
{
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2007-11-29 01:22:00 +01:00
|
|
|
fuse_write_fill(req, file, inode, pos, count, 0);
|
2007-10-18 12:07:04 +02:00
|
|
|
if (owner != NULL) {
|
|
|
|
struct fuse_write_in *inarg = &req->misc.write.in;
|
|
|
|
inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
|
|
|
|
inarg->lock_owner = fuse_lock_owner_id(fc, owner);
|
|
|
|
}
|
2005-09-09 22:10:39 +02:00
|
|
|
request_send(fc, req);
|
2007-10-18 12:07:03 +02:00
|
|
|
return req->misc.write.out.size;
|
2005-09-09 22:10:30 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:25:17 +02:00
|
|
|
static int fuse_write_begin(struct file *file, struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned flags,
|
|
|
|
struct page **pagep, void **fsdata)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
2007-10-16 10:25:17 +02:00
|
|
|
pgoff_t index = pos >> PAGE_CACHE_SHIFT;
|
|
|
|
|
|
|
|
*pagep = __grab_cache_page(mapping, index);
|
|
|
|
if (!*pagep)
|
|
|
|
return -ENOMEM;
|
2005-09-09 22:10:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:25:17 +02:00
|
|
|
static int fuse_buffered_write(struct file *file, struct inode *inode,
|
|
|
|
loff_t pos, unsigned count, struct page *page)
|
2005-09-09 22:10:30 +02:00
|
|
|
{
|
|
|
|
int err;
|
2005-09-09 22:10:36 +02:00
|
|
|
size_t nres;
|
2005-09-09 22:10:30 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
fuse: fix race between getattr and write
Getattr and lookup operations can be running in parallel to attribute changing
operations, such as write and setattr.
This means, that if for example getattr was slower than a write, the cached
size attribute could be set to a stale value.
To prevent this race, introduce a per-filesystem attribute version counter.
This counter is incremented whenever cached attributes are modified, and the
incremented value stored in the inode.
Before storing new attributes in the cache, getattr and lookup check, using
the version number, whether the attributes have been modified during the
request's lifetime. If so, the returned attributes are not cached, because
they might be stale.
Thanks to Jakub Bogusz for the bug report and test program.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: Jakub Bogusz <jakub.bogusz@gemius.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-18 12:06:58 +02:00
|
|
|
struct fuse_inode *fi = get_fuse_inode(inode);
|
2007-10-16 10:25:17 +02:00
|
|
|
unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
|
2006-01-06 09:19:39 +01:00
|
|
|
struct fuse_req *req;
|
|
|
|
|
|
|
|
if (is_bad_inode(inode))
|
|
|
|
return -EIO;
|
|
|
|
|
2006-04-11 07:54:58 +02:00
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return PTR_ERR(req);
|
2005-09-09 22:10:30 +02:00
|
|
|
|
|
|
|
req->num_pages = 1;
|
|
|
|
req->pages[0] = page;
|
|
|
|
req->page_offset = offset;
|
2007-10-18 12:07:04 +02:00
|
|
|
nres = fuse_send_write(req, file, inode, pos, count, NULL);
|
2005-09-09 22:10:30 +02:00
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
2007-10-16 10:25:17 +02:00
|
|
|
if (!err && !nres)
|
2005-09-09 22:10:30 +02:00
|
|
|
err = -EIO;
|
|
|
|
if (!err) {
|
2007-10-16 10:25:17 +02:00
|
|
|
pos += nres;
|
2006-10-17 09:10:06 +02:00
|
|
|
spin_lock(&fc->lock);
|
fuse: fix race between getattr and write
Getattr and lookup operations can be running in parallel to attribute changing
operations, such as write and setattr.
This means, that if for example getattr was slower than a write, the cached
size attribute could be set to a stale value.
To prevent this race, introduce a per-filesystem attribute version counter.
This counter is incremented whenever cached attributes are modified, and the
incremented value stored in the inode.
Before storing new attributes in the cache, getattr and lookup check, using
the version number, whether the attributes have been modified during the
request's lifetime. If so, the returned attributes are not cached, because
they might be stale.
Thanks to Jakub Bogusz for the bug report and test program.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: Jakub Bogusz <jakub.bogusz@gemius.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-18 12:06:58 +02:00
|
|
|
fi->attr_version = ++fc->attr_version;
|
2006-10-17 09:10:06 +02:00
|
|
|
if (pos > inode->i_size)
|
2005-09-09 22:10:30 +02:00
|
|
|
i_size_write(inode, pos);
|
2006-10-17 09:10:06 +02:00
|
|
|
spin_unlock(&fc->lock);
|
2005-09-09 22:10:30 +02:00
|
|
|
|
2007-10-16 10:25:17 +02:00
|
|
|
if (count == PAGE_CACHE_SIZE)
|
2005-09-09 22:10:30 +02:00
|
|
|
SetPageUptodate(page);
|
2005-09-09 22:10:38 +02:00
|
|
|
}
|
|
|
|
fuse_invalidate_attr(inode);
|
2007-10-16 10:25:17 +02:00
|
|
|
return err ? err : nres;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_write_end(struct file *file, struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned copied,
|
|
|
|
struct page *page, void *fsdata)
|
|
|
|
{
|
|
|
|
struct inode *inode = mapping->host;
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
if (copied)
|
|
|
|
res = fuse_buffered_write(file, inode, pos, copied, page);
|
|
|
|
|
|
|
|
unlock_page(page);
|
|
|
|
page_cache_release(page);
|
|
|
|
return res;
|
2005-09-09 22:10:30 +02:00
|
|
|
}
|
|
|
|
|
2005-09-09 22:10:35 +02:00
|
|
|
static void fuse_release_user_pages(struct fuse_req *req, int write)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; i < req->num_pages; i++) {
|
|
|
|
struct page *page = req->pages[i];
|
|
|
|
if (write)
|
|
|
|
set_page_dirty_lock(page);
|
|
|
|
put_page(page);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
|
|
|
|
unsigned nbytes, int write)
|
|
|
|
{
|
|
|
|
unsigned long user_addr = (unsigned long) buf;
|
|
|
|
unsigned offset = user_addr & ~PAGE_MASK;
|
|
|
|
int npages;
|
|
|
|
|
|
|
|
/* This doesn't work with nfsd */
|
|
|
|
if (!current->mm)
|
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
nbytes = min(nbytes, (unsigned) FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
|
|
|
|
npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
2006-01-06 09:19:42 +01:00
|
|
|
npages = min(max(npages, 1), FUSE_MAX_PAGES_PER_REQ);
|
2005-09-09 22:10:35 +02:00
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
|
|
npages = get_user_pages(current, current->mm, user_addr, npages, write,
|
|
|
|
0, req->pages, NULL);
|
|
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
if (npages < 0)
|
|
|
|
return npages;
|
|
|
|
|
|
|
|
req->num_pages = npages;
|
|
|
|
req->page_offset = offset;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t fuse_direct_io(struct file *file, const char __user *buf,
|
|
|
|
size_t count, loff_t *ppos, int write)
|
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2005-09-09 22:10:35 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
size_t nmax = write ? fc->max_write : fc->max_read;
|
|
|
|
loff_t pos = *ppos;
|
|
|
|
ssize_t res = 0;
|
2006-01-06 09:19:39 +01:00
|
|
|
struct fuse_req *req;
|
|
|
|
|
|
|
|
if (is_bad_inode(inode))
|
|
|
|
return -EIO;
|
|
|
|
|
2006-04-11 07:54:58 +02:00
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return PTR_ERR(req);
|
2005-09-09 22:10:35 +02:00
|
|
|
|
|
|
|
while (count) {
|
|
|
|
size_t nres;
|
|
|
|
size_t nbytes = min(count, nmax);
|
|
|
|
int err = fuse_get_user_pages(req, buf, nbytes, !write);
|
|
|
|
if (err) {
|
|
|
|
res = err;
|
|
|
|
break;
|
|
|
|
}
|
2006-01-06 09:19:42 +01:00
|
|
|
nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
|
|
|
|
nbytes = min(count, nbytes);
|
2005-09-09 22:10:35 +02:00
|
|
|
if (write)
|
2007-10-18 12:07:04 +02:00
|
|
|
nres = fuse_send_write(req, file, inode, pos, nbytes,
|
|
|
|
current->files);
|
2005-09-09 22:10:35 +02:00
|
|
|
else
|
2007-10-18 12:07:04 +02:00
|
|
|
nres = fuse_send_read(req, file, inode, pos, nbytes,
|
|
|
|
current->files);
|
2005-09-09 22:10:35 +02:00
|
|
|
fuse_release_user_pages(req, !write);
|
|
|
|
if (req->out.h.error) {
|
|
|
|
if (!res)
|
|
|
|
res = req->out.h.error;
|
|
|
|
break;
|
|
|
|
} else if (nres > nbytes) {
|
|
|
|
res = -EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
count -= nres;
|
|
|
|
res += nres;
|
|
|
|
pos += nres;
|
|
|
|
buf += nres;
|
|
|
|
if (nres != nbytes)
|
|
|
|
break;
|
2006-04-11 21:16:51 +02:00
|
|
|
if (count) {
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
break;
|
|
|
|
}
|
2005-09-09 22:10:35 +02:00
|
|
|
}
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
if (res > 0) {
|
2006-10-17 09:10:06 +02:00
|
|
|
if (write) {
|
|
|
|
spin_lock(&fc->lock);
|
|
|
|
if (pos > inode->i_size)
|
|
|
|
i_size_write(inode, pos);
|
|
|
|
spin_unlock(&fc->lock);
|
|
|
|
}
|
2005-09-09 22:10:35 +02:00
|
|
|
*ppos = pos;
|
2005-09-09 22:10:38 +02:00
|
|
|
}
|
|
|
|
fuse_invalidate_attr(inode);
|
2005-09-09 22:10:35 +02:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t fuse_direct_read(struct file *file, char __user *buf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
|
|
|
return fuse_direct_io(file, buf, count, ppos, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2005-09-09 22:10:35 +02:00
|
|
|
ssize_t res;
|
|
|
|
/* Don't allow parallel writes to the same file */
|
2006-01-10 00:59:24 +01:00
|
|
|
mutex_lock(&inode->i_mutex);
|
2007-05-23 22:57:54 +02:00
|
|
|
res = generic_write_checks(file, ppos, &count, 0);
|
|
|
|
if (!res)
|
|
|
|
res = fuse_direct_io(file, buf, count, ppos, 1);
|
2006-01-10 00:59:24 +01:00
|
|
|
mutex_unlock(&inode->i_mutex);
|
2005-09-09 22:10:35 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2005-09-09 22:10:30 +02:00
|
|
|
static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
if ((vma->vm_flags & VM_SHARED)) {
|
|
|
|
if ((vma->vm_flags & VM_WRITE))
|
|
|
|
return -ENODEV;
|
|
|
|
else
|
|
|
|
vma->vm_flags &= ~VM_MAYWRITE;
|
|
|
|
}
|
|
|
|
return generic_file_mmap(file, vma);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_set_page_dirty(struct page *page)
|
|
|
|
{
|
|
|
|
printk("fuse_set_page_dirty: should not happen\n");
|
|
|
|
dump_stack();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-06-25 14:48:52 +02:00
|
|
|
static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
|
|
|
|
struct file_lock *fl)
|
|
|
|
{
|
|
|
|
switch (ffl->type) {
|
|
|
|
case F_UNLCK:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case F_RDLCK:
|
|
|
|
case F_WRLCK:
|
|
|
|
if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
|
|
|
|
ffl->end < ffl->start)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
fl->fl_start = ffl->start;
|
|
|
|
fl->fl_end = ffl->end;
|
|
|
|
fl->fl_pid = ffl->pid;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
fl->fl_type = ffl->type;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fuse_lk_fill(struct fuse_req *req, struct file *file,
|
2007-10-18 12:07:02 +02:00
|
|
|
const struct file_lock *fl, int opcode, pid_t pid,
|
|
|
|
int flock)
|
2006-06-25 14:48:52 +02:00
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2006-06-25 14:48:55 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
2006-06-25 14:48:52 +02:00
|
|
|
struct fuse_file *ff = file->private_data;
|
|
|
|
struct fuse_lk_in *arg = &req->misc.lk_in;
|
|
|
|
|
|
|
|
arg->fh = ff->fh;
|
2006-06-25 14:48:55 +02:00
|
|
|
arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
|
2006-06-25 14:48:52 +02:00
|
|
|
arg->lk.start = fl->fl_start;
|
|
|
|
arg->lk.end = fl->fl_end;
|
|
|
|
arg->lk.type = fl->fl_type;
|
|
|
|
arg->lk.pid = pid;
|
2007-10-18 12:07:02 +02:00
|
|
|
if (flock)
|
|
|
|
arg->lk_flags |= FUSE_LK_FLOCK;
|
2006-06-25 14:48:52 +02:00
|
|
|
req->in.h.opcode = opcode;
|
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(*arg);
|
|
|
|
req->in.args[0].value = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_getlk(struct file *file, struct file_lock *fl)
|
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2006-06-25 14:48:52 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
struct fuse_req *req;
|
|
|
|
struct fuse_lk_out outarg;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return PTR_ERR(req);
|
|
|
|
|
2007-10-18 12:07:02 +02:00
|
|
|
fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
|
2006-06-25 14:48:52 +02:00
|
|
|
req->out.numargs = 1;
|
|
|
|
req->out.args[0].size = sizeof(outarg);
|
|
|
|
req->out.args[0].value = &outarg;
|
|
|
|
request_send(fc, req);
|
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
if (!err)
|
|
|
|
err = convert_fuse_file_lock(&outarg.lk, fl);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-10-18 12:07:02 +02:00
|
|
|
static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
|
2006-06-25 14:48:52 +02:00
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2006-06-25 14:48:52 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
struct fuse_req *req;
|
|
|
|
int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
|
|
|
|
pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/* Unlock on close is handled by the flush method */
|
|
|
|
if (fl->fl_flags & FL_CLOSE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return PTR_ERR(req);
|
|
|
|
|
2007-10-18 12:07:02 +02:00
|
|
|
fuse_lk_fill(req, file, fl, opcode, pid, flock);
|
2006-06-25 14:48:52 +02:00
|
|
|
request_send(fc, req);
|
|
|
|
err = req->out.h.error;
|
2006-06-25 14:48:54 +02:00
|
|
|
/* locking is restartable */
|
|
|
|
if (err == -EINTR)
|
|
|
|
err = -ERESTARTSYS;
|
2006-06-25 14:48:52 +02:00
|
|
|
fuse_put_request(fc, req);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
|
|
|
|
{
|
2006-12-08 11:37:02 +01:00
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
2006-06-25 14:48:52 +02:00
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (cmd == F_GETLK) {
|
|
|
|
if (fc->no_lock) {
|
2007-02-21 06:55:18 +01:00
|
|
|
posix_test_lock(file, fl);
|
2006-06-25 14:48:52 +02:00
|
|
|
err = 0;
|
|
|
|
} else
|
|
|
|
err = fuse_getlk(file, fl);
|
|
|
|
} else {
|
|
|
|
if (fc->no_lock)
|
|
|
|
err = posix_lock_file_wait(file, fl);
|
|
|
|
else
|
2007-10-18 12:07:02 +02:00
|
|
|
err = fuse_setlk(file, fl, 0);
|
2006-06-25 14:48:52 +02:00
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2007-10-18 12:07:02 +02:00
|
|
|
static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
|
|
|
|
{
|
|
|
|
struct inode *inode = file->f_path.dentry->d_inode;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (fc->no_lock) {
|
|
|
|
err = flock_lock_file_wait(file, fl);
|
|
|
|
} else {
|
|
|
|
/* emulate flock with POSIX locks */
|
|
|
|
fl->fl_owner = (fl_owner_t) file;
|
|
|
|
err = fuse_setlk(file, fl, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2006-12-07 05:35:51 +01:00
|
|
|
static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
|
|
|
|
{
|
|
|
|
struct inode *inode = mapping->host;
|
|
|
|
struct fuse_conn *fc = get_fuse_conn(inode);
|
|
|
|
struct fuse_req *req;
|
|
|
|
struct fuse_bmap_in inarg;
|
|
|
|
struct fuse_bmap_out outarg;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (!inode->i_sb->s_bdev || fc->no_bmap)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
req = fuse_get_req(fc);
|
|
|
|
if (IS_ERR(req))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
memset(&inarg, 0, sizeof(inarg));
|
|
|
|
inarg.block = block;
|
|
|
|
inarg.blocksize = inode->i_sb->s_blocksize;
|
|
|
|
req->in.h.opcode = FUSE_BMAP;
|
|
|
|
req->in.h.nodeid = get_node_id(inode);
|
|
|
|
req->in.numargs = 1;
|
|
|
|
req->in.args[0].size = sizeof(inarg);
|
|
|
|
req->in.args[0].value = &inarg;
|
|
|
|
req->out.numargs = 1;
|
|
|
|
req->out.args[0].size = sizeof(outarg);
|
|
|
|
req->out.args[0].value = &outarg;
|
|
|
|
request_send(fc, req);
|
|
|
|
err = req->out.h.error;
|
|
|
|
fuse_put_request(fc, req);
|
|
|
|
if (err == -ENOSYS)
|
|
|
|
fc->no_bmap = 1;
|
|
|
|
|
|
|
|
return err ? 0 : outarg.block;
|
|
|
|
}
|
|
|
|
|
2006-03-28 11:56:42 +02:00
|
|
|
static const struct file_operations fuse_file_operations = {
|
2005-09-09 22:10:30 +02:00
|
|
|
.llseek = generic_file_llseek,
|
2006-10-01 08:28:48 +02:00
|
|
|
.read = do_sync_read,
|
2007-11-29 01:21:59 +01:00
|
|
|
.aio_read = fuse_file_aio_read,
|
2006-10-01 08:28:48 +02:00
|
|
|
.write = do_sync_write,
|
|
|
|
.aio_write = generic_file_aio_write,
|
2005-09-09 22:10:30 +02:00
|
|
|
.mmap = fuse_file_mmap,
|
|
|
|
.open = fuse_open,
|
|
|
|
.flush = fuse_flush,
|
|
|
|
.release = fuse_release,
|
|
|
|
.fsync = fuse_fsync,
|
2006-06-25 14:48:52 +02:00
|
|
|
.lock = fuse_file_lock,
|
2007-10-18 12:07:02 +02:00
|
|
|
.flock = fuse_file_flock,
|
2007-06-01 11:49:19 +02:00
|
|
|
.splice_read = generic_file_splice_read,
|
2005-09-09 22:10:30 +02:00
|
|
|
};
|
|
|
|
|
2006-03-28 11:56:42 +02:00
|
|
|
static const struct file_operations fuse_direct_io_file_operations = {
|
2005-09-09 22:10:35 +02:00
|
|
|
.llseek = generic_file_llseek,
|
|
|
|
.read = fuse_direct_read,
|
|
|
|
.write = fuse_direct_write,
|
|
|
|
.open = fuse_open,
|
|
|
|
.flush = fuse_flush,
|
|
|
|
.release = fuse_release,
|
|
|
|
.fsync = fuse_fsync,
|
2006-06-25 14:48:52 +02:00
|
|
|
.lock = fuse_file_lock,
|
2007-10-18 12:07:02 +02:00
|
|
|
.flock = fuse_file_flock,
|
2007-06-01 11:49:19 +02:00
|
|
|
/* no mmap and splice_read */
|
2005-09-09 22:10:35 +02:00
|
|
|
};
|
|
|
|
|
2006-06-28 13:26:44 +02:00
|
|
|
static const struct address_space_operations fuse_file_aops = {
|
2005-09-09 22:10:30 +02:00
|
|
|
.readpage = fuse_readpage,
|
2007-10-16 10:25:17 +02:00
|
|
|
.write_begin = fuse_write_begin,
|
|
|
|
.write_end = fuse_write_end,
|
2005-09-09 22:10:33 +02:00
|
|
|
.readpages = fuse_readpages,
|
2005-09-09 22:10:30 +02:00
|
|
|
.set_page_dirty = fuse_set_page_dirty,
|
2006-12-07 05:35:51 +01:00
|
|
|
.bmap = fuse_bmap,
|
2005-09-09 22:10:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void fuse_init_file_inode(struct inode *inode)
|
|
|
|
{
|
2005-09-09 22:10:37 +02:00
|
|
|
inode->i_fop = &fuse_file_operations;
|
|
|
|
inode->i_data.a_ops = &fuse_file_aops;
|
2005-09-09 22:10:30 +02:00
|
|
|
}
|