blob: 5c5ac5b3aec33baf1da1af89f762d62275a59916 [file] [log] [blame]
Herbert Poetzld9e90262006-02-22 14:14:58 -06001/*
2 * linux/fs/jfs/ioctl.c
3 *
4 * Copyright (C) 2006 Herbert Poetzl
5 * adapted from Remy Card's ext2/ioctl.c
6 */
7
8#include <linux/fs.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -06009#include <linux/ctype.h>
10#include <linux/capability.h>
Dave Hansen42a74f22008-02-15 14:37:46 -080011#include <linux/mount.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060012#include <linux/time.h>
Al Viro914e2632006-10-18 13:55:46 -040013#include <linux/sched.h>
Tino Reichardtb40c2e62012-09-17 11:58:19 -050014#include <linux/blkdev.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060015#include <asm/current.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080016#include <linux/uaccess.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060017
Tino Reichardtb40c2e62012-09-17 11:58:19 -050018#include "jfs_filsys.h"
19#include "jfs_debug.h"
Herbert Poetzld9e90262006-02-22 14:14:58 -060020#include "jfs_incore.h"
21#include "jfs_dinode.h"
22#include "jfs_inode.h"
Tino Reichardtb40c2e62012-09-17 11:58:19 -050023#include "jfs_dmap.h"
24#include "jfs_discard.h"
Herbert Poetzld9e90262006-02-22 14:14:58 -060025
26static struct {
27 long jfs_flag;
28 long ext2_flag;
29} jfs_map[] = {
David Howells36695672006-08-29 19:06:16 +010030 {JFS_NOATIME_FL, FS_NOATIME_FL},
31 {JFS_DIRSYNC_FL, FS_DIRSYNC_FL},
32 {JFS_SYNC_FL, FS_SYNC_FL},
33 {JFS_SECRM_FL, FS_SECRM_FL},
34 {JFS_UNRM_FL, FS_UNRM_FL},
35 {JFS_APPEND_FL, FS_APPEND_FL},
36 {JFS_IMMUTABLE_FL, FS_IMMUTABLE_FL},
Herbert Poetzld9e90262006-02-22 14:14:58 -060037 {0, 0},
38};
39
40static long jfs_map_ext2(unsigned long flags, int from)
41{
42 int index=0;
43 long mapped=0;
44
45 while (jfs_map[index].jfs_flag) {
46 if (from) {
47 if (jfs_map[index].ext2_flag & flags)
48 mapped |= jfs_map[index].jfs_flag;
49 } else {
50 if (jfs_map[index].jfs_flag & flags)
51 mapped |= jfs_map[index].ext2_flag;
52 }
53 index++;
54 }
55 return mapped;
56}
57
58
Andi Kleenbaab81f2008-01-27 16:58:51 -060059long jfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Herbert Poetzld9e90262006-02-22 14:14:58 -060060{
Al Viro496ad9a2013-01-23 17:07:38 -050061 struct inode *inode = file_inode(filp);
Herbert Poetzld9e90262006-02-22 14:14:58 -060062 struct jfs_inode_info *jfs_inode = JFS_IP(inode);
63 unsigned int flags;
64
65 switch (cmd) {
66 case JFS_IOC_GETFLAGS:
67 flags = jfs_inode->mode2 & JFS_FL_USER_VISIBLE;
68 flags = jfs_map_ext2(flags, 0);
69 return put_user(flags, (int __user *) arg);
70 case JFS_IOC_SETFLAGS: {
71 unsigned int oldflags;
Dave Hansen42a74f22008-02-15 14:37:46 -080072 int err;
Herbert Poetzld9e90262006-02-22 14:14:58 -060073
Al Viroa561be72011-11-23 11:57:51 -050074 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080075 if (err)
76 return err;
Herbert Poetzld9e90262006-02-22 14:14:58 -060077
Serge E. Hallyn2e149672011-03-23 16:43:26 -070078 if (!inode_owner_or_capable(inode)) {
Dave Hansen42a74f22008-02-15 14:37:46 -080079 err = -EACCES;
80 goto setflags_out;
81 }
82 if (get_user(flags, (int __user *) arg)) {
83 err = -EFAULT;
84 goto setflags_out;
85 }
Herbert Poetzld9e90262006-02-22 14:14:58 -060086
87 flags = jfs_map_ext2(flags, 1);
88 if (!S_ISDIR(inode->i_mode))
89 flags &= ~JFS_DIRSYNC_FL;
90
Jan Karae47776a2007-11-14 16:58:56 -080091 /* Is it quota file? Do not allow user to mess with it */
Dave Hansen42a74f22008-02-15 14:37:46 -080092 if (IS_NOQUOTA(inode)) {
93 err = -EPERM;
94 goto setflags_out;
95 }
Andi Kleenbaab81f2008-01-27 16:58:51 -060096
97 /* Lock against other parallel changes of flags */
Al Viro59551022016-01-22 15:40:57 -050098 inode_lock(inode);
Andi Kleenbaab81f2008-01-27 16:58:51 -060099
Herbert Poetzld9e90262006-02-22 14:14:58 -0600100 oldflags = jfs_inode->mode2;
101
102 /*
103 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
104 * the relevant capability.
105 */
106 if ((oldflags & JFS_IMMUTABLE_FL) ||
107 ((flags ^ oldflags) &
108 (JFS_APPEND_FL | JFS_IMMUTABLE_FL))) {
Andi Kleenbaab81f2008-01-27 16:58:51 -0600109 if (!capable(CAP_LINUX_IMMUTABLE)) {
Al Viro59551022016-01-22 15:40:57 -0500110 inode_unlock(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800111 err = -EPERM;
112 goto setflags_out;
Andi Kleenbaab81f2008-01-27 16:58:51 -0600113 }
Herbert Poetzld9e90262006-02-22 14:14:58 -0600114 }
115
116 flags = flags & JFS_FL_USER_MODIFIABLE;
117 flags |= oldflags & ~JFS_FL_USER_MODIFIABLE;
118 jfs_inode->mode2 = flags;
119
120 jfs_set_inode_flags(inode);
Al Viro59551022016-01-22 15:40:57 -0500121 inode_unlock(inode);
Deepa Dinamani362ad5d2016-11-11 10:00:53 -0800122 inode->i_ctime = current_time(inode);
Herbert Poetzld9e90262006-02-22 14:14:58 -0600123 mark_inode_dirty(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800124setflags_out:
Al Viro2a79f172011-12-09 08:06:57 -0500125 mnt_drop_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800126 return err;
Herbert Poetzld9e90262006-02-22 14:14:58 -0600127 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500128
129 case FITRIM:
130 {
131 struct super_block *sb = inode->i_sb;
132 struct request_queue *q = bdev_get_queue(sb->s_bdev);
133 struct fstrim_range range;
134 s64 ret = 0;
135
136 if (!capable(CAP_SYS_ADMIN))
137 return -EPERM;
138
139 if (!blk_queue_discard(q)) {
140 jfs_warn("FITRIM not supported on device");
141 return -EOPNOTSUPP;
142 }
143
144 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
145 sizeof(range)))
146 return -EFAULT;
147
148 range.minlen = max_t(unsigned int, range.minlen,
149 q->limits.discard_granularity);
150
151 ret = jfs_ioc_trim(inode, &range);
152 if (ret < 0)
153 return ret;
154
155 if (copy_to_user((struct fstrim_range __user *)arg, &range,
156 sizeof(range)))
157 return -EFAULT;
158
159 return 0;
160 }
161
Herbert Poetzld9e90262006-02-22 14:14:58 -0600162 default:
163 return -ENOTTY;
164 }
165}
166
Andi Kleenef1fc2f2008-01-27 17:02:02 -0600167#ifdef CONFIG_COMPAT
168long jfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
169{
170 /* While these ioctl numbers defined with 'long' and have different
171 * numbers than the 64bit ABI,
172 * the actual implementation only deals with ints and is compatible.
173 */
174 switch (cmd) {
175 case JFS_IOC_GETFLAGS32:
176 cmd = JFS_IOC_GETFLAGS;
177 break;
178 case JFS_IOC_SETFLAGS32:
179 cmd = JFS_IOC_SETFLAGS;
180 break;
181 }
182 return jfs_ioctl(filp, cmd, arg);
183}
184#endif