Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 1 | /* |
| 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 Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 9 | #include <linux/ctype.h> |
| 10 | #include <linux/capability.h> |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 11 | #include <linux/mount.h> |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 12 | #include <linux/time.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 13 | #include <linux/sched.h> |
Tino Reichardt | b40c2e6 | 2012-09-17 11:58:19 -0500 | [diff] [blame] | 14 | #include <linux/blkdev.h> |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 15 | #include <asm/current.h> |
| 16 | #include <asm/uaccess.h> |
| 17 | |
Tino Reichardt | b40c2e6 | 2012-09-17 11:58:19 -0500 | [diff] [blame] | 18 | #include "jfs_filsys.h" |
| 19 | #include "jfs_debug.h" |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 20 | #include "jfs_incore.h" |
| 21 | #include "jfs_dinode.h" |
| 22 | #include "jfs_inode.h" |
Tino Reichardt | b40c2e6 | 2012-09-17 11:58:19 -0500 | [diff] [blame] | 23 | #include "jfs_dmap.h" |
| 24 | #include "jfs_discard.h" |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 25 | |
| 26 | static struct { |
| 27 | long jfs_flag; |
| 28 | long ext2_flag; |
| 29 | } jfs_map[] = { |
David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 30 | {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 Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 37 | {0, 0}, |
| 38 | }; |
| 39 | |
| 40 | static 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 Kleen | baab81f | 2008-01-27 16:58:51 -0600 | [diff] [blame] | 59 | long jfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 60 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 61 | struct inode *inode = file_inode(filp); |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 62 | struct jfs_inode_info *jfs_inode = JFS_IP(inode); |
| 63 | unsigned int flags; |
| 64 | |
| 65 | switch (cmd) { |
| 66 | case JFS_IOC_GETFLAGS: |
Dave Kleikamp | 3e2221c | 2007-04-25 09:36:20 -0500 | [diff] [blame] | 67 | jfs_get_inode_flags(jfs_inode); |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 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 Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 73 | int err; |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 74 | |
Al Viro | a561be7 | 2011-11-23 11:57:51 -0500 | [diff] [blame] | 75 | err = mnt_want_write_file(filp); |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 76 | if (err) |
| 77 | return err; |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 78 | |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 79 | if (!inode_owner_or_capable(inode)) { |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 80 | err = -EACCES; |
| 81 | goto setflags_out; |
| 82 | } |
| 83 | if (get_user(flags, (int __user *) arg)) { |
| 84 | err = -EFAULT; |
| 85 | goto setflags_out; |
| 86 | } |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 87 | |
| 88 | flags = jfs_map_ext2(flags, 1); |
| 89 | if (!S_ISDIR(inode->i_mode)) |
| 90 | flags &= ~JFS_DIRSYNC_FL; |
| 91 | |
Jan Kara | e47776a | 2007-11-14 16:58:56 -0800 | [diff] [blame] | 92 | /* Is it quota file? Do not allow user to mess with it */ |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 93 | if (IS_NOQUOTA(inode)) { |
| 94 | err = -EPERM; |
| 95 | goto setflags_out; |
| 96 | } |
Andi Kleen | baab81f | 2008-01-27 16:58:51 -0600 | [diff] [blame] | 97 | |
| 98 | /* Lock against other parallel changes of flags */ |
| 99 | mutex_lock(&inode->i_mutex); |
| 100 | |
Dave Kleikamp | 3e2221c | 2007-04-25 09:36:20 -0500 | [diff] [blame] | 101 | jfs_get_inode_flags(jfs_inode); |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 102 | oldflags = jfs_inode->mode2; |
| 103 | |
| 104 | /* |
| 105 | * The IMMUTABLE and APPEND_ONLY flags can only be changed by |
| 106 | * the relevant capability. |
| 107 | */ |
| 108 | if ((oldflags & JFS_IMMUTABLE_FL) || |
| 109 | ((flags ^ oldflags) & |
| 110 | (JFS_APPEND_FL | JFS_IMMUTABLE_FL))) { |
Andi Kleen | baab81f | 2008-01-27 16:58:51 -0600 | [diff] [blame] | 111 | if (!capable(CAP_LINUX_IMMUTABLE)) { |
| 112 | mutex_unlock(&inode->i_mutex); |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 113 | err = -EPERM; |
| 114 | goto setflags_out; |
Andi Kleen | baab81f | 2008-01-27 16:58:51 -0600 | [diff] [blame] | 115 | } |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | flags = flags & JFS_FL_USER_MODIFIABLE; |
| 119 | flags |= oldflags & ~JFS_FL_USER_MODIFIABLE; |
| 120 | jfs_inode->mode2 = flags; |
| 121 | |
| 122 | jfs_set_inode_flags(inode); |
Andi Kleen | baab81f | 2008-01-27 16:58:51 -0600 | [diff] [blame] | 123 | mutex_unlock(&inode->i_mutex); |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 124 | inode->i_ctime = CURRENT_TIME_SEC; |
| 125 | mark_inode_dirty(inode); |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 126 | setflags_out: |
Al Viro | 2a79f17 | 2011-12-09 08:06:57 -0500 | [diff] [blame] | 127 | mnt_drop_write_file(filp); |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 128 | return err; |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 129 | } |
Tino Reichardt | b40c2e6 | 2012-09-17 11:58:19 -0500 | [diff] [blame] | 130 | |
| 131 | case FITRIM: |
| 132 | { |
| 133 | struct super_block *sb = inode->i_sb; |
| 134 | struct request_queue *q = bdev_get_queue(sb->s_bdev); |
| 135 | struct fstrim_range range; |
| 136 | s64 ret = 0; |
| 137 | |
| 138 | if (!capable(CAP_SYS_ADMIN)) |
| 139 | return -EPERM; |
| 140 | |
| 141 | if (!blk_queue_discard(q)) { |
| 142 | jfs_warn("FITRIM not supported on device"); |
| 143 | return -EOPNOTSUPP; |
| 144 | } |
| 145 | |
| 146 | if (copy_from_user(&range, (struct fstrim_range __user *)arg, |
| 147 | sizeof(range))) |
| 148 | return -EFAULT; |
| 149 | |
| 150 | range.minlen = max_t(unsigned int, range.minlen, |
| 151 | q->limits.discard_granularity); |
| 152 | |
| 153 | ret = jfs_ioc_trim(inode, &range); |
| 154 | if (ret < 0) |
| 155 | return ret; |
| 156 | |
| 157 | if (copy_to_user((struct fstrim_range __user *)arg, &range, |
| 158 | sizeof(range))) |
| 159 | return -EFAULT; |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 164 | default: |
| 165 | return -ENOTTY; |
| 166 | } |
| 167 | } |
| 168 | |
Andi Kleen | ef1fc2f | 2008-01-27 17:02:02 -0600 | [diff] [blame] | 169 | #ifdef CONFIG_COMPAT |
| 170 | long jfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 171 | { |
| 172 | /* While these ioctl numbers defined with 'long' and have different |
| 173 | * numbers than the 64bit ABI, |
| 174 | * the actual implementation only deals with ints and is compatible. |
| 175 | */ |
| 176 | switch (cmd) { |
| 177 | case JFS_IOC_GETFLAGS32: |
| 178 | cmd = JFS_IOC_GETFLAGS; |
| 179 | break; |
| 180 | case JFS_IOC_SETFLAGS32: |
| 181 | cmd = JFS_IOC_SETFLAGS; |
| 182 | break; |
Tino Reichardt | b40c2e6 | 2012-09-17 11:58:19 -0500 | [diff] [blame] | 183 | case FITRIM: |
| 184 | cmd = FITRIM; |
| 185 | break; |
Andi Kleen | ef1fc2f | 2008-01-27 17:02:02 -0600 | [diff] [blame] | 186 | } |
| 187 | return jfs_ioctl(filp, cmd, arg); |
| 188 | } |
| 189 | #endif |