| 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> | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
| Adrian Bunk | c98d8cf | 2006-03-24 03:15:53 -0800 | [diff] [blame] | 26 | #include "coda_int.h" | 
 | 27 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | static ssize_t | 
 | 29 | coda_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 |  | 
 | 44 | static ssize_t | 
| Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 45 | coda_file_splice_read(struct file *coda_file, loff_t *ppos, | 
 | 46 | 		      struct pipe_inode_info *pipe, size_t count, | 
 | 47 | 		      unsigned int flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { | 
 | 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 Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 56 | 	if (!host_file->f_op || !host_file->f_op->splice_read) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | 		return -EINVAL; | 
 | 58 |  | 
| Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 59 | 	return host_file->f_op->splice_read(host_file, ppos, pipe, count,flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } | 
 | 61 |  | 
 | 62 | static ssize_t | 
 | 63 | coda_file_write(struct file *coda_file, const char __user *buf, size_t count, loff_t *ppos) | 
 | 64 | { | 
| Josef Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 65 | 	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] | 66 | 	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 Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 77 | 	host_inode = host_file->f_path.dentry->d_inode; | 
| Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 78 | 	mutex_lock(&coda_inode->i_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 |  | 
 | 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 Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 85 | 	mutex_unlock(&coda_inode->i_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 |  | 
 | 87 | 	return ret; | 
 | 88 | } | 
 | 89 |  | 
 | 90 | static int | 
 | 91 | coda_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 Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 105 | 	coda_inode = coda_file->f_path.dentry->d_inode; | 
 | 106 | 	host_inode = host_file->f_path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | 	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 |  | 
 | 124 | int 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | 	cfi = kmalloc(sizeof(struct coda_file_info), GFP_KERNEL); | 
| Josh Triplett | 6ecbc4e | 2006-07-30 03:03:56 -0700 | [diff] [blame] | 133 | 	if (!cfi) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | 		return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 |  | 
 | 136 | 	lock_kernel(); | 
 | 137 |  | 
 | 138 | 	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] | 139 | 			   &host_file); | 
 | 140 | 	if (!host_file) | 
 | 141 | 		error = -EIO; | 
 | 142 |  | 
 | 143 | 	if (error) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | int 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 Harkes | 3cf01f2 | 2007-07-19 01:48:51 -0700 | [diff] [blame] | 172 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | 	cfi = CODA_FTOC(coda_file); | 
 | 174 | 	BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC); | 
 | 175 |  | 
| Jan Harkes | d3fec42 | 2007-07-21 04:37:26 -0700 | [diff] [blame] | 176 | 	err = venus_close(coda_inode->i_sb, coda_i2f(coda_inode), | 
 | 177 | 			  coda_flags, coda_file->f_uid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 |  | 
| Josef Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 179 | 	host_inode = cfi->cfi_container->f_path.dentry->d_inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | 	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 Harkes | d3fec42 | 2007-07-21 04:37:26 -0700 | [diff] [blame] | 194 |  | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } | 
 | 199 |  | 
 | 200 | int 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | 	if (host_file->f_op && host_file->f_op->fsync) { | 
| Josef Sipek | d4176d3 | 2006-12-08 02:36:56 -0800 | [diff] [blame] | 217 | 		host_dentry = host_file->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | 		host_inode = host_dentry->d_inode; | 
| Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 219 | 		mutex_lock(&host_inode->i_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | 		err = host_file->f_op->fsync(host_file, host_dentry, datasync); | 
| Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 221 | 		mutex_unlock(&host_inode->i_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | 	} | 
 | 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 Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 233 | const struct file_operations coda_file_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | 	.llseek		= generic_file_llseek, | 
 | 235 | 	.read		= coda_file_read, | 
 | 236 | 	.write		= coda_file_write, | 
 | 237 | 	.mmap		= coda_file_mmap, | 
 | 238 | 	.open		= coda_open, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | 	.release	= coda_release, | 
 | 240 | 	.fsync		= coda_fsync, | 
| Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 241 | 	.splice_read	= coda_file_splice_read, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | }; | 
 | 243 |  |