blob: 10ee0ecca1a82ff8c1a80e8c48cc60f7d63202d1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Herbert Poetzld9e90262006-02-22 14:14:58 -06002/*
3 * linux/fs/jfs/ioctl.c
4 *
5 * Copyright (C) 2006 Herbert Poetzl
6 * adapted from Remy Card's ext2/ioctl.c
7 */
8
9#include <linux/fs.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060010#include <linux/ctype.h>
11#include <linux/capability.h>
Dave Hansen42a74f22008-02-15 14:37:46 -080012#include <linux/mount.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060013#include <linux/time.h>
Al Viro914e2632006-10-18 13:55:46 -040014#include <linux/sched.h>
Tino Reichardtb40c2e62012-09-17 11:58:19 -050015#include <linux/blkdev.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060016#include <asm/current.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080017#include <linux/uaccess.h>
Herbert Poetzld9e90262006-02-22 14:14:58 -060018
Tino Reichardtb40c2e62012-09-17 11:58:19 -050019#include "jfs_filsys.h"
20#include "jfs_debug.h"
Herbert Poetzld9e90262006-02-22 14:14:58 -060021#include "jfs_incore.h"
22#include "jfs_dinode.h"
23#include "jfs_inode.h"
Tino Reichardtb40c2e62012-09-17 11:58:19 -050024#include "jfs_dmap.h"
25#include "jfs_discard.h"
Herbert Poetzld9e90262006-02-22 14:14:58 -060026
27static struct {
28 long jfs_flag;
29 long ext2_flag;
30} jfs_map[] = {
David Howells36695672006-08-29 19:06:16 +010031 {JFS_NOATIME_FL, FS_NOATIME_FL},
32 {JFS_DIRSYNC_FL, FS_DIRSYNC_FL},
33 {JFS_SYNC_FL, FS_SYNC_FL},
34 {JFS_SECRM_FL, FS_SECRM_FL},
35 {JFS_UNRM_FL, FS_UNRM_FL},
36 {JFS_APPEND_FL, FS_APPEND_FL},
37 {JFS_IMMUTABLE_FL, FS_IMMUTABLE_FL},
Herbert Poetzld9e90262006-02-22 14:14:58 -060038 {0, 0},
39};
40
41static long jfs_map_ext2(unsigned long flags, int from)
42{
43 int index=0;
44 long mapped=0;
45
46 while (jfs_map[index].jfs_flag) {
47 if (from) {
48 if (jfs_map[index].ext2_flag & flags)
49 mapped |= jfs_map[index].jfs_flag;
50 } else {
51 if (jfs_map[index].jfs_flag & flags)
52 mapped |= jfs_map[index].ext2_flag;
53 }
54 index++;
55 }
56 return mapped;
57}
58
59
Andi Kleenbaab81f2008-01-27 16:58:51 -060060long jfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Herbert Poetzld9e90262006-02-22 14:14:58 -060061{
Al Viro496ad9a2013-01-23 17:07:38 -050062 struct inode *inode = file_inode(filp);
Herbert Poetzld9e90262006-02-22 14:14:58 -060063 struct jfs_inode_info *jfs_inode = JFS_IP(inode);
64 unsigned int flags;
65
66 switch (cmd) {
67 case JFS_IOC_GETFLAGS:
68 flags = jfs_inode->mode2 & JFS_FL_USER_VISIBLE;
69 flags = jfs_map_ext2(flags, 0);
70 return put_user(flags, (int __user *) arg);
71 case JFS_IOC_SETFLAGS: {
72 unsigned int oldflags;
Dave Hansen42a74f22008-02-15 14:37:46 -080073 int err;
Herbert Poetzld9e90262006-02-22 14:14:58 -060074
Al Viroa561be72011-11-23 11:57:51 -050075 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080076 if (err)
77 return err;
Herbert Poetzld9e90262006-02-22 14:14:58 -060078
Serge E. Hallyn2e149672011-03-23 16:43:26 -070079 if (!inode_owner_or_capable(inode)) {
Dave Hansen42a74f22008-02-15 14:37:46 -080080 err = -EACCES;
81 goto setflags_out;
82 }
83 if (get_user(flags, (int __user *) arg)) {
84 err = -EFAULT;
85 goto setflags_out;
86 }
Herbert Poetzld9e90262006-02-22 14:14:58 -060087
88 flags = jfs_map_ext2(flags, 1);
89 if (!S_ISDIR(inode->i_mode))
90 flags &= ~JFS_DIRSYNC_FL;
91
Jan Karae47776a2007-11-14 16:58:56 -080092 /* Is it quota file? Do not allow user to mess with it */
Dave Hansen42a74f22008-02-15 14:37:46 -080093 if (IS_NOQUOTA(inode)) {
94 err = -EPERM;
95 goto setflags_out;
96 }
Andi Kleenbaab81f2008-01-27 16:58:51 -060097
98 /* Lock against other parallel changes of flags */
Al Viro59551022016-01-22 15:40:57 -050099 inode_lock(inode);
Andi Kleenbaab81f2008-01-27 16:58:51 -0600100
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700101 oldflags = jfs_map_ext2(jfs_inode->mode2 & JFS_FL_USER_VISIBLE,
102 0);
103 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
104 if (err) {
105 inode_unlock(inode);
106 goto setflags_out;
Herbert Poetzld9e90262006-02-22 14:14:58 -0600107 }
108
109 flags = flags & JFS_FL_USER_MODIFIABLE;
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700110 flags |= jfs_inode->mode2 & ~JFS_FL_USER_MODIFIABLE;
Herbert Poetzld9e90262006-02-22 14:14:58 -0600111 jfs_inode->mode2 = flags;
112
113 jfs_set_inode_flags(inode);
Al Viro59551022016-01-22 15:40:57 -0500114 inode_unlock(inode);
Deepa Dinamani362ad5d2016-11-11 10:00:53 -0800115 inode->i_ctime = current_time(inode);
Herbert Poetzld9e90262006-02-22 14:14:58 -0600116 mark_inode_dirty(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800117setflags_out:
Al Viro2a79f172011-12-09 08:06:57 -0500118 mnt_drop_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800119 return err;
Herbert Poetzld9e90262006-02-22 14:14:58 -0600120 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500121
122 case FITRIM:
123 {
124 struct super_block *sb = inode->i_sb;
125 struct request_queue *q = bdev_get_queue(sb->s_bdev);
126 struct fstrim_range range;
127 s64 ret = 0;
128
129 if (!capable(CAP_SYS_ADMIN))
130 return -EPERM;
131
132 if (!blk_queue_discard(q)) {
133 jfs_warn("FITRIM not supported on device");
134 return -EOPNOTSUPP;
135 }
136
137 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
138 sizeof(range)))
139 return -EFAULT;
140
141 range.minlen = max_t(unsigned int, range.minlen,
142 q->limits.discard_granularity);
143
144 ret = jfs_ioc_trim(inode, &range);
145 if (ret < 0)
146 return ret;
147
148 if (copy_to_user((struct fstrim_range __user *)arg, &range,
149 sizeof(range)))
150 return -EFAULT;
151
152 return 0;
153 }
154
Herbert Poetzld9e90262006-02-22 14:14:58 -0600155 default:
156 return -ENOTTY;
157 }
158}
159
Andi Kleenef1fc2f2008-01-27 17:02:02 -0600160#ifdef CONFIG_COMPAT
161long jfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
162{
163 /* While these ioctl numbers defined with 'long' and have different
164 * numbers than the 64bit ABI,
165 * the actual implementation only deals with ints and is compatible.
166 */
167 switch (cmd) {
168 case JFS_IOC_GETFLAGS32:
169 cmd = JFS_IOC_GETFLAGS;
170 break;
171 case JFS_IOC_SETFLAGS32:
172 cmd = JFS_IOC_SETFLAGS;
173 break;
174 }
175 return jfs_ioctl(filp, cmd, arg);
176}
177#endif