Release 4.11 fs/hfsplus/ioctl.c
/*
* linux/fs/hfsplus/ioctl.c
*
* Copyright (C) 2003
* Ethan Benson <erbenson@alaska.net>
* partially derived from linux/fs/ext2/ioctl.c
* Copyright (C) 1993, 1994, 1995
* Remy Card (card@masi.ibp.fr)
* Laboratoire MASI - Institut Blaise Pascal
* Universite Pierre et Marie Curie (Paris VI)
*
* hfsplus ioctls
*/
#include <linux/capability.h>
#include <linux/fs.h>
#include <linux/mount.h>
#include <linux/sched.h>
#include <linux/uaccess.h>
#include "hfsplus_fs.h"
/*
* "Blessing" an HFS+ filesystem writes metadata to the superblock informing
* the platform firmware which file to boot from
*/
static int hfsplus_ioctl_bless(struct file *file, int __user *user_flags)
{
struct dentry *dentry = file->f_path.dentry;
struct inode *inode = d_inode(dentry);
struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
struct hfsplus_vh *vh = sbi->s_vhdr;
struct hfsplus_vh *bvh = sbi->s_backup_vhdr;
u32 cnid = (unsigned long)dentry->d_fsdata;
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
mutex_lock(&sbi->vh_mutex);
/* Directory containing the bootable system */
vh->finder_info[0] = bvh->finder_info[0] =
cpu_to_be32(parent_ino(dentry));
/*
* Bootloader. Just using the inode here breaks in the case of
* hard links - the firmware wants the ID of the hard link file,
* but the inode points at the indirect inode
*/
vh->finder_info[1] = bvh->finder_info[1] = cpu_to_be32(cnid);
/* Per spec, the OS X system folder - same as finder_info[0] here */
vh->finder_info[5] = bvh->finder_info[5] =
cpu_to_be32(parent_ino(dentry));
mutex_unlock(&sbi->vh_mutex);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Matthew Garrett | 172 | 98.29% | 2 | 66.67% |
David Howells | 3 | 1.71% | 1 | 33.33% |
Total | 175 | 100.00% | 3 | 100.00% |
static int hfsplus_ioctl_getflags(struct file *file, int __user *user_flags)
{
struct inode *inode = file_inode(file);
struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
unsigned int flags = 0;
if (inode->i_flags & S_IMMUTABLE)
flags |= FS_IMMUTABLE_FL;
if (inode->i_flags & S_APPEND)
flags |= FS_APPEND_FL;
if (hip->userflags & HFSPLUS_FLG_NODUMP)
flags |= FS_NODUMP_FL;
return put_user(flags, user_flags);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 41 | 47.67% | 1 | 12.50% |
Christoph Hellwig | 32 | 37.21% | 3 | 37.50% |
Arnd Bergmann | 6 | 6.98% | 1 | 12.50% |
David Howells | 3 | 3.49% | 1 | 12.50% |
Al Viro | 3 | 3.49% | 1 | 12.50% |
Anton Salikhmetov | 1 | 1.16% | 1 | 12.50% |
Total | 86 | 100.00% | 8 | 100.00% |
static int hfsplus_ioctl_setflags(struct file *file, int __user *user_flags)
{
struct inode *inode = file_inode(file);
struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
unsigned int flags, new_fl = 0;
int err = 0;
err = mnt_want_write_file(file);
if (err)
goto out;
if (!inode_owner_or_capable(inode)) {
err = -EACCES;
goto out_drop_write;
}
if (get_user(flags, user_flags)) {
err = -EFAULT;
goto out_drop_write;
}
inode_lock(inode);
if ((flags & (FS_IMMUTABLE_FL|FS_APPEND_FL)) ||
inode->i_flags & (S_IMMUTABLE|S_APPEND)) {
if (!capable(CAP_LINUX_IMMUTABLE)) {
err = -EPERM;
goto out_unlock_inode;
}
}
/* don't silently ignore unsupported ext2 flags */
if (flags & ~(FS_IMMUTABLE_FL|FS_APPEND_FL|FS_NODUMP_FL)) {
err = -EOPNOTSUPP;
goto out_unlock_inode;
}
if (flags & FS_IMMUTABLE_FL)
new_fl |= S_IMMUTABLE;
if (flags & FS_APPEND_FL)
new_fl |= S_APPEND;
inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND);
if (flags & FS_NODUMP_FL)
hip->userflags |= HFSPLUS_FLG_NODUMP;
else
hip->userflags &= ~HFSPLUS_FLG_NODUMP;
inode->i_ctime = current_time(inode);
mark_inode_dirty(inode);
out_unlock_inode:
inode_unlock(inode);
out_drop_write:
mnt_drop_write_file(file);
out:
return err;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 107 | 41.96% | 1 | 6.67% |
Christoph Hellwig | 69 | 27.06% | 4 | 26.67% |
Dave Hansen | 44 | 17.25% | 1 | 6.67% |
Fabian Frederick | 14 | 5.49% | 1 | 6.67% |
David Howells | 8 | 3.14% | 1 | 6.67% |
Al Viro | 7 | 2.75% | 4 | 26.67% |
Deepa Dinamani | 4 | 1.57% | 1 | 6.67% |
Satyam Sharma | 1 | 0.39% | 1 | 6.67% |
Serge E. Hallyn | 1 | 0.39% | 1 | 6.67% |
Total | 255 | 100.00% | 15 | 100.00% |
long hfsplus_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
void __user *argp = (void __user *)arg;
switch (cmd) {
case HFSPLUS_IOC_EXT2_GETFLAGS:
return hfsplus_ioctl_getflags(file, argp);
case HFSPLUS_IOC_EXT2_SETFLAGS:
return hfsplus_ioctl_setflags(file, argp);
case HFSPLUS_IOC_BLESS:
return hfsplus_ioctl_bless(file, argp);
default:
return -ENOTTY;
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 56 | 75.68% | 1 | 33.33% |
Matthew Garrett | 11 | 14.86% | 1 | 33.33% |
Andrew Morton | 7 | 9.46% | 1 | 33.33% |
Total | 74 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Matthew Garrett | 184 | 30.16% | 2 | 9.09% |
Andrew Morton | 167 | 27.38% | 1 | 4.55% |
Christoph Hellwig | 157 | 25.74% | 4 | 18.18% |
Dave Hansen | 47 | 7.70% | 1 | 4.55% |
Fabian Frederick | 14 | 2.30% | 1 | 4.55% |
David Howells | 14 | 2.30% | 2 | 9.09% |
Al Viro | 10 | 1.64% | 4 | 18.18% |
Arnd Bergmann | 6 | 0.98% | 1 | 4.55% |
Deepa Dinamani | 4 | 0.66% | 1 | 4.55% |
Randy Dunlap | 3 | 0.49% | 1 | 4.55% |
Anton Salikhmetov | 1 | 0.16% | 1 | 4.55% |
Satyam Sharma | 1 | 0.16% | 1 | 4.55% |
Linus Torvalds | 1 | 0.16% | 1 | 4.55% |
Serge E. Hallyn | 1 | 0.16% | 1 | 4.55% |
Total | 610 | 100.00% | 22 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.