blob: ce15b9496b77e058e331afa0a4a1ea83c9c3011a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/hfsplus/ioctl.c
4 *
5 * Copyright (C) 2003
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)
12 *
13 * hfsplus ioctls
14 */
15
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
Dave Hansen42a74f22008-02-15 14:37:46 -080018#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/sched.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "hfsplus_fs.h"
22
Matthew Garretta051f712012-02-06 15:14:40 -050023/*
24 * "Blessing" an HFS+ filesystem writes metadata to the superblock informing
25 * the platform firmware which file to boot from
26 */
27static int hfsplus_ioctl_bless(struct file *file, int __user *user_flags)
28{
29 struct dentry *dentry = file->f_path.dentry;
David Howells2b0143b2015-03-17 22:25:59 +000030 struct inode *inode = d_inode(dentry);
Matthew Garretta051f712012-02-06 15:14:40 -050031 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;
Matthew Garrett7dea96652012-06-17 17:05:25 -040034 u32 cnid = (unsigned long)dentry->d_fsdata;
Matthew Garretta051f712012-02-06 15:14:40 -050035
36 if (!capable(CAP_SYS_ADMIN))
37 return -EPERM;
38
39 mutex_lock(&sbi->vh_mutex);
40
41 /* Directory containing the bootable system */
42 vh->finder_info[0] = bvh->finder_info[0] =
43 cpu_to_be32(parent_ino(dentry));
44
Matthew Garrett7dea96652012-06-17 17:05:25 -040045 /*
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
49 */
50 vh->finder_info[1] = bvh->finder_info[1] = cpu_to_be32(cnid);
Matthew Garretta051f712012-02-06 15:14:40 -050051
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));
55
56 mutex_unlock(&sbi->vh_mutex);
57 return 0;
58}
59
Darrick J. Wong5aca2842019-07-01 08:25:34 -070060static inline unsigned int hfsplus_getflags(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Christoph Hellwig6af502d2010-10-01 05:43:31 +020062 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Christoph Hellwig94744562010-10-01 05:41:31 +020063 unsigned int flags = 0;
64
Christoph Hellwig722c55d2010-10-14 09:54:33 -040065 if (inode->i_flags & S_IMMUTABLE)
Christoph Hellwig94744562010-10-01 05:41:31 +020066 flags |= FS_IMMUTABLE_FL;
Anton Salikhmetov596276c2010-12-16 14:44:51 +020067 if (inode->i_flags & S_APPEND)
Christoph Hellwig94744562010-10-01 05:41:31 +020068 flags |= FS_APPEND_FL;
Christoph Hellwig6af502d2010-10-01 05:43:31 +020069 if (hip->userflags & HFSPLUS_FLG_NODUMP)
Christoph Hellwig94744562010-10-01 05:41:31 +020070 flags |= FS_NODUMP_FL;
Darrick J. Wong5aca2842019-07-01 08:25:34 -070071 return flags;
72}
73
74static int hfsplus_ioctl_getflags(struct file *file, int __user *user_flags)
75{
76 struct inode *inode = file_inode(file);
77 unsigned int flags = hfsplus_getflags(inode);
Christoph Hellwig94744562010-10-01 05:41:31 +020078
79 return put_user(flags, user_flags);
80}
81
82static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags)
83{
Al Viro496ad9a2013-01-23 17:07:38 -050084 struct inode *inode = file_inode(file);
Christoph Hellwig6af502d2010-10-01 05:43:31 +020085 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Fabian Frederick73d28d572015-04-16 12:47:04 -070086 unsigned int flags, new_fl = 0;
Darrick J. Wong5aca2842019-07-01 08:25:34 -070087 unsigned int oldflags = hfsplus_getflags(inode);
Christoph Hellwig94744562010-10-01 05:41:31 +020088 int err = 0;
89
Al Viroa561be72011-11-23 11:57:51 -050090 err = mnt_want_write_file(file);
Christoph Hellwig94744562010-10-01 05:41:31 +020091 if (err)
Christoph Hellwig63338162010-10-01 05:41:35 +020092 goto out;
Christoph Hellwig94744562010-10-01 05:41:31 +020093
Serge E. Hallyn2e149672011-03-23 16:43:26 -070094 if (!inode_owner_or_capable(inode)) {
Christoph Hellwig94744562010-10-01 05:41:31 +020095 err = -EACCES;
96 goto out_drop_write;
97 }
98
99 if (get_user(flags, user_flags)) {
100 err = -EFAULT;
101 goto out_drop_write;
102 }
103
Al Viro59551022016-01-22 15:40:57 -0500104 inode_lock(inode);
Christoph Hellwig63338162010-10-01 05:41:35 +0200105
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700106 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
107 if (err)
108 goto out_unlock_inode;
Christoph Hellwig94744562010-10-01 05:41:31 +0200109
110 /* don't silently ignore unsupported ext2 flags */
111 if (flags & ~(FS_IMMUTABLE_FL|FS_APPEND_FL|FS_NODUMP_FL)) {
112 err = -EOPNOTSUPP;
Christoph Hellwig63338162010-10-01 05:41:35 +0200113 goto out_unlock_inode;
Christoph Hellwig94744562010-10-01 05:41:31 +0200114 }
Christoph Hellwig722c55d2010-10-14 09:54:33 -0400115
116 if (flags & FS_IMMUTABLE_FL)
Fabian Frederick73d28d572015-04-16 12:47:04 -0700117 new_fl |= S_IMMUTABLE;
Christoph Hellwig722c55d2010-10-14 09:54:33 -0400118
119 if (flags & FS_APPEND_FL)
Fabian Frederick73d28d572015-04-16 12:47:04 -0700120 new_fl |= S_APPEND;
121
122 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND);
Christoph Hellwig722c55d2010-10-14 09:54:33 -0400123
Christoph Hellwig94744562010-10-01 05:41:31 +0200124 if (flags & FS_NODUMP_FL)
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200125 hip->userflags |= HFSPLUS_FLG_NODUMP;
Christoph Hellwig94744562010-10-01 05:41:31 +0200126 else
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200127 hip->userflags &= ~HFSPLUS_FLG_NODUMP;
Christoph Hellwig94744562010-10-01 05:41:31 +0200128
Deepa Dinamani02027d42016-09-14 07:48:05 -0700129 inode->i_ctime = current_time(inode);
Christoph Hellwig94744562010-10-01 05:41:31 +0200130 mark_inode_dirty(inode);
131
Christoph Hellwig63338162010-10-01 05:41:35 +0200132out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -0500133 inode_unlock(inode);
Christoph Hellwig94744562010-10-01 05:41:31 +0200134out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -0500135 mnt_drop_write_file(file);
Christoph Hellwig63338162010-10-01 05:41:35 +0200136out:
Christoph Hellwig94744562010-10-01 05:41:31 +0200137 return err;
138}
139
140long hfsplus_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
141{
142 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 switch (cmd) {
145 case HFSPLUS_IOC_EXT2_GETFLAGS:
Christoph Hellwig94744562010-10-01 05:41:31 +0200146 return hfsplus_ioctl_getflags(file, argp);
147 case HFSPLUS_IOC_EXT2_SETFLAGS:
148 return hfsplus_ioctl_setflags(file, argp);
Matthew Garretta051f712012-02-06 15:14:40 -0500149 case HFSPLUS_IOC_BLESS:
150 return hfsplus_ioctl_bless(file, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return -ENOTTY;
153 }
154}