blob: 5a876998549496ea05a48aed5ce4c29e68fdf154 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Adrian Bunkc98d8cf2006-03-24 03:15:53 -080026#include "coda_int.h"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static ssize_t
29coda_file_read(struct file *coda_file, char __user *buf, size_t count, loff_t *ppos)
30{
31 struct coda_file_info *cfi;
32 struct file *host_file;
33
34 cfi = CODA_FTOC(coda_file);
35 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
36 host_file = cfi->cfi_container;
37
38 if (!host_file->f_op || !host_file->f_op->read)
39 return -EINVAL;
40
41 return host_file->f_op->read(host_file, buf, count, ppos);
42}
43
44static ssize_t
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020045coda_file_splice_read(struct file *coda_file, loff_t *ppos,
46 struct pipe_inode_info *pipe, size_t count,
47 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 struct coda_file_info *cfi;
50 struct file *host_file;
51
52 cfi = CODA_FTOC(coda_file);
53 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
54 host_file = cfi->cfi_container;
55
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020056 if (!host_file->f_op || !host_file->f_op->splice_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return -EINVAL;
58
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020059 return host_file->f_op->splice_read(host_file, ppos, pipe, count,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
62static ssize_t
63coda_file_write(struct file *coda_file, const char __user *buf, size_t count, loff_t *ppos)
64{
Josef Sipekd4176d32006-12-08 02:36:56 -080065 struct inode *host_inode, *coda_inode = coda_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct coda_file_info *cfi;
67 struct file *host_file;
68 ssize_t ret;
69
70 cfi = CODA_FTOC(coda_file);
71 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
72 host_file = cfi->cfi_container;
73
74 if (!host_file->f_op || !host_file->f_op->write)
75 return -EINVAL;
76
Josef Sipekd4176d32006-12-08 02:36:56 -080077 host_inode = host_file->f_path.dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080078 mutex_lock(&coda_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 ret = host_file->f_op->write(host_file, buf, count, ppos);
81
82 coda_inode->i_size = host_inode->i_size;
83 coda_inode->i_blocks = (coda_inode->i_size + 511) >> 9;
84 coda_inode->i_mtime = coda_inode->i_ctime = CURRENT_TIME_SEC;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080085 mutex_unlock(&coda_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 return ret;
88}
89
90static int
91coda_file_mmap(struct file *coda_file, struct vm_area_struct *vma)
92{
93 struct coda_file_info *cfi;
94 struct coda_inode_info *cii;
95 struct file *host_file;
96 struct inode *coda_inode, *host_inode;
97
98 cfi = CODA_FTOC(coda_file);
99 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
100 host_file = cfi->cfi_container;
101
102 if (!host_file->f_op || !host_file->f_op->mmap)
103 return -ENODEV;
104
Josef Sipekd4176d32006-12-08 02:36:56 -0800105 coda_inode = coda_file->f_path.dentry->d_inode;
106 host_inode = host_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 coda_file->f_mapping = host_file->f_mapping;
108 if (coda_inode->i_mapping == &coda_inode->i_data)
109 coda_inode->i_mapping = host_inode->i_mapping;
110
111 /* only allow additional mmaps as long as userspace isn't changing
112 * the container file on us! */
113 else if (coda_inode->i_mapping != host_inode->i_mapping)
114 return -EBUSY;
115
116 /* keep track of how often the coda_inode/host_file has been mmapped */
117 cii = ITOC(coda_inode);
118 cii->c_mapcount++;
119 cfi->cfi_mapcount++;
120
121 return host_file->f_op->mmap(host_file, vma);
122}
123
124int coda_open(struct inode *coda_inode, struct file *coda_file)
125{
126 struct file *host_file = NULL;
127 int error;
128 unsigned short flags = coda_file->f_flags & (~O_EXCL);
129 unsigned short coda_flags = coda_flags_to_cflags(flags);
130 struct coda_file_info *cfi;
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 cfi = kmalloc(sizeof(struct coda_file_info), GFP_KERNEL);
Josh Triplett6ecbc4e2006-07-30 03:03:56 -0700133 if (!cfi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 lock_kernel();
137
138 error = venus_open(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags,
Jan Harkes38c2e432007-07-19 01:48:41 -0700139 &host_file);
140 if (!host_file)
141 error = -EIO;
142
143 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 kfree(cfi);
145 unlock_kernel();
146 return error;
147 }
148
149 host_file->f_flags |= coda_file->f_flags & (O_APPEND | O_SYNC);
150
151 cfi->cfi_magic = CODA_MAGIC;
152 cfi->cfi_mapcount = 0;
153 cfi->cfi_container = host_file;
154
155 BUG_ON(coda_file->private_data != NULL);
156 coda_file->private_data = cfi;
157
158 unlock_kernel();
159 return 0;
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162int coda_release(struct inode *coda_inode, struct file *coda_file)
163{
164 unsigned short flags = (coda_file->f_flags) & (~O_EXCL);
165 unsigned short coda_flags = coda_flags_to_cflags(flags);
166 struct coda_file_info *cfi;
167 struct coda_inode_info *cii;
168 struct inode *host_inode;
169 int err = 0;
170
171 lock_kernel();
Jan Harkes3cf01f22007-07-19 01:48:51 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 cfi = CODA_FTOC(coda_file);
174 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
175
Jan Harkesd3fec422007-07-21 04:37:26 -0700176 err = venus_close(coda_inode->i_sb, coda_i2f(coda_inode),
David Howellsd76b0d92008-11-14 10:39:25 +1100177 coda_flags, coda_file->f_cred->fsuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Josef Sipekd4176d32006-12-08 02:36:56 -0800179 host_inode = cfi->cfi_container->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 cii = ITOC(coda_inode);
181
182 /* did we mmap this file? */
183 if (coda_inode->i_mapping == &host_inode->i_data) {
184 cii->c_mapcount -= cfi->cfi_mapcount;
185 if (!cii->c_mapcount)
186 coda_inode->i_mapping = &coda_inode->i_data;
187 }
188
189 fput(cfi->cfi_container);
190 kfree(coda_file->private_data);
191 coda_file->private_data = NULL;
192
193 unlock_kernel();
Jan Harkesd3fec422007-07-21 04:37:26 -0700194
195 /* VFS fput ignores the return value from file_operations->release, so
196 * there is no use returning an error here */
197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200int coda_fsync(struct file *coda_file, struct dentry *coda_dentry, int datasync)
201{
202 struct file *host_file;
203 struct dentry *host_dentry;
204 struct inode *host_inode, *coda_inode = coda_dentry->d_inode;
205 struct coda_file_info *cfi;
206 int err = 0;
207
208 if (!(S_ISREG(coda_inode->i_mode) || S_ISDIR(coda_inode->i_mode) ||
209 S_ISLNK(coda_inode->i_mode)))
210 return -EINVAL;
211
212 cfi = CODA_FTOC(coda_file);
213 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
214 host_file = cfi->cfi_container;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (host_file->f_op && host_file->f_op->fsync) {
Josef Sipekd4176d32006-12-08 02:36:56 -0800217 host_dentry = host_file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 host_inode = host_dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800219 mutex_lock(&host_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 err = host_file->f_op->fsync(host_file, host_dentry, datasync);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800221 mutex_unlock(&host_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
224 if ( !err && !datasync ) {
225 lock_kernel();
226 err = venus_fsync(coda_inode->i_sb, coda_i2f(coda_inode));
227 unlock_kernel();
228 }
229
230 return err;
231}
232
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800233const struct file_operations coda_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 .llseek = generic_file_llseek,
235 .read = coda_file_read,
236 .write = coda_file_write,
237 .mmap = coda_file_mmap,
238 .open = coda_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 .release = coda_release,
240 .fsync = coda_fsync,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200241 .splice_read = coda_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242};
243