blob: bfc1281fc4cbcbecca95cc2582690a02eb22e70f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002/*
Mingming Cao617ba132006-10-11 01:20:53 -07003 * linux/fs/ext4/ioctl.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004 *
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 <linux/fs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070012#include <linux/capability.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070013#include <linux/time.h>
14#include <linux/compat.h>
Dave Hansen42a74f22008-02-15 14:37:46 -080015#include <linux/mount.h>
Akira Fujita748de672009-06-17 19:24:03 -040016#include <linux/file.h>
Li Xi9b7365f2016-01-08 16:01:22 -050017#include <linux/quotaops.h>
Theodore Ts'o23253062017-11-08 22:23:20 -050018#include <linux/random.h>
Andy Shevchenko8da4b8c2016-05-20 17:01:00 -070019#include <linux/uuid.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Theodore Ts'o783d9482017-02-05 19:47:14 -050021#include <linux/delay.h>
Jeff Laytonee73f9a2018-01-09 08:21:39 -050022#include <linux/iversion.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040023#include "ext4_jbd2.h"
24#include "ext4.h"
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -040025#include <linux/fsmap.h>
26#include "fsmap.h"
27#include <trace/events/ext4.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070028
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040029/**
30 * Swap memory between @a and @b for @len bytes.
31 *
32 * @a: pointer to first memory area
33 * @b: pointer to second memory area
34 * @len: number of bytes to swap
35 *
36 */
37static void memswap(void *a, void *b, size_t len)
38{
39 unsigned char *ap, *bp;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040040
41 ap = (unsigned char *)a;
42 bp = (unsigned char *)b;
43 while (len-- > 0) {
Fabian Frederick4b7e2db2015-06-12 23:46:33 -040044 swap(*ap, *bp);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040045 ap++;
46 bp++;
47 }
48}
49
50/**
51 * Swap i_data and associated attributes between @inode1 and @inode2.
52 * This function is used for the primary swap between inode1 and inode2
53 * and also to revert this primary swap in case of errors.
54 *
55 * Therefore you have to make sure, that calling this method twice
56 * will revert all changes.
57 *
58 * @inode1: pointer to first inode
59 * @inode2: pointer to second inode
60 */
61static void swap_inode_data(struct inode *inode1, struct inode *inode2)
62{
63 loff_t isize;
64 struct ext4_inode_info *ei1;
65 struct ext4_inode_info *ei2;
yangerkunabdc6442019-02-11 00:35:06 -050066 unsigned long tmp;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040067
68 ei1 = EXT4_I(inode1);
69 ei2 = EXT4_I(inode2);
70
Jeff Layton9c5d58f2017-07-31 00:55:34 -040071 swap(inode1->i_version, inode2->i_version);
Jeff Layton9c5d58f2017-07-31 00:55:34 -040072 swap(inode1->i_atime, inode2->i_atime);
73 swap(inode1->i_mtime, inode2->i_mtime);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040074
75 memswap(ei1->i_data, ei2->i_data, sizeof(ei1->i_data));
yangerkunabdc6442019-02-11 00:35:06 -050076 tmp = ei1->i_flags & EXT4_FL_SHOULD_SWAP;
77 ei1->i_flags = (ei2->i_flags & EXT4_FL_SHOULD_SWAP) |
78 (ei1->i_flags & ~EXT4_FL_SHOULD_SWAP);
79 ei2->i_flags = tmp | (ei2->i_flags & ~EXT4_FL_SHOULD_SWAP);
Jeff Layton9c5d58f2017-07-31 00:55:34 -040080 swap(ei1->i_disksize, ei2->i_disksize);
Theodore Ts'ocde2d7a2013-08-12 09:29:30 -040081 ext4_es_remove_extent(inode1, 0, EXT_MAX_BLOCKS);
82 ext4_es_remove_extent(inode2, 0, EXT_MAX_BLOCKS);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040083
84 isize = i_size_read(inode1);
85 i_size_write(inode1, i_size_read(inode2));
86 i_size_write(inode2, isize);
87}
88
Theodore Ts'o18aded12018-10-02 18:21:19 -040089static void reset_inode_seed(struct inode *inode)
90{
91 struct ext4_inode_info *ei = EXT4_I(inode);
92 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
93 __le32 inum = cpu_to_le32(inode->i_ino);
94 __le32 gen = cpu_to_le32(inode->i_generation);
95 __u32 csum;
96
97 if (!ext4_has_metadata_csum(inode->i_sb))
98 return;
99
100 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, sizeof(inum));
101 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, sizeof(gen));
102}
103
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400104/**
105 * Swap the information from the given @inode and the inode
106 * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other
107 * important fields of the inodes.
108 *
109 * @sb: the super block of the filesystem
110 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
111 *
112 */
113static long swap_inode_boot_loader(struct super_block *sb,
114 struct inode *inode)
115{
116 handle_t *handle;
117 int err;
118 struct inode *inode_bl;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400119 struct ext4_inode_info *ei_bl;
yangerkunaa507b52019-02-11 00:14:02 -0500120 qsize_t size, size_bl, diff;
121 blkcnt_t blocks;
122 unsigned short bytes;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400123
Theodore Ts'o8a363972018-12-19 12:29:13 -0500124 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO, EXT4_IGET_SPECIAL);
Theodore Ts'od8558a22014-02-17 20:44:36 -0500125 if (IS_ERR(inode_bl))
126 return PTR_ERR(inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400127 ei_bl = EXT4_I(inode_bl);
128
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400129 /* Protect orig inodes against a truncate and make sure,
130 * that only 1 swap_inode_boot_loader is running. */
J. Bruce Fields375e2892012-04-18 15:16:33 -0400131 lock_two_nondirectories(inode, inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400132
yangerkun67a11612019-02-11 00:02:05 -0500133 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode) ||
134 IS_SWAPFILE(inode) || IS_ENCRYPTED(inode) ||
Theodore Ts'o6e589292019-02-11 01:07:10 -0500135 (EXT4_I(inode)->i_flags & EXT4_JOURNAL_DATA_FL) ||
yangerkun67a11612019-02-11 00:02:05 -0500136 ext4_has_inline_data(inode)) {
137 err = -EINVAL;
138 goto journal_err_out;
139 }
140
141 if (IS_RDONLY(inode) || IS_APPEND(inode) || IS_IMMUTABLE(inode) ||
142 !inode_owner_or_capable(inode) || !capable(CAP_SYS_ADMIN)) {
143 err = -EPERM;
144 goto journal_err_out;
145 }
146
yangerkuna46c68a2019-02-11 00:05:24 -0500147 down_write(&EXT4_I(inode)->i_mmap_sem);
148 err = filemap_write_and_wait(inode->i_mapping);
149 if (err)
150 goto err_out;
151
152 err = filemap_write_and_wait(inode_bl->i_mapping);
153 if (err)
154 goto err_out;
155
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400156 /* Wait for all existing dio workers */
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400157 inode_dio_wait(inode);
158 inode_dio_wait(inode_bl);
159
Theodore Ts'o18aded12018-10-02 18:21:19 -0400160 truncate_inode_pages(&inode->i_data, 0);
161 truncate_inode_pages(&inode_bl->i_data, 0);
162
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400163 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
164 if (IS_ERR(handle)) {
165 err = -EINVAL;
yangerkuna46c68a2019-02-11 00:05:24 -0500166 goto err_out;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400167 }
168
169 /* Protect extent tree against block allocations via delalloc */
170 ext4_double_down_write_data_sem(inode, inode_bl);
171
172 if (inode_bl->i_nlink == 0) {
173 /* this inode has never been used as a BOOT_LOADER */
174 set_nlink(inode_bl, 1);
175 i_uid_write(inode_bl, 0);
176 i_gid_write(inode_bl, 0);
177 inode_bl->i_flags = 0;
178 ei_bl->i_flags = 0;
Jeff Laytonee73f9a2018-01-09 08:21:39 -0500179 inode_set_iversion(inode_bl, 1);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400180 i_size_write(inode_bl, 0);
181 inode_bl->i_mode = S_IFREG;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400182 if (ext4_has_feature_extents(sb)) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400183 ext4_set_inode_flag(inode_bl, EXT4_INODE_EXTENTS);
184 ext4_ext_tree_init(handle, inode_bl);
185 } else
186 memset(ei_bl->i_data, 0, sizeof(ei_bl->i_data));
187 }
188
yangerkunaa507b52019-02-11 00:14:02 -0500189 err = dquot_initialize(inode);
190 if (err)
191 goto err_out1;
192
193 size = (qsize_t)(inode->i_blocks) * (1 << 9) + inode->i_bytes;
194 size_bl = (qsize_t)(inode_bl->i_blocks) * (1 << 9) + inode_bl->i_bytes;
195 diff = size - size_bl;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400196 swap_inode_data(inode, inode_bl);
197
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500198 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400199
Theodore Ts'o23253062017-11-08 22:23:20 -0500200 inode->i_generation = prandom_u32();
201 inode_bl->i_generation = prandom_u32();
Theodore Ts'o18aded12018-10-02 18:21:19 -0400202 reset_inode_seed(inode);
203 reset_inode_seed(inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400204
205 ext4_discard_preallocations(inode);
206
207 err = ext4_mark_inode_dirty(handle, inode);
208 if (err < 0) {
yangerkunaa507b52019-02-11 00:14:02 -0500209 /* No need to update quota information. */
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400210 ext4_warning(inode->i_sb,
211 "couldn't mark inode #%lu dirty (err %d)",
212 inode->i_ino, err);
213 /* Revert all changes: */
214 swap_inode_data(inode, inode_bl);
Theodore Ts'o18aded12018-10-02 18:21:19 -0400215 ext4_mark_inode_dirty(handle, inode);
yangerkunaa507b52019-02-11 00:14:02 -0500216 goto err_out1;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400217 }
yangerkunaa507b52019-02-11 00:14:02 -0500218
219 blocks = inode_bl->i_blocks;
220 bytes = inode_bl->i_bytes;
221 inode_bl->i_blocks = inode->i_blocks;
222 inode_bl->i_bytes = inode->i_bytes;
223 err = ext4_mark_inode_dirty(handle, inode_bl);
224 if (err < 0) {
225 /* No need to update quota information. */
226 ext4_warning(inode_bl->i_sb,
227 "couldn't mark inode #%lu dirty (err %d)",
228 inode_bl->i_ino, err);
229 goto revert;
230 }
231
232 /* Bootloader inode should not be counted into quota information. */
233 if (diff > 0)
234 dquot_free_space(inode, diff);
235 else
236 err = dquot_alloc_space(inode, -1 * diff);
237
238 if (err < 0) {
239revert:
240 /* Revert all changes: */
241 inode_bl->i_blocks = blocks;
242 inode_bl->i_bytes = bytes;
243 swap_inode_data(inode, inode_bl);
244 ext4_mark_inode_dirty(handle, inode);
245 ext4_mark_inode_dirty(handle, inode_bl);
246 }
247
248err_out1:
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400249 ext4_journal_stop(handle);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400250 ext4_double_up_write_data_sem(inode, inode_bl);
251
yangerkuna46c68a2019-02-11 00:05:24 -0500252err_out:
253 up_write(&EXT4_I(inode)->i_mmap_sem);
Zheng Liu30d29b12014-02-12 11:48:31 -0500254journal_err_out:
J. Bruce Fields375e2892012-04-18 15:16:33 -0400255 unlock_two_nondirectories(inode, inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400256 iput(inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400257 return err;
258}
259
Chandan Rajendra643fa962018-12-12 15:20:12 +0530260#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow9bd82122015-04-11 07:48:01 -0400261static int uuid_is_zero(__u8 u[16])
262{
263 int i;
264
265 for (i = 0; i < 16; i++)
266 if (u[i])
267 return 0;
268 return 1;
269}
Eric Biggersba679012016-12-01 11:55:51 -0500270#endif
Michael Halcrow9bd82122015-04-11 07:48:01 -0400271
Darrick J. Wong2e538402019-06-09 21:41:41 -0400272/*
273 * If immutable is set and we are not clearing it, we're not allowed to change
274 * anything else in the inode. Don't error out if we're only trying to set
275 * immutable on an immutable file.
276 */
277static int ext4_ioctl_check_immutable(struct inode *inode, __u32 new_projid,
278 unsigned int flags)
279{
280 struct ext4_inode_info *ei = EXT4_I(inode);
281 unsigned int oldflags = ei->i_flags;
282
283 if (!(oldflags & EXT4_IMMUTABLE_FL) || !(flags & EXT4_IMMUTABLE_FL))
284 return 0;
285
286 if ((oldflags & ~EXT4_IMMUTABLE_FL) != (flags & ~EXT4_IMMUTABLE_FL))
287 return -EPERM;
288 if (ext4_has_feature_project(inode->i_sb) &&
289 __kprojid_val(ei->i_projid) != new_projid)
290 return -EPERM;
291
292 return 0;
293}
294
Li Xi9b7365f2016-01-08 16:01:22 -0500295static int ext4_ioctl_setflags(struct inode *inode,
296 unsigned int flags)
297{
298 struct ext4_inode_info *ei = EXT4_I(inode);
299 handle_t *handle = NULL;
Anton Protopopovfdde3682016-02-11 23:57:21 -0500300 int err = -EPERM, migrate = 0;
Li Xi9b7365f2016-01-08 16:01:22 -0500301 struct ext4_iloc iloc;
302 unsigned int oldflags, mask, i;
303 unsigned int jflag;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -0400304 struct super_block *sb = inode->i_sb;
Li Xi9b7365f2016-01-08 16:01:22 -0500305
306 /* Is it quota file? Do not allow user to mess with it */
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400307 if (ext4_is_quota_file(inode))
Li Xi9b7365f2016-01-08 16:01:22 -0500308 goto flags_out;
309
310 oldflags = ei->i_flags;
311
312 /* The JOURNAL_DATA flag is modifiable only by root */
313 jflag = flags & EXT4_JOURNAL_DATA_FL;
314
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700315 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
316 if (err)
317 goto flags_out;
Li Xi9b7365f2016-01-08 16:01:22 -0500318
319 /*
320 * The JOURNAL_DATA flag can only be changed by
321 * the relevant capability.
322 */
323 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
324 if (!capable(CAP_SYS_RESOURCE))
325 goto flags_out;
326 }
327 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
328 migrate = 1;
329
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -0400330 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
331 if (!ext4_has_feature_casefold(sb)) {
332 err = -EOPNOTSUPP;
333 goto flags_out;
334 }
335
336 if (!S_ISDIR(inode->i_mode)) {
337 err = -ENOTDIR;
338 goto flags_out;
339 }
340
341 if (!ext4_empty_dir(inode)) {
342 err = -ENOTEMPTY;
343 goto flags_out;
344 }
345 }
346
Darrick J. Wong2e538402019-06-09 21:41:41 -0400347 /*
348 * Wait for all pending directio and then flush all the dirty pages
349 * for this file. The flush marks all the pages readonly, so any
350 * subsequent attempt to write to the file (particularly mmap pages)
351 * will come through the filesystem and fail.
352 */
353 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
354 (flags & EXT4_IMMUTABLE_FL)) {
355 inode_dio_wait(inode);
356 err = filemap_write_and_wait(inode->i_mapping);
357 if (err)
358 goto flags_out;
359 }
360
Li Xi9b7365f2016-01-08 16:01:22 -0500361 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
362 if (IS_ERR(handle)) {
363 err = PTR_ERR(handle);
364 goto flags_out;
365 }
366 if (IS_SYNC(inode))
367 ext4_handle_sync(handle);
368 err = ext4_reserve_inode_write(handle, inode, &iloc);
369 if (err)
370 goto flags_err;
371
372 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
373 if (!(mask & EXT4_FL_USER_MODIFIABLE))
374 continue;
Jan Karaf8011d92016-11-29 11:13:13 -0500375 /* These flags get special treatment later */
376 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
377 continue;
Li Xi9b7365f2016-01-08 16:01:22 -0500378 if (mask & flags)
379 ext4_set_inode_flag(inode, i);
380 else
381 ext4_clear_inode_flag(inode, i);
382 }
383
384 ext4_set_inode_flags(inode);
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500385 inode->i_ctime = current_time(inode);
Li Xi9b7365f2016-01-08 16:01:22 -0500386
387 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
388flags_err:
389 ext4_journal_stop(handle);
390 if (err)
391 goto flags_out;
392
Ross Zwislere9072d82017-10-12 11:54:08 -0400393 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
394 /*
395 * Changes to the journaling mode can cause unsafe changes to
396 * S_DAX if we are using the DAX mount option.
397 */
398 if (test_opt(inode->i_sb, DAX)) {
399 err = -EBUSY;
400 goto flags_out;
401 }
402
Li Xi9b7365f2016-01-08 16:01:22 -0500403 err = ext4_change_inode_journal_flag(inode, jflag);
Ross Zwislere9072d82017-10-12 11:54:08 -0400404 if (err)
405 goto flags_out;
406 }
Li Xi9b7365f2016-01-08 16:01:22 -0500407 if (migrate) {
408 if (flags & EXT4_EXTENTS_FL)
409 err = ext4_ext_migrate(inode);
410 else
411 err = ext4_ind_migrate(inode);
412 }
413
414flags_out:
415 return err;
416}
417
418#ifdef CONFIG_QUOTA
419static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
420{
421 struct inode *inode = file_inode(filp);
422 struct super_block *sb = inode->i_sb;
423 struct ext4_inode_info *ei = EXT4_I(inode);
424 int err, rc;
425 handle_t *handle;
426 kprojid_t kprojid;
427 struct ext4_iloc iloc;
428 struct ext4_inode *raw_inode;
Wang Shilong079788d2016-07-05 21:33:52 -0400429 struct dquot *transfer_to[MAXQUOTAS] = { };
Li Xi9b7365f2016-01-08 16:01:22 -0500430
Kaho Ng0b7b7772016-09-05 23:11:58 -0400431 if (!ext4_has_feature_project(sb)) {
Li Xi9b7365f2016-01-08 16:01:22 -0500432 if (projid != EXT4_DEF_PROJID)
433 return -EOPNOTSUPP;
434 else
435 return 0;
436 }
437
438 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
439 return -EOPNOTSUPP;
440
441 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
442
443 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
444 return 0;
445
Li Xi9b7365f2016-01-08 16:01:22 -0500446 err = -EPERM;
Li Xi9b7365f2016-01-08 16:01:22 -0500447 /* Is it quota file? Do not allow user to mess with it */
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400448 if (ext4_is_quota_file(inode))
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400449 return err;
Li Xi9b7365f2016-01-08 16:01:22 -0500450
451 err = ext4_get_inode_loc(inode, &iloc);
452 if (err)
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400453 return err;
Li Xi9b7365f2016-01-08 16:01:22 -0500454
455 raw_inode = ext4_raw_inode(&iloc);
456 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
Miao Xiec03b45b2017-08-06 01:00:49 -0400457 err = ext4_expand_extra_isize(inode,
458 EXT4_SB(sb)->s_want_extra_isize,
459 &iloc);
460 if (err)
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400461 return err;
Miao Xiec03b45b2017-08-06 01:00:49 -0400462 } else {
Li Xi9b7365f2016-01-08 16:01:22 -0500463 brelse(iloc.bh);
Li Xi9b7365f2016-01-08 16:01:22 -0500464 }
Li Xi9b7365f2016-01-08 16:01:22 -0500465
Wang Shilong182a79e2018-10-03 12:19:21 -0400466 err = dquot_initialize(inode);
467 if (err)
468 return err;
Li Xi9b7365f2016-01-08 16:01:22 -0500469
470 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
471 EXT4_QUOTA_INIT_BLOCKS(sb) +
472 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400473 if (IS_ERR(handle))
474 return PTR_ERR(handle);
Li Xi9b7365f2016-01-08 16:01:22 -0500475
476 err = ext4_reserve_inode_write(handle, inode, &iloc);
477 if (err)
478 goto out_stop;
479
Wang Shilong079788d2016-07-05 21:33:52 -0400480 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
481 if (!IS_ERR(transfer_to[PRJQUOTA])) {
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -0400482
483 /* __dquot_transfer() calls back ext4_get_inode_usage() which
484 * counts xattr inode references.
485 */
486 down_read(&EXT4_I(inode)->xattr_sem);
Wang Shilong079788d2016-07-05 21:33:52 -0400487 err = __dquot_transfer(inode, transfer_to);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -0400488 up_read(&EXT4_I(inode)->xattr_sem);
Wang Shilong079788d2016-07-05 21:33:52 -0400489 dqput(transfer_to[PRJQUOTA]);
490 if (err)
491 goto out_dirty;
Li Xi9b7365f2016-01-08 16:01:22 -0500492 }
Wang Shilong079788d2016-07-05 21:33:52 -0400493
Li Xi9b7365f2016-01-08 16:01:22 -0500494 EXT4_I(inode)->i_projid = kprojid;
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500495 inode->i_ctime = current_time(inode);
Li Xi9b7365f2016-01-08 16:01:22 -0500496out_dirty:
497 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
498 if (!err)
499 err = rc;
500out_stop:
501 ext4_journal_stop(handle);
Li Xi9b7365f2016-01-08 16:01:22 -0500502 return err;
503}
504#else
505static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
506{
507 if (projid != EXT4_DEF_PROJID)
508 return -EOPNOTSUPP;
509 return 0;
510}
511#endif
512
513/* Transfer internal flags to xflags */
514static inline __u32 ext4_iflags_to_xflags(unsigned long iflags)
515{
516 __u32 xflags = 0;
517
518 if (iflags & EXT4_SYNC_FL)
519 xflags |= FS_XFLAG_SYNC;
520 if (iflags & EXT4_IMMUTABLE_FL)
521 xflags |= FS_XFLAG_IMMUTABLE;
522 if (iflags & EXT4_APPEND_FL)
523 xflags |= FS_XFLAG_APPEND;
524 if (iflags & EXT4_NODUMP_FL)
525 xflags |= FS_XFLAG_NODUMP;
526 if (iflags & EXT4_NOATIME_FL)
527 xflags |= FS_XFLAG_NOATIME;
528 if (iflags & EXT4_PROJINHERIT_FL)
529 xflags |= FS_XFLAG_PROJINHERIT;
530 return xflags;
531}
532
Jan Karad14e7682016-11-29 11:18:39 -0500533#define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
534 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
535 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT)
536
Li Xi9b7365f2016-01-08 16:01:22 -0500537/* Transfer xflags flags to internal */
538static inline unsigned long ext4_xflags_to_iflags(__u32 xflags)
539{
540 unsigned long iflags = 0;
541
542 if (xflags & FS_XFLAG_SYNC)
543 iflags |= EXT4_SYNC_FL;
544 if (xflags & FS_XFLAG_IMMUTABLE)
545 iflags |= EXT4_IMMUTABLE_FL;
546 if (xflags & FS_XFLAG_APPEND)
547 iflags |= EXT4_APPEND_FL;
548 if (xflags & FS_XFLAG_NODUMP)
549 iflags |= EXT4_NODUMP_FL;
550 if (xflags & FS_XFLAG_NOATIME)
551 iflags |= EXT4_NOATIME_FL;
552 if (xflags & FS_XFLAG_PROJINHERIT)
553 iflags |= EXT4_PROJINHERIT_FL;
554
555 return iflags;
556}
557
Eric Biggers1a20a6302017-04-30 00:40:44 -0400558static int ext4_shutdown(struct super_block *sb, unsigned long arg)
Theodore Ts'o783d9482017-02-05 19:47:14 -0500559{
560 struct ext4_sb_info *sbi = EXT4_SB(sb);
561 __u32 flags;
562
563 if (!capable(CAP_SYS_ADMIN))
564 return -EPERM;
565
566 if (get_user(flags, (__u32 __user *)arg))
567 return -EFAULT;
568
569 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
570 return -EINVAL;
571
572 if (ext4_forced_shutdown(sbi))
573 return 0;
574
575 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
Theodore Ts'occf0f322018-02-18 20:53:23 -0500576 trace_ext4_shutdown(sb, flags);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500577
578 switch (flags) {
579 case EXT4_GOING_FLAGS_DEFAULT:
580 freeze_bdev(sb->s_bdev);
581 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
582 thaw_bdev(sb->s_bdev, sb);
583 break;
584 case EXT4_GOING_FLAGS_LOGFLUSH:
585 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
586 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
587 (void) ext4_force_commit(sb);
Theodore Ts'ofb7c0242018-02-18 23:45:18 -0500588 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500589 }
590 break;
591 case EXT4_GOING_FLAGS_NOLOGFLUSH:
592 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
Theodore Ts'oa6d99462018-02-18 23:16:28 -0500593 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
Theodore Ts'ofb7c0242018-02-18 23:45:18 -0500594 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500595 break;
596 default:
597 return -EINVAL;
598 }
599 clear_opt(sb, DISCARD);
600 return 0;
601}
602
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400603struct getfsmap_info {
604 struct super_block *gi_sb;
605 struct fsmap_head __user *gi_data;
606 unsigned int gi_idx;
607 __u32 gi_last_flags;
608};
609
610static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
611{
612 struct getfsmap_info *info = priv;
613 struct fsmap fm;
614
615 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
616
617 info->gi_last_flags = xfm->fmr_flags;
618 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
619 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
620 sizeof(struct fsmap)))
621 return -EFAULT;
622
623 return 0;
624}
625
626static int ext4_ioc_getfsmap(struct super_block *sb,
627 struct fsmap_head __user *arg)
628{
Theodore Ts'o0ba33fa2019-05-12 04:49:47 -0400629 struct getfsmap_info info = { NULL };
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400630 struct ext4_fsmap_head xhead = {0};
631 struct fsmap_head head;
632 bool aborted = false;
633 int error;
634
635 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
636 return -EFAULT;
637 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
638 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
639 sizeof(head.fmh_keys[0].fmr_reserved)) ||
640 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
641 sizeof(head.fmh_keys[1].fmr_reserved)))
642 return -EINVAL;
643 /*
644 * ext4 doesn't report file extents at all, so the only valid
645 * file offsets are the magic ones (all zeroes or all ones).
646 */
647 if (head.fmh_keys[0].fmr_offset ||
648 (head.fmh_keys[1].fmr_offset != 0 &&
649 head.fmh_keys[1].fmr_offset != -1ULL))
650 return -EINVAL;
651
652 xhead.fmh_iflags = head.fmh_iflags;
653 xhead.fmh_count = head.fmh_count;
654 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
655 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
656
657 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
658 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
659
660 info.gi_sb = sb;
661 info.gi_data = arg;
662 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
663 if (error == EXT4_QUERY_RANGE_ABORT) {
664 error = 0;
665 aborted = true;
666 } else if (error)
667 return error;
668
669 /* If we didn't abort, set the "last" flag in the last fmx */
670 if (!aborted && info.gi_idx) {
671 info.gi_last_flags |= FMR_OF_LAST;
672 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
673 &info.gi_last_flags,
674 sizeof(info.gi_last_flags)))
675 return -EFAULT;
676 }
677
678 /* copy back header */
679 head.fmh_entries = xhead.fmh_entries;
680 head.fmh_oflags = xhead.fmh_oflags;
681 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
682 return -EFAULT;
683
684 return 0;
685}
686
Al Viroe145b352017-09-29 21:39:59 -0400687static long ext4_ioctl_group_add(struct file *file,
688 struct ext4_new_group_data *input)
689{
690 struct super_block *sb = file_inode(file)->i_sb;
691 int err, err2=0;
692
693 err = ext4_resize_begin(sb);
694 if (err)
695 return err;
696
697 if (ext4_has_feature_bigalloc(sb)) {
698 ext4_msg(sb, KERN_ERR,
699 "Online resizing not supported with bigalloc");
700 err = -EOPNOTSUPP;
701 goto group_add_out;
702 }
703
704 err = mnt_want_write_file(file);
705 if (err)
706 goto group_add_out;
707
708 err = ext4_group_add(sb, input);
709 if (EXT4_SB(sb)->s_journal) {
710 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
711 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
712 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
713 }
714 if (err == 0)
715 err = err2;
716 mnt_drop_write_file(file);
717 if (!err && ext4_has_group_desc_csum(sb) &&
718 test_opt(sb, INIT_INODE_TABLE))
719 err = ext4_register_li_request(sb, input->group);
720group_add_out:
721 ext4_resize_end(sb);
722 return err;
723}
724
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700725static void ext4_fill_fsxattr(struct inode *inode, struct fsxattr *fa)
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400726{
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700727 struct ext4_inode_info *ei = EXT4_I(inode);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400728
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700729 simple_fill_fsxattr(fa, ext4_iflags_to_xflags(ei->i_flags &
730 EXT4_FL_USER_VISIBLE));
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400731
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700732 if (ext4_has_feature_project(inode->i_sb))
733 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400734}
735
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400736/* copied from fs/ioctl.c */
737static int fiemap_check_ranges(struct super_block *sb,
738 u64 start, u64 len, u64 *new_len)
739{
740 u64 maxbytes = (u64) sb->s_maxbytes;
741
742 *new_len = len;
743
744 if (len == 0)
745 return -EINVAL;
746
747 if (start > maxbytes)
748 return -EFBIG;
749
750 /*
751 * Shrink request scope to what the fs can actually handle.
752 */
753 if (len > maxbytes || (maxbytes - len) < start)
754 *new_len = maxbytes - start;
755
756 return 0;
757}
758
759/* So that the fiemap access checks can't overflow on 32 bit machines. */
760#define FIEMAP_MAX_EXTENTS (UINT_MAX / sizeof(struct fiemap_extent))
761
762static int ext4_ioctl_get_es_cache(struct file *filp, unsigned long arg)
763{
764 struct fiemap fiemap;
765 struct fiemap __user *ufiemap = (struct fiemap __user *) arg;
766 struct fiemap_extent_info fieinfo = { 0, };
767 struct inode *inode = file_inode(filp);
768 struct super_block *sb = inode->i_sb;
769 u64 len;
770 int error;
771
772 if (copy_from_user(&fiemap, ufiemap, sizeof(fiemap)))
773 return -EFAULT;
774
775 if (fiemap.fm_extent_count > FIEMAP_MAX_EXTENTS)
776 return -EINVAL;
777
778 error = fiemap_check_ranges(sb, fiemap.fm_start, fiemap.fm_length,
779 &len);
780 if (error)
781 return error;
782
783 fieinfo.fi_flags = fiemap.fm_flags;
784 fieinfo.fi_extents_max = fiemap.fm_extent_count;
785 fieinfo.fi_extents_start = ufiemap->fm_extents;
786
787 if (fiemap.fm_extent_count != 0 &&
788 !access_ok(fieinfo.fi_extents_start,
789 fieinfo.fi_extents_max * sizeof(struct fiemap_extent)))
790 return -EFAULT;
791
792 if (fieinfo.fi_flags & FIEMAP_FLAG_SYNC)
793 filemap_write_and_wait(inode->i_mapping);
794
795 error = ext4_get_es_cache(inode, &fieinfo, fiemap.fm_start, len);
796 fiemap.fm_flags = fieinfo.fi_flags;
797 fiemap.fm_mapped_extents = fieinfo.fi_extents_mapped;
798 if (copy_to_user(ufiemap, &fiemap, sizeof(fiemap)))
799 error = -EFAULT;
800
801 return error;
802}
803
Andi Kleen5cdd7b22008-04-29 22:03:54 -0400804long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700805{
Al Viro496ad9a2013-01-23 17:07:38 -0500806 struct inode *inode = file_inode(filp);
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400807 struct super_block *sb = inode->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -0700808 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700809 unsigned int flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700810
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400811 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700812
813 switch (cmd) {
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400814 case FS_IOC_GETFSMAP:
815 return ext4_ioc_getfsmap(sb, (void __user *)arg);
Mingming Cao617ba132006-10-11 01:20:53 -0700816 case EXT4_IOC_GETFLAGS:
817 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
Wang Shilong7ddf79a2019-06-10 00:13:32 -0400818 if (S_ISREG(inode->i_mode))
819 flags &= ~EXT4_PROJINHERIT_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700820 return put_user(flags, (int __user *) arg);
Mingming Cao617ba132006-10-11 01:20:53 -0700821 case EXT4_IOC_SETFLAGS: {
Li Xi9b7365f2016-01-08 16:01:22 -0500822 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700823
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700824 if (!inode_owner_or_capable(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825 return -EACCES;
826
827 if (get_user(flags, (int __user *) arg))
828 return -EFAULT;
829
Jan Karad14e7682016-11-29 11:18:39 -0500830 if (flags & ~EXT4_FL_USER_VISIBLE)
831 return -EOPNOTSUPP;
832 /*
833 * chattr(1) grabs flags via GETFLAGS, modifies the result and
834 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
835 * more restrictive than just silently masking off visible but
836 * not settable flags as we always did.
837 */
838 flags &= EXT4_FL_USER_MODIFIABLE;
839 if (ext4_mask_flags(inode->i_mode, flags) != flags)
840 return -EOPNOTSUPP;
841
Al Viroa561be72011-11-23 11:57:51 -0500842 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800843 if (err)
844 return err;
845
Al Viro59551022016-01-22 15:40:57 -0500846 inode_lock(inode);
Darrick J. Wong2e538402019-06-09 21:41:41 -0400847 err = ext4_ioctl_check_immutable(inode,
848 from_kprojid(&init_user_ns, ei->i_projid),
849 flags);
850 if (!err)
851 err = ext4_ioctl_setflags(inode, flags);
Al Viro59551022016-01-22 15:40:57 -0500852 inode_unlock(inode);
Al Viro2a79f172011-12-09 08:06:57 -0500853 mnt_drop_write_file(filp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700854 return err;
855 }
Mingming Cao617ba132006-10-11 01:20:53 -0700856 case EXT4_IOC_GETVERSION:
857 case EXT4_IOC_GETVERSION_OLD:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858 return put_user(inode->i_generation, (int __user *) arg);
Mingming Cao617ba132006-10-11 01:20:53 -0700859 case EXT4_IOC_SETVERSION:
860 case EXT4_IOC_SETVERSION_OLD: {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -0700862 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 __u32 generation;
864 int err;
865
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700866 if (!inode_owner_or_capable(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 return -EPERM;
Dave Hansen42a74f22008-02-15 14:37:46 -0800868
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400869 if (ext4_has_metadata_csum(inode->i_sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -0400870 ext4_warning(sb, "Setting inode version is not "
871 "supported with metadata_csum enabled.");
872 return -ENOTTY;
873 }
874
Al Viroa561be72011-11-23 11:57:51 -0500875 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800876 if (err)
877 return err;
878 if (get_user(generation, (int __user *) arg)) {
879 err = -EFAULT;
880 goto setversion_out;
881 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882
Al Viro59551022016-01-22 15:40:57 -0500883 inode_lock(inode);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500884 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Hansen42a74f22008-02-15 14:37:46 -0800885 if (IS_ERR(handle)) {
886 err = PTR_ERR(handle);
Djalal Harouni6c2155b2012-01-03 02:31:52 +0100887 goto unlock_out;
Dave Hansen42a74f22008-02-15 14:37:46 -0800888 }
Mingming Cao617ba132006-10-11 01:20:53 -0700889 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890 if (err == 0) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500891 inode->i_ctime = current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892 inode->i_generation = generation;
Mingming Cao617ba132006-10-11 01:20:53 -0700893 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894 }
Mingming Cao617ba132006-10-11 01:20:53 -0700895 ext4_journal_stop(handle);
Djalal Harouni6c2155b2012-01-03 02:31:52 +0100896
897unlock_out:
Al Viro59551022016-01-22 15:40:57 -0500898 inode_unlock(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800899setversion_out:
Al Viro2a79f172011-12-09 08:06:57 -0500900 mnt_drop_write_file(filp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 return err;
902 }
Mingming Cao617ba132006-10-11 01:20:53 -0700903 case EXT4_IOC_GROUP_EXTEND: {
904 ext4_fsblk_t n_blocks_count;
Peng Taoac046f12009-07-13 09:30:17 -0400905 int err, err2=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906
Yongqiang Yang8f82f842011-07-26 21:35:44 -0400907 err = ext4_resize_begin(sb);
908 if (err)
909 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700910
Djalal Harouni014a1772012-01-04 17:09:52 -0500911 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
912 err = -EFAULT;
913 goto group_extend_out;
914 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400916 if (ext4_has_feature_bigalloc(sb)) {
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400917 ext4_msg(sb, KERN_ERR,
918 "Online resizing not supported with bigalloc");
Djalal Harouni014a1772012-01-04 17:09:52 -0500919 err = -EOPNOTSUPP;
920 goto group_extend_out;
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400921 }
922
Al Viroa561be72011-11-23 11:57:51 -0500923 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800924 if (err)
Djalal Harouni014a1772012-01-04 17:09:52 -0500925 goto group_extend_out;
Dave Hansen42a74f22008-02-15 14:37:46 -0800926
Mingming Cao617ba132006-10-11 01:20:53 -0700927 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
Peng Taoac046f12009-07-13 09:30:17 -0400928 if (EXT4_SB(sb)->s_journal) {
929 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
930 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
931 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
932 }
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -0400933 if (err == 0)
934 err = err2;
Al Viro2a79f172011-12-09 08:06:57 -0500935 mnt_drop_write_file(filp);
Djalal Harouni014a1772012-01-04 17:09:52 -0500936group_extend_out:
Yongqiang Yang8f82f842011-07-26 21:35:44 -0400937 ext4_resize_end(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700938 return err;
939 }
Akira Fujita748de672009-06-17 19:24:03 -0400940
941 case EXT4_IOC_MOVE_EXT: {
942 struct move_extent me;
Al Viro2903ff02012-08-28 12:52:22 -0400943 struct fd donor;
944 int err;
Akira Fujita748de672009-06-17 19:24:03 -0400945
Akira Fujita4a585792009-12-06 23:38:31 -0500946 if (!(filp->f_mode & FMODE_READ) ||
947 !(filp->f_mode & FMODE_WRITE))
948 return -EBADF;
949
Akira Fujita748de672009-06-17 19:24:03 -0400950 if (copy_from_user(&me,
951 (struct move_extent __user *)arg, sizeof(me)))
952 return -EFAULT;
Akira Fujita4a585792009-12-06 23:38:31 -0500953 me.moved_len = 0;
Akira Fujita748de672009-06-17 19:24:03 -0400954
Al Viro2903ff02012-08-28 12:52:22 -0400955 donor = fdget(me.donor_fd);
956 if (!donor.file)
Akira Fujita748de672009-06-17 19:24:03 -0400957 return -EBADF;
958
Al Viro2903ff02012-08-28 12:52:22 -0400959 if (!(donor.file->f_mode & FMODE_WRITE)) {
Akira Fujita4a585792009-12-06 23:38:31 -0500960 err = -EBADF;
961 goto mext_out;
Akira Fujita748de672009-06-17 19:24:03 -0400962 }
963
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400964 if (ext4_has_feature_bigalloc(sb)) {
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400965 ext4_msg(sb, KERN_ERR,
966 "Online defrag not supported with bigalloc");
Al Viro399c9b82012-08-26 21:00:03 -0400967 err = -EOPNOTSUPP;
968 goto mext_out;
Ross Zwisler73f34a52016-02-26 15:19:49 -0800969 } else if (IS_DAX(inode)) {
970 ext4_msg(sb, KERN_ERR,
971 "Online defrag not supported with DAX");
972 err = -EOPNOTSUPP;
973 goto mext_out;
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400974 }
975
Al Viroa561be72011-11-23 11:57:51 -0500976 err = mnt_want_write_file(filp);
Akira Fujita4a585792009-12-06 23:38:31 -0500977 if (err)
978 goto mext_out;
979
Al Viro2903ff02012-08-28 12:52:22 -0400980 err = ext4_move_extents(filp, donor.file, me.orig_start,
Akira Fujita748de672009-06-17 19:24:03 -0400981 me.donor_start, me.len, &me.moved_len);
Al Viro2a79f172011-12-09 08:06:57 -0500982 mnt_drop_write_file(filp);
Akira Fujita748de672009-06-17 19:24:03 -0400983
Theodore Ts'o60e66792010-05-17 07:00:00 -0400984 if (copy_to_user((struct move_extent __user *)arg,
Akira Fujitac437b272010-03-04 00:39:24 -0500985 &me, sizeof(me)))
Akira Fujita4a585792009-12-06 23:38:31 -0500986 err = -EFAULT;
987mext_out:
Al Viro2903ff02012-08-28 12:52:22 -0400988 fdput(donor);
Akira Fujita748de672009-06-17 19:24:03 -0400989 return err;
990 }
991
Mingming Cao617ba132006-10-11 01:20:53 -0700992 case EXT4_IOC_GROUP_ADD: {
993 struct ext4_new_group_data input;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700994
Mingming Cao617ba132006-10-11 01:20:53 -0700995 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
Al Viroe145b352017-09-29 21:39:59 -0400996 sizeof(input)))
997 return -EFAULT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998
Al Viroe145b352017-09-29 21:39:59 -0400999 return ext4_ioctl_group_add(filp, &input);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000 }
1001
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05001002 case EXT4_IOC_MIGRATE:
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001003 {
1004 int err;
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001005 if (!inode_owner_or_capable(inode))
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001006 return -EACCES;
1007
Al Viroa561be72011-11-23 11:57:51 -05001008 err = mnt_want_write_file(filp);
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001009 if (err)
1010 return err;
1011 /*
1012 * inode_mutex prevent write and truncate on the file.
1013 * Read still goes through. We take i_data_sem in
1014 * ext4_ext_swap_inode_data before we switch the
1015 * inode format to prevent read.
1016 */
Al Viro59551022016-01-22 15:40:57 -05001017 inode_lock((inode));
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001018 err = ext4_ext_migrate(inode);
Al Viro59551022016-01-22 15:40:57 -05001019 inode_unlock((inode));
Al Viro2a79f172011-12-09 08:06:57 -05001020 mnt_drop_write_file(filp);
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001021 return err;
1022 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05001023
Theodore Ts'occd25062009-02-26 01:04:07 -05001024 case EXT4_IOC_ALLOC_DA_BLKS:
1025 {
1026 int err;
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001027 if (!inode_owner_or_capable(inode))
Theodore Ts'occd25062009-02-26 01:04:07 -05001028 return -EACCES;
1029
Al Viroa561be72011-11-23 11:57:51 -05001030 err = mnt_want_write_file(filp);
Theodore Ts'occd25062009-02-26 01:04:07 -05001031 if (err)
1032 return err;
1033 err = ext4_alloc_da_blocks(inode);
Al Viro2a79f172011-12-09 08:06:57 -05001034 mnt_drop_write_file(filp);
Theodore Ts'occd25062009-02-26 01:04:07 -05001035 return err;
1036 }
1037
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04001038 case EXT4_IOC_SWAP_BOOT:
Dmitry Monakhov3e67cfad22014-10-03 12:47:23 -04001039 {
1040 int err;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04001041 if (!(filp->f_mode & FMODE_WRITE))
1042 return -EBADF;
Dmitry Monakhov3e67cfad22014-10-03 12:47:23 -04001043 err = mnt_want_write_file(filp);
1044 if (err)
1045 return err;
1046 err = swap_inode_boot_loader(sb, inode);
1047 mnt_drop_write_file(filp);
1048 return err;
1049 }
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04001050
Yongqiang Yang19c52462012-01-04 17:09:44 -05001051 case EXT4_IOC_RESIZE_FS: {
1052 ext4_fsblk_t n_blocks_count;
Yongqiang Yang19c52462012-01-04 17:09:44 -05001053 int err = 0, err2 = 0;
Theodore Ts'o7f511862013-01-13 08:41:45 -05001054 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
Yongqiang Yang19c52462012-01-04 17:09:44 -05001055
Yongqiang Yang19c52462012-01-04 17:09:44 -05001056 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1057 sizeof(__u64))) {
1058 return -EFAULT;
1059 }
1060
Yongqiang Yang19c52462012-01-04 17:09:44 -05001061 err = ext4_resize_begin(sb);
1062 if (err)
1063 return err;
1064
Al Viro8cae6f72012-07-19 11:19:07 +04001065 err = mnt_want_write_file(filp);
Yongqiang Yang19c52462012-01-04 17:09:44 -05001066 if (err)
1067 goto resizefs_out;
1068
1069 err = ext4_resize_fs(sb, n_blocks_count);
1070 if (EXT4_SB(sb)->s_journal) {
1071 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1072 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
1073 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1074 }
1075 if (err == 0)
1076 err = err2;
Al Viro8cae6f72012-07-19 11:19:07 +04001077 mnt_drop_write_file(filp);
Kirill Tkhai310a9972019-04-25 13:06:18 -04001078 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
Theodore Ts'o7f511862013-01-13 08:41:45 -05001079 ext4_has_group_desc_csum(sb) &&
1080 test_opt(sb, INIT_INODE_TABLE))
1081 err = ext4_register_li_request(sb, o_group);
1082
Yongqiang Yang19c52462012-01-04 17:09:44 -05001083resizefs_out:
1084 ext4_resize_end(sb);
1085 return err;
1086 }
1087
Lukas Czernere681c042010-11-19 21:47:07 -05001088 case FITRIM:
1089 {
Lukas Czerner41431792011-02-23 12:42:32 -05001090 struct request_queue *q = bdev_get_queue(sb->s_bdev);
Lukas Czernere681c042010-11-19 21:47:07 -05001091 struct fstrim_range range;
1092 int ret = 0;
1093
1094 if (!capable(CAP_SYS_ADMIN))
1095 return -EPERM;
1096
Lukas Czerner41431792011-02-23 12:42:32 -05001097 if (!blk_queue_discard(q))
1098 return -EOPNOTSUPP;
1099
Darrick J. Wong18915b52019-03-23 12:10:29 -04001100 /*
1101 * We haven't replayed the journal, so we cannot use our
1102 * block-bitmap-guided storage zapping commands.
1103 */
1104 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1105 return -EROFS;
1106
H Hartley Sweetene6705f72011-10-18 10:59:51 -04001107 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
Lukas Czernere681c042010-11-19 21:47:07 -05001108 sizeof(range)))
1109 return -EFAULT;
1110
Lukas Czerner5c2ed622011-02-23 17:49:51 -05001111 range.minlen = max((unsigned int)range.minlen,
1112 q->limits.discard_granularity);
Lukas Czernere681c042010-11-19 21:47:07 -05001113 ret = ext4_trim_fs(sb, &range);
1114 if (ret < 0)
1115 return ret;
1116
H Hartley Sweetene6705f72011-10-18 10:59:51 -04001117 if (copy_to_user((struct fstrim_range __user *)arg, &range,
Lukas Czernere681c042010-11-19 21:47:07 -05001118 sizeof(range)))
1119 return -EFAULT;
1120
1121 return 0;
1122 }
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001123 case EXT4_IOC_PRECACHE_EXTENTS:
1124 return ext4_ext_precache(inode);
Lukas Czernere681c042010-11-19 21:47:07 -05001125
Eric Biggersdb717d82016-11-26 19:07:49 -05001126 case EXT4_IOC_SET_ENCRYPTION_POLICY:
Richard Weinberger9a200d02016-09-30 01:49:55 -04001127 if (!ext4_has_feature_encrypt(sb))
1128 return -EOPNOTSUPP;
Eric Biggersdb717d82016-11-26 19:07:49 -05001129 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
Richard Weinberger9a200d02016-09-30 01:49:55 -04001130
Michael Halcrow9bd82122015-04-11 07:48:01 -04001131 case EXT4_IOC_GET_ENCRYPTION_PWSALT: {
Chandan Rajendra643fa962018-12-12 15:20:12 +05301132#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow9bd82122015-04-11 07:48:01 -04001133 int err, err2;
1134 struct ext4_sb_info *sbi = EXT4_SB(sb);
1135 handle_t *handle;
1136
Eric Biggers35997d12016-12-01 11:54:18 -05001137 if (!ext4_has_feature_encrypt(sb))
Michael Halcrow9bd82122015-04-11 07:48:01 -04001138 return -EOPNOTSUPP;
1139 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
1140 err = mnt_want_write_file(filp);
1141 if (err)
1142 return err;
1143 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
1144 if (IS_ERR(handle)) {
1145 err = PTR_ERR(handle);
1146 goto pwsalt_err_exit;
1147 }
1148 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
1149 if (err)
1150 goto pwsalt_err_journal;
1151 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
1152 err = ext4_handle_dirty_metadata(handle, NULL,
1153 sbi->s_sbh);
1154 pwsalt_err_journal:
1155 err2 = ext4_journal_stop(handle);
1156 if (err2 && !err)
1157 err = err2;
1158 pwsalt_err_exit:
1159 mnt_drop_write_file(filp);
1160 if (err)
1161 return err;
1162 }
Fabian Frederickb4ab9e22015-06-08 12:23:21 -04001163 if (copy_to_user((void __user *) arg,
1164 sbi->s_es->s_encrypt_pw_salt, 16))
Michael Halcrow9bd82122015-04-11 07:48:01 -04001165 return -EFAULT;
1166 return 0;
Eric Biggersba679012016-12-01 11:55:51 -05001167#else
1168 return -EOPNOTSUPP;
1169#endif
Michael Halcrow9bd82122015-04-11 07:48:01 -04001170 }
Eric Biggersdb717d82016-11-26 19:07:49 -05001171 case EXT4_IOC_GET_ENCRYPTION_POLICY:
Chao Yu0642ea22019-08-04 17:56:43 +08001172 if (!ext4_has_feature_encrypt(sb))
1173 return -EOPNOTSUPP;
Eric Biggersdb717d82016-11-26 19:07:49 -05001174 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
Michael Halcrow9bd82122015-04-11 07:48:01 -04001175
Eric Biggers29b36922019-08-04 19:35:48 -07001176 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1177 if (!ext4_has_feature_encrypt(sb))
1178 return -EOPNOTSUPP;
1179 return fscrypt_ioctl_get_policy_ex(filp, (void __user *)arg);
1180
1181 case FS_IOC_ADD_ENCRYPTION_KEY:
1182 if (!ext4_has_feature_encrypt(sb))
1183 return -EOPNOTSUPP;
1184 return fscrypt_ioctl_add_key(filp, (void __user *)arg);
1185
1186 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1187 if (!ext4_has_feature_encrypt(sb))
1188 return -EOPNOTSUPP;
1189 return fscrypt_ioctl_remove_key(filp, (void __user *)arg);
1190
1191 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1192 if (!ext4_has_feature_encrypt(sb))
1193 return -EOPNOTSUPP;
1194 return fscrypt_ioctl_remove_key_all_users(filp,
1195 (void __user *)arg);
1196 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1197 if (!ext4_has_feature_encrypt(sb))
1198 return -EOPNOTSUPP;
1199 return fscrypt_ioctl_get_key_status(filp, (void __user *)arg);
1200
Eric Biggers7ec9f3b2020-03-14 13:50:50 -07001201 case FS_IOC_GET_ENCRYPTION_NONCE:
1202 if (!ext4_has_feature_encrypt(sb))
1203 return -EOPNOTSUPP;
1204 return fscrypt_ioctl_get_nonce(filp, (void __user *)arg);
1205
Theodore Ts'ob0c013e2019-08-11 16:30:41 -04001206 case EXT4_IOC_CLEAR_ES_CACHE:
1207 {
1208 if (!inode_owner_or_capable(inode))
1209 return -EACCES;
1210 ext4_clear_inode_es(inode);
1211 return 0;
1212 }
1213
Theodore Ts'o1ad3ea62019-08-11 16:31:41 -04001214 case EXT4_IOC_GETSTATE:
1215 {
1216 __u32 state = 0;
1217
1218 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED))
1219 state |= EXT4_STATE_FLAG_EXT_PRECACHED;
1220 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
1221 state |= EXT4_STATE_FLAG_NEW;
1222 if (ext4_test_inode_state(inode, EXT4_STATE_NEWENTRY))
1223 state |= EXT4_STATE_FLAG_NEWENTRY;
1224 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE))
1225 state |= EXT4_STATE_FLAG_DA_ALLOC_CLOSE;
1226
1227 return put_user(state, (__u32 __user *) arg);
1228 }
1229
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001230 case EXT4_IOC_GET_ES_CACHE:
1231 return ext4_ioctl_get_es_cache(filp, arg);
1232
Li Xi9b7365f2016-01-08 16:01:22 -05001233 case EXT4_IOC_FSGETXATTR:
1234 {
1235 struct fsxattr fa;
1236
Darrick J. Wong7b0e4922019-07-01 08:25:35 -07001237 ext4_fill_fsxattr(inode, &fa);
Li Xi9b7365f2016-01-08 16:01:22 -05001238
1239 if (copy_to_user((struct fsxattr __user *)arg,
1240 &fa, sizeof(fa)))
1241 return -EFAULT;
1242 return 0;
1243 }
1244 case EXT4_IOC_FSSETXATTR:
1245 {
Darrick J. Wong7b0e4922019-07-01 08:25:35 -07001246 struct fsxattr fa, old_fa;
Li Xi9b7365f2016-01-08 16:01:22 -05001247 int err;
1248
1249 if (copy_from_user(&fa, (struct fsxattr __user *)arg,
1250 sizeof(fa)))
1251 return -EFAULT;
1252
1253 /* Make sure caller has proper permission */
1254 if (!inode_owner_or_capable(inode))
1255 return -EACCES;
1256
Jan Karad14e7682016-11-29 11:18:39 -05001257 if (fa.fsx_xflags & ~EXT4_SUPPORTED_FS_XFLAGS)
1258 return -EOPNOTSUPP;
1259
1260 flags = ext4_xflags_to_iflags(fa.fsx_xflags);
1261 if (ext4_mask_flags(inode->i_mode, flags) != flags)
1262 return -EOPNOTSUPP;
1263
Li Xi9b7365f2016-01-08 16:01:22 -05001264 err = mnt_want_write_file(filp);
1265 if (err)
1266 return err;
1267
Al Viro59551022016-01-22 15:40:57 -05001268 inode_lock(inode);
Darrick J. Wong7b0e4922019-07-01 08:25:35 -07001269 ext4_fill_fsxattr(inode, &old_fa);
Darrick J. Wong7b0e4922019-07-01 08:25:35 -07001270 err = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -04001271 if (err)
1272 goto out;
Li Xi9b7365f2016-01-08 16:01:22 -05001273 flags = (ei->i_flags & ~EXT4_FL_XFLAG_VISIBLE) |
1274 (flags & EXT4_FL_XFLAG_VISIBLE);
Darrick J. Wong2e538402019-06-09 21:41:41 -04001275 err = ext4_ioctl_check_immutable(inode, fa.fsx_projid, flags);
1276 if (err)
1277 goto out;
Li Xi9b7365f2016-01-08 16:01:22 -05001278 err = ext4_ioctl_setflags(inode, flags);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -04001279 if (err)
1280 goto out;
1281 err = ext4_ioctl_setproject(filp, fa.fsx_projid);
1282out:
Al Viro59551022016-01-22 15:40:57 -05001283 inode_unlock(inode);
Li Xi9b7365f2016-01-08 16:01:22 -05001284 mnt_drop_write_file(filp);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -04001285 return err;
Li Xi9b7365f2016-01-08 16:01:22 -05001286 }
Theodore Ts'oe9be2ac2017-02-20 15:34:59 -05001287 case EXT4_IOC_SHUTDOWN:
1288 return ext4_shutdown(sb, arg);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001289
1290 case FS_IOC_ENABLE_VERITY:
1291 if (!ext4_has_feature_verity(sb))
1292 return -EOPNOTSUPP;
1293 return fsverity_ioctl_enable(filp, (const void __user *)arg);
1294
1295 case FS_IOC_MEASURE_VERITY:
1296 if (!ext4_has_feature_verity(sb))
1297 return -EOPNOTSUPP;
1298 return fsverity_ioctl_measure(filp, (void __user *)arg);
1299
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001300 default:
1301 return -ENOTTY;
1302 }
1303}
1304
1305#ifdef CONFIG_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07001306long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001307{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001308 /* These are just misnamed, they actually get/put from/to user an int */
1309 switch (cmd) {
Mingming Cao617ba132006-10-11 01:20:53 -07001310 case EXT4_IOC32_GETFLAGS:
1311 cmd = EXT4_IOC_GETFLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001312 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001313 case EXT4_IOC32_SETFLAGS:
1314 cmd = EXT4_IOC_SETFLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001316 case EXT4_IOC32_GETVERSION:
1317 cmd = EXT4_IOC_GETVERSION;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001318 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001319 case EXT4_IOC32_SETVERSION:
1320 cmd = EXT4_IOC_SETVERSION;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001321 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001322 case EXT4_IOC32_GROUP_EXTEND:
1323 cmd = EXT4_IOC_GROUP_EXTEND;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001325 case EXT4_IOC32_GETVERSION_OLD:
1326 cmd = EXT4_IOC_GETVERSION_OLD;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001327 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001328 case EXT4_IOC32_SETVERSION_OLD:
1329 cmd = EXT4_IOC_SETVERSION_OLD;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001330 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001331 case EXT4_IOC32_GETRSVSZ:
1332 cmd = EXT4_IOC_GETRSVSZ;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001333 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001334 case EXT4_IOC32_SETRSVSZ:
1335 cmd = EXT4_IOC_SETRSVSZ;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001336 break;
Ben Hutchings4d92dc02010-05-17 06:00:00 -04001337 case EXT4_IOC32_GROUP_ADD: {
1338 struct compat_ext4_new_group_input __user *uinput;
Al Viroe145b352017-09-29 21:39:59 -04001339 struct ext4_new_group_data input;
Ben Hutchings4d92dc02010-05-17 06:00:00 -04001340 int err;
1341
1342 uinput = compat_ptr(arg);
1343 err = get_user(input.group, &uinput->group);
1344 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1345 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1346 err |= get_user(input.inode_table, &uinput->inode_table);
1347 err |= get_user(input.blocks_count, &uinput->blocks_count);
1348 err |= get_user(input.reserved_blocks,
1349 &uinput->reserved_blocks);
1350 if (err)
1351 return -EFAULT;
Al Viroe145b352017-09-29 21:39:59 -04001352 return ext4_ioctl_group_add(file, &input);
Ben Hutchings4d92dc02010-05-17 06:00:00 -04001353 }
Christian Borntraegerb684b2e2010-05-15 00:00:00 -04001354 case EXT4_IOC_MOVE_EXT:
Yongqiang Yang19c52462012-01-04 17:09:44 -05001355 case EXT4_IOC_RESIZE_FS:
Arnd Bergmann314999d2019-06-03 13:51:58 +02001356 case FITRIM:
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001357 case EXT4_IOC_PRECACHE_EXTENTS:
Michael Halcrow9bd82122015-04-11 07:48:01 -04001358 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1359 case EXT4_IOC_GET_ENCRYPTION_PWSALT:
1360 case EXT4_IOC_GET_ENCRYPTION_POLICY:
Eric Biggers29b36922019-08-04 19:35:48 -07001361 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1362 case FS_IOC_ADD_ENCRYPTION_KEY:
1363 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1364 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1365 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
Eric Biggers7ec9f3b2020-03-14 13:50:50 -07001366 case FS_IOC_GET_ENCRYPTION_NONCE:
Theodore Ts'oe9be2ac2017-02-20 15:34:59 -05001367 case EXT4_IOC_SHUTDOWN:
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -04001368 case FS_IOC_GETFSMAP:
Eric Biggersc93d8f82019-07-22 09:26:24 -07001369 case FS_IOC_ENABLE_VERITY:
1370 case FS_IOC_MEASURE_VERITY:
Theodore Ts'ob0c013e2019-08-11 16:30:41 -04001371 case EXT4_IOC_CLEAR_ES_CACHE:
Theodore Ts'o1ad3ea62019-08-11 16:31:41 -04001372 case EXT4_IOC_GETSTATE:
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001373 case EXT4_IOC_GET_ES_CACHE:
Martijn Coenena54d8d32019-12-27 14:46:39 +01001374 case EXT4_IOC_FSGETXATTR:
1375 case EXT4_IOC_FSSETXATTR:
Christian Borntraegerb684b2e2010-05-15 00:00:00 -04001376 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377 default:
1378 return -ENOIOCTLCMD;
1379 }
Andi Kleen5cdd7b22008-04-29 22:03:54 -04001380 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001381}
1382#endif