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/time.h>
12 #include <asm/current.h>
13 #include <asm/uaccess.h>
15 #include "jfs_incore.h"
16 #include "jfs_dinode.h"
17 #include "jfs_inode.h"
24 {JFS_NOATIME_FL, FS_NOATIME_FL},
25 {JFS_DIRSYNC_FL, FS_DIRSYNC_FL},
26 {JFS_SYNC_FL, FS_SYNC_FL},
27 {JFS_SECRM_FL, FS_SECRM_FL},
28 {JFS_UNRM_FL, FS_UNRM_FL},
29 {JFS_APPEND_FL, FS_APPEND_FL},
30 {JFS_IMMUTABLE_FL, FS_IMMUTABLE_FL},
34 static long jfs_map_ext2(unsigned long flags, int from)
39 while (jfs_map[index].jfs_flag) {
41 if (jfs_map[index].ext2_flag & flags)
42 mapped |= jfs_map[index].jfs_flag;
44 if (jfs_map[index].jfs_flag & flags)
45 mapped |= jfs_map[index].ext2_flag;
53 int jfs_ioctl(struct inode * inode, struct file * filp, unsigned int cmd,
56 struct jfs_inode_info *jfs_inode = JFS_IP(inode);
60 case JFS_IOC_GETFLAGS:
61 flags = jfs_inode->mode2 & JFS_FL_USER_VISIBLE;
62 flags = jfs_map_ext2(flags, 0);
63 return put_user(flags, (int __user *) arg);
64 case JFS_IOC_SETFLAGS: {
65 unsigned int oldflags;
70 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
73 if (get_user(flags, (int __user *) arg))
76 flags = jfs_map_ext2(flags, 1);
77 if (!S_ISDIR(inode->i_mode))
78 flags &= ~JFS_DIRSYNC_FL;
80 oldflags = jfs_inode->mode2;
83 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
84 * the relevant capability.
86 if ((oldflags & JFS_IMMUTABLE_FL) ||
88 (JFS_APPEND_FL | JFS_IMMUTABLE_FL))) {
89 if (!capable(CAP_LINUX_IMMUTABLE))
93 flags = flags & JFS_FL_USER_MODIFIABLE;
94 flags |= oldflags & ~JFS_FL_USER_MODIFIABLE;
95 jfs_inode->mode2 = flags;
97 jfs_set_inode_flags(inode);
98 inode->i_ctime = CURRENT_TIME_SEC;
99 mark_inode_dirty(inode);