blob: ccab8b78e3633ea9167afed946a124adc3a106ee [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>
Fabian Fredericke9736062014-06-18 19:38:24 +020030#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kernel.h>
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070032#include <linux/string.h> /* memset */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080033#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/pagemap.h>
36#include <linux/buffer_head.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080037#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include "udf_i.h"
40#include "udf_sb.h"
41
Jan Kara9c2fc0d2012-09-05 15:48:23 +020042static void __udf_adinicb_readpage(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct inode *inode = page->mapping->host;
45 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080046 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080049 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, inode->i_size);
Jan Kara9c2fc0d2012-09-05 15:48:23 +020050 memset(kaddr + inode->i_size, 0, PAGE_CACHE_SIZE - inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 flush_dcache_page(page);
52 SetPageUptodate(page);
53 kunmap(page);
Jan Kara9c2fc0d2012-09-05 15:48:23 +020054}
55
56static int udf_adinicb_readpage(struct file *file, struct page *page)
57{
58 BUG_ON(!PageLocked(page));
59 __udf_adinicb_readpage(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 unlock_page(page);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return 0;
63}
64
Marcin Slusarz4b111112008-02-08 04:20:36 -080065static int udf_adinicb_writepage(struct page *page,
66 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 struct inode *inode = page->mapping->host;
69 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080070 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Matt Mackallcd7619d2005-05-01 08:59:01 -070072 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080075 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 mark_inode_dirty(inode);
77 SetPageUptodate(page);
78 kunmap(page);
79 unlock_page(page);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 0;
82}
83
Jan Kara9c2fc0d2012-09-05 15:48:23 +020084static int udf_adinicb_write_begin(struct file *file,
85 struct address_space *mapping, loff_t pos,
86 unsigned len, unsigned flags, struct page **pagep,
87 void **fsdata)
88{
89 struct page *page;
90
91 if (WARN_ON_ONCE(pos >= PAGE_CACHE_SIZE))
92 return -EIO;
93 page = grab_cache_page_write_begin(mapping, 0, flags);
94 if (!page)
95 return -ENOMEM;
96 *pagep = page;
97
98 if (!PageUptodate(page) && len != PAGE_CACHE_SIZE)
99 __udf_adinicb_readpage(page);
100 return 0;
101}
102
Omar Sandoval22c61862015-03-16 04:33:53 -0700103static ssize_t udf_adinicb_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
Al Virod8d3d942014-03-04 21:27:34 -0500104 loff_t offset)
Ian Abbott5eec54f2012-09-05 17:44:31 +0100105{
106 /* Fallback to buffered I/O. */
107 return 0;
108}
109
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700110const struct address_space_operations udf_adinicb_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700111 .readpage = udf_adinicb_readpage,
112 .writepage = udf_adinicb_writepage,
Jan Kara9c2fc0d2012-09-05 15:48:23 +0200113 .write_begin = udf_adinicb_write_begin,
Chao Yu3f1be4f2014-07-15 09:38:51 +0800114 .write_end = simple_write_end,
Ian Abbott5eec54f2012-09-05 17:44:31 +0100115 .direct_IO = udf_adinicb_direct_IO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
Al Virod4637bc2014-04-03 03:31:17 -0400118static ssize_t udf_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 ssize_t retval;
Badari Pulavarty543ade12006-09-30 23:28:48 -0700121 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500122 struct inode *inode = file_inode(file);
Christoph Hellwig66ee59a2015-02-11 19:56:46 +0100123 size_t count = iov_iter_count(from);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800124 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro165f1a62015-04-07 15:26:36 -0400125 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Jan Kara09ebb172014-02-18 12:00:21 +0100127 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Al Viro0fa6b002015-04-04 04:05:48 -0400129 retval = generic_write_checks(file, &iocb->ki_pos, &count);
Al Viro5f380c72015-04-07 11:28:12 -0400130 if (retval)
131 goto out;
132
133 if (count == 0)
134 goto out;
135
136 iov_iter_truncate(from, count);
137
Al Viro165f1a62015-04-07 15:26:36 -0400138 down_write(&iinfo->i_data_sem);
139 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
140 loff_t end = iocb->ki_pos + iov_iter_count(from);
141
142 if (inode->i_sb->s_blocksize <
143 (udf_file_entry_alloc_offset(inode) + end)) {
144 err = udf_expand_file_adinicb(inode);
145 if (err) {
146 mutex_unlock(&inode->i_mutex);
147 udf_debug("udf_expand_adinicb: err=%d\n", err);
148 return err;
149 }
150 } else {
151 iinfo->i_lenAlloc = max(end, inode->i_size);
152 up_write(&iinfo->i_data_sem);
153 }
154 } else
155 up_write(&iinfo->i_data_sem);
156
Al Virod4637bc2014-04-03 03:31:17 -0400157 retval = __generic_file_write_iter(iocb, from);
Al Viro5f380c72015-04-07 11:28:12 -0400158out:
Jan Kara09ebb172014-02-18 12:00:21 +0100159 mutex_unlock(&inode->i_mutex);
160
161 if (retval > 0) {
162 ssize_t err;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 mark_inode_dirty(inode);
Jan Kara09ebb172014-02-18 12:00:21 +0100165 err = generic_write_sync(file, iocb->ki_pos - retval, retval);
166 if (err < 0)
167 retval = err;
168 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return retval;
171}
172
John Kacur2f07a882010-05-05 15:15:39 +0200173long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Al Viro496ad9a2013-01-23 17:07:38 -0500175 struct inode *inode = file_inode(filp);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700176 long old_block, new_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 int result = -EINVAL;
178
Al Viro6f286102011-06-19 11:49:08 -0400179 if (inode_permission(inode, MAY_READ) != 0) {
John Kacur2f07a882010-05-05 15:15:39 +0200180 udf_debug("no permission to access inode %lu\n", inode->i_ino);
181 result = -EPERM;
182 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700185 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 udf_debug("invalid argument to udf_ioctl\n");
John Kacur2f07a882010-05-05 15:15:39 +0200187 result = -EINVAL;
188 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700191 switch (cmd) {
192 case UDF_GETVOLIDENT:
Marcin Slusarz4b111112008-02-08 04:20:36 -0800193 if (copy_to_user((char __user *)arg,
194 UDF_SB(inode->i_sb)->s_volume_ident, 32))
John Kacur2f07a882010-05-05 15:15:39 +0200195 result = -EFAULT;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800196 else
John Kacur2f07a882010-05-05 15:15:39 +0200197 result = 0;
198 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700199 case UDF_RELOCATE_BLOCKS:
John Kacur2f07a882010-05-05 15:15:39 +0200200 if (!capable(CAP_SYS_ADMIN)) {
Zhao Hongjiang41735812013-02-20 13:13:55 +1100201 result = -EPERM;
John Kacur2f07a882010-05-05 15:15:39 +0200202 goto out;
203 }
204 if (get_user(old_block, (long __user *)arg)) {
205 result = -EFAULT;
206 goto out;
207 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800208 result = udf_relocate_blocks(inode->i_sb,
209 old_block, &new_block);
210 if (result == 0)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700211 result = put_user(new_block, (long __user *)arg);
John Kacur2f07a882010-05-05 15:15:39 +0200212 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700213 case UDF_GETEASIZE:
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800214 result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
John Kacur2f07a882010-05-05 15:15:39 +0200215 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700216 case UDF_GETEABLOCK:
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800217 result = copy_to_user((char __user *)arg,
218 UDF_I(inode)->i_ext.i_data,
219 UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
John Kacur2f07a882010-05-05 15:15:39 +0200220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
John Kacur2f07a882010-05-05 15:15:39 +0200223out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return result;
225}
226
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700227static int udf_release_file(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Jan Kara6fb1ca92014-09-09 13:03:03 +0200229 if (filp->f_mode & FMODE_WRITE &&
Jan Karab07ef352015-01-28 08:38:20 +0100230 atomic_read(&inode->i_writecount) == 1) {
Jan Kara6fb1ca92014-09-09 13:03:03 +0200231 /*
232 * Grab i_mutex to avoid races with writes changing i_size
233 * while we are running.
234 */
235 mutex_lock(&inode->i_mutex);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100236 down_write(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 udf_discard_prealloc(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100238 udf_truncate_tail_extent(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100239 up_write(&UDF_I(inode)->i_data_sem);
Jan Kara6fb1ca92014-09-09 13:03:03 +0200240 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242 return 0;
243}
244
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800245const struct file_operations udf_file_operations = {
Al Viroaad4f8b2014-04-02 14:33:16 -0400246 .read_iter = generic_file_read_iter,
John Kacur2f07a882010-05-05 15:15:39 +0200247 .unlocked_ioctl = udf_ioctl,
Jan Kara36350462010-05-19 16:28:56 +0200248 .open = generic_file_open,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700249 .mmap = generic_file_mmap,
Al Virod4637bc2014-04-03 03:31:17 -0400250 .write_iter = udf_file_write_iter,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700251 .release = udf_release_file,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200252 .fsync = generic_file_fsync,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700253 .splice_read = generic_file_splice_read,
Christoph Hellwig5c894682008-09-08 19:44:17 +0200254 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255};
256
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200257static int udf_setattr(struct dentry *dentry, struct iattr *attr)
258{
259 struct inode *inode = dentry->d_inode;
260 int error;
261
262 error = inode_change_ok(inode, attr);
263 if (error)
264 return error;
Christoph Hellwig10257742010-06-04 11:30:02 +0200265
266 if ((attr->ia_valid & ATTR_SIZE) &&
267 attr->ia_size != i_size_read(inode)) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200268 error = udf_setsize(inode, attr->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +0200269 if (error)
270 return error;
271 }
272
273 setattr_copy(inode, attr);
274 mark_inode_dirty(inode);
275 return 0;
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200276}
277
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800278const struct inode_operations udf_file_inode_operations = {
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200279 .setattr = udf_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280};