blob: e64a12e1218a90615f2b7eccbdf47991cd3dd975 [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>
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +020023#include <linux/fileattr.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040024#include "ext4_jbd2.h"
25#include "ext4.h"
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -040026#include <linux/fsmap.h>
27#include "fsmap.h"
28#include <trace/events/ext4.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070029
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040030/**
31 * Swap memory between @a and @b for @len bytes.
32 *
33 * @a: pointer to first memory area
34 * @b: pointer to second memory area
35 * @len: number of bytes to swap
36 *
37 */
38static void memswap(void *a, void *b, size_t len)
39{
40 unsigned char *ap, *bp;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040041
42 ap = (unsigned char *)a;
43 bp = (unsigned char *)b;
44 while (len-- > 0) {
Fabian Frederick4b7e2db2015-06-12 23:46:33 -040045 swap(*ap, *bp);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040046 ap++;
47 bp++;
48 }
49}
50
51/**
52 * Swap i_data and associated attributes between @inode1 and @inode2.
53 * This function is used for the primary swap between inode1 and inode2
54 * and also to revert this primary swap in case of errors.
55 *
56 * Therefore you have to make sure, that calling this method twice
57 * will revert all changes.
58 *
59 * @inode1: pointer to first inode
60 * @inode2: pointer to second inode
61 */
62static void swap_inode_data(struct inode *inode1, struct inode *inode2)
63{
64 loff_t isize;
65 struct ext4_inode_info *ei1;
66 struct ext4_inode_info *ei2;
yangerkunabdc6442019-02-11 00:35:06 -050067 unsigned long tmp;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040068
69 ei1 = EXT4_I(inode1);
70 ei2 = EXT4_I(inode2);
71
Jeff Layton9c5d58f2017-07-31 00:55:34 -040072 swap(inode1->i_version, inode2->i_version);
Jeff Layton9c5d58f2017-07-31 00:55:34 -040073 swap(inode1->i_atime, inode2->i_atime);
74 swap(inode1->i_mtime, inode2->i_mtime);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040075
76 memswap(ei1->i_data, ei2->i_data, sizeof(ei1->i_data));
yangerkunabdc6442019-02-11 00:35:06 -050077 tmp = ei1->i_flags & EXT4_FL_SHOULD_SWAP;
78 ei1->i_flags = (ei2->i_flags & EXT4_FL_SHOULD_SWAP) |
79 (ei1->i_flags & ~EXT4_FL_SHOULD_SWAP);
80 ei2->i_flags = tmp | (ei2->i_flags & ~EXT4_FL_SHOULD_SWAP);
Jeff Layton9c5d58f2017-07-31 00:55:34 -040081 swap(ei1->i_disksize, ei2->i_disksize);
Theodore Ts'ocde2d7a2013-08-12 09:29:30 -040082 ext4_es_remove_extent(inode1, 0, EXT_MAX_BLOCKS);
83 ext4_es_remove_extent(inode2, 0, EXT_MAX_BLOCKS);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -040084
85 isize = i_size_read(inode1);
86 i_size_write(inode1, i_size_read(inode2));
87 i_size_write(inode2, isize);
88}
89
Harshad Shirwadkar8016e292020-10-15 13:37:59 -070090void ext4_reset_inode_seed(struct inode *inode)
Theodore Ts'o18aded12018-10-02 18:21:19 -040091{
92 struct ext4_inode_info *ei = EXT4_I(inode);
93 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
94 __le32 inum = cpu_to_le32(inode->i_ino);
95 __le32 gen = cpu_to_le32(inode->i_generation);
96 __u32 csum;
97
98 if (!ext4_has_metadata_csum(inode->i_sb))
99 return;
100
101 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, sizeof(inum));
102 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, sizeof(gen));
103}
104
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400105/**
106 * Swap the information from the given @inode and the inode
107 * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other
108 * important fields of the inodes.
109 *
110 * @sb: the super block of the filesystem
Christian Brauner14f3db52021-01-21 14:19:57 +0100111 * @mnt_userns: user namespace of the mount the inode was found from
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400112 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
113 *
114 */
115static long swap_inode_boot_loader(struct super_block *sb,
Christian Brauner14f3db52021-01-21 14:19:57 +0100116 struct user_namespace *mnt_userns,
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400117 struct inode *inode)
118{
119 handle_t *handle;
120 int err;
121 struct inode *inode_bl;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400122 struct ext4_inode_info *ei_bl;
yangerkunaa507b52019-02-11 00:14:02 -0500123 qsize_t size, size_bl, diff;
124 blkcnt_t blocks;
125 unsigned short bytes;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400126
Theodore Ts'o8a363972018-12-19 12:29:13 -0500127 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO, EXT4_IGET_SPECIAL);
Theodore Ts'od8558a22014-02-17 20:44:36 -0500128 if (IS_ERR(inode_bl))
129 return PTR_ERR(inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400130 ei_bl = EXT4_I(inode_bl);
131
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400132 /* Protect orig inodes against a truncate and make sure,
133 * that only 1 swap_inode_boot_loader is running. */
J. Bruce Fields375e2892012-04-18 15:16:33 -0400134 lock_two_nondirectories(inode, inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400135
yangerkun67a11612019-02-11 00:02:05 -0500136 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode) ||
137 IS_SWAPFILE(inode) || IS_ENCRYPTED(inode) ||
Theodore Ts'o6e589292019-02-11 01:07:10 -0500138 (EXT4_I(inode)->i_flags & EXT4_JOURNAL_DATA_FL) ||
yangerkun67a11612019-02-11 00:02:05 -0500139 ext4_has_inline_data(inode)) {
140 err = -EINVAL;
141 goto journal_err_out;
142 }
143
144 if (IS_RDONLY(inode) || IS_APPEND(inode) || IS_IMMUTABLE(inode) ||
Christian Brauner14f3db52021-01-21 14:19:57 +0100145 !inode_owner_or_capable(mnt_userns, inode) ||
Christian Brauner21cb47b2021-01-21 14:19:25 +0100146 !capable(CAP_SYS_ADMIN)) {
yangerkun67a11612019-02-11 00:02:05 -0500147 err = -EPERM;
148 goto journal_err_out;
149 }
150
Jan Karad4f52582021-02-04 18:05:42 +0100151 filemap_invalidate_lock(inode->i_mapping);
yangerkuna46c68a2019-02-11 00:05:24 -0500152 err = filemap_write_and_wait(inode->i_mapping);
153 if (err)
154 goto err_out;
155
156 err = filemap_write_and_wait(inode_bl->i_mapping);
157 if (err)
158 goto err_out;
159
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400160 /* Wait for all existing dio workers */
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400161 inode_dio_wait(inode);
162 inode_dio_wait(inode_bl);
163
Theodore Ts'o18aded12018-10-02 18:21:19 -0400164 truncate_inode_pages(&inode->i_data, 0);
165 truncate_inode_pages(&inode_bl->i_data, 0);
166
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400167 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
168 if (IS_ERR(handle)) {
169 err = -EINVAL;
yangerkuna46c68a2019-02-11 00:05:24 -0500170 goto err_out;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400171 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700172 ext4_fc_start_ineligible(sb, EXT4_FC_REASON_SWAP_BOOT);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400173
174 /* Protect extent tree against block allocations via delalloc */
175 ext4_double_down_write_data_sem(inode, inode_bl);
176
177 if (inode_bl->i_nlink == 0) {
178 /* this inode has never been used as a BOOT_LOADER */
179 set_nlink(inode_bl, 1);
180 i_uid_write(inode_bl, 0);
181 i_gid_write(inode_bl, 0);
182 inode_bl->i_flags = 0;
183 ei_bl->i_flags = 0;
Jeff Laytonee73f9a2018-01-09 08:21:39 -0500184 inode_set_iversion(inode_bl, 1);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400185 i_size_write(inode_bl, 0);
186 inode_bl->i_mode = S_IFREG;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400187 if (ext4_has_feature_extents(sb)) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400188 ext4_set_inode_flag(inode_bl, EXT4_INODE_EXTENTS);
189 ext4_ext_tree_init(handle, inode_bl);
190 } else
191 memset(ei_bl->i_data, 0, sizeof(ei_bl->i_data));
192 }
193
yangerkunaa507b52019-02-11 00:14:02 -0500194 err = dquot_initialize(inode);
195 if (err)
196 goto err_out1;
197
198 size = (qsize_t)(inode->i_blocks) * (1 << 9) + inode->i_bytes;
199 size_bl = (qsize_t)(inode_bl->i_blocks) * (1 << 9) + inode_bl->i_bytes;
200 diff = size - size_bl;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400201 swap_inode_data(inode, inode_bl);
202
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500203 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400204
Theodore Ts'o23253062017-11-08 22:23:20 -0500205 inode->i_generation = prandom_u32();
206 inode_bl->i_generation = prandom_u32();
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700207 ext4_reset_inode_seed(inode);
208 ext4_reset_inode_seed(inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400209
brookxu27bc4462020-08-17 15:36:15 +0800210 ext4_discard_preallocations(inode, 0);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400211
212 err = ext4_mark_inode_dirty(handle, inode);
213 if (err < 0) {
yangerkunaa507b52019-02-11 00:14:02 -0500214 /* No need to update quota information. */
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400215 ext4_warning(inode->i_sb,
216 "couldn't mark inode #%lu dirty (err %d)",
217 inode->i_ino, err);
218 /* Revert all changes: */
219 swap_inode_data(inode, inode_bl);
Theodore Ts'o18aded12018-10-02 18:21:19 -0400220 ext4_mark_inode_dirty(handle, inode);
yangerkunaa507b52019-02-11 00:14:02 -0500221 goto err_out1;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400222 }
yangerkunaa507b52019-02-11 00:14:02 -0500223
224 blocks = inode_bl->i_blocks;
225 bytes = inode_bl->i_bytes;
226 inode_bl->i_blocks = inode->i_blocks;
227 inode_bl->i_bytes = inode->i_bytes;
228 err = ext4_mark_inode_dirty(handle, inode_bl);
229 if (err < 0) {
230 /* No need to update quota information. */
231 ext4_warning(inode_bl->i_sb,
232 "couldn't mark inode #%lu dirty (err %d)",
233 inode_bl->i_ino, err);
234 goto revert;
235 }
236
237 /* Bootloader inode should not be counted into quota information. */
238 if (diff > 0)
239 dquot_free_space(inode, diff);
240 else
241 err = dquot_alloc_space(inode, -1 * diff);
242
243 if (err < 0) {
244revert:
245 /* Revert all changes: */
246 inode_bl->i_blocks = blocks;
247 inode_bl->i_bytes = bytes;
248 swap_inode_data(inode, inode_bl);
249 ext4_mark_inode_dirty(handle, inode);
250 ext4_mark_inode_dirty(handle, inode_bl);
251 }
252
253err_out1:
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400254 ext4_journal_stop(handle);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700255 ext4_fc_stop_ineligible(sb);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400256 ext4_double_up_write_data_sem(inode, inode_bl);
257
yangerkuna46c68a2019-02-11 00:05:24 -0500258err_out:
Jan Karad4f52582021-02-04 18:05:42 +0100259 filemap_invalidate_unlock(inode->i_mapping);
Zheng Liu30d29b12014-02-12 11:48:31 -0500260journal_err_out:
J. Bruce Fields375e2892012-04-18 15:16:33 -0400261 unlock_two_nondirectories(inode, inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400262 iput(inode_bl);
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -0400263 return err;
264}
265
Chandan Rajendra643fa962018-12-12 15:20:12 +0530266#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow9bd82122015-04-11 07:48:01 -0400267static int uuid_is_zero(__u8 u[16])
268{
269 int i;
270
271 for (i = 0; i < 16; i++)
272 if (u[i])
273 return 0;
274 return 1;
275}
Eric Biggersba679012016-12-01 11:55:51 -0500276#endif
Michael Halcrow9bd82122015-04-11 07:48:01 -0400277
Darrick J. Wong2e538402019-06-09 21:41:41 -0400278/*
279 * If immutable is set and we are not clearing it, we're not allowed to change
280 * anything else in the inode. Don't error out if we're only trying to set
281 * immutable on an immutable file.
282 */
283static int ext4_ioctl_check_immutable(struct inode *inode, __u32 new_projid,
284 unsigned int flags)
285{
286 struct ext4_inode_info *ei = EXT4_I(inode);
287 unsigned int oldflags = ei->i_flags;
288
289 if (!(oldflags & EXT4_IMMUTABLE_FL) || !(flags & EXT4_IMMUTABLE_FL))
290 return 0;
291
292 if ((oldflags & ~EXT4_IMMUTABLE_FL) != (flags & ~EXT4_IMMUTABLE_FL))
293 return -EPERM;
294 if (ext4_has_feature_project(inode->i_sb) &&
295 __kprojid_val(ei->i_projid) != new_projid)
296 return -EPERM;
297
298 return 0;
299}
300
Ira Weinyb383a732020-05-28 08:00:02 -0700301static void ext4_dax_dontcache(struct inode *inode, unsigned int flags)
302{
303 struct ext4_inode_info *ei = EXT4_I(inode);
304
305 if (S_ISDIR(inode->i_mode))
306 return;
307
308 if (test_opt2(inode->i_sb, DAX_NEVER) ||
309 test_opt(inode->i_sb, DAX_ALWAYS))
310 return;
311
312 if ((ei->i_flags ^ flags) & EXT4_DAX_FL)
313 d_mark_dontcache(inode);
314}
315
316static bool dax_compatible(struct inode *inode, unsigned int oldflags,
317 unsigned int flags)
318{
Theodore Ts'o4811d992021-04-12 17:19:00 -0400319 /* Allow the DAX flag to be changed on inline directories */
320 if (S_ISDIR(inode->i_mode)) {
321 flags &= ~EXT4_INLINE_DATA_FL;
322 oldflags &= ~EXT4_INLINE_DATA_FL;
323 }
324
Ira Weinyb383a732020-05-28 08:00:02 -0700325 if (flags & EXT4_DAX_FL) {
326 if ((oldflags & EXT4_DAX_MUT_EXCL) ||
327 ext4_test_inode_state(inode,
328 EXT4_STATE_VERITY_IN_PROGRESS)) {
329 return false;
330 }
331 }
332
333 if ((flags & EXT4_DAX_MUT_EXCL) && (oldflags & EXT4_DAX_FL))
334 return false;
335
336 return true;
337}
338
Li Xi9b7365f2016-01-08 16:01:22 -0500339static int ext4_ioctl_setflags(struct inode *inode,
340 unsigned int flags)
341{
342 struct ext4_inode_info *ei = EXT4_I(inode);
343 handle_t *handle = NULL;
Anton Protopopovfdde3682016-02-11 23:57:21 -0500344 int err = -EPERM, migrate = 0;
Li Xi9b7365f2016-01-08 16:01:22 -0500345 struct ext4_iloc iloc;
346 unsigned int oldflags, mask, i;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -0400347 struct super_block *sb = inode->i_sb;
Li Xi9b7365f2016-01-08 16:01:22 -0500348
349 /* Is it quota file? Do not allow user to mess with it */
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400350 if (ext4_is_quota_file(inode))
Li Xi9b7365f2016-01-08 16:01:22 -0500351 goto flags_out;
352
353 oldflags = ei->i_flags;
Li Xi9b7365f2016-01-08 16:01:22 -0500354 /*
355 * The JOURNAL_DATA flag can only be changed by
356 * the relevant capability.
357 */
Ira Weinyfcebc792020-05-28 08:00:01 -0700358 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
Li Xi9b7365f2016-01-08 16:01:22 -0500359 if (!capable(CAP_SYS_RESOURCE))
360 goto flags_out;
361 }
Ira Weinyb383a732020-05-28 08:00:02 -0700362
363 if (!dax_compatible(inode, oldflags, flags)) {
364 err = -EOPNOTSUPP;
365 goto flags_out;
366 }
367
Li Xi9b7365f2016-01-08 16:01:22 -0500368 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
369 migrate = 1;
370
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -0400371 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
372 if (!ext4_has_feature_casefold(sb)) {
373 err = -EOPNOTSUPP;
374 goto flags_out;
375 }
376
377 if (!S_ISDIR(inode->i_mode)) {
378 err = -ENOTDIR;
379 goto flags_out;
380 }
381
382 if (!ext4_empty_dir(inode)) {
383 err = -ENOTEMPTY;
384 goto flags_out;
385 }
386 }
387
Darrick J. Wong2e538402019-06-09 21:41:41 -0400388 /*
389 * Wait for all pending directio and then flush all the dirty pages
390 * for this file. The flush marks all the pages readonly, so any
391 * subsequent attempt to write to the file (particularly mmap pages)
392 * will come through the filesystem and fail.
393 */
394 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
395 (flags & EXT4_IMMUTABLE_FL)) {
396 inode_dio_wait(inode);
397 err = filemap_write_and_wait(inode->i_mapping);
398 if (err)
399 goto flags_out;
400 }
401
Li Xi9b7365f2016-01-08 16:01:22 -0500402 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
403 if (IS_ERR(handle)) {
404 err = PTR_ERR(handle);
405 goto flags_out;
406 }
407 if (IS_SYNC(inode))
408 ext4_handle_sync(handle);
409 err = ext4_reserve_inode_write(handle, inode, &iloc);
410 if (err)
411 goto flags_err;
412
Ira Weinyb383a732020-05-28 08:00:02 -0700413 ext4_dax_dontcache(inode, flags);
414
Li Xi9b7365f2016-01-08 16:01:22 -0500415 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
416 if (!(mask & EXT4_FL_USER_MODIFIABLE))
417 continue;
Jan Karaf8011d92016-11-29 11:13:13 -0500418 /* These flags get special treatment later */
419 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
420 continue;
Li Xi9b7365f2016-01-08 16:01:22 -0500421 if (mask & flags)
422 ext4_set_inode_flag(inode, i);
423 else
424 ext4_clear_inode_flag(inode, i);
425 }
426
Ira Weiny043546e2020-05-28 07:59:59 -0700427 ext4_set_inode_flags(inode, false);
428
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500429 inode->i_ctime = current_time(inode);
Li Xi9b7365f2016-01-08 16:01:22 -0500430
431 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
432flags_err:
433 ext4_journal_stop(handle);
434 if (err)
435 goto flags_out;
436
Ira Weinyfcebc792020-05-28 08:00:01 -0700437 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
Ross Zwislere9072d82017-10-12 11:54:08 -0400438 /*
439 * Changes to the journaling mode can cause unsafe changes to
Ira Weinyff694ab2020-05-28 07:59:55 -0700440 * S_DAX if the inode is DAX
Ross Zwislere9072d82017-10-12 11:54:08 -0400441 */
Ira Weinyff694ab2020-05-28 07:59:55 -0700442 if (IS_DAX(inode)) {
Ross Zwislere9072d82017-10-12 11:54:08 -0400443 err = -EBUSY;
444 goto flags_out;
445 }
446
Ira Weinyfcebc792020-05-28 08:00:01 -0700447 err = ext4_change_inode_journal_flag(inode,
448 flags & EXT4_JOURNAL_DATA_FL);
Ross Zwislere9072d82017-10-12 11:54:08 -0400449 if (err)
450 goto flags_out;
451 }
Li Xi9b7365f2016-01-08 16:01:22 -0500452 if (migrate) {
453 if (flags & EXT4_EXTENTS_FL)
454 err = ext4_ext_migrate(inode);
455 else
456 err = ext4_ind_migrate(inode);
457 }
458
459flags_out:
460 return err;
461}
462
463#ifdef CONFIG_QUOTA
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200464static int ext4_ioctl_setproject(struct inode *inode, __u32 projid)
Li Xi9b7365f2016-01-08 16:01:22 -0500465{
Li Xi9b7365f2016-01-08 16:01:22 -0500466 struct super_block *sb = inode->i_sb;
467 struct ext4_inode_info *ei = EXT4_I(inode);
468 int err, rc;
469 handle_t *handle;
470 kprojid_t kprojid;
471 struct ext4_iloc iloc;
472 struct ext4_inode *raw_inode;
Wang Shilong079788d2016-07-05 21:33:52 -0400473 struct dquot *transfer_to[MAXQUOTAS] = { };
Li Xi9b7365f2016-01-08 16:01:22 -0500474
Kaho Ng0b7b7772016-09-05 23:11:58 -0400475 if (!ext4_has_feature_project(sb)) {
Li Xi9b7365f2016-01-08 16:01:22 -0500476 if (projid != EXT4_DEF_PROJID)
477 return -EOPNOTSUPP;
478 else
479 return 0;
480 }
481
482 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
483 return -EOPNOTSUPP;
484
485 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
486
487 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
488 return 0;
489
Li Xi9b7365f2016-01-08 16:01:22 -0500490 err = -EPERM;
Li Xi9b7365f2016-01-08 16:01:22 -0500491 /* Is it quota file? Do not allow user to mess with it */
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400492 if (ext4_is_quota_file(inode))
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400493 return err;
Li Xi9b7365f2016-01-08 16:01:22 -0500494
495 err = ext4_get_inode_loc(inode, &iloc);
496 if (err)
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400497 return err;
Li Xi9b7365f2016-01-08 16:01:22 -0500498
499 raw_inode = ext4_raw_inode(&iloc);
500 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
Miao Xiec03b45b2017-08-06 01:00:49 -0400501 err = ext4_expand_extra_isize(inode,
502 EXT4_SB(sb)->s_want_extra_isize,
503 &iloc);
504 if (err)
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400505 return err;
Miao Xiec03b45b2017-08-06 01:00:49 -0400506 } else {
Li Xi9b7365f2016-01-08 16:01:22 -0500507 brelse(iloc.bh);
Li Xi9b7365f2016-01-08 16:01:22 -0500508 }
Li Xi9b7365f2016-01-08 16:01:22 -0500509
Wang Shilong182a79e2018-10-03 12:19:21 -0400510 err = dquot_initialize(inode);
511 if (err)
512 return err;
Li Xi9b7365f2016-01-08 16:01:22 -0500513
514 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
515 EXT4_QUOTA_INIT_BLOCKS(sb) +
516 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400517 if (IS_ERR(handle))
518 return PTR_ERR(handle);
Li Xi9b7365f2016-01-08 16:01:22 -0500519
520 err = ext4_reserve_inode_write(handle, inode, &iloc);
521 if (err)
522 goto out_stop;
523
Wang Shilong079788d2016-07-05 21:33:52 -0400524 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
525 if (!IS_ERR(transfer_to[PRJQUOTA])) {
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -0400526
527 /* __dquot_transfer() calls back ext4_get_inode_usage() which
528 * counts xattr inode references.
529 */
530 down_read(&EXT4_I(inode)->xattr_sem);
Wang Shilong079788d2016-07-05 21:33:52 -0400531 err = __dquot_transfer(inode, transfer_to);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -0400532 up_read(&EXT4_I(inode)->xattr_sem);
Wang Shilong079788d2016-07-05 21:33:52 -0400533 dqput(transfer_to[PRJQUOTA]);
534 if (err)
535 goto out_dirty;
Li Xi9b7365f2016-01-08 16:01:22 -0500536 }
Wang Shilong079788d2016-07-05 21:33:52 -0400537
Li Xi9b7365f2016-01-08 16:01:22 -0500538 EXT4_I(inode)->i_projid = kprojid;
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500539 inode->i_ctime = current_time(inode);
Li Xi9b7365f2016-01-08 16:01:22 -0500540out_dirty:
541 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
542 if (!err)
543 err = rc;
544out_stop:
545 ext4_journal_stop(handle);
Li Xi9b7365f2016-01-08 16:01:22 -0500546 return err;
547}
548#else
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200549static int ext4_ioctl_setproject(struct inode *inode, __u32 projid)
Li Xi9b7365f2016-01-08 16:01:22 -0500550{
551 if (projid != EXT4_DEF_PROJID)
552 return -EOPNOTSUPP;
553 return 0;
554}
555#endif
556
Eric Biggers1a20a6302017-04-30 00:40:44 -0400557static int ext4_shutdown(struct super_block *sb, unsigned long arg)
Theodore Ts'o783d9482017-02-05 19:47:14 -0500558{
559 struct ext4_sb_info *sbi = EXT4_SB(sb);
560 __u32 flags;
561
562 if (!capable(CAP_SYS_ADMIN))
563 return -EPERM;
564
565 if (get_user(flags, (__u32 __user *)arg))
566 return -EFAULT;
567
568 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
569 return -EINVAL;
570
571 if (ext4_forced_shutdown(sbi))
572 return 0;
573
574 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
Theodore Ts'occf0f322018-02-18 20:53:23 -0500575 trace_ext4_shutdown(sb, flags);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500576
577 switch (flags) {
578 case EXT4_GOING_FLAGS_DEFAULT:
579 freeze_bdev(sb->s_bdev);
580 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
Christoph Hellwig040f04b2020-11-24 11:54:06 +0100581 thaw_bdev(sb->s_bdev);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500582 break;
583 case EXT4_GOING_FLAGS_LOGFLUSH:
584 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
585 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
586 (void) ext4_force_commit(sb);
Theodore Ts'ofb7c0242018-02-18 23:45:18 -0500587 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500588 }
589 break;
590 case EXT4_GOING_FLAGS_NOLOGFLUSH:
591 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
Theodore Ts'oa6d99462018-02-18 23:16:28 -0500592 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
Theodore Ts'ofb7c0242018-02-18 23:45:18 -0500593 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
Theodore Ts'o783d9482017-02-05 19:47:14 -0500594 break;
595 default:
596 return -EINVAL;
597 }
598 clear_opt(sb, DISCARD);
599 return 0;
600}
601
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400602struct getfsmap_info {
603 struct super_block *gi_sb;
604 struct fsmap_head __user *gi_data;
605 unsigned int gi_idx;
606 __u32 gi_last_flags;
607};
608
609static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
610{
611 struct getfsmap_info *info = priv;
612 struct fsmap fm;
613
614 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
615
616 info->gi_last_flags = xfm->fmr_flags;
617 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
618 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
619 sizeof(struct fsmap)))
620 return -EFAULT;
621
622 return 0;
623}
624
625static int ext4_ioc_getfsmap(struct super_block *sb,
626 struct fsmap_head __user *arg)
627{
Theodore Ts'o0ba33fa2019-05-12 04:49:47 -0400628 struct getfsmap_info info = { NULL };
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400629 struct ext4_fsmap_head xhead = {0};
630 struct fsmap_head head;
631 bool aborted = false;
632 int error;
633
634 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
635 return -EFAULT;
636 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
637 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
638 sizeof(head.fmh_keys[0].fmr_reserved)) ||
639 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
640 sizeof(head.fmh_keys[1].fmr_reserved)))
641 return -EINVAL;
642 /*
643 * ext4 doesn't report file extents at all, so the only valid
644 * file offsets are the magic ones (all zeroes or all ones).
645 */
646 if (head.fmh_keys[0].fmr_offset ||
647 (head.fmh_keys[1].fmr_offset != 0 &&
648 head.fmh_keys[1].fmr_offset != -1ULL))
649 return -EINVAL;
650
651 xhead.fmh_iflags = head.fmh_iflags;
652 xhead.fmh_count = head.fmh_count;
653 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
654 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
655
656 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
657 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
658
659 info.gi_sb = sb;
660 info.gi_data = arg;
661 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
Jiapeng Chong1fc57ca2021-04-29 18:16:49 +0800662 if (error == EXT4_QUERY_RANGE_ABORT)
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400663 aborted = true;
Jiapeng Chong1fc57ca2021-04-29 18:16:49 +0800664 else if (error)
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400665 return error;
666
667 /* If we didn't abort, set the "last" flag in the last fmx */
668 if (!aborted && info.gi_idx) {
669 info.gi_last_flags |= FMR_OF_LAST;
670 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
671 &info.gi_last_flags,
672 sizeof(info.gi_last_flags)))
673 return -EFAULT;
674 }
675
676 /* copy back header */
677 head.fmh_entries = xhead.fmh_entries;
678 head.fmh_oflags = xhead.fmh_oflags;
679 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
680 return -EFAULT;
681
682 return 0;
683}
684
Al Viroe145b352017-09-29 21:39:59 -0400685static long ext4_ioctl_group_add(struct file *file,
686 struct ext4_new_group_data *input)
687{
688 struct super_block *sb = file_inode(file)->i_sb;
689 int err, err2=0;
690
691 err = ext4_resize_begin(sb);
692 if (err)
693 return err;
694
Theodore Ts'o88135872021-06-30 20:54:22 -0400695 if (ext4_has_feature_bigalloc(sb)) {
696 ext4_msg(sb, KERN_ERR,
697 "Online resizing not supported with bigalloc");
698 err = -EOPNOTSUPP;
699 goto group_add_out;
700 }
701
Al Viroe145b352017-09-29 21:39:59 -0400702 err = mnt_want_write_file(file);
703 if (err)
704 goto group_add_out;
705
706 err = ext4_group_add(sb, input);
707 if (EXT4_SB(sb)->s_journal) {
708 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +0000709 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal, 0);
Al Viroe145b352017-09-29 21:39:59 -0400710 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
711 }
712 if (err == 0)
713 err = err2;
714 mnt_drop_write_file(file);
715 if (!err && ext4_has_group_desc_csum(sb) &&
716 test_opt(sb, INIT_INODE_TABLE))
717 err = ext4_register_li_request(sb, input->group);
718group_add_out:
719 ext4_resize_end(sb);
720 return err;
721}
722
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200723int ext4_fileattr_get(struct dentry *dentry, struct fileattr *fa)
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400724{
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200725 struct inode *inode = d_inode(dentry);
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700726 struct ext4_inode_info *ei = EXT4_I(inode);
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200727 u32 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400728
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200729 if (S_ISREG(inode->i_mode))
730 flags &= ~FS_PROJINHERIT_FL;
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400731
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200732 fileattr_fill_flags(fa, flags);
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700733 if (ext4_has_feature_project(inode->i_sb))
734 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200735
736 return 0;
737}
738
739int ext4_fileattr_set(struct user_namespace *mnt_userns,
740 struct dentry *dentry, struct fileattr *fa)
741{
742 struct inode *inode = d_inode(dentry);
743 u32 flags = fa->flags;
744 int err = -EOPNOTSUPP;
745
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200746 if (flags & ~EXT4_FL_USER_VISIBLE)
747 goto out;
748
749 /*
750 * chattr(1) grabs flags via GETFLAGS, modifies the result and
751 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
752 * more restrictive than just silently masking off visible but
753 * not settable flags as we always did.
754 */
755 flags &= EXT4_FL_USER_MODIFIABLE;
756 if (ext4_mask_flags(inode->i_mode, flags) != flags)
757 goto out;
758 err = ext4_ioctl_check_immutable(inode, fa->fsx_projid, flags);
759 if (err)
760 goto out;
761 err = ext4_ioctl_setflags(inode, flags);
762 if (err)
763 goto out;
764 err = ext4_ioctl_setproject(inode, fa->fsx_projid);
765out:
Miklos Szeredi4db5c2e2021-04-07 14:36:43 +0200766 return err;
Wang Shilongdc7ac6c2018-10-03 10:33:32 -0400767}
768
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400769/* So that the fiemap access checks can't overflow on 32 bit machines. */
770#define FIEMAP_MAX_EXTENTS (UINT_MAX / sizeof(struct fiemap_extent))
771
772static int ext4_ioctl_get_es_cache(struct file *filp, unsigned long arg)
773{
774 struct fiemap fiemap;
775 struct fiemap __user *ufiemap = (struct fiemap __user *) arg;
776 struct fiemap_extent_info fieinfo = { 0, };
777 struct inode *inode = file_inode(filp);
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400778 int error;
779
780 if (copy_from_user(&fiemap, ufiemap, sizeof(fiemap)))
781 return -EFAULT;
782
783 if (fiemap.fm_extent_count > FIEMAP_MAX_EXTENTS)
784 return -EINVAL;
785
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400786 fieinfo.fi_flags = fiemap.fm_flags;
787 fieinfo.fi_extents_max = fiemap.fm_extent_count;
788 fieinfo.fi_extents_start = ufiemap->fm_extents;
789
Christoph Hellwig328e24a2020-05-05 17:43:15 +0200790 error = ext4_get_es_cache(inode, &fieinfo, fiemap.fm_start,
791 fiemap.fm_length);
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400792 fiemap.fm_flags = fieinfo.fi_flags;
793 fiemap.fm_mapped_extents = fieinfo.fi_extents_mapped;
794 if (copy_to_user(ufiemap, &fiemap, sizeof(fiemap)))
795 error = -EFAULT;
796
797 return error;
798}
799
Leah Rumancik351a0a32021-05-18 15:13:26 +0000800static int ext4_ioctl_checkpoint(struct file *filp, unsigned long arg)
801{
802 int err = 0;
803 __u32 flags = 0;
804 unsigned int flush_flags = 0;
805 struct super_block *sb = file_inode(filp)->i_sb;
806 struct request_queue *q;
807
808 if (copy_from_user(&flags, (__u32 __user *)arg,
809 sizeof(__u32)))
810 return -EFAULT;
811
812 if (!capable(CAP_SYS_ADMIN))
813 return -EPERM;
814
815 /* check for invalid bits set */
816 if ((flags & ~EXT4_IOC_CHECKPOINT_FLAG_VALID) ||
817 ((flags & JBD2_JOURNAL_FLUSH_DISCARD) &&
818 (flags & JBD2_JOURNAL_FLUSH_ZEROOUT)))
819 return -EINVAL;
820
821 if (!EXT4_SB(sb)->s_journal)
822 return -ENODEV;
823
Theodore Ts'o09559012021-07-02 13:21:06 -0400824 if (flags & ~EXT4_IOC_CHECKPOINT_FLAG_VALID)
Leah Rumancik351a0a32021-05-18 15:13:26 +0000825 return -EINVAL;
826
827 q = bdev_get_queue(EXT4_SB(sb)->s_journal->j_dev);
828 if (!q)
829 return -ENXIO;
830 if ((flags & JBD2_JOURNAL_FLUSH_DISCARD) && !blk_queue_discard(q))
831 return -EOPNOTSUPP;
832
833 if (flags & EXT4_IOC_CHECKPOINT_FLAG_DRY_RUN)
834 return 0;
835
836 if (flags & EXT4_IOC_CHECKPOINT_FLAG_DISCARD)
837 flush_flags |= JBD2_JOURNAL_FLUSH_DISCARD;
838
839 if (flags & EXT4_IOC_CHECKPOINT_FLAG_ZEROOUT) {
840 flush_flags |= JBD2_JOURNAL_FLUSH_ZEROOUT;
841 pr_info_ratelimited("warning: checkpointing journal with EXT4_IOC_CHECKPOINT_FLAG_ZEROOUT can be slow");
842 }
843
844 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
845 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal, flush_flags);
846 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
847
848 return err;
849}
850
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700851static long __ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852{
Al Viro496ad9a2013-01-23 17:07:38 -0500853 struct inode *inode = file_inode(filp);
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400854 struct super_block *sb = inode->i_sb;
Christian Brauner14f3db52021-01-21 14:19:57 +0100855 struct user_namespace *mnt_userns = file_mnt_user_ns(filp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700856
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400857 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858
859 switch (cmd) {
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -0400860 case FS_IOC_GETFSMAP:
861 return ext4_ioc_getfsmap(sb, (void __user *)arg);
Mingming Cao617ba132006-10-11 01:20:53 -0700862 case EXT4_IOC_GETVERSION:
863 case EXT4_IOC_GETVERSION_OLD:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700864 return put_user(inode->i_generation, (int __user *) arg);
Mingming Cao617ba132006-10-11 01:20:53 -0700865 case EXT4_IOC_SETVERSION:
866 case EXT4_IOC_SETVERSION_OLD: {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -0700868 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869 __u32 generation;
870 int err;
871
Christian Brauner14f3db52021-01-21 14:19:57 +0100872 if (!inode_owner_or_capable(mnt_userns, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873 return -EPERM;
Dave Hansen42a74f22008-02-15 14:37:46 -0800874
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400875 if (ext4_has_metadata_csum(inode->i_sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -0400876 ext4_warning(sb, "Setting inode version is not "
877 "supported with metadata_csum enabled.");
878 return -ENOTTY;
879 }
880
Al Viroa561be72011-11-23 11:57:51 -0500881 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800882 if (err)
883 return err;
884 if (get_user(generation, (int __user *) arg)) {
885 err = -EFAULT;
886 goto setversion_out;
887 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888
Al Viro59551022016-01-22 15:40:57 -0500889 inode_lock(inode);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500890 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Hansen42a74f22008-02-15 14:37:46 -0800891 if (IS_ERR(handle)) {
892 err = PTR_ERR(handle);
Djalal Harouni6c2155b2012-01-03 02:31:52 +0100893 goto unlock_out;
Dave Hansen42a74f22008-02-15 14:37:46 -0800894 }
Mingming Cao617ba132006-10-11 01:20:53 -0700895 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700896 if (err == 0) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -0500897 inode->i_ctime = current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898 inode->i_generation = generation;
Mingming Cao617ba132006-10-11 01:20:53 -0700899 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700900 }
Mingming Cao617ba132006-10-11 01:20:53 -0700901 ext4_journal_stop(handle);
Djalal Harouni6c2155b2012-01-03 02:31:52 +0100902
903unlock_out:
Al Viro59551022016-01-22 15:40:57 -0500904 inode_unlock(inode);
Dave Hansen42a74f22008-02-15 14:37:46 -0800905setversion_out:
Al Viro2a79f172011-12-09 08:06:57 -0500906 mnt_drop_write_file(filp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700907 return err;
908 }
Mingming Cao617ba132006-10-11 01:20:53 -0700909 case EXT4_IOC_GROUP_EXTEND: {
910 ext4_fsblk_t n_blocks_count;
Peng Taoac046f12009-07-13 09:30:17 -0400911 int err, err2=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912
Yongqiang Yang8f82f842011-07-26 21:35:44 -0400913 err = ext4_resize_begin(sb);
914 if (err)
915 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700916
Djalal Harouni014a1772012-01-04 17:09:52 -0500917 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
918 err = -EFAULT;
919 goto group_extend_out;
920 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700921
Theodore Ts'o88135872021-06-30 20:54:22 -0400922 if (ext4_has_feature_bigalloc(sb)) {
923 ext4_msg(sb, KERN_ERR,
924 "Online resizing not supported with bigalloc");
925 err = -EOPNOTSUPP;
926 goto group_extend_out;
927 }
928
Al Viroa561be72011-11-23 11:57:51 -0500929 err = mnt_want_write_file(filp);
Dave Hansen42a74f22008-02-15 14:37:46 -0800930 if (err)
Djalal Harouni014a1772012-01-04 17:09:52 -0500931 goto group_extend_out;
Dave Hansen42a74f22008-02-15 14:37:46 -0800932
Mingming Cao617ba132006-10-11 01:20:53 -0700933 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
Peng Taoac046f12009-07-13 09:30:17 -0400934 if (EXT4_SB(sb)->s_journal) {
935 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +0000936 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal, 0);
Peng Taoac046f12009-07-13 09:30:17 -0400937 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
938 }
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -0400939 if (err == 0)
940 err = err2;
Al Viro2a79f172011-12-09 08:06:57 -0500941 mnt_drop_write_file(filp);
Djalal Harouni014a1772012-01-04 17:09:52 -0500942group_extend_out:
Yongqiang Yang8f82f842011-07-26 21:35:44 -0400943 ext4_resize_end(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700944 return err;
945 }
Akira Fujita748de672009-06-17 19:24:03 -0400946
947 case EXT4_IOC_MOVE_EXT: {
948 struct move_extent me;
Al Viro2903ff02012-08-28 12:52:22 -0400949 struct fd donor;
950 int err;
Akira Fujita748de672009-06-17 19:24:03 -0400951
Akira Fujita4a585792009-12-06 23:38:31 -0500952 if (!(filp->f_mode & FMODE_READ) ||
953 !(filp->f_mode & FMODE_WRITE))
954 return -EBADF;
955
Akira Fujita748de672009-06-17 19:24:03 -0400956 if (copy_from_user(&me,
957 (struct move_extent __user *)arg, sizeof(me)))
958 return -EFAULT;
Akira Fujita4a585792009-12-06 23:38:31 -0500959 me.moved_len = 0;
Akira Fujita748de672009-06-17 19:24:03 -0400960
Al Viro2903ff02012-08-28 12:52:22 -0400961 donor = fdget(me.donor_fd);
962 if (!donor.file)
Akira Fujita748de672009-06-17 19:24:03 -0400963 return -EBADF;
964
Al Viro2903ff02012-08-28 12:52:22 -0400965 if (!(donor.file->f_mode & FMODE_WRITE)) {
Akira Fujita4a585792009-12-06 23:38:31 -0500966 err = -EBADF;
967 goto mext_out;
Akira Fujita748de672009-06-17 19:24:03 -0400968 }
969
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400970 if (ext4_has_feature_bigalloc(sb)) {
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400971 ext4_msg(sb, KERN_ERR,
972 "Online defrag not supported with bigalloc");
Al Viro399c9b82012-08-26 21:00:03 -0400973 err = -EOPNOTSUPP;
974 goto mext_out;
Ross Zwisler73f34a52016-02-26 15:19:49 -0800975 } else if (IS_DAX(inode)) {
976 ext4_msg(sb, KERN_ERR,
977 "Online defrag not supported with DAX");
978 err = -EOPNOTSUPP;
979 goto mext_out;
Theodore Ts'obab08ab2011-09-09 18:36:51 -0400980 }
981
Al Viroa561be72011-11-23 11:57:51 -0500982 err = mnt_want_write_file(filp);
Akira Fujita4a585792009-12-06 23:38:31 -0500983 if (err)
984 goto mext_out;
985
Al Viro2903ff02012-08-28 12:52:22 -0400986 err = ext4_move_extents(filp, donor.file, me.orig_start,
Akira Fujita748de672009-06-17 19:24:03 -0400987 me.donor_start, me.len, &me.moved_len);
Al Viro2a79f172011-12-09 08:06:57 -0500988 mnt_drop_write_file(filp);
Akira Fujita748de672009-06-17 19:24:03 -0400989
Theodore Ts'o60e66792010-05-17 07:00:00 -0400990 if (copy_to_user((struct move_extent __user *)arg,
Akira Fujitac437b272010-03-04 00:39:24 -0500991 &me, sizeof(me)))
Akira Fujita4a585792009-12-06 23:38:31 -0500992 err = -EFAULT;
993mext_out:
Al Viro2903ff02012-08-28 12:52:22 -0400994 fdput(donor);
Akira Fujita748de672009-06-17 19:24:03 -0400995 return err;
996 }
997
Mingming Cao617ba132006-10-11 01:20:53 -0700998 case EXT4_IOC_GROUP_ADD: {
999 struct ext4_new_group_data input;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000
Mingming Cao617ba132006-10-11 01:20:53 -07001001 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
Al Viroe145b352017-09-29 21:39:59 -04001002 sizeof(input)))
1003 return -EFAULT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001004
Al Viroe145b352017-09-29 21:39:59 -04001005 return ext4_ioctl_group_add(filp, &input);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006 }
1007
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05001008 case EXT4_IOC_MIGRATE:
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001009 {
1010 int err;
Christian Brauner14f3db52021-01-21 14:19:57 +01001011 if (!inode_owner_or_capable(mnt_userns, inode))
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001012 return -EACCES;
1013
Al Viroa561be72011-11-23 11:57:51 -05001014 err = mnt_want_write_file(filp);
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001015 if (err)
1016 return err;
1017 /*
1018 * inode_mutex prevent write and truncate on the file.
1019 * Read still goes through. We take i_data_sem in
1020 * ext4_ext_swap_inode_data before we switch the
1021 * inode format to prevent read.
1022 */
Al Viro59551022016-01-22 15:40:57 -05001023 inode_lock((inode));
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001024 err = ext4_ext_migrate(inode);
Al Viro59551022016-01-22 15:40:57 -05001025 inode_unlock((inode));
Al Viro2a79f172011-12-09 08:06:57 -05001026 mnt_drop_write_file(filp);
Aneesh Kumar K.V2a43a872008-09-13 12:52:26 -04001027 return err;
1028 }
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -05001029
Theodore Ts'occd25062009-02-26 01:04:07 -05001030 case EXT4_IOC_ALLOC_DA_BLKS:
1031 {
1032 int err;
Christian Brauner14f3db52021-01-21 14:19:57 +01001033 if (!inode_owner_or_capable(mnt_userns, inode))
Theodore Ts'occd25062009-02-26 01:04:07 -05001034 return -EACCES;
1035
Al Viroa561be72011-11-23 11:57:51 -05001036 err = mnt_want_write_file(filp);
Theodore Ts'occd25062009-02-26 01:04:07 -05001037 if (err)
1038 return err;
1039 err = ext4_alloc_da_blocks(inode);
Al Viro2a79f172011-12-09 08:06:57 -05001040 mnt_drop_write_file(filp);
Theodore Ts'occd25062009-02-26 01:04:07 -05001041 return err;
1042 }
1043
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04001044 case EXT4_IOC_SWAP_BOOT:
Dmitry Monakhov3e67cfad22014-10-03 12:47:23 -04001045 {
1046 int err;
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04001047 if (!(filp->f_mode & FMODE_WRITE))
1048 return -EBADF;
Dmitry Monakhov3e67cfad22014-10-03 12:47:23 -04001049 err = mnt_want_write_file(filp);
1050 if (err)
1051 return err;
Christian Brauner14f3db52021-01-21 14:19:57 +01001052 err = swap_inode_boot_loader(sb, mnt_userns, inode);
Dmitry Monakhov3e67cfad22014-10-03 12:47:23 -04001053 mnt_drop_write_file(filp);
1054 return err;
1055 }
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04001056
Yongqiang Yang19c52462012-01-04 17:09:44 -05001057 case EXT4_IOC_RESIZE_FS: {
1058 ext4_fsblk_t n_blocks_count;
Yongqiang Yang19c52462012-01-04 17:09:44 -05001059 int err = 0, err2 = 0;
Theodore Ts'o7f511862013-01-13 08:41:45 -05001060 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
Yongqiang Yang19c52462012-01-04 17:09:44 -05001061
Yongqiang Yang19c52462012-01-04 17:09:44 -05001062 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1063 sizeof(__u64))) {
1064 return -EFAULT;
1065 }
1066
Yongqiang Yang19c52462012-01-04 17:09:44 -05001067 err = ext4_resize_begin(sb);
1068 if (err)
1069 return err;
1070
Al Viro8cae6f72012-07-19 11:19:07 +04001071 err = mnt_want_write_file(filp);
Yongqiang Yang19c52462012-01-04 17:09:44 -05001072 if (err)
1073 goto resizefs_out;
1074
1075 err = ext4_resize_fs(sb, n_blocks_count);
1076 if (EXT4_SB(sb)->s_journal) {
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001077 ext4_fc_mark_ineligible(sb, EXT4_FC_REASON_RESIZE);
Yongqiang Yang19c52462012-01-04 17:09:44 -05001078 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00001079 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal, 0);
Yongqiang Yang19c52462012-01-04 17:09:44 -05001080 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1081 }
1082 if (err == 0)
1083 err = err2;
Al Viro8cae6f72012-07-19 11:19:07 +04001084 mnt_drop_write_file(filp);
Kirill Tkhai310a9972019-04-25 13:06:18 -04001085 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
Theodore Ts'o7f511862013-01-13 08:41:45 -05001086 ext4_has_group_desc_csum(sb) &&
1087 test_opt(sb, INIT_INODE_TABLE))
1088 err = ext4_register_li_request(sb, o_group);
1089
Yongqiang Yang19c52462012-01-04 17:09:44 -05001090resizefs_out:
1091 ext4_resize_end(sb);
1092 return err;
1093 }
1094
Lukas Czernere681c042010-11-19 21:47:07 -05001095 case FITRIM:
1096 {
Lukas Czerner41431792011-02-23 12:42:32 -05001097 struct request_queue *q = bdev_get_queue(sb->s_bdev);
Lukas Czernere681c042010-11-19 21:47:07 -05001098 struct fstrim_range range;
1099 int ret = 0;
1100
1101 if (!capable(CAP_SYS_ADMIN))
1102 return -EPERM;
1103
Lukas Czerner41431792011-02-23 12:42:32 -05001104 if (!blk_queue_discard(q))
1105 return -EOPNOTSUPP;
1106
Darrick J. Wong18915b52019-03-23 12:10:29 -04001107 /*
1108 * We haven't replayed the journal, so we cannot use our
1109 * block-bitmap-guided storage zapping commands.
1110 */
1111 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1112 return -EROFS;
1113
H Hartley Sweetene6705f72011-10-18 10:59:51 -04001114 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
Lukas Czernere681c042010-11-19 21:47:07 -05001115 sizeof(range)))
1116 return -EFAULT;
1117
Lukas Czerner5c2ed622011-02-23 17:49:51 -05001118 range.minlen = max((unsigned int)range.minlen,
1119 q->limits.discard_granularity);
Lukas Czernere681c042010-11-19 21:47:07 -05001120 ret = ext4_trim_fs(sb, &range);
1121 if (ret < 0)
1122 return ret;
1123
H Hartley Sweetene6705f72011-10-18 10:59:51 -04001124 if (copy_to_user((struct fstrim_range __user *)arg, &range,
Lukas Czernere681c042010-11-19 21:47:07 -05001125 sizeof(range)))
1126 return -EFAULT;
1127
1128 return 0;
1129 }
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001130 case EXT4_IOC_PRECACHE_EXTENTS:
1131 return ext4_ext_precache(inode);
Lukas Czernere681c042010-11-19 21:47:07 -05001132
Eric Biggerscb29a022020-07-14 16:09:09 -07001133 case FS_IOC_SET_ENCRYPTION_POLICY:
Richard Weinberger9a200d02016-09-30 01:49:55 -04001134 if (!ext4_has_feature_encrypt(sb))
1135 return -EOPNOTSUPP;
Eric Biggersdb717d82016-11-26 19:07:49 -05001136 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
Richard Weinberger9a200d02016-09-30 01:49:55 -04001137
Eric Biggerscb29a022020-07-14 16:09:09 -07001138 case FS_IOC_GET_ENCRYPTION_PWSALT: {
Chandan Rajendra643fa962018-12-12 15:20:12 +05301139#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow9bd82122015-04-11 07:48:01 -04001140 int err, err2;
1141 struct ext4_sb_info *sbi = EXT4_SB(sb);
1142 handle_t *handle;
1143
Eric Biggers35997d12016-12-01 11:54:18 -05001144 if (!ext4_has_feature_encrypt(sb))
Michael Halcrow9bd82122015-04-11 07:48:01 -04001145 return -EOPNOTSUPP;
1146 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
1147 err = mnt_want_write_file(filp);
1148 if (err)
1149 return err;
1150 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
1151 if (IS_ERR(handle)) {
1152 err = PTR_ERR(handle);
1153 goto pwsalt_err_exit;
1154 }
Jan Kara188c2992021-08-16 11:57:04 +02001155 err = ext4_journal_get_write_access(handle, sb,
1156 sbi->s_sbh,
1157 EXT4_JTR_NONE);
Michael Halcrow9bd82122015-04-11 07:48:01 -04001158 if (err)
1159 goto pwsalt_err_journal;
Jan Karadfd56c22020-12-16 11:18:43 +01001160 lock_buffer(sbi->s_sbh);
Michael Halcrow9bd82122015-04-11 07:48:01 -04001161 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
Jan Karadfd56c22020-12-16 11:18:43 +01001162 ext4_superblock_csum_set(sb);
1163 unlock_buffer(sbi->s_sbh);
Michael Halcrow9bd82122015-04-11 07:48:01 -04001164 err = ext4_handle_dirty_metadata(handle, NULL,
1165 sbi->s_sbh);
1166 pwsalt_err_journal:
1167 err2 = ext4_journal_stop(handle);
1168 if (err2 && !err)
1169 err = err2;
1170 pwsalt_err_exit:
1171 mnt_drop_write_file(filp);
1172 if (err)
1173 return err;
1174 }
Fabian Frederickb4ab9e22015-06-08 12:23:21 -04001175 if (copy_to_user((void __user *) arg,
1176 sbi->s_es->s_encrypt_pw_salt, 16))
Michael Halcrow9bd82122015-04-11 07:48:01 -04001177 return -EFAULT;
1178 return 0;
Eric Biggersba679012016-12-01 11:55:51 -05001179#else
1180 return -EOPNOTSUPP;
1181#endif
Michael Halcrow9bd82122015-04-11 07:48:01 -04001182 }
Eric Biggerscb29a022020-07-14 16:09:09 -07001183 case FS_IOC_GET_ENCRYPTION_POLICY:
Chao Yu0642ea22019-08-04 17:56:43 +08001184 if (!ext4_has_feature_encrypt(sb))
1185 return -EOPNOTSUPP;
Eric Biggersdb717d82016-11-26 19:07:49 -05001186 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
Michael Halcrow9bd82122015-04-11 07:48:01 -04001187
Eric Biggers29b36922019-08-04 19:35:48 -07001188 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1189 if (!ext4_has_feature_encrypt(sb))
1190 return -EOPNOTSUPP;
1191 return fscrypt_ioctl_get_policy_ex(filp, (void __user *)arg);
1192
1193 case FS_IOC_ADD_ENCRYPTION_KEY:
1194 if (!ext4_has_feature_encrypt(sb))
1195 return -EOPNOTSUPP;
1196 return fscrypt_ioctl_add_key(filp, (void __user *)arg);
1197
1198 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1199 if (!ext4_has_feature_encrypt(sb))
1200 return -EOPNOTSUPP;
1201 return fscrypt_ioctl_remove_key(filp, (void __user *)arg);
1202
1203 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1204 if (!ext4_has_feature_encrypt(sb))
1205 return -EOPNOTSUPP;
1206 return fscrypt_ioctl_remove_key_all_users(filp,
1207 (void __user *)arg);
1208 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1209 if (!ext4_has_feature_encrypt(sb))
1210 return -EOPNOTSUPP;
1211 return fscrypt_ioctl_get_key_status(filp, (void __user *)arg);
1212
Eric Biggers7ec9f3b2020-03-14 13:50:50 -07001213 case FS_IOC_GET_ENCRYPTION_NONCE:
1214 if (!ext4_has_feature_encrypt(sb))
1215 return -EOPNOTSUPP;
1216 return fscrypt_ioctl_get_nonce(filp, (void __user *)arg);
1217
Theodore Ts'ob0c013e2019-08-11 16:30:41 -04001218 case EXT4_IOC_CLEAR_ES_CACHE:
1219 {
Christian Brauner14f3db52021-01-21 14:19:57 +01001220 if (!inode_owner_or_capable(mnt_userns, inode))
Theodore Ts'ob0c013e2019-08-11 16:30:41 -04001221 return -EACCES;
1222 ext4_clear_inode_es(inode);
1223 return 0;
1224 }
1225
Theodore Ts'o1ad3ea62019-08-11 16:31:41 -04001226 case EXT4_IOC_GETSTATE:
1227 {
1228 __u32 state = 0;
1229
1230 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED))
1231 state |= EXT4_STATE_FLAG_EXT_PRECACHED;
1232 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
1233 state |= EXT4_STATE_FLAG_NEW;
1234 if (ext4_test_inode_state(inode, EXT4_STATE_NEWENTRY))
1235 state |= EXT4_STATE_FLAG_NEWENTRY;
1236 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE))
1237 state |= EXT4_STATE_FLAG_DA_ALLOC_CLOSE;
1238
1239 return put_user(state, (__u32 __user *) arg);
1240 }
1241
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001242 case EXT4_IOC_GET_ES_CACHE:
1243 return ext4_ioctl_get_es_cache(filp, arg);
1244
Theodore Ts'oe9be2ac2017-02-20 15:34:59 -05001245 case EXT4_IOC_SHUTDOWN:
1246 return ext4_shutdown(sb, arg);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001247
1248 case FS_IOC_ENABLE_VERITY:
1249 if (!ext4_has_feature_verity(sb))
1250 return -EOPNOTSUPP;
1251 return fsverity_ioctl_enable(filp, (const void __user *)arg);
1252
1253 case FS_IOC_MEASURE_VERITY:
1254 if (!ext4_has_feature_verity(sb))
1255 return -EOPNOTSUPP;
1256 return fsverity_ioctl_measure(filp, (void __user *)arg);
1257
Eric Biggerse17fe652021-01-15 10:18:16 -08001258 case FS_IOC_READ_VERITY_METADATA:
1259 if (!ext4_has_feature_verity(sb))
1260 return -EOPNOTSUPP;
1261 return fsverity_ioctl_read_metadata(filp,
1262 (const void __user *)arg);
1263
Leah Rumancik351a0a32021-05-18 15:13:26 +00001264 case EXT4_IOC_CHECKPOINT:
1265 return ext4_ioctl_checkpoint(filp, arg);
1266
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001267 default:
1268 return -ENOTTY;
1269 }
1270}
1271
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001272long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1273{
Harshad Shirwadkar2729cfd2021-12-23 12:21:37 -08001274 return __ext4_ioctl(filp, cmd, arg);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07001275}
1276
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001277#ifdef CONFIG_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07001278long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001279{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001280 /* These are just misnamed, they actually get/put from/to user an int */
1281 switch (cmd) {
Mingming Cao617ba132006-10-11 01:20:53 -07001282 case EXT4_IOC32_GETVERSION:
1283 cmd = EXT4_IOC_GETVERSION;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001284 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001285 case EXT4_IOC32_SETVERSION:
1286 cmd = EXT4_IOC_SETVERSION;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001287 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001288 case EXT4_IOC32_GROUP_EXTEND:
1289 cmd = EXT4_IOC_GROUP_EXTEND;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001290 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001291 case EXT4_IOC32_GETVERSION_OLD:
1292 cmd = EXT4_IOC_GETVERSION_OLD;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001293 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001294 case EXT4_IOC32_SETVERSION_OLD:
1295 cmd = EXT4_IOC_SETVERSION_OLD;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001296 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001297 case EXT4_IOC32_GETRSVSZ:
1298 cmd = EXT4_IOC_GETRSVSZ;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001299 break;
Mingming Cao617ba132006-10-11 01:20:53 -07001300 case EXT4_IOC32_SETRSVSZ:
1301 cmd = EXT4_IOC_SETRSVSZ;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001302 break;
Ben Hutchings4d92dc02010-05-17 06:00:00 -04001303 case EXT4_IOC32_GROUP_ADD: {
1304 struct compat_ext4_new_group_input __user *uinput;
Al Viroe145b352017-09-29 21:39:59 -04001305 struct ext4_new_group_data input;
Ben Hutchings4d92dc02010-05-17 06:00:00 -04001306 int err;
1307
1308 uinput = compat_ptr(arg);
1309 err = get_user(input.group, &uinput->group);
1310 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1311 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1312 err |= get_user(input.inode_table, &uinput->inode_table);
1313 err |= get_user(input.blocks_count, &uinput->blocks_count);
1314 err |= get_user(input.reserved_blocks,
1315 &uinput->reserved_blocks);
1316 if (err)
1317 return -EFAULT;
Al Viroe145b352017-09-29 21:39:59 -04001318 return ext4_ioctl_group_add(file, &input);
Ben Hutchings4d92dc02010-05-17 06:00:00 -04001319 }
Christian Borntraegerb684b2e2010-05-15 00:00:00 -04001320 case EXT4_IOC_MOVE_EXT:
Yongqiang Yang19c52462012-01-04 17:09:44 -05001321 case EXT4_IOC_RESIZE_FS:
Arnd Bergmann314999d2019-06-03 13:51:58 +02001322 case FITRIM:
Theodore Ts'o7869a4a2013-08-16 22:05:14 -04001323 case EXT4_IOC_PRECACHE_EXTENTS:
Eric Biggerscb29a022020-07-14 16:09:09 -07001324 case FS_IOC_SET_ENCRYPTION_POLICY:
1325 case FS_IOC_GET_ENCRYPTION_PWSALT:
1326 case FS_IOC_GET_ENCRYPTION_POLICY:
Eric Biggers29b36922019-08-04 19:35:48 -07001327 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1328 case FS_IOC_ADD_ENCRYPTION_KEY:
1329 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1330 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1331 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
Eric Biggers7ec9f3b2020-03-14 13:50:50 -07001332 case FS_IOC_GET_ENCRYPTION_NONCE:
Theodore Ts'oe9be2ac2017-02-20 15:34:59 -05001333 case EXT4_IOC_SHUTDOWN:
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -04001334 case FS_IOC_GETFSMAP:
Eric Biggersc93d8f82019-07-22 09:26:24 -07001335 case FS_IOC_ENABLE_VERITY:
1336 case FS_IOC_MEASURE_VERITY:
Eric Biggerse17fe652021-01-15 10:18:16 -08001337 case FS_IOC_READ_VERITY_METADATA:
Theodore Ts'ob0c013e2019-08-11 16:30:41 -04001338 case EXT4_IOC_CLEAR_ES_CACHE:
Theodore Ts'o1ad3ea62019-08-11 16:31:41 -04001339 case EXT4_IOC_GETSTATE:
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001340 case EXT4_IOC_GET_ES_CACHE:
Leah Rumancik351a0a32021-05-18 15:13:26 +00001341 case EXT4_IOC_CHECKPOINT:
Christian Borntraegerb684b2e2010-05-15 00:00:00 -04001342 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001343 default:
1344 return -ENOIOCTLCMD;
1345 }
Andi Kleen5cdd7b22008-04-29 22:03:54 -04001346 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347}
1348#endif