4 * Copyright (C) 2006 Herbert Poetzl
5 * adapted from Remy Card's ext2/ioctl.c
9 #include <linux/ctype.h>
10 #include <linux/capability.h>
11 #include <linux/mount.h>
12 #include <linux/time.h>
13 #include <linux/sched.h>
14 #include <linux/blkdev.h>
15 #include <asm/current.h>
16 #include <asm/uaccess.h>
18 #include "jfs_filsys.h"
19 #include "jfs_debug.h"
20 #include "jfs_incore.h"
21 #include "jfs_dinode.h"
22 #include "jfs_inode.h"
24 #include "jfs_discard.h"
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
},
40 static long jfs_map_ext2(unsigned long flags
, int from
)
45 while (jfs_map
[index
].jfs_flag
) {
47 if (jfs_map
[index
].ext2_flag
& flags
)
48 mapped
|= jfs_map
[index
].jfs_flag
;
50 if (jfs_map
[index
].jfs_flag
& flags
)
51 mapped
|= jfs_map
[index
].ext2_flag
;
59 long jfs_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
61 struct inode
*inode
= file_inode(filp
);
62 struct jfs_inode_info
*jfs_inode
= JFS_IP(inode
);
66 case JFS_IOC_GETFLAGS
:
67 jfs_get_inode_flags(jfs_inode
);
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
;
75 err
= mnt_want_write_file(filp
);
79 if (!inode_owner_or_capable(inode
)) {
83 if (get_user(flags
, (int __user
*) arg
)) {
88 flags
= jfs_map_ext2(flags
, 1);
89 if (!S_ISDIR(inode
->i_mode
))
90 flags
&= ~JFS_DIRSYNC_FL
;
92 /* Is it quota file? Do not allow user to mess with it */
93 if (IS_NOQUOTA(inode
)) {
98 /* Lock against other parallel changes of flags */
99 mutex_lock(&inode
->i_mutex
);
101 jfs_get_inode_flags(jfs_inode
);
102 oldflags
= jfs_inode
->mode2
;
105 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
106 * the relevant capability.
108 if ((oldflags
& JFS_IMMUTABLE_FL
) ||
109 ((flags
^ oldflags
) &
110 (JFS_APPEND_FL
| JFS_IMMUTABLE_FL
))) {
111 if (!capable(CAP_LINUX_IMMUTABLE
)) {
112 mutex_unlock(&inode
->i_mutex
);
118 flags
= flags
& JFS_FL_USER_MODIFIABLE
;
119 flags
|= oldflags
& ~JFS_FL_USER_MODIFIABLE
;
120 jfs_inode
->mode2
= flags
;
122 jfs_set_inode_flags(inode
);
123 mutex_unlock(&inode
->i_mutex
);
124 inode
->i_ctime
= CURRENT_TIME_SEC
;
125 mark_inode_dirty(inode
);
127 mnt_drop_write_file(filp
);
133 struct super_block
*sb
= inode
->i_sb
;
134 struct request_queue
*q
= bdev_get_queue(sb
->s_bdev
);
135 struct fstrim_range range
;
138 if (!capable(CAP_SYS_ADMIN
))
141 if (!blk_queue_discard(q
)) {
142 jfs_warn("FITRIM not supported on device");
146 if (copy_from_user(&range
, (struct fstrim_range __user
*)arg
,
150 range
.minlen
= max_t(unsigned int, range
.minlen
,
151 q
->limits
.discard_granularity
);
153 ret
= jfs_ioc_trim(inode
, &range
);
157 if (copy_to_user((struct fstrim_range __user
*)arg
, &range
,
170 long jfs_compat_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
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.
177 case JFS_IOC_GETFLAGS32
:
178 cmd
= JFS_IOC_GETFLAGS
;
180 case JFS_IOC_SETFLAGS32
:
181 cmd
= JFS_IOC_SETFLAGS
;
187 return jfs_ioctl(filp
, cmd
, arg
);
This page took 0.163381 seconds and 6 git commands to generate.