file.c 6.5 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 32
/*
 * 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 <linux/udf_fs.h>
#include <asm/uaccess.h>
#include <linux/kernel.h>
33
#include <linux/string.h> /* memset */
34
#include <linux/capability.h>
L
Linus Torvalds 已提交
35 36 37 38
#include <linux/errno.h>
#include <linux/smp_lock.h>
#include <linux/pagemap.h>
#include <linux/buffer_head.h>
A
Alexey Dobriyan 已提交
39
#include <linux/aio.h>
L
Linus Torvalds 已提交
40 41 42 43

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

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

M
Matt Mackall 已提交
49
	BUG_ON(!PageLocked(page));
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57

	kaddr = kmap(page);
	memset(kaddr, 0, PAGE_CACHE_SIZE);
	memcpy(kaddr, UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), inode->i_size);
	flush_dcache_page(page);
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
58

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

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

M
Matt Mackall 已提交
67
	BUG_ON(!PageLocked(page));
L
Linus Torvalds 已提交
68 69 70 71 72 73 74

	kaddr = kmap(page);
	memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), kaddr, inode->i_size);
	mark_inode_dirty(inode);
	SetPageUptodate(page);
	kunmap(page);
	unlock_page(page);
75

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

79 80
static int udf_adinicb_prepare_write(struct file *file, struct page *page,
				     unsigned offset, unsigned to)
L
Linus Torvalds 已提交
81 82 83 84 85
{
	kmap(page);
	return 0;
}

86 87
static int udf_adinicb_commit_write(struct file *file, struct page *page,
				    unsigned offset, unsigned to)
L
Linus Torvalds 已提交
88 89 90 91 92
{
	struct inode *inode = page->mapping->host;
	char *kaddr = page_address(page);

	memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset,
93
	       kaddr + offset, to - offset);
L
Linus Torvalds 已提交
94 95 96 97 98 99 100 101 102
	mark_inode_dirty(inode);
	SetPageUptodate(page);
	kunmap(page);
	/* only one page here */
	if (to > inode->i_size)
		inode->i_size = to;
	return 0;
}

103
const struct address_space_operations udf_adinicb_aops = {
104 105 106 107 108
	.readpage	= udf_adinicb_readpage,
	.writepage	= udf_adinicb_writepage,
	.sync_page	= block_sync_page,
	.prepare_write	= udf_adinicb_prepare_write,
	.commit_write	= udf_adinicb_commit_write,
L
Linus Torvalds 已提交
109 110
};

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

120
	if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
L
Linus Torvalds 已提交
121 122 123
		if (file->f_flags & O_APPEND)
			pos = inode->i_size;
		else
124
			pos = ppos;
L
Linus Torvalds 已提交
125

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

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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
	return retval;
}

/*
 * udf_ioctl
 *
 * PURPOSE
 *	Issue an ioctl.
 *
 * DESCRIPTION
 *	Optional - sys_ioctl() will return -ENOTTY if this routine is not
 *	available, and the ioctl cannot be handled without filesystem help.
 *
 *	sys_ioctl() handles these ioctls that apply only to regular files:
 *		FIBMAP [requires udf_block_map()], FIGETBSZ, FIONREAD
 *	These ioctls are also handled by sys_ioctl():
 *		FIOCLEX, FIONCLEX, FIONBIO, FIOASYNC
 *	All other ioctls are passed to the filesystem.
 *
 *	Refer to sys_ioctl() in fs/ioctl.c
 *	sys_ioctl() -> .
 *
 * PRE-CONDITIONS
 *	inode			Pointer to inode that ioctl was issued on.
 *	filp			Pointer to file that ioctl was issued on.
 *	cmd			The ioctl command.
 *	arg			The ioctl argument [can be interpreted as a
 *				user-space pointer if desired].
 *
 * POST-CONDITIONS
 *	<return>		Success (>=0) or an error code (<=0) that
 *				sys_ioctl() will return.
 *
 * HISTORY
 *	July 1, 1997 - Andrew E. Mileski
 *	Written, tested, and released.
 */
int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
183
	      unsigned long arg)
L
Linus Torvalds 已提交
184
{
185
	long old_block, new_block;
L
Linus Torvalds 已提交
186 187
	int result = -EINVAL;

188
	if (file_permission(filp, MAY_READ) != 0) {
189 190
		udf_debug("no permission to access inode %lu\n",
			  inode->i_ino);
L
Linus Torvalds 已提交
191 192 193
		return -EPERM;
	}

194
	if (!arg) {
L
Linus Torvalds 已提交
195 196 197 198
		udf_debug("invalid argument to udf_ioctl\n");
		return -EINVAL;
	}

199 200 201
	switch (cmd) {
	case UDF_GETVOLIDENT:
		return copy_to_user((char __user *)arg,
202
				    UDF_SB_VOLIDENT(inode->i_sb), 32) ? -EFAULT : 0;
203
	case UDF_RELOCATE_BLOCKS:
204 205 206 207 208 209 210 211
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
		if (get_user(old_block, (long __user *)arg))
			return -EFAULT;
		if ((result = udf_relocate_blocks(inode->i_sb,
						  old_block, &new_block)) == 0)
			result = put_user(new_block, (long __user *)arg);
		return result;
212 213 214 215 216 217 218
	case UDF_GETEASIZE:
		result = put_user(UDF_I_LENEATTR(inode), (int __user *)arg);
		break;
	case UDF_GETEABLOCK:
		result = copy_to_user((char __user *)arg, UDF_I_DATA(inode),
				      UDF_I_LENEATTR(inode)) ? -EFAULT : 0;
		break;
L
Linus Torvalds 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
	}

	return result;
}

/*
 * udf_release_file
 *
 * PURPOSE
 *  Called when all references to the file are closed
 *
 * DESCRIPTION
 *  Discard prealloced blocks
 *
 * HISTORY
 *
 */
236
static int udf_release_file(struct inode *inode, struct file *filp)
L
Linus Torvalds 已提交
237
{
238
	if (filp->f_mode & FMODE_WRITE) {
L
Linus Torvalds 已提交
239 240 241 242 243 244 245
		lock_kernel();
		udf_discard_prealloc(inode);
		unlock_kernel();
	}
	return 0;
}

246
const struct file_operations udf_file_operations = {
247 248 249 250 251 252 253 254 255 256
	.read			= do_sync_read,
	.aio_read		= generic_file_aio_read,
	.ioctl			= udf_ioctl,
	.open			= generic_file_open,
	.mmap			= generic_file_mmap,
	.write			= do_sync_write,
	.aio_write		= udf_file_aio_write,
	.release		= udf_release_file,
	.fsync			= udf_fsync_file,
	.splice_read		= generic_file_splice_read,
L
Linus Torvalds 已提交
257 258
};

259
const struct inode_operations udf_file_inode_operations = {
260
	.truncate = udf_truncate,
L
Linus Torvalds 已提交
261
};