Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 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 Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 16 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/fs.h> |
Dave Hansen | 42a74f2 | 2008-02-15 14:37:46 -0800 | [diff] [blame] | 18 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/sched.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 20 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "hfsplus_fs.h" |
| 22 | |
Matthew Garrett | a051f71 | 2012-02-06 15:14:40 -0500 | [diff] [blame] | 23 | /* |
| 24 | * "Blessing" an HFS+ filesystem writes metadata to the superblock informing |
| 25 | * the platform firmware which file to boot from |
| 26 | */ |
| 27 | static int hfsplus_ioctl_bless(struct file *file, int __user *user_flags) |
| 28 | { |
| 29 | struct dentry *dentry = file->f_path.dentry; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 30 | struct inode *inode = d_inode(dentry); |
Matthew Garrett | a051f71 | 2012-02-06 15:14:40 -0500 | [diff] [blame] | 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; |
Matthew Garrett | 7dea9665 | 2012-06-17 17:05:25 -0400 | [diff] [blame] | 34 | u32 cnid = (unsigned long)dentry->d_fsdata; |
Matthew Garrett | a051f71 | 2012-02-06 15:14:40 -0500 | [diff] [blame] | 35 | |
| 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 Garrett | 7dea9665 | 2012-06-17 17:05:25 -0400 | [diff] [blame] | 45 | /* |
| 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 Garrett | a051f71 | 2012-02-06 15:14:40 -0500 | [diff] [blame] | 51 | |
| 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 | |
Christoph Hellwig | 9474456 | 2010-10-01 05:41:31 +0200 | [diff] [blame] | 60 | long hfsplus_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 61 | { |
| 62 | void __user *argp = (void __user *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | switch (cmd) { |
Matthew Garrett | a051f71 | 2012-02-06 15:14:40 -0500 | [diff] [blame] | 65 | case HFSPLUS_IOC_BLESS: |
| 66 | return hfsplus_ioctl_bless(file, argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return -ENOTTY; |
| 69 | } |
| 70 | } |