blob: e7d622709c90ed6ea7f676e5a7ac2d06d2e117a8 [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>
16#include <linux/errno.h>
17#include <linux/smp_lock.h>
18#include <linux/string.h>
19#include <asm/uaccess.h>
20
21#include <linux/coda.h>
22#include <linux/coda_linux.h>
23#include <linux/coda_fs_i.h>
24#include <linux/coda_psdev.h>
25#include <linux/coda_proc.h>
26
Adrian Bunkc98d8cf2006-03-24 03:15:53 -080027#include "coda_int.h"
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* if CODA_STORE fails with EOPNOTSUPP, venus clearly doesn't support
30 * CODA_STORE/CODA_RELEASE and we fall back on using the CODA_CLOSE upcall */
31static int use_coda_close;
32
33static ssize_t
34coda_file_read(struct file *coda_file, char __user *buf, size_t count, loff_t *ppos)
35{
36 struct coda_file_info *cfi;
37 struct file *host_file;
38
39 cfi = CODA_FTOC(coda_file);
40 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
41 host_file = cfi->cfi_container;
42
43 if (!host_file->f_op || !host_file->f_op->read)
44 return -EINVAL;
45
46 return host_file->f_op->read(host_file, buf, count, ppos);
47}
48
49static ssize_t
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020050coda_file_splice_read(struct file *coda_file, loff_t *ppos,
51 struct pipe_inode_info *pipe, size_t count,
52 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 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
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020061 if (!host_file->f_op || !host_file->f_op->splice_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return -EINVAL;
63
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020064 return host_file->f_op->splice_read(host_file, ppos, pipe, count,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67static ssize_t
68coda_file_write(struct file *coda_file, const char __user *buf, size_t count, loff_t *ppos)
69{
Josef Sipekd4176d32006-12-08 02:36:56 -080070 struct inode *host_inode, *coda_inode = coda_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 struct coda_file_info *cfi;
72 struct file *host_file;
73 ssize_t ret;
74
75 cfi = CODA_FTOC(coda_file);
76 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
77 host_file = cfi->cfi_container;
78
79 if (!host_file->f_op || !host_file->f_op->write)
80 return -EINVAL;
81
Josef Sipekd4176d32006-12-08 02:36:56 -080082 host_inode = host_file->f_path.dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080083 mutex_lock(&coda_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 ret = host_file->f_op->write(host_file, buf, count, ppos);
86
87 coda_inode->i_size = host_inode->i_size;
88 coda_inode->i_blocks = (coda_inode->i_size + 511) >> 9;
89 coda_inode->i_mtime = coda_inode->i_ctime = CURRENT_TIME_SEC;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080090 mutex_unlock(&coda_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 return ret;
93}
94
95static int
96coda_file_mmap(struct file *coda_file, struct vm_area_struct *vma)
97{
98 struct coda_file_info *cfi;
99 struct coda_inode_info *cii;
100 struct file *host_file;
101 struct inode *coda_inode, *host_inode;
102
103 cfi = CODA_FTOC(coda_file);
104 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
105 host_file = cfi->cfi_container;
106
107 if (!host_file->f_op || !host_file->f_op->mmap)
108 return -ENODEV;
109
Josef Sipekd4176d32006-12-08 02:36:56 -0800110 coda_inode = coda_file->f_path.dentry->d_inode;
111 host_inode = host_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 coda_file->f_mapping = host_file->f_mapping;
113 if (coda_inode->i_mapping == &coda_inode->i_data)
114 coda_inode->i_mapping = host_inode->i_mapping;
115
116 /* only allow additional mmaps as long as userspace isn't changing
117 * the container file on us! */
118 else if (coda_inode->i_mapping != host_inode->i_mapping)
119 return -EBUSY;
120
121 /* keep track of how often the coda_inode/host_file has been mmapped */
122 cii = ITOC(coda_inode);
123 cii->c_mapcount++;
124 cfi->cfi_mapcount++;
125
126 return host_file->f_op->mmap(host_file, vma);
127}
128
129int coda_open(struct inode *coda_inode, struct file *coda_file)
130{
131 struct file *host_file = NULL;
132 int error;
133 unsigned short flags = coda_file->f_flags & (~O_EXCL);
134 unsigned short coda_flags = coda_flags_to_cflags(flags);
135 struct coda_file_info *cfi;
136
137 coda_vfs_stat.open++;
138
139 cfi = kmalloc(sizeof(struct coda_file_info), GFP_KERNEL);
Josh Triplett6ecbc4e2006-07-30 03:03:56 -0700140 if (!cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 lock_kernel();
144
145 error = venus_open(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags,
Jan Harkes38c2e432007-07-19 01:48:41 -0700146 &host_file);
147 if (!host_file)
148 error = -EIO;
149
150 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 kfree(cfi);
152 unlock_kernel();
153 return error;
154 }
155
156 host_file->f_flags |= coda_file->f_flags & (O_APPEND | O_SYNC);
157
158 cfi->cfi_magic = CODA_MAGIC;
159 cfi->cfi_mapcount = 0;
160 cfi->cfi_container = host_file;
161
162 BUG_ON(coda_file->private_data != NULL);
163 coda_file->private_data = cfi;
164
165 unlock_kernel();
166 return 0;
167}
168
Miklos Szeredi75e1fcc2006-06-23 02:05:12 -0700169int coda_flush(struct file *coda_file, fl_owner_t id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 unsigned short flags = coda_file->f_flags & ~O_EXCL;
172 unsigned short coda_flags = coda_flags_to_cflags(flags);
173 struct coda_file_info *cfi;
174 struct inode *coda_inode;
175 int err = 0, fcnt;
176
177 lock_kernel();
178
179 coda_vfs_stat.flush++;
180
181 /* last close semantics */
182 fcnt = file_count(coda_file);
183 if (fcnt > 1)
184 goto out;
185
186 /* No need to make an upcall when we have not made any modifications
187 * to the file */
188 if ((coda_file->f_flags & O_ACCMODE) == O_RDONLY)
189 goto out;
190
191 if (use_coda_close)
192 goto out;
193
194 cfi = CODA_FTOC(coda_file);
195 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
196
Josef Sipekd4176d32006-12-08 02:36:56 -0800197 coda_inode = coda_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 err = venus_store(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags,
200 coda_file->f_uid);
201
202 if (err == -EOPNOTSUPP) {
203 use_coda_close = 1;
204 err = 0;
205 }
206
207out:
208 unlock_kernel();
209 return err;
210}
211
212int coda_release(struct inode *coda_inode, struct file *coda_file)
213{
214 unsigned short flags = (coda_file->f_flags) & (~O_EXCL);
215 unsigned short coda_flags = coda_flags_to_cflags(flags);
216 struct coda_file_info *cfi;
217 struct coda_inode_info *cii;
218 struct inode *host_inode;
219 int err = 0;
220
221 lock_kernel();
222 coda_vfs_stat.release++;
223
224 if (!use_coda_close) {
225 err = venus_release(coda_inode->i_sb, coda_i2f(coda_inode),
226 coda_flags);
227 if (err == -EOPNOTSUPP) {
228 use_coda_close = 1;
229 err = 0;
230 }
231 }
232
233 cfi = CODA_FTOC(coda_file);
234 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
235
236 if (use_coda_close)
237 err = venus_close(coda_inode->i_sb, coda_i2f(coda_inode),
238 coda_flags, coda_file->f_uid);
239
Josef Sipekd4176d32006-12-08 02:36:56 -0800240 host_inode = cfi->cfi_container->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 cii = ITOC(coda_inode);
242
243 /* did we mmap this file? */
244 if (coda_inode->i_mapping == &host_inode->i_data) {
245 cii->c_mapcount -= cfi->cfi_mapcount;
246 if (!cii->c_mapcount)
247 coda_inode->i_mapping = &coda_inode->i_data;
248 }
249
250 fput(cfi->cfi_container);
251 kfree(coda_file->private_data);
252 coda_file->private_data = NULL;
253
254 unlock_kernel();
255 return err;
256}
257
258int coda_fsync(struct file *coda_file, struct dentry *coda_dentry, int datasync)
259{
260 struct file *host_file;
261 struct dentry *host_dentry;
262 struct inode *host_inode, *coda_inode = coda_dentry->d_inode;
263 struct coda_file_info *cfi;
264 int err = 0;
265
266 if (!(S_ISREG(coda_inode->i_mode) || S_ISDIR(coda_inode->i_mode) ||
267 S_ISLNK(coda_inode->i_mode)))
268 return -EINVAL;
269
270 cfi = CODA_FTOC(coda_file);
271 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
272 host_file = cfi->cfi_container;
273
274 coda_vfs_stat.fsync++;
275
276 if (host_file->f_op && host_file->f_op->fsync) {
Josef Sipekd4176d32006-12-08 02:36:56 -0800277 host_dentry = host_file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 host_inode = host_dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800279 mutex_lock(&host_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 err = host_file->f_op->fsync(host_file, host_dentry, datasync);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800281 mutex_unlock(&host_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
284 if ( !err && !datasync ) {
285 lock_kernel();
286 err = venus_fsync(coda_inode->i_sb, coda_i2f(coda_inode));
287 unlock_kernel();
288 }
289
290 return err;
291}
292
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800293const struct file_operations coda_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .llseek = generic_file_llseek,
295 .read = coda_file_read,
296 .write = coda_file_write,
297 .mmap = coda_file_mmap,
298 .open = coda_open,
299 .flush = coda_flush,
300 .release = coda_release,
301 .fsync = coda_fsync,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200302 .splice_read = coda_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304