blob: acbbaf7a0bb26be8e25039ca4fee2a64a0db02be [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 */
4
Randy Dunlap16f7e0f2006-01-11 12:17:46 -08005#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/fs.h>
Dave Hansen42a74f22008-02-15 14:37:46 -08007#include <linux/mount.h>
Al Virof466c6f2012-03-17 01:16:43 -04008#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/time.h>
Fabian Frederick170939912014-08-08 14:21:12 -070010#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/pagemap.h>
David Howells52b499c2006-08-29 19:06:18 +010012#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020015 * reiserfs_ioctl - handler for ioctl for inode
16 * supported commands:
17 * 1) REISERFS_IOC_UNPACK - try to unpack tail from direct item into indirect
Jeff Mahoney098297b2014-04-23 10:00:36 -040018 * and prevent packing file (argument arg has t
19 * be non-zero)
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020020 * 2) REISERFS_IOC_[GS]ETFLAGS, REISERFS_IOC_[GS]ETVERSION
21 * 3) That's all for a while ...
22 */
Frederic Weisbecker205cb372009-10-14 23:22:17 +020023long reiserfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
Al Viro496ad9a2013-01-23 17:07:38 -050025 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 unsigned int flags;
Dave Hansen42a74f22008-02-15 14:37:46 -080027 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020029 reiserfs_write_lock(inode->i_sb);
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 switch (cmd) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070032 case REISERFS_IOC_UNPACK:
33 if (S_ISREG(inode->i_mode)) {
34 if (arg)
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020035 err = reiserfs_unpack(inode, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 } else
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020037 err = -ENOTTY;
38 break;
39 /*
40 * following two cases are taken from fs/ext2/ioctl.c by Remy
41 * Card (card@masi.ibp.fr)
42 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 case REISERFS_IOC_GETFLAGS:
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020044 if (!reiserfs_attrs(inode->i_sb)) {
45 err = -ENOTTY;
46 break;
47 }
Jeff Mahoney869eb762005-06-29 18:52:28 -040048
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070049 flags = REISERFS_I(inode)->i_attrs;
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020050 err = put_user(flags, (int __user *)arg);
51 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070052 case REISERFS_IOC_SETFLAGS:{
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020053 if (!reiserfs_attrs(inode->i_sb)) {
54 err = -ENOTTY;
55 break;
56 }
Jeff Mahoney869eb762005-06-29 18:52:28 -040057
Al Viroa561be72011-11-23 11:57:51 -050058 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080059 if (err)
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020060 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Serge E. Hallyn2e149672011-03-23 16:43:26 -070062 if (!inode_owner_or_capable(inode)) {
Dave Hansen42a74f22008-02-15 14:37:46 -080063 err = -EPERM;
64 goto setflags_out;
65 }
66 if (get_user(flags, (int __user *)arg)) {
67 err = -EFAULT;
68 goto setflags_out;
69 }
70 /*
71 * Is it quota file? Do not allow user to mess with it
72 */
73 if (IS_NOQUOTA(inode)) {
74 err = -EPERM;
75 goto setflags_out;
76 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070077 if (((flags ^ REISERFS_I(inode)->
78 i_attrs) & (REISERFS_IMMUTABLE_FL |
79 REISERFS_APPEND_FL))
Dave Hansen42a74f22008-02-15 14:37:46 -080080 && !capable(CAP_LINUX_IMMUTABLE)) {
81 err = -EPERM;
82 goto setflags_out;
83 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070084 if ((flags & REISERFS_NOTAIL_FL) &&
85 S_ISREG(inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 int result;
87
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070088 result = reiserfs_unpack(inode, filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080089 if (result) {
90 err = result;
91 goto setflags_out;
92 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070093 }
94 sd_attrs_to_i_attrs(flags, inode);
95 REISERFS_I(inode)->i_attrs = flags;
Deepa Dinamani02027d42016-09-14 07:48:05 -070096 inode->i_ctime = current_time(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070097 mark_inode_dirty(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -080098setflags_out:
Al Viro2a79f172011-12-09 08:06:57 -050099 mnt_drop_write_file(filp);
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200100 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 case REISERFS_IOC_GETVERSION:
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200103 err = put_user(inode->i_generation, (int __user *)arg);
104 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 case REISERFS_IOC_SETVERSION:
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700106 if (!inode_owner_or_capable(inode)) {
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200107 err = -EPERM;
108 break;
Jiri Slabye0baec12010-01-06 23:09:50 +0100109 }
Al Viroa561be72011-11-23 11:57:51 -0500110 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800111 if (err)
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200112 break;
Dave Hansen42a74f22008-02-15 14:37:46 -0800113 if (get_user(inode->i_generation, (int __user *)arg)) {
114 err = -EFAULT;
115 goto setversion_out;
116 }
Deepa Dinamani02027d42016-09-14 07:48:05 -0700117 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 mark_inode_dirty(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800119setversion_out:
Al Viro2a79f172011-12-09 08:06:57 -0500120 mnt_drop_write_file(filp);
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 default:
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200123 err = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200125
126 reiserfs_write_unlock(inode->i_sb);
127
128 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
David Howells52b499c2006-08-29 19:06:18 +0100131#ifdef CONFIG_COMPAT
132long reiserfs_compat_ioctl(struct file *file, unsigned int cmd,
133 unsigned long arg)
134{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400135 /*
136 * These are just misnamed, they actually
137 * get/put from/to user an int
138 */
David Howells52b499c2006-08-29 19:06:18 +0100139 switch (cmd) {
140 case REISERFS_IOC32_UNPACK:
141 cmd = REISERFS_IOC_UNPACK;
142 break;
143 case REISERFS_IOC32_GETFLAGS:
144 cmd = REISERFS_IOC_GETFLAGS;
145 break;
146 case REISERFS_IOC32_SETFLAGS:
147 cmd = REISERFS_IOC_SETFLAGS;
148 break;
149 case REISERFS_IOC32_GETVERSION:
150 cmd = REISERFS_IOC_GETVERSION;
151 break;
152 case REISERFS_IOC32_SETVERSION:
153 cmd = REISERFS_IOC_SETVERSION;
154 break;
155 default:
156 return -ENOIOCTLCMD;
157 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200158
Frederic Weisbecker205cb372009-10-14 23:22:17 +0200159 return reiserfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
David Howells52b499c2006-08-29 19:06:18 +0100160}
161#endif
162
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700163int reiserfs_commit_write(struct file *f, struct page *page,
164 unsigned from, unsigned to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
Jeff Mahoney098297b2014-04-23 10:00:36 -0400166 * reiserfs_unpack
167 * Function try to convert tail from direct item into indirect.
168 * It set up nopack attribute in the REISERFS_I(inode)->nopack
169 */
Jan Karad5dee5c2008-04-28 02:16:23 -0700170int reiserfs_unpack(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700172 int retval = 0;
173 int index;
174 struct page *page;
175 struct address_space *mapping;
176 unsigned long write_from;
177 unsigned long blocksize = inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700179 if (inode->i_size == 0) {
180 REISERFS_I(inode)->i_flags |= i_nopack_mask;
181 return 0;
182 }
183 /* ioctl already done */
184 if (REISERFS_I(inode)->i_flags & i_nopack_mask) {
185 return 0;
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Frederic Weisbeckerda905872010-11-24 12:57:15 -0800188 /* we need to make sure nobody is changing the file size beneath us */
Al Viro1ae1f3f2016-04-15 14:44:31 -0400189{
190 int depth = reiserfs_write_unlock_nested(inode->i_sb);
191 inode_lock(inode);
192 reiserfs_write_lock_nested(inode->i_sb, depth);
193}
Frederic Weisbeckerda905872010-11-24 12:57:15 -0800194
Jeff Mahoney278f6672013-08-08 17:34:46 -0400195 reiserfs_write_lock(inode->i_sb);
196
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700197 write_from = inode->i_size & (blocksize - 1);
198 /* if we are on a block boundary, we are already unpacked. */
199 if (write_from == 0) {
200 REISERFS_I(inode)->i_flags |= i_nopack_mask;
201 goto out;
202 }
203
Jeff Mahoney098297b2014-04-23 10:00:36 -0400204 /*
205 * we unpack by finding the page with the tail, and calling
206 * __reiserfs_write_begin on that page. This will force a
207 * reiserfs_get_block to unpack the tail for us.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700208 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300209 index = inode->i_size >> PAGE_SHIFT;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700210 mapping = inode->i_mapping;
211 page = grab_cache_page(mapping, index);
212 retval = -ENOMEM;
213 if (!page) {
214 goto out;
215 }
Christoph Hellwigebdec242010-10-06 10:47:23 +0200216 retval = __reiserfs_write_begin(page, write_from, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700217 if (retval)
218 goto out_unlock;
219
220 /* conversion can change page contents, must flush */
221 flush_dcache_page(page);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700222 retval = reiserfs_commit_write(NULL, page, write_from, write_from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 REISERFS_I(inode)->i_flags |= i_nopack_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400225out_unlock:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700226 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300227 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400229out:
Al Viro59551022016-01-22 15:40:57 -0500230 inode_unlock(inode);
Jeff Mahoney278f6672013-08-08 17:34:46 -0400231 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700232 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}