ioctl.c 4.5 KB
Newer Older
H
Herbert Poetzl 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * linux/fs/ocfs2/ioctl.c
 *
 * Copyright (C) 2006 Herbert Poetzl
 * adapted from Remy Card's ext2/ioctl.c
 */

#include <linux/fs.h>
#include <linux/mount.h>

#define MLOG_MASK_PREFIX ML_INODE
#include <cluster/masklog.h>

#include "ocfs2.h"
#include "alloc.h"
#include "dlmglue.h"
17
#include "file.h"
H
Herbert Poetzl 已提交
18 19 20 21
#include "inode.h"
#include "journal.h"

#include "ocfs2_fs.h"
22
#include "ioctl.h"
23
#include "resize.h"
T
Tao Ma 已提交
24
#include "refcounttree.h"
25

H
Herbert Poetzl 已提交
26 27 28 29 30 31
#include <linux/ext2_fs.h>

static int ocfs2_get_inode_attr(struct inode *inode, unsigned *flags)
{
	int status;

M
Mark Fasheh 已提交
32
	status = ocfs2_inode_lock(inode, NULL, 0);
H
Herbert Poetzl 已提交
33 34 35 36
	if (status < 0) {
		mlog_errno(status);
		return status;
	}
37
	ocfs2_get_inode_flags(OCFS2_I(inode));
H
Herbert Poetzl 已提交
38
	*flags = OCFS2_I(inode)->ip_attr;
M
Mark Fasheh 已提交
39
	ocfs2_inode_unlock(inode, 0);
H
Herbert Poetzl 已提交
40 41 42 43 44 45 46 47 48 49

	mlog_exit(status);
	return status;
}

static int ocfs2_set_inode_attr(struct inode *inode, unsigned flags,
				unsigned mask)
{
	struct ocfs2_inode_info *ocfs2_inode = OCFS2_I(inode);
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
50
	handle_t *handle = NULL;
H
Herbert Poetzl 已提交
51 52 53 54 55 56
	struct buffer_head *bh = NULL;
	unsigned oldflags;
	int status;

	mutex_lock(&inode->i_mutex);

M
Mark Fasheh 已提交
57
	status = ocfs2_inode_lock(inode, &bh, 1);
H
Herbert Poetzl 已提交
58 59 60 61 62 63
	if (status < 0) {
		mlog_errno(status);
		goto bail;
	}

	status = -EACCES;
64
	if (!is_owner_or_cap(inode))
H
Herbert Poetzl 已提交
65 66 67 68 69
		goto bail_unlock;

	if (!S_ISDIR(inode->i_mode))
		flags &= ~OCFS2_DIRSYNC_FL;

70
	handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
H
Herbert Poetzl 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
	if (IS_ERR(handle)) {
		status = PTR_ERR(handle);
		mlog_errno(status);
		goto bail_unlock;
	}

	oldflags = ocfs2_inode->ip_attr;
	flags = flags & mask;
	flags |= oldflags & ~mask;

	/*
	 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
	 * the relevant capability.
	 */
	status = -EPERM;
	if ((oldflags & OCFS2_IMMUTABLE_FL) || ((flags ^ oldflags) &
		(OCFS2_APPEND_FL | OCFS2_IMMUTABLE_FL))) {
		if (!capable(CAP_LINUX_IMMUTABLE))
			goto bail_unlock;
	}

	ocfs2_inode->ip_attr = flags;
	ocfs2_set_inode_flags(inode);

	status = ocfs2_mark_inode_dirty(handle, inode, bh);
	if (status < 0)
		mlog_errno(status);

99
	ocfs2_commit_trans(osb, handle);
H
Herbert Poetzl 已提交
100
bail_unlock:
M
Mark Fasheh 已提交
101
	ocfs2_inode_unlock(inode, 1);
H
Herbert Poetzl 已提交
102 103 104
bail:
	mutex_unlock(&inode->i_mutex);

105
	brelse(bh);
H
Herbert Poetzl 已提交
106 107 108 109 110

	mlog_exit(status);
	return status;
}

111
long ocfs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
H
Herbert Poetzl 已提交
112
{
113
	struct inode *inode = filp->f_path.dentry->d_inode;
H
Herbert Poetzl 已提交
114
	unsigned int flags;
115
	int new_clusters;
H
Herbert Poetzl 已提交
116
	int status;
117
	struct ocfs2_space_resv sr;
118
	struct ocfs2_new_group_input input;
T
Tao Ma 已提交
119 120 121
	struct reflink_arguments args;
	const char *old_path, *new_path;
	bool preserve;
H
Herbert Poetzl 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134

	switch (cmd) {
	case OCFS2_IOC_GETFLAGS:
		status = ocfs2_get_inode_attr(inode, &flags);
		if (status < 0)
			return status;

		flags &= OCFS2_FL_VISIBLE;
		return put_user(flags, (int __user *) arg);
	case OCFS2_IOC_SETFLAGS:
		if (get_user(flags, (int __user *) arg))
			return -EFAULT;

135 136 137 138
		status = mnt_want_write(filp->f_path.mnt);
		if (status)
			return status;
		status = ocfs2_set_inode_attr(inode, flags,
H
Herbert Poetzl 已提交
139
			OCFS2_FL_MODIFIABLE);
140 141
		mnt_drop_write(filp->f_path.mnt);
		return status;
142 143 144 145 146 147 148 149
	case OCFS2_IOC_RESVSP:
	case OCFS2_IOC_RESVSP64:
	case OCFS2_IOC_UNRESVSP:
	case OCFS2_IOC_UNRESVSP64:
		if (copy_from_user(&sr, (int __user *) arg, sizeof(sr)))
			return -EFAULT;

		return ocfs2_change_file_space(filp, cmd, &sr);
150
	case OCFS2_IOC_GROUP_EXTEND:
151 152 153
		if (!capable(CAP_SYS_RESOURCE))
			return -EPERM;

154 155 156 157
		if (get_user(new_clusters, (int __user *)arg))
			return -EFAULT;

		return ocfs2_group_extend(inode, new_clusters);
158 159
	case OCFS2_IOC_GROUP_ADD:
	case OCFS2_IOC_GROUP_ADD64:
160 161 162
		if (!capable(CAP_SYS_RESOURCE))
			return -EPERM;

163 164 165 166
		if (copy_from_user(&input, (int __user *) arg, sizeof(input)))
			return -EFAULT;

		return ocfs2_group_add(inode, &input);
T
Tao Ma 已提交
167 168 169 170 171 172 173 174 175
	case OCFS2_IOC_REFLINK:
		if (copy_from_user(&args, (struct reflink_arguments *)arg,
				   sizeof(args)))
			return -EFAULT;
		old_path = (const char *)(unsigned long)args.old_path;
		new_path = (const char *)(unsigned long)args.new_path;
		preserve = (args.preserve != 0);

		return ocfs2_reflink_ioctl(inode, old_path, new_path, preserve);
H
Herbert Poetzl 已提交
176 177 178 179 180
	default:
		return -ENOTTY;
	}
}

M
Mark Fasheh 已提交
181 182 183 184 185 186 187 188 189 190
#ifdef CONFIG_COMPAT
long ocfs2_compat_ioctl(struct file *file, unsigned cmd, unsigned long arg)
{
	switch (cmd) {
	case OCFS2_IOC32_GETFLAGS:
		cmd = OCFS2_IOC_GETFLAGS;
		break;
	case OCFS2_IOC32_SETFLAGS:
		cmd = OCFS2_IOC_SETFLAGS;
		break;
191 192 193 194
	case OCFS2_IOC_RESVSP:
	case OCFS2_IOC_RESVSP64:
	case OCFS2_IOC_UNRESVSP:
	case OCFS2_IOC_UNRESVSP64:
195
	case OCFS2_IOC_GROUP_EXTEND:
196 197
	case OCFS2_IOC_GROUP_ADD:
	case OCFS2_IOC_GROUP_ADD64:
T
Tao Ma 已提交
198
	case OCFS2_IOC_REFLINK:
199
		break;
M
Mark Fasheh 已提交
200 201 202 203
	default:
		return -ENOIOCTLCMD;
	}

204
	return ocfs2_ioctl(file, cmd, arg);
M
Mark Fasheh 已提交
205 206
}
#endif