Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Dunlap | 7596b27 | 2008-11-19 11:30:27 -0800 | [diff] [blame] | 16 | #include <linux/cred.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/errno.h> |
| 18 | #include <linux/smp_lock.h> |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 19 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/string.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Adrian Bunk | c98d8cf | 2006-03-24 03:15:53 -0800 | [diff] [blame] | 29 | #include "coda_int.h" |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static ssize_t |
| 32 | coda_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 | |
| 47 | static ssize_t |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 48 | coda_file_splice_read(struct file *coda_file, loff_t *ppos, |
| 49 | struct pipe_inode_info *pipe, size_t count, |
| 50 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
Miklos Szeredi | 6818173 | 2009-05-07 15:37:36 +0200 | [diff] [blame] | 52 | ssize_t (*splice_read)(struct file *, loff_t *, |
| 53 | struct pipe_inode_info *, size_t, unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Miklos Szeredi | 6818173 | 2009-05-07 15:37:36 +0200 | [diff] [blame] | 61 | splice_read = host_file->f_op->splice_read; |
| 62 | if (!splice_read) |
| 63 | splice_read = default_file_splice_read; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Miklos Szeredi | 6818173 | 2009-05-07 15:37:36 +0200 | [diff] [blame] | 65 | return splice_read(host_file, ppos, pipe, count, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | static ssize_t |
| 69 | coda_file_write(struct file *coda_file, const char __user *buf, size_t count, loff_t *ppos) |
| 70 | { |
Josef Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 71 | struct inode *host_inode, *coda_inode = coda_file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | 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 Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 83 | host_inode = host_file->f_path.dentry->d_inode; |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 84 | mutex_lock(&coda_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 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 Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 91 | mutex_unlock(&coda_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
| 93 | return ret; |
| 94 | } |
| 95 | |
| 96 | static int |
| 97 | coda_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 Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 111 | coda_inode = coda_file->f_path.dentry->d_inode; |
| 112 | host_inode = host_file->f_path.dentry->d_inode; |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 113 | |
| 114 | cii = ITOC(coda_inode); |
| 115 | spin_lock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | 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 Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 122 | else if (coda_inode->i_mapping != host_inode->i_mapping) { |
| 123 | spin_unlock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return -EBUSY; |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 125 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
| 127 | /* keep track of how often the coda_inode/host_file has been mmapped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | cii->c_mapcount++; |
| 129 | cfi->cfi_mapcount++; |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 130 | spin_unlock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | return host_file->f_op->mmap(host_file, vma); |
| 133 | } |
| 134 | |
| 135 | int 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | cfi = kmalloc(sizeof(struct coda_file_info), GFP_KERNEL); |
Josh Triplett | 6ecbc4e | 2006-07-30 03:03:56 -0700 | [diff] [blame] | 144 | if (!cfi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | lock_kernel(); |
| 148 | |
| 149 | error = venus_open(coda_inode->i_sb, coda_i2f(coda_inode), coda_flags, |
Jan Harkes | 38c2e43 | 2007-07-19 01:48:41 -0700 | [diff] [blame] | 150 | &host_file); |
| 151 | if (!host_file) |
| 152 | error = -EIO; |
| 153 | |
| 154 | if (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | int 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 Harkes | 3cf01f2 | 2007-07-19 01:48:51 -0700 | [diff] [blame] | 183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | cfi = CODA_FTOC(coda_file); |
| 185 | BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC); |
| 186 | |
Jan Harkes | d3fec42 | 2007-07-21 04:37:26 -0700 | [diff] [blame] | 187 | err = venus_close(coda_inode->i_sb, coda_i2f(coda_inode), |
David Howells | d76b0d9 | 2008-11-14 10:39:25 +1100 | [diff] [blame] | 188 | coda_flags, coda_file->f_cred->fsuid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Josef Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 190 | host_inode = cfi->cfi_container->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | cii = ITOC(coda_inode); |
| 192 | |
| 193 | /* did we mmap this file? */ |
Yoshihisa Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 194 | spin_lock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | 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 Abe | b5ce1d8 | 2010-10-25 02:03:44 -0400 | [diff] [blame^] | 200 | spin_unlock(&cii->c_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | fput(cfi->cfi_container); |
| 203 | kfree(coda_file->private_data); |
| 204 | coda_file->private_data = NULL; |
| 205 | |
| 206 | unlock_kernel(); |
Jan Harkes | d3fec42 | 2007-07-21 04:37:26 -0700 | [diff] [blame] | 207 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 213 | int coda_fsync(struct file *coda_file, int datasync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | struct file *host_file; |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 216 | struct inode *coda_inode = coda_file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | 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 Hellwig | 8018ab0 | 2010-03-22 17:32:25 +0100 | [diff] [blame] | 228 | err = vfs_fsync(host_file, datasync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | 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 Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 238 | const struct file_operations coda_file_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | .llseek = generic_file_llseek, |
| 240 | .read = coda_file_read, |
| 241 | .write = coda_file_write, |
| 242 | .mmap = coda_file_mmap, |
| 243 | .open = coda_open, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | .release = coda_release, |
| 245 | .fsync = coda_fsync, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 246 | .splice_read = coda_file_splice_read, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | }; |
| 248 | |