5 * File handling routines for the OSTA-UDF(tm) filesystem.
8 * E-mail regarding any portion of the Linux UDF file system should be
9 * directed to the development team mailing list (run by majordomo):
10 * linux_udf@hpesjro.fc.hp.com
13 * This file is distributed under the terms of the GNU General Public
14 * License (GPL). Copies of the GPL can be obtained from:
15 * ftp://prep.ai.mit.edu/pub/gnu/GPL
16 * Each contributing author retains all rights to their own work.
18 * (C) 1998-1999 Dave Boynton
19 * (C) 1998-2004 Ben Fennema
20 * (C) 1999-2000 Stelias Computing Inc
24 * 10/02/98 dgb Attempt to integrate into udf.o
25 * 10/07/98 Switched to using generic_readpage, etc., like isofs
27 * 12/06/98 blf Added udf_file_read. uses generic_file_read for all cases but
28 * ICBTAG_FLAG_AD_IN_ICB.
29 * 04/06/99 64 bit file handling on 32 bit systems taken from ext2 file.c
30 * 05/12/99 Preliminary file write support
35 #include <linux/udf_fs.h>
36 #include <asm/uaccess.h>
37 #include <linux/kernel.h>
38 #include <linux/string.h> /* memset */
39 #include <linux/errno.h>
40 #include <linux/smp_lock.h>
41 #include <linux/pagemap.h>
42 #include <linux/buffer_head.h>
47 static int udf_adinicb_readpage(struct file *file, struct page * page)
49 struct inode *inode = page->mapping->host;
52 if (!PageLocked(page))
56 memset(kaddr, 0, PAGE_CACHE_SIZE);
57 memcpy(kaddr, UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), inode->i_size);
58 flush_dcache_page(page);
59 SetPageUptodate(page);
65 static int udf_adinicb_writepage(struct page *page, struct writeback_control *wbc)
67 struct inode *inode = page->mapping->host;
70 if (!PageLocked(page))
74 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), kaddr, inode->i_size);
75 mark_inode_dirty(inode);
76 SetPageUptodate(page);
82 static int udf_adinicb_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to)
88 static int udf_adinicb_commit_write(struct file *file, struct page *page, unsigned offset, unsigned to)
90 struct inode *inode = page->mapping->host;
91 char *kaddr = page_address(page);
93 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset,
94 kaddr + offset, to - offset);
95 mark_inode_dirty(inode);
96 SetPageUptodate(page);
98 /* only one page here */
99 if (to > inode->i_size)
104 struct address_space_operations udf_adinicb_aops = {
105 .readpage = udf_adinicb_readpage,
106 .writepage = udf_adinicb_writepage,
107 .sync_page = block_sync_page,
108 .prepare_write = udf_adinicb_prepare_write,
109 .commit_write = udf_adinicb_commit_write,
112 static ssize_t udf_file_write(struct file * file, const char __user * buf,
113 size_t count, loff_t *ppos)
116 struct inode *inode = file->f_dentry->d_inode;
119 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB)
121 if (file->f_flags & O_APPEND)
126 if (inode->i_sb->s_blocksize < (udf_file_entry_alloc_offset(inode) +
129 udf_expand_file_adinicb(inode, pos + count, &err);
130 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB)
132 udf_debug("udf_expand_adinicb: err=%d\n", err);
138 if (pos + count > inode->i_size)
139 UDF_I_LENALLOC(inode) = pos + count;
141 UDF_I_LENALLOC(inode) = inode->i_size;
145 retval = generic_file_write(file, buf, count, ppos);
148 mark_inode_dirty(inode);
159 * Optional - sys_ioctl() will return -ENOTTY if this routine is not
160 * available, and the ioctl cannot be handled without filesystem help.
162 * sys_ioctl() handles these ioctls that apply only to regular files:
163 * FIBMAP [requires udf_block_map()], FIGETBSZ, FIONREAD
164 * These ioctls are also handled by sys_ioctl():
165 * FIOCLEX, FIONCLEX, FIONBIO, FIOASYNC
166 * All other ioctls are passed to the filesystem.
168 * Refer to sys_ioctl() in fs/ioctl.c
172 * inode Pointer to inode that ioctl was issued on.
173 * filp Pointer to file that ioctl was issued on.
174 * cmd The ioctl command.
175 * arg The ioctl argument [can be interpreted as a
176 * user-space pointer if desired].
179 * <return> Success (>=0) or an error code (<=0) that
180 * sys_ioctl() will return.
183 * July 1, 1997 - Andrew E. Mileski
184 * Written, tested, and released.
186 int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
189 int result = -EINVAL;
191 if ( permission(inode, MAY_READ, NULL) != 0 )
193 udf_debug("no permission to access inode %lu\n",
200 udf_debug("invalid argument to udf_ioctl\n");
206 case UDF_GETVOLIDENT:
207 return copy_to_user((char __user *)arg,
208 UDF_SB_VOLIDENT(inode->i_sb), 32) ? -EFAULT : 0;
209 case UDF_RELOCATE_BLOCKS:
213 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
214 if (get_user(old, (long __user *)arg)) return -EFAULT;
215 if ((result = udf_relocate_blocks(inode->i_sb,
217 result = put_user(new, (long __user *)arg);
222 result = put_user(UDF_I_LENEATTR(inode), (int __user *)arg);
226 result = copy_to_user((char __user *)arg, UDF_I_DATA(inode),
227 UDF_I_LENEATTR(inode)) ? -EFAULT : 0;
238 * Called when all references to the file are closed
241 * Discard prealloced blocks
246 static int udf_release_file(struct inode * inode, struct file * filp)
248 if (filp->f_mode & FMODE_WRITE)
251 udf_discard_prealloc(inode);
257 struct file_operations udf_file_operations = {
258 .read = generic_file_read,
260 .open = generic_file_open,
261 .mmap = generic_file_mmap,
262 .write = udf_file_write,
263 .release = udf_release_file,
264 .fsync = udf_fsync_file,
265 .sendfile = generic_file_sendfile,
268 struct inode_operations udf_file_inode_operations = {
269 .truncate = udf_truncate,