Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/hfsplus/ioctl.c | |
3 | * | |
4 | * Copyright (C) 2003 | |
5 | * Ethan Benson <erbenson@alaska.net> | |
6 | * partially derived from linux/fs/ext2/ioctl.c | |
7 | * Copyright (C) 1993, 1994, 1995 | |
8 | * Remy Card (card@masi.ibp.fr) | |
9 | * Laboratoire MASI - Institut Blaise Pascal | |
10 | * Universite Pierre et Marie Curie (Paris VI) | |
11 | * | |
12 | * hfsplus ioctls | |
13 | */ | |
14 | ||
16f7e0fe | 15 | #include <linux/capability.h> |
1da177e4 | 16 | #include <linux/fs.h> |
42a74f20 | 17 | #include <linux/mount.h> |
1da177e4 | 18 | #include <linux/sched.h> |
1da177e4 LT |
19 | #include <asm/uaccess.h> |
20 | #include "hfsplus_fs.h" | |
21 | ||
a051f71c MG |
22 | /* |
23 | * "Blessing" an HFS+ filesystem writes metadata to the superblock informing | |
24 | * the platform firmware which file to boot from | |
25 | */ | |
26 | static int hfsplus_ioctl_bless(struct file *file, int __user *user_flags) | |
27 | { | |
28 | struct dentry *dentry = file->f_path.dentry; | |
2b0143b5 | 29 | struct inode *inode = d_inode(dentry); |
a051f71c MG |
30 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb); |
31 | struct hfsplus_vh *vh = sbi->s_vhdr; | |
32 | struct hfsplus_vh *bvh = sbi->s_backup_vhdr; | |
7dea9665 | 33 | u32 cnid = (unsigned long)dentry->d_fsdata; |
a051f71c MG |
34 | |
35 | if (!capable(CAP_SYS_ADMIN)) | |
36 | return -EPERM; | |
37 | ||
38 | mutex_lock(&sbi->vh_mutex); | |
39 | ||
40 | /* Directory containing the bootable system */ | |
41 | vh->finder_info[0] = bvh->finder_info[0] = | |
42 | cpu_to_be32(parent_ino(dentry)); | |
43 | ||
7dea9665 MG |
44 | /* |
45 | * Bootloader. Just using the inode here breaks in the case of | |
46 | * hard links - the firmware wants the ID of the hard link file, | |
47 | * but the inode points at the indirect inode | |
48 | */ | |
49 | vh->finder_info[1] = bvh->finder_info[1] = cpu_to_be32(cnid); | |
a051f71c MG |
50 | |
51 | /* Per spec, the OS X system folder - same as finder_info[0] here */ | |
52 | vh->finder_info[5] = bvh->finder_info[5] = | |
53 | cpu_to_be32(parent_ino(dentry)); | |
54 | ||
55 | mutex_unlock(&sbi->vh_mutex); | |
56 | return 0; | |
57 | } | |
58 | ||
94744567 | 59 | static int hfsplus_ioctl_getflags(struct file *file, int __user *user_flags) |
1da177e4 | 60 | { |
496ad9aa | 61 | struct inode *inode = file_inode(file); |
6af502de | 62 | struct hfsplus_inode_info *hip = HFSPLUS_I(inode); |
94744567 CH |
63 | unsigned int flags = 0; |
64 | ||
722c55d1 | 65 | if (inode->i_flags & S_IMMUTABLE) |
94744567 | 66 | flags |= FS_IMMUTABLE_FL; |
596276c3 | 67 | if (inode->i_flags & S_APPEND) |
94744567 | 68 | flags |= FS_APPEND_FL; |
6af502de | 69 | if (hip->userflags & HFSPLUS_FLG_NODUMP) |
94744567 CH |
70 | flags |= FS_NODUMP_FL; |
71 | ||
72 | return put_user(flags, user_flags); | |
73 | } | |
74 | ||
75 | static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags) | |
76 | { | |
496ad9aa | 77 | struct inode *inode = file_inode(file); |
6af502de | 78 | struct hfsplus_inode_info *hip = HFSPLUS_I(inode); |
73d28d57 | 79 | unsigned int flags, new_fl = 0; |
94744567 | 80 | int err = 0; |
1da177e4 | 81 | |
a561be71 | 82 | err = mnt_want_write_file(file); |
94744567 | 83 | if (err) |
6333816a | 84 | goto out; |
1da177e4 | 85 | |
2e149670 | 86 | if (!inode_owner_or_capable(inode)) { |
94744567 CH |
87 | err = -EACCES; |
88 | goto out_drop_write; | |
89 | } | |
1da177e4 | 90 | |
94744567 CH |
91 | if (get_user(flags, user_flags)) { |
92 | err = -EFAULT; | |
93 | goto out_drop_write; | |
94 | } | |
95 | ||
5955102c | 96 | inode_lock(inode); |
6333816a | 97 | |
722c55d1 CH |
98 | if ((flags & (FS_IMMUTABLE_FL|FS_APPEND_FL)) || |
99 | inode->i_flags & (S_IMMUTABLE|S_APPEND)) { | |
94744567 CH |
100 | if (!capable(CAP_LINUX_IMMUTABLE)) { |
101 | err = -EPERM; | |
6333816a | 102 | goto out_unlock_inode; |
1da177e4 | 103 | } |
1da177e4 | 104 | } |
94744567 CH |
105 | |
106 | /* don't silently ignore unsupported ext2 flags */ | |
107 | if (flags & ~(FS_IMMUTABLE_FL|FS_APPEND_FL|FS_NODUMP_FL)) { | |
108 | err = -EOPNOTSUPP; | |
6333816a | 109 | goto out_unlock_inode; |
94744567 | 110 | } |
722c55d1 CH |
111 | |
112 | if (flags & FS_IMMUTABLE_FL) | |
73d28d57 | 113 | new_fl |= S_IMMUTABLE; |
722c55d1 CH |
114 | |
115 | if (flags & FS_APPEND_FL) | |
73d28d57 FF |
116 | new_fl |= S_APPEND; |
117 | ||
118 | inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); | |
722c55d1 | 119 | |
94744567 | 120 | if (flags & FS_NODUMP_FL) |
6af502de | 121 | hip->userflags |= HFSPLUS_FLG_NODUMP; |
94744567 | 122 | else |
6af502de | 123 | hip->userflags &= ~HFSPLUS_FLG_NODUMP; |
94744567 CH |
124 | |
125 | inode->i_ctime = CURRENT_TIME_SEC; | |
126 | mark_inode_dirty(inode); | |
127 | ||
6333816a | 128 | out_unlock_inode: |
5955102c | 129 | inode_unlock(inode); |
94744567 | 130 | out_drop_write: |
2a79f17e | 131 | mnt_drop_write_file(file); |
6333816a | 132 | out: |
94744567 CH |
133 | return err; |
134 | } | |
135 | ||
136 | long hfsplus_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |
137 | { | |
138 | void __user *argp = (void __user *)arg; | |
139 | ||
140 | switch (cmd) { | |
141 | case HFSPLUS_IOC_EXT2_GETFLAGS: | |
142 | return hfsplus_ioctl_getflags(file, argp); | |
143 | case HFSPLUS_IOC_EXT2_SETFLAGS: | |
144 | return hfsplus_ioctl_setflags(file, argp); | |
a051f71c MG |
145 | case HFSPLUS_IOC_BLESS: |
146 | return hfsplus_ioctl_bless(file, argp); | |
1da177e4 LT |
147 | default: |
148 | return -ENOTTY; | |
149 | } | |
150 | } |