file.c 6.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * file.c
 *
 * PURPOSE
 *  File handling routines for the OSTA-UDF(tm) filesystem.
 *
 * COPYRIGHT
 *  This file is distributed under the terms of the GNU General Public
 *  License (GPL). Copies of the GPL can be obtained from:
 *    ftp://prep.ai.mit.edu/pub/gnu/GPL
 *  Each contributing author retains all rights to their own work.
 *
 *  (C) 1998-1999 Dave Boynton
 *  (C) 1998-2004 Ben Fennema
 *  (C) 1999-2000 Stelias Computing Inc
 *
 * HISTORY
 *
 *  10/02/98 dgb  Attempt to integrate into udf.o
 *  10/07/98      Switched to using generic_readpage, etc., like isofs
 *                And it works!
 *  12/06/98 blf  Added udf_file_read. uses generic_file_read for all cases but
 *                ICBTAG_FLAG_AD_IN_ICB.
 *  04/06/99      64 bit file handling on 32 bit systems taken from ext2 file.c
 *  05/12/99      Preliminary file write support
 */

#include "udfdecl.h"
#include <linux/fs.h>
#include <asm/uaccess.h>
#include <linux/kernel.h>
32
#include <linux/string.h> /* memset */
33
#include <linux/capability.h>
L
Linus Torvalds 已提交
34 35 36
#include <linux/errno.h>
#include <linux/pagemap.h>
#include <linux/buffer_head.h>
A
Alexey Dobriyan 已提交
37
#include <linux/aio.h>
L
Linus Torvalds 已提交
38 39 40 41

#include "udf_i.h"
#include "udf_sb.h"

42
static int udf_adinicb_readpage(struct file *file, struct page *page)
L
Linus Torvalds 已提交
43 44 45
{
	struct inode *inode = page->mapping->host;
	char *kaddr;
46
	struct udf_inode_info *iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
47

M
Matt Mackall 已提交
48
	BUG_ON(!PageLocked(page));
L
Linus Torvalds 已提交
49 50 51

	kaddr = kmap(page);
	memset(kaddr, 0, PAGE_CACHE_SIZE);
52
	memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, inode->i_size);
L
Linus Torvalds 已提交
53 54 55 56
	flush_dcache_page(page);
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
57

L
Linus Torvalds 已提交
58 59 60
	return 0;
}

M
Marcin Slusarz 已提交
61 62
static int udf_adinicb_writepage(struct page *page,
				 struct writeback_control *wbc)
L
Linus Torvalds 已提交
63 64 65
{
	struct inode *inode = page->mapping->host;
	char *kaddr;
66
	struct udf_inode_info *iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
67

M
Matt Mackall 已提交
68
	BUG_ON(!PageLocked(page));
L
Linus Torvalds 已提交
69 70

	kaddr = kmap(page);
71
	memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size);
L
Linus Torvalds 已提交
72 73 74 75
	mark_inode_dirty(inode);
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
76

L
Linus Torvalds 已提交
77 78 79
	return 0;
}

N
Nick Piggin 已提交
80 81 82 83
static int udf_adinicb_write_end(struct file *file,
			struct address_space *mapping,
			loff_t pos, unsigned len, unsigned copied,
			struct page *page, void *fsdata)
L
Linus Torvalds 已提交
84
{
N
Nick Piggin 已提交
85 86 87
	struct inode *inode = mapping->host;
	unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
	char *kaddr;
88
	struct udf_inode_info *iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
89

N
Nick Piggin 已提交
90
	kaddr = kmap_atomic(page, KM_USER0);
91
	memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
N
Nick Piggin 已提交
92 93 94 95
		kaddr + offset, copied);
	kunmap_atomic(kaddr, KM_USER0);

	return simple_write_end(file, mapping, pos, len, copied, page, fsdata);
L
Linus Torvalds 已提交
96 97
}

98
const struct address_space_operations udf_adinicb_aops = {
99 100 101
	.readpage	= udf_adinicb_readpage,
	.writepage	= udf_adinicb_writepage,
	.sync_page	= block_sync_page,
N
Nick Piggin 已提交
102 103
	.write_begin = simple_write_begin,
	.write_end = udf_adinicb_write_end,
L
Linus Torvalds 已提交
104 105
};

106
static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
107
				  unsigned long nr_segs, loff_t ppos)
L
Linus Torvalds 已提交
108 109
{
	ssize_t retval;
110
	struct file *file = iocb->ki_filp;
J
Josef Sipek 已提交
111
	struct inode *inode = file->f_path.dentry->d_inode;
L
Linus Torvalds 已提交
112
	int err, pos;
113
	size_t count = iocb->ki_left;
114
	struct udf_inode_info *iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
115

116
	down_write(&iinfo->i_data_sem);
117
	if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
118 119 120
		if (file->f_flags & O_APPEND)
			pos = inode->i_size;
		else
121
			pos = ppos;
L
Linus Torvalds 已提交
122

M
Marcin Slusarz 已提交
123 124
		if (inode->i_sb->s_blocksize <
				(udf_file_entry_alloc_offset(inode) +
125
						pos + count)) {
L
Linus Torvalds 已提交
126
			udf_expand_file_adinicb(inode, pos + count, &err);
127
			if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
128
				udf_debug("udf_expand_adinicb: err=%d\n", err);
129
				up_write(&iinfo->i_data_sem);
L
Linus Torvalds 已提交
130 131
				return err;
			}
132
		} else {
L
Linus Torvalds 已提交
133
			if (pos + count > inode->i_size)
134
				iinfo->i_lenAlloc = pos + count;
L
Linus Torvalds 已提交
135
			else
136
				iinfo->i_lenAlloc = inode->i_size;
L
Linus Torvalds 已提交
137 138
		}
	}
139
	up_write(&iinfo->i_data_sem);
L
Linus Torvalds 已提交
140

141
	retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
L
Linus Torvalds 已提交
142 143
	if (retval > 0)
		mark_inode_dirty(inode);
144

L
Linus Torvalds 已提交
145 146 147
	return retval;
}

J
John Kacur 已提交
148
long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
149
{
J
John Kacur 已提交
150
	struct inode *inode = filp->f_dentry->d_inode;
151
	long old_block, new_block;
L
Linus Torvalds 已提交
152 153
	int result = -EINVAL;

154
	if (file_permission(filp, MAY_READ) != 0) {
J
John Kacur 已提交
155 156 157
		udf_debug("no permission to access inode %lu\n", inode->i_ino);
		result = -EPERM;
		goto out;
L
Linus Torvalds 已提交
158 159
	}

160
	if (!arg) {
L
Linus Torvalds 已提交
161
		udf_debug("invalid argument to udf_ioctl\n");
J
John Kacur 已提交
162 163
		result = -EINVAL;
		goto out;
L
Linus Torvalds 已提交
164 165
	}

166 167
	switch (cmd) {
	case UDF_GETVOLIDENT:
M
Marcin Slusarz 已提交
168 169
		if (copy_to_user((char __user *)arg,
				 UDF_SB(inode->i_sb)->s_volume_ident, 32))
J
John Kacur 已提交
170
			result = -EFAULT;
M
Marcin Slusarz 已提交
171
		else
J
John Kacur 已提交
172 173
			result = 0;
		goto out;
174
	case UDF_RELOCATE_BLOCKS:
J
John Kacur 已提交
175 176 177 178 179 180 181 182
		if (!capable(CAP_SYS_ADMIN)) {
			result = -EACCES;
			goto out;
		}
		if (get_user(old_block, (long __user *)arg)) {
			result = -EFAULT;
			goto out;
		}
M
Marcin Slusarz 已提交
183 184 185
		result = udf_relocate_blocks(inode->i_sb,
						old_block, &new_block);
		if (result == 0)
186
			result = put_user(new_block, (long __user *)arg);
J
John Kacur 已提交
187
		goto out;
188
	case UDF_GETEASIZE:
189
		result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
J
John Kacur 已提交
190
		goto out;
191
	case UDF_GETEABLOCK:
192 193 194
		result = copy_to_user((char __user *)arg,
				      UDF_I(inode)->i_ext.i_data,
				      UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
J
John Kacur 已提交
195
		goto out;
L
Linus Torvalds 已提交
196 197
	}

J
John Kacur 已提交
198
out:
L
Linus Torvalds 已提交
199 200 201
	return result;
}

202
static int udf_release_file(struct inode *inode, struct file *filp)
L
Linus Torvalds 已提交
203
{
204
	if (filp->f_mode & FMODE_WRITE) {
205
		mutex_lock(&inode->i_mutex);
206
		down_write(&UDF_I(inode)->i_data_sem);
L
Linus Torvalds 已提交
207
		udf_discard_prealloc(inode);
J
Jan Kara 已提交
208
		udf_truncate_tail_extent(inode);
209
		up_write(&UDF_I(inode)->i_data_sem);
210
		mutex_unlock(&inode->i_mutex);
L
Linus Torvalds 已提交
211 212 213 214
	}
	return 0;
}

215
const struct file_operations udf_file_operations = {
216 217
	.read			= do_sync_read,
	.aio_read		= generic_file_aio_read,
J
John Kacur 已提交
218
	.unlocked_ioctl		= udf_ioctl,
J
Jan Kara 已提交
219
	.open			= generic_file_open,
220 221 222 223
	.mmap			= generic_file_mmap,
	.write			= do_sync_write,
	.aio_write		= udf_file_aio_write,
	.release		= udf_release_file,
224
	.fsync			= generic_file_fsync,
225
	.splice_read		= generic_file_splice_read,
C
Christoph Hellwig 已提交
226
	.llseek			= generic_file_llseek,
L
Linus Torvalds 已提交
227 228
};

C
Christoph Hellwig 已提交
229 230 231 232 233 234 235 236
static int udf_setattr(struct dentry *dentry, struct iattr *attr)
{
	struct inode *inode = dentry->d_inode;
	int error;

	error = inode_change_ok(inode, attr);
	if (error)
		return error;
C
Christoph Hellwig 已提交
237 238 239 240 241 242 243 244 245 246 247

	if ((attr->ia_valid & ATTR_SIZE) &&
	    attr->ia_size != i_size_read(inode)) {
		error = vmtruncate(inode, attr->ia_size);
		if (error)
			return error;
	}

	setattr_copy(inode, attr);
	mark_inode_dirty(inode);
	return 0;
C
Christoph Hellwig 已提交
248 249
}

250
const struct inode_operations udf_file_inode_operations = {
C
Christoph Hellwig 已提交
251
	.setattr		= udf_setattr,
252
	.truncate		= udf_truncate,
L
Linus Torvalds 已提交
253
};