blob: e8340bf09b102cd6b9cb07ce1eab03f67b8398ba [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/ext2/ioctl.c
4 *
5 * Copyright (C) 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
9 */
10
11#include "ext2.h"
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/time.h>
14#include <linux/sched.h>
David Howellse322ff02006-08-29 19:06:20 +010015#include <linux/compat.h>
Dave Hansen42a74f22008-02-15 14:37:46 -080016#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/current.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080018#include <linux/uaccess.h>
Miklos Szerediaba405e2021-04-07 14:36:43 +020019#include <linux/fileattr.h>
20
21int ext2_fileattr_get(struct dentry *dentry, struct fileattr *fa)
22{
23 struct ext2_inode_info *ei = EXT2_I(d_inode(dentry));
24
25 fileattr_fill_flags(fa, ei->i_flags & EXT2_FL_USER_VISIBLE);
26
27 return 0;
28}
29
30int ext2_fileattr_set(struct user_namespace *mnt_userns,
31 struct dentry *dentry, struct fileattr *fa)
32{
33 struct inode *inode = d_inode(dentry);
34 struct ext2_inode_info *ei = EXT2_I(inode);
35
36 if (fileattr_has_fsx(fa))
37 return -EOPNOTSUPP;
38
39 /* Is it quota file? Do not allow user to mess with it */
40 if (IS_NOQUOTA(inode))
41 return -EPERM;
42
43 ei->i_flags = (ei->i_flags & ~EXT2_FL_USER_MODIFIABLE) |
44 (fa->flags & EXT2_FL_USER_MODIFIABLE);
45
46 ext2_set_inode_flags(inode);
47 inode->i_ctime = current_time(inode);
48 mark_inode_dirty(inode);
49
50 return 0;
51}
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53
Andi Kleen14f9f7b2008-02-06 01:40:10 -080054long ext2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Al Viro496ad9a2013-01-23 17:07:38 -050056 struct inode *inode = file_inode(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 struct ext2_inode_info *ei = EXT2_I(inode);
Martin J. Bligha686cd82007-10-16 23:30:46 -070058 unsigned short rsv_window_size;
Dave Hansen42a74f22008-02-15 14:37:46 -080059 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 ext2_debug ("cmd = %u, arg = %lu\n", cmd, arg);
62
63 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 case EXT2_IOC_GETVERSION:
65 return put_user(inode->i_generation, (int __user *) arg);
Djalal Harouni34b07842012-01-09 15:58:37 +010066 case EXT2_IOC_SETVERSION: {
67 __u32 generation;
68
Christian Brauner21cb47b2021-01-21 14:19:25 +010069 if (!inode_owner_or_capable(&init_user_ns, inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 return -EPERM;
Al Viroa561be72011-11-23 11:57:51 -050071 ret = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080072 if (ret)
73 return ret;
Djalal Harouni34b07842012-01-09 15:58:37 +010074 if (get_user(generation, (int __user *) arg)) {
Dave Hansen42a74f22008-02-15 14:37:46 -080075 ret = -EFAULT;
Djalal Harouni34b07842012-01-09 15:58:37 +010076 goto setversion_out;
Dave Hansen42a74f22008-02-15 14:37:46 -080077 }
Djalal Harouni34b07842012-01-09 15:58:37 +010078
Al Viro59551022016-01-22 15:40:57 -050079 inode_lock(inode);
Deepa Dinamani02027d42016-09-14 07:48:05 -070080 inode->i_ctime = current_time(inode);
Djalal Harouni34b07842012-01-09 15:58:37 +010081 inode->i_generation = generation;
Al Viro59551022016-01-22 15:40:57 -050082 inode_unlock(inode);
Djalal Harouni34b07842012-01-09 15:58:37 +010083
84 mark_inode_dirty(inode);
85setversion_out:
Al Viro2a79f172011-12-09 08:06:57 -050086 mnt_drop_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -080087 return ret;
Djalal Harouni34b07842012-01-09 15:58:37 +010088 }
Martin J. Bligha686cd82007-10-16 23:30:46 -070089 case EXT2_IOC_GETRSVSZ:
90 if (test_opt(inode->i_sb, RESERVATION)
91 && S_ISREG(inode->i_mode)
92 && ei->i_block_alloc_info) {
93 rsv_window_size = ei->i_block_alloc_info->rsv_window_node.rsv_goal_size;
94 return put_user(rsv_window_size, (int __user *)arg);
95 }
96 return -ENOTTY;
97 case EXT2_IOC_SETRSVSZ: {
98
99 if (!test_opt(inode->i_sb, RESERVATION) ||!S_ISREG(inode->i_mode))
100 return -ENOTTY;
101
Christian Brauner21cb47b2021-01-21 14:19:25 +0100102 if (!inode_owner_or_capable(&init_user_ns, inode))
Martin J. Bligha686cd82007-10-16 23:30:46 -0700103 return -EACCES;
104
105 if (get_user(rsv_window_size, (int __user *)arg))
106 return -EFAULT;
107
Al Viroa561be72011-11-23 11:57:51 -0500108 ret = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800109 if (ret)
110 return ret;
111
Martin J. Bligha686cd82007-10-16 23:30:46 -0700112 if (rsv_window_size > EXT2_MAX_RESERVE_BLOCKS)
113 rsv_window_size = EXT2_MAX_RESERVE_BLOCKS;
114
115 /*
116 * need to allocate reservation structure for this inode
117 * before set the window size
118 */
119 /*
120 * XXX What lock should protect the rsv_goal_size?
121 * Accessed in ext2_get_block only. ext3 uses i_truncate.
122 */
123 mutex_lock(&ei->truncate_mutex);
124 if (!ei->i_block_alloc_info)
125 ext2_init_block_alloc_info(inode);
126
127 if (ei->i_block_alloc_info){
128 struct ext2_reserve_window_node *rsv = &ei->i_block_alloc_info->rsv_window_node;
129 rsv->rsv_goal_size = rsv_window_size;
Chengguang Xuacd1f042019-10-23 21:56:43 +0800130 } else {
131 ret = -ENOMEM;
Martin J. Bligha686cd82007-10-16 23:30:46 -0700132 }
Chengguang Xuacd1f042019-10-23 21:56:43 +0800133
Martin J. Bligha686cd82007-10-16 23:30:46 -0700134 mutex_unlock(&ei->truncate_mutex);
Al Viro2a79f172011-12-09 08:06:57 -0500135 mnt_drop_write_file(filp);
Chengguang Xuacd1f042019-10-23 21:56:43 +0800136 return ret;
Martin J. Bligha686cd82007-10-16 23:30:46 -0700137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 default:
139 return -ENOTTY;
140 }
141}
David Howellse322ff02006-08-29 19:06:20 +0100142
143#ifdef CONFIG_COMPAT
144long ext2_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
145{
David Howellse322ff02006-08-29 19:06:20 +0100146 /* These are just misnamed, they actually get/put from/to user an int */
147 switch (cmd) {
David Howellse322ff02006-08-29 19:06:20 +0100148 case EXT2_IOC32_GETVERSION:
149 cmd = EXT2_IOC_GETVERSION;
150 break;
151 case EXT2_IOC32_SETVERSION:
152 cmd = EXT2_IOC_SETVERSION;
153 break;
154 default:
155 return -ENOIOCTLCMD;
156 }
Andi Kleen14f9f7b2008-02-06 01:40:10 -0800157 return ext2_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
David Howellse322ff02006-08-29 19:06:20 +0100158}
159#endif