blob: c4e395781d416eaa1b2d394a61175e6dc5331a97 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File operations for Coda.
3 * Original version: (C) 1996 Peter Braam
4 * Rewritten for Linux 2.1: (C) 1997 Carnegie Mellon University
5 *
6 * Carnegie Mellon encourages users of this code to contribute improvements
7 * to the Coda project. Contact Peter Braam <coda@cs.cmu.edu>.
8 */
9
10#include <linux/types.h>
11#include <linux/kernel.h>
12#include <linux/time.h>
13#include <linux/file.h>
14#include <linux/fs.h>
15#include <linux/stat.h>
Randy Dunlap7596b272008-11-19 11:30:27 -080016#include <linux/cred.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/smp_lock.h>
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -040019#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/string.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/uaccess.h>
23
24#include <linux/coda.h>
25#include <linux/coda_linux.h>
26#include <linux/coda_fs_i.h>
27#include <linux/coda_psdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Adrian Bunkc98d8cf2006-03-24 03:15:53 -080029#include "coda_int.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static ssize_t
32coda_file_read(struct file *coda_file, char __user *buf, size_t count, loff_t *ppos)
33{
34 struct coda_file_info *cfi;
35 struct file *host_file;
36
37 cfi = CODA_FTOC(coda_file);
38 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
39 host_file = cfi->cfi_container;
40
41 if (!host_file->f_op || !host_file->f_op->read)
42 return -EINVAL;
43
44 return host_file->f_op->read(host_file, buf, count, ppos);
45}
46
47static ssize_t
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020048coda_file_splice_read(struct file *coda_file, loff_t *ppos,
49 struct pipe_inode_info *pipe, size_t count,
50 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Miklos Szeredi68181732009-05-07 15:37:36 +020052 ssize_t (*splice_read)(struct file *, loff_t *,
53 struct pipe_inode_info *, size_t, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 struct coda_file_info *cfi;
55 struct file *host_file;
56
57 cfi = CODA_FTOC(coda_file);
58 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
59 host_file = cfi->cfi_container;
60
Miklos Szeredi68181732009-05-07 15:37:36 +020061 splice_read = host_file->f_op->splice_read;
62 if (!splice_read)
63 splice_read = default_file_splice_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Miklos Szeredi68181732009-05-07 15:37:36 +020065 return splice_read(host_file, ppos, pipe, count, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68static ssize_t
69coda_file_write(struct file *coda_file, const char __user *buf, size_t count, loff_t *ppos)
70{
Josef Sipekd4176d32006-12-08 02:36:56 -080071 struct inode *host_inode, *coda_inode = coda_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct coda_file_info *cfi;
73 struct file *host_file;
74 ssize_t ret;
75
76 cfi = CODA_FTOC(coda_file);
77 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
78 host_file = cfi->cfi_container;
79
80 if (!host_file->f_op || !host_file->f_op->write)
81 return -EINVAL;
82
Josef Sipekd4176d32006-12-08 02:36:56 -080083 host_inode = host_file->f_path.dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080084 mutex_lock(&coda_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 ret = host_file->f_op->write(host_file, buf, count, ppos);
87
88 coda_inode->i_size = host_inode->i_size;
89 coda_inode->i_blocks = (coda_inode->i_size + 511) >> 9;
90 coda_inode->i_mtime = coda_inode->i_ctime = CURRENT_TIME_SEC;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080091 mutex_unlock(&coda_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 return ret;
94}
95
96static int
97coda_file_mmap(struct file *coda_file, struct vm_area_struct *vma)
98{
99 struct coda_file_info *cfi;
100 struct coda_inode_info *cii;
101 struct file *host_file;
102 struct inode *coda_inode, *host_inode;
103
104 cfi = CODA_FTOC(coda_file);
105 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
106 host_file = cfi->cfi_container;
107
108 if (!host_file->f_op || !host_file->f_op->mmap)
109 return -ENODEV;
110
Josef Sipekd4176d32006-12-08 02:36:56 -0800111 coda_inode = coda_file->f_path.dentry->d_inode;
112 host_inode = host_file->f_path.dentry->d_inode;
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400113
114 cii = ITOC(coda_inode);
115 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 coda_file->f_mapping = host_file->f_mapping;
117 if (coda_inode->i_mapping == &coda_inode->i_data)
118 coda_inode->i_mapping = host_inode->i_mapping;
119
120 /* only allow additional mmaps as long as userspace isn't changing
121 * the container file on us! */
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400122 else if (coda_inode->i_mapping != host_inode->i_mapping) {
123 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return -EBUSY;
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* keep track of how often the coda_inode/host_file has been mmapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 cii->c_mapcount++;
129 cfi->cfi_mapcount++;
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400130 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 return host_file->f_op->mmap(host_file, vma);
133}
134
135int coda_open(struct inode *coda_inode, struct file *coda_file)
136{
137 struct file *host_file = NULL;
138 int error;
139 unsigned short flags = coda_file->f_flags & (~O_EXCL);
140 unsigned short coda_flags = coda_flags_to_cflags(flags);
141 struct coda_file_info *cfi;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 cfi = kmalloc(sizeof(struct coda_file_info), GFP_KERNEL);
Josh Triplett6ecbc4e2006-07-30 03:03:56 -0700144 if (!cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 lock_kernel();
148
149 error = venus_open(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags,
Jan Harkes38c2e432007-07-19 01:48:41 -0700150 &host_file);
151 if (!host_file)
152 error = -EIO;
153
154 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 kfree(cfi);
156 unlock_kernel();
157 return error;
158 }
159
160 host_file->f_flags |= coda_file->f_flags & (O_APPEND | O_SYNC);
161
162 cfi->cfi_magic = CODA_MAGIC;
163 cfi->cfi_mapcount = 0;
164 cfi->cfi_container = host_file;
165
166 BUG_ON(coda_file->private_data != NULL);
167 coda_file->private_data = cfi;
168
169 unlock_kernel();
170 return 0;
171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173int coda_release(struct inode *coda_inode, struct file *coda_file)
174{
175 unsigned short flags = (coda_file->f_flags) & (~O_EXCL);
176 unsigned short coda_flags = coda_flags_to_cflags(flags);
177 struct coda_file_info *cfi;
178 struct coda_inode_info *cii;
179 struct inode *host_inode;
180 int err = 0;
181
182 lock_kernel();
Jan Harkes3cf01f22007-07-19 01:48:51 -0700183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 cfi = CODA_FTOC(coda_file);
185 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
186
Jan Harkesd3fec422007-07-21 04:37:26 -0700187 err = venus_close(coda_inode->i_sb, coda_i2f(coda_inode),
David Howellsd76b0d92008-11-14 10:39:25 +1100188 coda_flags, coda_file->f_cred->fsuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Josef Sipekd4176d32006-12-08 02:36:56 -0800190 host_inode = cfi->cfi_container->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 cii = ITOC(coda_inode);
192
193 /* did we mmap this file? */
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400194 spin_lock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (coda_inode->i_mapping == &host_inode->i_data) {
196 cii->c_mapcount -= cfi->cfi_mapcount;
197 if (!cii->c_mapcount)
198 coda_inode->i_mapping = &coda_inode->i_data;
199 }
Yoshihisa Abeb5ce1d82010-10-25 02:03:44 -0400200 spin_unlock(&cii->c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 fput(cfi->cfi_container);
203 kfree(coda_file->private_data);
204 coda_file->private_data = NULL;
205
206 unlock_kernel();
Jan Harkesd3fec422007-07-21 04:37:26 -0700207
208 /* VFS fput ignores the return value from file_operations->release, so
209 * there is no use returning an error here */
210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200213int coda_fsync(struct file *coda_file, int datasync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 struct file *host_file;
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200216 struct inode *coda_inode = coda_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 struct coda_file_info *cfi;
218 int err = 0;
219
220 if (!(S_ISREG(coda_inode->i_mode) || S_ISDIR(coda_inode->i_mode) ||
221 S_ISLNK(coda_inode->i_mode)))
222 return -EINVAL;
223
224 cfi = CODA_FTOC(coda_file);
225 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
226 host_file = cfi->cfi_container;
227
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100228 err = vfs_fsync(host_file, datasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if ( !err && !datasync ) {
230 lock_kernel();
231 err = venus_fsync(coda_inode->i_sb, coda_i2f(coda_inode));
232 unlock_kernel();
233 }
234
235 return err;
236}
237
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800238const struct file_operations coda_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .llseek = generic_file_llseek,
240 .read = coda_file_read,
241 .write = coda_file_write,
242 .mmap = coda_file_mmap,
243 .open = coda_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 .release = coda_release,
245 .fsync = coda_fsync,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200246 .splice_read = coda_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247};
248