summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/ioctl.c
diff options
context:
space:
mode:
authorMark Fasheh2007-12-19 03:58:18 +0100
committerMark Fasheh2008-01-26 00:05:19 +0100
commit0957f00796157564281ea6ff2cea7ef4f897775a (patch)
treeb7db05ed93642d3f5769816b57633673f9ec81f9 /fs/ocfs2/ioctl.c
parent[PATCH 2/2] ocfs2: Implement group add for online resize (diff)
downloadkernel-qcow2-linux-0957f00796157564281ea6ff2cea7ef4f897775a.tar.gz
kernel-qcow2-linux-0957f00796157564281ea6ff2cea7ef4f897775a.tar.xz
kernel-qcow2-linux-0957f00796157564281ea6ff2cea7ef4f897775a.zip
ocfs2: Add missing permission checks
Check that an online resize is being driven by a user with permission to change system resource limits. Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/ioctl.c')
-rw-r--r--fs/ocfs2/ioctl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/ocfs2/ioctl.c b/fs/ocfs2/ioctl.c
index 7003d5820d79..5177fba5162b 100644
--- a/fs/ocfs2/ioctl.c
+++ b/fs/ocfs2/ioctl.c
@@ -144,12 +144,18 @@ int ocfs2_ioctl(struct inode * inode, struct file * filp,
return ocfs2_change_file_space(filp, cmd, &sr);
case OCFS2_IOC_GROUP_EXTEND:
+ if (!capable(CAP_SYS_RESOURCE))
+ return -EPERM;
+
if (get_user(new_clusters, (int __user *)arg))
return -EFAULT;
return ocfs2_group_extend(inode, new_clusters);
case OCFS2_IOC_GROUP_ADD:
case OCFS2_IOC_GROUP_ADD64:
+ if (!capable(CAP_SYS_RESOURCE))
+ return -EPERM;
+
if (copy_from_user(&input, (int __user *) arg, sizeof(input)))
return -EFAULT;