blob: 7ab8d8196e902215d2d51e010c69fba460762cac [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>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080036#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "udf_i.h"
39#include "udf_sb.h"
40
Jan Kara9c2fc0d2012-09-05 15:48:23 +020041static void __udf_adinicb_readpage(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 struct inode *inode = page->mapping->host;
44 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080045 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080048 memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, inode->i_size);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030049 memset(kaddr + inode->i_size, 0, PAGE_SIZE - inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 flush_dcache_page(page);
51 SetPageUptodate(page);
52 kunmap(page);
Jan Kara9c2fc0d2012-09-05 15:48:23 +020053}
54
55static int udf_adinicb_readpage(struct file *file, struct page *page)
56{
57 BUG_ON(!PageLocked(page));
58 __udf_adinicb_readpage(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unlock_page(page);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return 0;
62}
63
Marcin Slusarz4b111112008-02-08 04:20:36 -080064static int udf_adinicb_writepage(struct page *page,
65 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 struct inode *inode = page->mapping->host;
68 char *kaddr;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080069 struct udf_inode_info *iinfo = UDF_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Matt Mackallcd7619d2005-05-01 08:59:01 -070071 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 kaddr = kmap(page);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080074 memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 mark_inode_dirty(inode);
76 SetPageUptodate(page);
77 kunmap(page);
78 unlock_page(page);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
81}
82
Jan Kara9c2fc0d2012-09-05 15:48:23 +020083static int udf_adinicb_write_begin(struct file *file,
84 struct address_space *mapping, loff_t pos,
85 unsigned len, unsigned flags, struct page **pagep,
86 void **fsdata)
87{
88 struct page *page;
89
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030090 if (WARN_ON_ONCE(pos >= PAGE_SIZE))
Jan Kara9c2fc0d2012-09-05 15:48:23 +020091 return -EIO;
92 page = grab_cache_page_write_begin(mapping, 0, flags);
93 if (!page)
94 return -ENOMEM;
95 *pagep = page;
96
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030097 if (!PageUptodate(page) && len != PAGE_SIZE)
Jan Kara9c2fc0d2012-09-05 15:48:23 +020098 __udf_adinicb_readpage(page);
99 return 0;
100}
101
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700102static ssize_t udf_adinicb_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Ian Abbott5eec54f2012-09-05 17:44:31 +0100103{
104 /* Fallback to buffered I/O. */
105 return 0;
106}
107
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700108const struct address_space_operations udf_adinicb_aops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700109 .readpage = udf_adinicb_readpage,
110 .writepage = udf_adinicb_writepage,
Jan Kara9c2fc0d2012-09-05 15:48:23 +0200111 .write_begin = udf_adinicb_write_begin,
Chao Yu3f1be4f2014-07-15 09:38:51 +0800112 .write_end = simple_write_end,
Ian Abbott5eec54f2012-09-05 17:44:31 +0100113 .direct_IO = udf_adinicb_direct_IO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Al Virod4637bc2014-04-03 03:31:17 -0400116static ssize_t udf_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 ssize_t retval;
Badari Pulavarty543ade12006-09-30 23:28:48 -0700119 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500120 struct inode *inode = file_inode(file);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800121 struct udf_inode_info *iinfo = UDF_I(inode);
Al Viro165f1a62015-04-07 15:26:36 -0400122 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Al Viro59551022016-01-22 15:40:57 -0500124 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Al Viro3309dd02015-04-09 12:55:47 -0400126 retval = generic_write_checks(iocb, from);
127 if (retval <= 0)
Al Viro5f380c72015-04-07 11:28:12 -0400128 goto out;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 down_write(&iinfo->i_data_sem);
131 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Al Viro165f1a62015-04-07 15:26:36 -0400132 loff_t end = iocb->ki_pos + iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 if (inode->i_sb->s_blocksize <
Al Viro165f1a62015-04-07 15:26:36 -0400135 (udf_file_entry_alloc_offset(inode) + end)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 err = udf_expand_file_adinicb(inode);
137 if (err) {
Al Viro59551022016-01-22 15:40:57 -0500138 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 udf_debug("udf_expand_adinicb: err=%d\n", err);
140 return err;
141 }
142 } else {
Al Viro165f1a62015-04-07 15:26:36 -0400143 iinfo->i_lenAlloc = max(end, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 up_write(&iinfo->i_data_sem);
145 }
Badari Pulavarty543ade12006-09-30 23:28:48 -0700146 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 up_write(&iinfo->i_data_sem);
148
Al Virod4637bc2014-04-03 03:31:17 -0400149 retval = __generic_file_write_iter(iocb, from);
Al Viro5f380c72015-04-07 11:28:12 -0400150out:
Al Viro59551022016-01-22 15:40:57 -0500151 inode_unlock(inode);
Jan Kara09ebb172014-02-18 12:00:21 +0100152
153 if (retval > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 mark_inode_dirty(inode);
Jan Kara09ebb172014-02-18 12:00:21 +0100155 err = generic_write_sync(file, iocb->ki_pos - retval, retval);
156 if (err < 0)
157 retval = err;
158 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return retval;
161}
162
John Kacur2f07a882010-05-05 15:15:39 +0200163long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Al Viro496ad9a2013-01-23 17:07:38 -0500165 struct inode *inode = file_inode(filp);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700166 long old_block, new_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int result = -EINVAL;
168
Al Viro6f286102011-06-19 11:49:08 -0400169 if (inode_permission(inode, MAY_READ) != 0) {
John Kacur2f07a882010-05-05 15:15:39 +0200170 udf_debug("no permission to access inode %lu\n", inode->i_ino);
171 result = -EPERM;
172 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700175 if (!arg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 udf_debug("invalid argument to udf_ioctl\n");
John Kacur2f07a882010-05-05 15:15:39 +0200177 result = -EINVAL;
178 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700181 switch (cmd) {
182 case UDF_GETVOLIDENT:
Marcin Slusarz4b111112008-02-08 04:20:36 -0800183 if (copy_to_user((char __user *)arg,
184 UDF_SB(inode->i_sb)->s_volume_ident, 32))
John Kacur2f07a882010-05-05 15:15:39 +0200185 result = -EFAULT;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800186 else
John Kacur2f07a882010-05-05 15:15:39 +0200187 result = 0;
188 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700189 case UDF_RELOCATE_BLOCKS:
John Kacur2f07a882010-05-05 15:15:39 +0200190 if (!capable(CAP_SYS_ADMIN)) {
Zhao Hongjiang41735812013-02-20 13:13:55 +1100191 result = -EPERM;
John Kacur2f07a882010-05-05 15:15:39 +0200192 goto out;
193 }
194 if (get_user(old_block, (long __user *)arg)) {
195 result = -EFAULT;
196 goto out;
197 }
Marcin Slusarz4b111112008-02-08 04:20:36 -0800198 result = udf_relocate_blocks(inode->i_sb,
199 old_block, &new_block);
200 if (result == 0)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700201 result = put_user(new_block, (long __user *)arg);
John Kacur2f07a882010-05-05 15:15:39 +0200202 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700203 case UDF_GETEASIZE:
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800204 result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
John Kacur2f07a882010-05-05 15:15:39 +0200205 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700206 case UDF_GETEABLOCK:
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800207 result = copy_to_user((char __user *)arg,
208 UDF_I(inode)->i_ext.i_data,
209 UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
John Kacur2f07a882010-05-05 15:15:39 +0200210 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
John Kacur2f07a882010-05-05 15:15:39 +0200213out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return result;
215}
216
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700217static int udf_release_file(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Jan Kara6fb1ca92014-09-09 13:03:03 +0200219 if (filp->f_mode & FMODE_WRITE &&
Jan Karab07ef352015-01-28 08:38:20 +0100220 atomic_read(&inode->i_writecount) == 1) {
Jan Kara6fb1ca92014-09-09 13:03:03 +0200221 /*
222 * Grab i_mutex to avoid races with writes changing i_size
223 * while we are running.
224 */
Al Viro59551022016-01-22 15:40:57 -0500225 inode_lock(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100226 down_write(&UDF_I(inode)->i_data_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 udf_discard_prealloc(inode);
Jan Kara2c948b32009-12-03 13:39:28 +0100228 udf_truncate_tail_extent(inode);
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100229 up_write(&UDF_I(inode)->i_data_sem);
Al Viro59551022016-01-22 15:40:57 -0500230 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232 return 0;
233}
234
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800235const struct file_operations udf_file_operations = {
Al Viroaad4f8b2014-04-02 14:33:16 -0400236 .read_iter = generic_file_read_iter,
John Kacur2f07a882010-05-05 15:15:39 +0200237 .unlocked_ioctl = udf_ioctl,
Jan Kara36350462010-05-19 16:28:56 +0200238 .open = generic_file_open,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700239 .mmap = generic_file_mmap,
Al Virod4637bc2014-04-03 03:31:17 -0400240 .write_iter = udf_file_write_iter,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700241 .release = udf_release_file,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200242 .fsync = generic_file_fsync,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700243 .splice_read = generic_file_splice_read,
Christoph Hellwig5c894682008-09-08 19:44:17 +0200244 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245};
246
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200247static int udf_setattr(struct dentry *dentry, struct iattr *attr)
248{
David Howells2b0143b2015-03-17 22:25:59 +0000249 struct inode *inode = d_inode(dentry);
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200250 int error;
251
252 error = inode_change_ok(inode, attr);
253 if (error)
254 return error;
Christoph Hellwig10257742010-06-04 11:30:02 +0200255
256 if ((attr->ia_valid & ATTR_SIZE) &&
257 attr->ia_size != i_size_read(inode)) {
Jan Kara7e49b6f2010-10-22 00:30:26 +0200258 error = udf_setsize(inode, attr->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +0200259 if (error)
260 return error;
261 }
262
263 setattr_copy(inode, attr);
264 mark_inode_dirty(inode);
265 return 0;
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200266}
267
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800268const struct inode_operations udf_file_inode_operations = {
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200269 .setattr = udf_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};