5 * File handling routines for the OSTA-UDF(tm) filesystem.
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
13 * (C) 1998-1999 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
19 * 10/02/98 dgb Attempt to integrate into udf.o
20 * 10/07/98 Switched to using generic_readpage, etc., like isofs
22 * 12/06/98 blf Added udf_file_read. uses generic_file_read for all cases but
23 * ICBTAG_FLAG_AD_IN_ICB.
24 * 04/06/99 64 bit file handling on 32 bit systems taken from ext2 file.c
25 * 05/12/99 Preliminary file write support
30 #include <linux/udf_fs.h>
31 #include <asm/uaccess.h>
32 #include <linux/kernel.h>
33 #include <linux/string.h> /* memset */
34 #include <linux/capability.h>
35 #include <linux/errno.h>
36 #include <linux/smp_lock.h>
37 #include <linux/pagemap.h>
38 #include <linux/buffer_head.h>
39 #include <linux/aio.h>
44 static int udf_adinicb_readpage(struct file *file, struct page *page)
46 struct inode *inode = page->mapping->host;
49 BUG_ON(!PageLocked(page));
52 memset(kaddr, 0, PAGE_CACHE_SIZE);
53 memcpy(kaddr, UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), inode->i_size);
54 flush_dcache_page(page);
55 SetPageUptodate(page);
61 static int udf_adinicb_writepage(struct page *page,
62 struct writeback_control *wbc)
64 struct inode *inode = page->mapping->host;
67 BUG_ON(!PageLocked(page));
70 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), kaddr, inode->i_size);
71 mark_inode_dirty(inode);
72 SetPageUptodate(page);
78 static int udf_adinicb_prepare_write(struct file *file, struct page *page,
79 unsigned offset, unsigned to)
85 static int udf_adinicb_commit_write(struct file *file, struct page *page,
86 unsigned offset, unsigned to)
88 struct inode *inode = page->mapping->host;
89 char *kaddr = page_address(page);
91 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset,
92 kaddr + offset, to - offset);
93 mark_inode_dirty(inode);
94 SetPageUptodate(page);
96 /* only one page here */
97 if (to > inode->i_size)
102 const struct address_space_operations udf_adinicb_aops = {
103 .readpage = udf_adinicb_readpage,
104 .writepage = udf_adinicb_writepage,
105 .sync_page = block_sync_page,
106 .prepare_write = udf_adinicb_prepare_write,
107 .commit_write = udf_adinicb_commit_write,
110 static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
111 unsigned long nr_segs, loff_t ppos)
114 struct file *file = iocb->ki_filp;
115 struct inode *inode = file->f_path.dentry->d_inode;
117 size_t count = iocb->ki_left;
119 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
120 if (file->f_flags & O_APPEND)
125 if (inode->i_sb->s_blocksize <
126 (udf_file_entry_alloc_offset(inode) + pos + count)) {
127 udf_expand_file_adinicb(inode, pos + count, &err);
128 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
129 udf_debug("udf_expand_adinicb: err=%d\n", err);
133 if (pos + count > inode->i_size)
134 UDF_I_LENALLOC(inode) = pos + count;
136 UDF_I_LENALLOC(inode) = inode->i_size;
140 retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
143 mark_inode_dirty(inode);
154 * Optional - sys_ioctl() will return -ENOTTY if this routine is not
155 * available, and the ioctl cannot be handled without filesystem help.
157 * sys_ioctl() handles these ioctls that apply only to regular files:
158 * FIBMAP [requires udf_block_map()], FIGETBSZ, FIONREAD
159 * These ioctls are also handled by sys_ioctl():
160 * FIOCLEX, FIONCLEX, FIONBIO, FIOASYNC
161 * All other ioctls are passed to the filesystem.
163 * Refer to sys_ioctl() in fs/ioctl.c
167 * inode Pointer to inode that ioctl was issued on.
168 * filp Pointer to file that ioctl was issued on.
169 * cmd The ioctl command.
170 * arg The ioctl argument [can be interpreted as a
171 * user-space pointer if desired].
174 * <return> Success (>=0) or an error code (<=0) that
175 * sys_ioctl() will return.
178 * July 1, 1997 - Andrew E. Mileski
179 * Written, tested, and released.
181 int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
184 int result = -EINVAL;
186 if (file_permission(filp, MAY_READ) != 0) {
187 udf_debug("no permission to access inode %lu\n", inode->i_ino);
192 udf_debug("invalid argument to udf_ioctl\n");
197 case UDF_GETVOLIDENT:
198 return copy_to_user((char __user *)arg,
199 UDF_SB_VOLIDENT(inode->i_sb),
201 case UDF_RELOCATE_BLOCKS:
205 if (!capable(CAP_SYS_ADMIN))
207 if (get_user(old, (long __user *)arg))
209 if ((result = udf_relocate_blocks(inode->i_sb,
211 result = put_user(new, (long __user *)arg);
216 result = put_user(UDF_I_LENEATTR(inode), (int __user *)arg);
220 result = copy_to_user((char __user *)arg, UDF_I_DATA(inode),
221 UDF_I_LENEATTR(inode)) ? -EFAULT : 0;
232 * Called when all references to the file are closed
235 * Discard prealloced blocks
240 static int udf_release_file(struct inode *inode, struct file *filp)
242 if (filp->f_mode & FMODE_WRITE) {
244 udf_discard_prealloc(inode);
250 const struct file_operations udf_file_operations = {
251 .read = do_sync_read,
252 .aio_read = generic_file_aio_read,
254 .open = generic_file_open,
255 .mmap = generic_file_mmap,
256 .write = do_sync_write,
257 .aio_write = udf_file_aio_write,
258 .release = udf_release_file,
259 .fsync = udf_fsync_file,
260 .splice_read = generic_file_splice_read,
263 const struct inode_operations udf_file_inode_operations = {
264 .truncate = udf_truncate,