blob: 67bf36bd3e6ed88c00af94892c5facef893c9729 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * file.c
3 *
4 * PURPOSE
5 * File handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
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.
12 *
13 * (C) 1998-1999 Dave Boynton
14 * (C) 1998-2004 Ben Fennema
15 * (C) 1999-2000 Stelias Computing Inc
16 *
17 * HISTORY
18 *
19 * 10/02/98 dgb Attempt to integrate into udf.o
20 * 10/07/98 Switched to using generic_readpage, etc., like isofs
21 * And it works!
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
26 */
27
28#include "udfdecl.h"
29#include <linux/fs.h>
30#include <linux/udf_fs.h>
31#include <asm/uaccess.h>
32#include <linux/kernel.h>
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070033#include <linux/string.h> /* memset */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080034#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/errno.h>
36#include <linux/smp_lock.h>
37#include <linux/pagemap.h>
38#include <linux/buffer_head.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040039#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "udf_i.h"
42#include "udf_sb.h"
43
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070044static int udf_adinicb_readpage(struct file *file, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 struct inode *inode = page->mapping->host;
47 char *kaddr;
48
Matt Mackallcd7619d2005-05-01 08:59:01 -070049 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 kaddr = kmap(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);
56 kunmap(page);
57 unlock_page(page);
58 return 0;
59}
60
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070061static int udf_adinicb_writepage(struct page *page,
62 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 struct inode *inode = page->mapping->host;
65 char *kaddr;
66
Matt Mackallcd7619d2005-05-01 08:59:01 -070067 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 kaddr = kmap(page);
70 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), kaddr, inode->i_size);
71 mark_inode_dirty(inode);
72 SetPageUptodate(page);
73 kunmap(page);
74 unlock_page(page);
75 return 0;
76}
77
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070078static int udf_adinicb_prepare_write(struct file *file, struct page *page,
79 unsigned offset, unsigned to)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 kmap(page);
82 return 0;
83}
84
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070085static int udf_adinicb_commit_write(struct file *file, struct page *page,
86 unsigned offset, unsigned to)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 struct inode *inode = page->mapping->host;
89 char *kaddr = page_address(page);
90
91 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070092 kaddr + offset, to - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 mark_inode_dirty(inode);
94 SetPageUptodate(page);
95 kunmap(page);
96 /* only one page here */
97 if (to > inode->i_size)
98 inode->i_size = to;
99 return 0;
100}
101
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700102const struct address_space_operations udf_adinicb_aops = {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700103 .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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Badari Pulavarty543ade12006-09-30 23:28:48 -0700110static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700111 unsigned long nr_segs, loff_t ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 ssize_t retval;
Badari Pulavarty543ade12006-09-30 23:28:48 -0700114 struct file *file = iocb->ki_filp;
Josef Sipek5096e932006-12-08 02:37:44 -0800115 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int err, pos;
Badari Pulavarty543ade12006-09-30 23:28:48 -0700117 size_t count = iocb->ki_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700119 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (file->f_flags & O_APPEND)
121 pos = inode->i_size;
122 else
Badari Pulavarty543ade12006-09-30 23:28:48 -0700123 pos = ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700125 if (inode->i_sb->s_blocksize <
126 (udf_file_entry_alloc_offset(inode) + pos + count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 udf_expand_file_adinicb(inode, pos + count, &err);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700128 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 udf_debug("udf_expand_adinicb: err=%d\n", err);
130 return err;
131 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700132 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (pos + count > inode->i_size)
134 UDF_I_LENALLOC(inode) = pos + count;
135 else
136 UDF_I_LENALLOC(inode) = inode->i_size;
137 }
138 }
139
Badari Pulavarty543ade12006-09-30 23:28:48 -0700140 retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 if (retval > 0)
143 mark_inode_dirty(inode);
144 return retval;
145}
146
147/*
148 * udf_ioctl
149 *
150 * PURPOSE
151 * Issue an ioctl.
152 *
153 * DESCRIPTION
154 * Optional - sys_ioctl() will return -ENOTTY if this routine is not
155 * available, and the ioctl cannot be handled without filesystem help.
156 *
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.
162 *
163 * Refer to sys_ioctl() in fs/ioctl.c
164 * sys_ioctl() -> .
165 *
166 * PRE-CONDITIONS
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].
172 *
173 * POST-CONDITIONS
174 * <return> Success (>=0) or an error code (<=0) that
175 * sys_ioctl() will return.
176 *
177 * HISTORY
178 * July 1, 1997 - Andrew E. Mileski
179 * Written, tested, and released.
180 */
181int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700182 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 int result = -EINVAL;
185
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700186 if (file_permission(filp, MAY_READ) != 0) {
187 udf_debug("no permission to access inode %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -EPERM;
189 }
190
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700191 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 udf_debug("invalid argument to udf_ioctl\n");
193 return -EINVAL;
194 }
195
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700196 switch (cmd) {
197 case UDF_GETVOLIDENT:
198 return copy_to_user((char __user *)arg,
199 UDF_SB_VOLIDENT(inode->i_sb),
200 32) ? -EFAULT : 0;
201 case UDF_RELOCATE_BLOCKS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 {
203 long old, new;
204
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700205 if (!capable(CAP_SYS_ADMIN))
206 return -EACCES;
207 if (get_user(old, (long __user *)arg))
208 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if ((result = udf_relocate_blocks(inode->i_sb,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700210 old, &new)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 result = put_user(new, (long __user *)arg);
212
213 return result;
214 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700215 case UDF_GETEASIZE:
216 result = put_user(UDF_I_LENEATTR(inode), (int __user *)arg);
217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700219 case UDF_GETEABLOCK:
220 result = copy_to_user((char __user *)arg, UDF_I_DATA(inode),
221 UDF_I_LENEATTR(inode)) ? -EFAULT : 0;
222 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
225 return result;
226}
227
228/*
229 * udf_release_file
230 *
231 * PURPOSE
232 * Called when all references to the file are closed
233 *
234 * DESCRIPTION
235 * Discard prealloced blocks
236 *
237 * HISTORY
238 *
239 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700240static int udf_release_file(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700242 if (filp->f_mode & FMODE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 lock_kernel();
244 udf_discard_prealloc(inode);
245 unlock_kernel();
246 }
247 return 0;
248}
249
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800250const struct file_operations udf_file_operations = {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700251 .read = do_sync_read,
252 .aio_read = generic_file_aio_read,
253 .ioctl = udf_ioctl,
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800263const struct inode_operations udf_file_inode_operations = {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700264 .truncate = udf_truncate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};