blob: 2f1ddc9080132f9fe9a08c66f1cd999913ee67be [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 Frederick17093992014-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;
50 i_attrs_to_sd_attrs(inode, (__u16 *) & flags);
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020051 err = put_user(flags, (int __user *)arg);
52 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070053 case REISERFS_IOC_SETFLAGS:{
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020054 if (!reiserfs_attrs(inode->i_sb)) {
55 err = -ENOTTY;
56 break;
57 }
Jeff Mahoney869eb762005-06-29 18:52:28 -040058
Al Viroa561be72011-11-23 11:57:51 -050059 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080060 if (err)
Frederic Weisbeckerac78a072009-10-14 23:08:43 +020061 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Serge E. Hallyn2e149672011-03-23 16:43:26 -070063 if (!inode_owner_or_capable(inode)) {
Dave Hansen42a74f22008-02-15 14:37:46 -080064 err = -EPERM;
65 goto setflags_out;
66 }
67 if (get_user(flags, (int __user *)arg)) {
68 err = -EFAULT;
69 goto setflags_out;
70 }
71 /*
72 * Is it quota file? Do not allow user to mess with it
73 */
74 if (IS_NOQUOTA(inode)) {
75 err = -EPERM;
76 goto setflags_out;
77 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070078 if (((flags ^ REISERFS_I(inode)->
79 i_attrs) & (REISERFS_IMMUTABLE_FL |
80 REISERFS_APPEND_FL))
Dave Hansen42a74f22008-02-15 14:37:46 -080081 && !capable(CAP_LINUX_IMMUTABLE)) {
82 err = -EPERM;
83 goto setflags_out;
84 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070085 if ((flags & REISERFS_NOTAIL_FL) &&
86 S_ISREG(inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 int result;
88
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070089 result = reiserfs_unpack(inode, filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080090 if (result) {
91 err = result;
92 goto setflags_out;
93 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070094 }
95 sd_attrs_to_i_attrs(flags, inode);
96 REISERFS_I(inode)->i_attrs = flags;
97 inode->i_ctime = CURRENT_TIME_SEC;
98 mark_inode_dirty(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -080099setflags_out:
Al Viro2a79f172011-12-09 08:06:57 -0500100 mnt_drop_write_file(filp);
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200101 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 case REISERFS_IOC_GETVERSION:
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200104 err = put_user(inode->i_generation, (int __user *)arg);
105 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 case REISERFS_IOC_SETVERSION:
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700107 if (!inode_owner_or_capable(inode)) {
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200108 err = -EPERM;
109 break;
Jiri Slabye0baec12010-01-06 23:09:50 +0100110 }
Al Viroa561be72011-11-23 11:57:51 -0500111 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800112 if (err)
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200113 break;
Dave Hansen42a74f22008-02-15 14:37:46 -0800114 if (get_user(inode->i_generation, (int __user *)arg)) {
115 err = -EFAULT;
116 goto setversion_out;
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 inode->i_ctime = CURRENT_TIME_SEC;
119 mark_inode_dirty(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800120setversion_out:
Al Viro2a79f172011-12-09 08:06:57 -0500121 mnt_drop_write_file(filp);
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200122 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 default:
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200124 err = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Frederic Weisbeckerac78a072009-10-14 23:08:43 +0200126
127 reiserfs_write_unlock(inode->i_sb);
128
129 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
David Howells52b499c2006-08-29 19:06:18 +0100132#ifdef CONFIG_COMPAT
133long reiserfs_compat_ioctl(struct file *file, unsigned int cmd,
134 unsigned long arg)
135{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400136 /*
137 * These are just misnamed, they actually
138 * get/put from/to user an int
139 */
David Howells52b499c2006-08-29 19:06:18 +0100140 switch (cmd) {
141 case REISERFS_IOC32_UNPACK:
142 cmd = REISERFS_IOC_UNPACK;
143 break;
144 case REISERFS_IOC32_GETFLAGS:
145 cmd = REISERFS_IOC_GETFLAGS;
146 break;
147 case REISERFS_IOC32_SETFLAGS:
148 cmd = REISERFS_IOC_SETFLAGS;
149 break;
150 case REISERFS_IOC32_GETVERSION:
151 cmd = REISERFS_IOC_GETVERSION;
152 break;
153 case REISERFS_IOC32_SETVERSION:
154 cmd = REISERFS_IOC_SETVERSION;
155 break;
156 default:
157 return -ENOIOCTLCMD;
158 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200159
Frederic Weisbecker205cb372009-10-14 23:22:17 +0200160 return reiserfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
David Howells52b499c2006-08-29 19:06:18 +0100161}
162#endif
163
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700164int reiserfs_commit_write(struct file *f, struct page *page,
165 unsigned from, unsigned to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Jeff Mahoney098297b2014-04-23 10:00:36 -0400167 * reiserfs_unpack
168 * Function try to convert tail from direct item into indirect.
169 * It set up nopack attribute in the REISERFS_I(inode)->nopack
170 */
Jan Karad5dee5c2008-04-28 02:16:23 -0700171int reiserfs_unpack(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700173 int retval = 0;
174 int index;
175 struct page *page;
176 struct address_space *mapping;
177 unsigned long write_from;
178 unsigned long blocksize = inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700180 if (inode->i_size == 0) {
181 REISERFS_I(inode)->i_flags |= i_nopack_mask;
182 return 0;
183 }
184 /* ioctl already done */
185 if (REISERFS_I(inode)->i_flags & i_nopack_mask) {
186 return 0;
187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Frederic Weisbeckerda905872010-11-24 12:57:15 -0800189 /* we need to make sure nobody is changing the file size beneath us */
Al Viro1ae1f3f2016-04-15 14:44:31 -0400190{
191 int depth = reiserfs_write_unlock_nested(inode->i_sb);
192 inode_lock(inode);
193 reiserfs_write_lock_nested(inode->i_sb, depth);
194}
Frederic Weisbeckerda905872010-11-24 12:57:15 -0800195
Jeff Mahoney278f6672013-08-08 17:34:46 -0400196 reiserfs_write_lock(inode->i_sb);
197
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700198 write_from = inode->i_size & (blocksize - 1);
199 /* if we are on a block boundary, we are already unpacked. */
200 if (write_from == 0) {
201 REISERFS_I(inode)->i_flags |= i_nopack_mask;
202 goto out;
203 }
204
Jeff Mahoney098297b2014-04-23 10:00:36 -0400205 /*
206 * we unpack by finding the page with the tail, and calling
207 * __reiserfs_write_begin on that page. This will force a
208 * reiserfs_get_block to unpack the tail for us.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700209 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300210 index = inode->i_size >> PAGE_SHIFT;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700211 mapping = inode->i_mapping;
212 page = grab_cache_page(mapping, index);
213 retval = -ENOMEM;
214 if (!page) {
215 goto out;
216 }
Christoph Hellwigebdec242010-10-06 10:47:23 +0200217 retval = __reiserfs_write_begin(page, write_from, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700218 if (retval)
219 goto out_unlock;
220
221 /* conversion can change page contents, must flush */
222 flush_dcache_page(page);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -0700223 retval = reiserfs_commit_write(NULL, page, write_from, write_from);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 REISERFS_I(inode)->i_flags |= i_nopack_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400226out_unlock:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300228 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400230out:
Al Viro59551022016-01-22 15:40:57 -0500231 inode_unlock(inode);
Jeff Mahoney278f6672013-08-08 17:34:46 -0400232 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700233 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}