| 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> | 
|  | 11 | #include <linux/time.h> | 
| Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 12 | #include <linux/sched.h> | 
| Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 13 | #include <asm/current.h> | 
|  | 14 | #include <asm/uaccess.h> | 
|  | 15 |  | 
|  | 16 | #include "jfs_incore.h" | 
|  | 17 | #include "jfs_dinode.h" | 
|  | 18 | #include "jfs_inode.h" | 
|  | 19 |  | 
|  | 20 |  | 
|  | 21 | static struct { | 
|  | 22 | long jfs_flag; | 
|  | 23 | long ext2_flag; | 
|  | 24 | } jfs_map[] = { | 
| David Howells | 3669567 | 2006-08-29 19:06:16 +0100 | [diff] [blame] | 25 | {JFS_NOATIME_FL,	FS_NOATIME_FL}, | 
|  | 26 | {JFS_DIRSYNC_FL,	FS_DIRSYNC_FL}, | 
|  | 27 | {JFS_SYNC_FL,		FS_SYNC_FL}, | 
|  | 28 | {JFS_SECRM_FL,		FS_SECRM_FL}, | 
|  | 29 | {JFS_UNRM_FL,		FS_UNRM_FL}, | 
|  | 30 | {JFS_APPEND_FL,		FS_APPEND_FL}, | 
|  | 31 | {JFS_IMMUTABLE_FL,	FS_IMMUTABLE_FL}, | 
| Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 32 | {0, 0}, | 
|  | 33 | }; | 
|  | 34 |  | 
|  | 35 | static long jfs_map_ext2(unsigned long flags, int from) | 
|  | 36 | { | 
|  | 37 | int index=0; | 
|  | 38 | long mapped=0; | 
|  | 39 |  | 
|  | 40 | while (jfs_map[index].jfs_flag) { | 
|  | 41 | if (from) { | 
|  | 42 | if (jfs_map[index].ext2_flag & flags) | 
|  | 43 | mapped |= jfs_map[index].jfs_flag; | 
|  | 44 | } else { | 
|  | 45 | if (jfs_map[index].jfs_flag & flags) | 
|  | 46 | mapped |= jfs_map[index].ext2_flag; | 
|  | 47 | } | 
|  | 48 | index++; | 
|  | 49 | } | 
|  | 50 | return mapped; | 
|  | 51 | } | 
|  | 52 |  | 
|  | 53 |  | 
|  | 54 | int jfs_ioctl(struct inode * inode, struct file * filp, unsigned int cmd, | 
|  | 55 | unsigned long arg) | 
|  | 56 | { | 
|  | 57 | struct jfs_inode_info *jfs_inode = JFS_IP(inode); | 
|  | 58 | unsigned int flags; | 
|  | 59 |  | 
|  | 60 | switch (cmd) { | 
|  | 61 | case JFS_IOC_GETFLAGS: | 
| Dave Kleikamp | 3e2221c | 2007-04-25 09:36:20 -0500 | [diff] [blame] | 62 | jfs_get_inode_flags(jfs_inode); | 
| Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 63 | flags = jfs_inode->mode2 & JFS_FL_USER_VISIBLE; | 
|  | 64 | flags = jfs_map_ext2(flags, 0); | 
|  | 65 | return put_user(flags, (int __user *) arg); | 
|  | 66 | case JFS_IOC_SETFLAGS: { | 
|  | 67 | unsigned int oldflags; | 
|  | 68 |  | 
|  | 69 | if (IS_RDONLY(inode)) | 
|  | 70 | return -EROFS; | 
|  | 71 |  | 
| Satyam Sharma | 3bd858a | 2007-07-17 15:00:08 +0530 | [diff] [blame] | 72 | if (!is_owner_or_cap(inode)) | 
| Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 73 | return -EACCES; | 
|  | 74 |  | 
|  | 75 | if (get_user(flags, (int __user *) arg)) | 
|  | 76 | return -EFAULT; | 
|  | 77 |  | 
|  | 78 | flags = jfs_map_ext2(flags, 1); | 
|  | 79 | if (!S_ISDIR(inode->i_mode)) | 
|  | 80 | flags &= ~JFS_DIRSYNC_FL; | 
|  | 81 |  | 
| Jan Kara | e47776a | 2007-11-14 16:58:56 -0800 | [diff] [blame] | 82 | /* Is it quota file? Do not allow user to mess with it */ | 
|  | 83 | if (IS_NOQUOTA(inode)) | 
|  | 84 | return -EPERM; | 
| Dave Kleikamp | 3e2221c | 2007-04-25 09:36:20 -0500 | [diff] [blame] | 85 | jfs_get_inode_flags(jfs_inode); | 
| Herbert Poetzl | d9e9026 | 2006-02-22 14:14:58 -0600 | [diff] [blame] | 86 | oldflags = jfs_inode->mode2; | 
|  | 87 |  | 
|  | 88 | /* | 
|  | 89 | * The IMMUTABLE and APPEND_ONLY flags can only be changed by | 
|  | 90 | * the relevant capability. | 
|  | 91 | */ | 
|  | 92 | if ((oldflags & JFS_IMMUTABLE_FL) || | 
|  | 93 | ((flags ^ oldflags) & | 
|  | 94 | (JFS_APPEND_FL | JFS_IMMUTABLE_FL))) { | 
|  | 95 | if (!capable(CAP_LINUX_IMMUTABLE)) | 
|  | 96 | return -EPERM; | 
|  | 97 | } | 
|  | 98 |  | 
|  | 99 | flags = flags & JFS_FL_USER_MODIFIABLE; | 
|  | 100 | flags |= oldflags & ~JFS_FL_USER_MODIFIABLE; | 
|  | 101 | jfs_inode->mode2 = flags; | 
|  | 102 |  | 
|  | 103 | jfs_set_inode_flags(inode); | 
|  | 104 | inode->i_ctime = CURRENT_TIME_SEC; | 
|  | 105 | mark_inode_dirty(inode); | 
|  | 106 | return 0; | 
|  | 107 | } | 
|  | 108 | default: | 
|  | 109 | return -ENOTTY; | 
|  | 110 | } | 
|  | 111 | } | 
|  | 112 |  |