file.c 6.6 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
/*
 * 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>
F
Fabian Frederick 已提交
30
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
31
#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>
37
#include <linux/uio.h>
L
Linus Torvalds 已提交
38 39 40 41

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

42
static void __udf_adinicb_readpage(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 48

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

static int udf_adinicb_readpage(struct file *file, struct page *page)
{
	BUG_ON(!PageLocked(page));
	__udf_adinicb_readpage(page);
L
Linus Torvalds 已提交
60
	unlock_page(page);
61

L
Linus Torvalds 已提交
62 63 64
	return 0;
}

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

M
Matt Mackall 已提交
72
	BUG_ON(!PageLocked(page));
L
Linus Torvalds 已提交
73 74

	kaddr = kmap(page);
75
	memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size);
L
Linus Torvalds 已提交
76 77 78 79
	mark_inode_dirty(inode);
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
80

L
Linus Torvalds 已提交
81 82 83
	return 0;
}

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
static int udf_adinicb_write_begin(struct file *file,
			struct address_space *mapping, loff_t pos,
			unsigned len, unsigned flags, struct page **pagep,
			void **fsdata)
{
	struct page *page;

	if (WARN_ON_ONCE(pos >= PAGE_CACHE_SIZE))
		return -EIO;
	page = grab_cache_page_write_begin(mapping, 0, flags);
	if (!page)
		return -ENOMEM;
	*pagep = page;

	if (!PageUptodate(page) && len != PAGE_CACHE_SIZE)
		__udf_adinicb_readpage(page);
	return 0;
}

103
static ssize_t udf_adinicb_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
A
Al Viro 已提交
104
				     loff_t offset)
I
Ian Abbott 已提交
105 106 107 108 109
{
	/* Fallback to buffered I/O. */
	return 0;
}

110
const struct address_space_operations udf_adinicb_aops = {
111 112
	.readpage	= udf_adinicb_readpage,
	.writepage	= udf_adinicb_writepage,
113
	.write_begin	= udf_adinicb_write_begin,
114
	.write_end	= simple_write_end,
I
Ian Abbott 已提交
115
	.direct_IO	= udf_adinicb_direct_IO,
L
Linus Torvalds 已提交
116 117
};

A
Al Viro 已提交
118
static ssize_t udf_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
L
Linus Torvalds 已提交
119 120
{
	ssize_t retval;
121
	struct file *file = iocb->ki_filp;
A
Al Viro 已提交
122
	struct inode *inode = file_inode(file);
L
Linus Torvalds 已提交
123
	int err, pos;
C
Christoph Hellwig 已提交
124
	size_t count = iov_iter_count(from);
125
	struct udf_inode_info *iinfo = UDF_I(inode);
L
Linus Torvalds 已提交
126

127
	mutex_lock(&inode->i_mutex);
128
	down_write(&iinfo->i_data_sem);
129
	if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
130 131 132
		if (file->f_flags & O_APPEND)
			pos = inode->i_size;
		else
A
Al Viro 已提交
133
			pos = iocb->ki_pos;
L
Linus Torvalds 已提交
134

M
Marcin Slusarz 已提交
135 136
		if (inode->i_sb->s_blocksize <
				(udf_file_entry_alloc_offset(inode) +
137
						pos + count)) {
138 139
			err = udf_expand_file_adinicb(inode);
			if (err) {
140
				mutex_unlock(&inode->i_mutex);
L
Linus Torvalds 已提交
141 142 143
				udf_debug("udf_expand_adinicb: err=%d\n", err);
				return err;
			}
144
		} else {
L
Linus Torvalds 已提交
145
			if (pos + count > inode->i_size)
146
				iinfo->i_lenAlloc = pos + count;
L
Linus Torvalds 已提交
147
			else
148
				iinfo->i_lenAlloc = inode->i_size;
149
			up_write(&iinfo->i_data_sem);
L
Linus Torvalds 已提交
150
		}
151 152
	} else
		up_write(&iinfo->i_data_sem);
L
Linus Torvalds 已提交
153

A
Al Viro 已提交
154
	retval = __generic_file_write_iter(iocb, from);
155 156 157 158 159
	mutex_unlock(&inode->i_mutex);

	if (retval > 0) {
		ssize_t err;

L
Linus Torvalds 已提交
160
		mark_inode_dirty(inode);
161 162 163 164
		err = generic_write_sync(file, iocb->ki_pos - retval, retval);
		if (err < 0)
			retval = err;
	}
165

L
Linus Torvalds 已提交
166 167 168
	return retval;
}

J
John Kacur 已提交
169
long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
170
{
A
Al Viro 已提交
171
	struct inode *inode = file_inode(filp);
172
	long old_block, new_block;
L
Linus Torvalds 已提交
173 174
	int result = -EINVAL;

175
	if (inode_permission(inode, MAY_READ) != 0) {
J
John Kacur 已提交
176 177 178
		udf_debug("no permission to access inode %lu\n", inode->i_ino);
		result = -EPERM;
		goto out;
L
Linus Torvalds 已提交
179 180
	}

181
	if (!arg) {
L
Linus Torvalds 已提交
182
		udf_debug("invalid argument to udf_ioctl\n");
J
John Kacur 已提交
183 184
		result = -EINVAL;
		goto out;
L
Linus Torvalds 已提交
185 186
	}

187 188
	switch (cmd) {
	case UDF_GETVOLIDENT:
M
Marcin Slusarz 已提交
189 190
		if (copy_to_user((char __user *)arg,
				 UDF_SB(inode->i_sb)->s_volume_ident, 32))
J
John Kacur 已提交
191
			result = -EFAULT;
M
Marcin Slusarz 已提交
192
		else
J
John Kacur 已提交
193 194
			result = 0;
		goto out;
195
	case UDF_RELOCATE_BLOCKS:
J
John Kacur 已提交
196
		if (!capable(CAP_SYS_ADMIN)) {
197
			result = -EPERM;
J
John Kacur 已提交
198 199 200 201 202 203
			goto out;
		}
		if (get_user(old_block, (long __user *)arg)) {
			result = -EFAULT;
			goto out;
		}
M
Marcin Slusarz 已提交
204 205 206
		result = udf_relocate_blocks(inode->i_sb,
						old_block, &new_block);
		if (result == 0)
207
			result = put_user(new_block, (long __user *)arg);
J
John Kacur 已提交
208
		goto out;
209
	case UDF_GETEASIZE:
210
		result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
J
John Kacur 已提交
211
		goto out;
212
	case UDF_GETEABLOCK:
213 214 215
		result = copy_to_user((char __user *)arg,
				      UDF_I(inode)->i_ext.i_data,
				      UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
J
John Kacur 已提交
216
		goto out;
L
Linus Torvalds 已提交
217 218
	}

J
John Kacur 已提交
219
out:
L
Linus Torvalds 已提交
220 221 222
	return result;
}

223
static int udf_release_file(struct inode *inode, struct file *filp)
L
Linus Torvalds 已提交
224
{
225
	if (filp->f_mode & FMODE_WRITE &&
226
	    atomic_read(&inode->i_writecount) == 1) {
227 228 229 230 231
		/*
		 * Grab i_mutex to avoid races with writes changing i_size
		 * while we are running.
		 */
		mutex_lock(&inode->i_mutex);
232
		down_write(&UDF_I(inode)->i_data_sem);
L
Linus Torvalds 已提交
233
		udf_discard_prealloc(inode);
J
Jan Kara 已提交
234
		udf_truncate_tail_extent(inode);
235
		up_write(&UDF_I(inode)->i_data_sem);
236
		mutex_unlock(&inode->i_mutex);
L
Linus Torvalds 已提交
237 238 239 240
	}
	return 0;
}

241
const struct file_operations udf_file_operations = {
242
	.read_iter		= generic_file_read_iter,
J
John Kacur 已提交
243
	.unlocked_ioctl		= udf_ioctl,
J
Jan Kara 已提交
244
	.open			= generic_file_open,
245
	.mmap			= generic_file_mmap,
A
Al Viro 已提交
246
	.write_iter		= udf_file_write_iter,
247
	.release		= udf_release_file,
248
	.fsync			= generic_file_fsync,
249
	.splice_read		= generic_file_splice_read,
C
Christoph Hellwig 已提交
250
	.llseek			= generic_file_llseek,
L
Linus Torvalds 已提交
251 252
};

C
Christoph Hellwig 已提交
253 254 255 256 257 258 259 260
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 已提交
261 262 263

	if ((attr->ia_valid & ATTR_SIZE) &&
	    attr->ia_size != i_size_read(inode)) {
264
		error = udf_setsize(inode, attr->ia_size);
C
Christoph Hellwig 已提交
265 266 267 268 269 270 271
		if (error)
			return error;
	}

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

274
const struct inode_operations udf_file_inode_operations = {
C
Christoph Hellwig 已提交
275
	.setattr		= udf_setattr,
L
Linus Torvalds 已提交
276
};