1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/hfsplus/ioctl.c
6 * Ethan Benson <erbenson@alaska.net>
7 * partially derived from linux/fs/ext2/ioctl.c
8 * Copyright (C) 1993, 1994, 1995
9 * Remy Card (card@masi.ibp.fr)
10 * Laboratoire MASI - Institut Blaise Pascal
11 * Universite Pierre et Marie Curie (Paris VI)
16 #include <linux/capability.h>
18 #include <linux/mount.h>
19 #include <linux/sched.h>
20 #include <linux/uaccess.h>
21 #include "hfsplus_fs.h"
24 * "Blessing" an HFS+ filesystem writes metadata to the superblock informing
25 * the platform firmware which file to boot from
27 static int hfsplus_ioctl_bless(struct file
*file
, int __user
*user_flags
)
29 struct dentry
*dentry
= file
->f_path
.dentry
;
30 struct inode
*inode
= d_inode(dentry
);
31 struct hfsplus_sb_info
*sbi
= HFSPLUS_SB(inode
->i_sb
);
32 struct hfsplus_vh
*vh
= sbi
->s_vhdr
;
33 struct hfsplus_vh
*bvh
= sbi
->s_backup_vhdr
;
34 u32 cnid
= (unsigned long)dentry
->d_fsdata
;
36 if (!capable(CAP_SYS_ADMIN
))
39 mutex_lock(&sbi
->vh_mutex
);
41 /* Directory containing the bootable system */
42 vh
->finder_info
[0] = bvh
->finder_info
[0] =
43 cpu_to_be32(parent_ino(dentry
));
46 * Bootloader. Just using the inode here breaks in the case of
47 * hard links - the firmware wants the ID of the hard link file,
48 * but the inode points at the indirect inode
50 vh
->finder_info
[1] = bvh
->finder_info
[1] = cpu_to_be32(cnid
);
52 /* Per spec, the OS X system folder - same as finder_info[0] here */
53 vh
->finder_info
[5] = bvh
->finder_info
[5] =
54 cpu_to_be32(parent_ino(dentry
));
56 mutex_unlock(&sbi
->vh_mutex
);
60 static inline unsigned int hfsplus_getflags(struct inode
*inode
)
62 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
63 unsigned int flags
= 0;
65 if (inode
->i_flags
& S_IMMUTABLE
)
66 flags
|= FS_IMMUTABLE_FL
;
67 if (inode
->i_flags
& S_APPEND
)
68 flags
|= FS_APPEND_FL
;
69 if (hip
->userflags
& HFSPLUS_FLG_NODUMP
)
70 flags
|= FS_NODUMP_FL
;
74 static int hfsplus_ioctl_getflags(struct file
*file
, int __user
*user_flags
)
76 struct inode
*inode
= file_inode(file
);
77 unsigned int flags
= hfsplus_getflags(inode
);
79 return put_user(flags
, user_flags
);
82 static int hfsplus_ioctl_setflags(struct file
*file
, int __user
*user_flags
)
84 struct inode
*inode
= file_inode(file
);
85 struct hfsplus_inode_info
*hip
= HFSPLUS_I(inode
);
86 unsigned int flags
, new_fl
= 0;
87 unsigned int oldflags
= hfsplus_getflags(inode
);
90 err
= mnt_want_write_file(file
);
94 if (!inode_owner_or_capable(inode
)) {
99 if (get_user(flags
, user_flags
)) {
106 err
= vfs_ioc_setflags_prepare(inode
, oldflags
, flags
);
108 goto out_unlock_inode
;
110 /* don't silently ignore unsupported ext2 flags */
111 if (flags
& ~(FS_IMMUTABLE_FL
|FS_APPEND_FL
|FS_NODUMP_FL
)) {
113 goto out_unlock_inode
;
116 if (flags
& FS_IMMUTABLE_FL
)
117 new_fl
|= S_IMMUTABLE
;
119 if (flags
& FS_APPEND_FL
)
122 inode_set_flags(inode
, new_fl
, S_IMMUTABLE
| S_APPEND
);
124 if (flags
& FS_NODUMP_FL
)
125 hip
->userflags
|= HFSPLUS_FLG_NODUMP
;
127 hip
->userflags
&= ~HFSPLUS_FLG_NODUMP
;
129 inode
->i_ctime
= current_time(inode
);
130 mark_inode_dirty(inode
);
135 mnt_drop_write_file(file
);
140 long hfsplus_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
142 void __user
*argp
= (void __user
*)arg
;
145 case HFSPLUS_IOC_EXT2_GETFLAGS
:
146 return hfsplus_ioctl_getflags(file
, argp
);
147 case HFSPLUS_IOC_EXT2_SETFLAGS
:
148 return hfsplus_ioctl_setflags(file
, argp
);
149 case HFSPLUS_IOC_BLESS
:
150 return hfsplus_ioctl_bless(file
, argp
);