blob: a984a8911167838c7db9af83e9b5b13d638c24ac [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 Gorcunov28de7942007-07-21 04:37:18 -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);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 0;
60}
61
Marcin Slusarz4b111112008-02-08 04:20:36 -080062static int udf_adinicb_writepage(struct page *page,
63 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 struct inode *inode = page->mapping->host;
66 char *kaddr;
67
Matt Mackallcd7619d2005-05-01 08:59:01 -070068 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 kaddr = kmap(page);
71 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode), kaddr, inode->i_size);
72 mark_inode_dirty(inode);
73 SetPageUptodate(page);
74 kunmap(page);
75 unlock_page(page);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return 0;
78}
79
Nick Pigginbe021ee2007-10-16 01:25:20 -070080static int udf_adinicb_write_end(struct file *file,
81 struct address_space *mapping,
82 loff_t pos, unsigned len, unsigned copied,
83 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Nick Pigginbe021ee2007-10-16 01:25:20 -070085 struct inode *inode = mapping->host;
86 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
87 char *kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Nick Pigginbe021ee2007-10-16 01:25:20 -070089 kaddr = kmap_atomic(page, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 memcpy(UDF_I_DATA(inode) + UDF_I_LENEATTR(inode) + offset,
Nick Pigginbe021ee2007-10-16 01:25:20 -070091 kaddr + offset, copied);
92 kunmap_atomic(kaddr, KM_USER0);
93
94 return simple_write_end(file, mapping, pos, len, copied, page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070097const struct address_space_operations udf_adinicb_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070098 .readpage = udf_adinicb_readpage,
99 .writepage = udf_adinicb_writepage,
100 .sync_page = block_sync_page,
Nick Pigginbe021ee2007-10-16 01:25:20 -0700101 .write_begin = simple_write_begin,
102 .write_end = udf_adinicb_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
Badari Pulavarty543ade12006-09-30 23:28:48 -0700105static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700106 unsigned long nr_segs, loff_t ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 ssize_t retval;
Badari Pulavarty543ade12006-09-30 23:28:48 -0700109 struct file *file = iocb->ki_filp;
Josef Sipek5096e932006-12-08 02:37:44 -0800110 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int err, pos;
Badari Pulavarty543ade12006-09-30 23:28:48 -0700112 size_t count = iocb->ki_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700114 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (file->f_flags & O_APPEND)
116 pos = inode->i_size;
117 else
Badari Pulavarty543ade12006-09-30 23:28:48 -0700118 pos = ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Marcin Slusarz4b111112008-02-08 04:20:36 -0800120 if (inode->i_sb->s_blocksize <
121 (udf_file_entry_alloc_offset(inode) +
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700122 pos + count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 udf_expand_file_adinicb(inode, pos + count, &err);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700124 if (UDF_I_ALLOCTYPE(inode) == ICBTAG_FLAG_AD_IN_ICB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 udf_debug("udf_expand_adinicb: err=%d\n", err);
126 return err;
127 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700128 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (pos + count > inode->i_size)
130 UDF_I_LENALLOC(inode) = pos + count;
131 else
132 UDF_I_LENALLOC(inode) = inode->i_size;
133 }
134 }
135
Badari Pulavarty543ade12006-09-30 23:28:48 -0700136 retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (retval > 0)
138 mark_inode_dirty(inode);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return retval;
141}
142
143/*
144 * udf_ioctl
145 *
146 * PURPOSE
147 * Issue an ioctl.
148 *
149 * DESCRIPTION
150 * Optional - sys_ioctl() will return -ENOTTY if this routine is not
151 * available, and the ioctl cannot be handled without filesystem help.
152 *
153 * sys_ioctl() handles these ioctls that apply only to regular files:
154 * FIBMAP [requires udf_block_map()], FIGETBSZ, FIONREAD
155 * These ioctls are also handled by sys_ioctl():
156 * FIOCLEX, FIONCLEX, FIONBIO, FIOASYNC
157 * All other ioctls are passed to the filesystem.
158 *
159 * Refer to sys_ioctl() in fs/ioctl.c
160 * sys_ioctl() -> .
161 *
162 * PRE-CONDITIONS
163 * inode Pointer to inode that ioctl was issued on.
164 * filp Pointer to file that ioctl was issued on.
165 * cmd The ioctl command.
166 * arg The ioctl argument [can be interpreted as a
167 * user-space pointer if desired].
168 *
169 * POST-CONDITIONS
170 * <return> Success (>=0) or an error code (<=0) that
171 * sys_ioctl() will return.
172 *
173 * HISTORY
174 * July 1, 1997 - Andrew E. Mileski
175 * Written, tested, and released.
176 */
177int udf_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700178 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700180 long old_block, new_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int result = -EINVAL;
182
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700183 if (file_permission(filp, MAY_READ) != 0) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700184 udf_debug("no permission to access inode %lu\n",
185 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return -EPERM;
187 }
188
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700189 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 udf_debug("invalid argument to udf_ioctl\n");
191 return -EINVAL;
192 }
193
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700194 switch (cmd) {
195 case UDF_GETVOLIDENT:
Marcin Slusarz4b111112008-02-08 04:20:36 -0800196 if (copy_to_user((char __user *)arg,
197 UDF_SB(inode->i_sb)->s_volume_ident, 32))
198 return -EFAULT;
199 else
200 return 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700201 case UDF_RELOCATE_BLOCKS:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700202 if (!capable(CAP_SYS_ADMIN))
203 return -EACCES;
204 if (get_user(old_block, (long __user *)arg))
205 return -EFAULT;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800206 result = udf_relocate_blocks(inode->i_sb,
207 old_block, &new_block);
208 if (result == 0)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700209 result = put_user(new_block, (long __user *)arg);
210 return result;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700211 case UDF_GETEASIZE:
212 result = put_user(UDF_I_LENEATTR(inode), (int __user *)arg);
213 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700214 case UDF_GETEABLOCK:
215 result = copy_to_user((char __user *)arg, UDF_I_DATA(inode),
216 UDF_I_LENEATTR(inode)) ? -EFAULT : 0;
217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
220 return result;
221}
222
223/*
224 * udf_release_file
225 *
226 * PURPOSE
227 * Called when all references to the file are closed
228 *
229 * DESCRIPTION
230 * Discard prealloced blocks
231 *
232 * HISTORY
233 *
234 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700235static int udf_release_file(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700237 if (filp->f_mode & FMODE_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 lock_kernel();
239 udf_discard_prealloc(inode);
240 unlock_kernel();
241 }
242 return 0;
243}
244
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800245const struct file_operations udf_file_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700246 .read = do_sync_read,
247 .aio_read = generic_file_aio_read,
248 .ioctl = udf_ioctl,
249 .open = generic_file_open,
250 .mmap = generic_file_mmap,
251 .write = do_sync_write,
252 .aio_write = udf_file_aio_write,
253 .release = udf_release_file,
254 .fsync = udf_fsync_file,
255 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256};
257
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800258const struct inode_operations udf_file_inode_operations = {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700259 .truncate = udf_truncate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};