]> git.ipfire.org Git - people/ms/linux.git/blame - fs/ext4/ioctl.c
fs/ext4: Remove jflag variable
[people/ms/linux.git] / fs / ext4 / ioctl.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
ac27a0ec 2/*
617ba13b 3 * linux/fs/ext4/ioctl.c
ac27a0ec
DK
4 *
5 * Copyright (C) 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
9 */
10
11#include <linux/fs.h>
ac27a0ec 12#include <linux/capability.h>
ac27a0ec
DK
13#include <linux/time.h>
14#include <linux/compat.h>
42a74f20 15#include <linux/mount.h>
748de673 16#include <linux/file.h>
9b7365fc 17#include <linux/quotaops.h>
23253068 18#include <linux/random.h>
8da4b8c4 19#include <linux/uuid.h>
7c0f6ba6 20#include <linux/uaccess.h>
783d9485 21#include <linux/delay.h>
ee73f9a5 22#include <linux/iversion.h>
3dcf5451
CH
23#include "ext4_jbd2.h"
24#include "ext4.h"
0c9ec4be
DW
25#include <linux/fsmap.h>
26#include "fsmap.h"
27#include <trace/events/ext4.h>
ac27a0ec 28
393d1d1d
DTB
29/**
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;
393d1d1d
DTB
40
41 ap = (unsigned char *)a;
42 bp = (unsigned char *)b;
43 while (len-- > 0) {
4b7e2db5 44 swap(*ap, *bp);
393d1d1d
DTB
45 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;
abdc644e 66 unsigned long tmp;
393d1d1d
DTB
67
68 ei1 = EXT4_I(inode1);
69 ei2 = EXT4_I(inode2);
70
9c5d58fb 71 swap(inode1->i_version, inode2->i_version);
9c5d58fb
JL
72 swap(inode1->i_atime, inode2->i_atime);
73 swap(inode1->i_mtime, inode2->i_mtime);
393d1d1d
DTB
74
75 memswap(ei1->i_data, ei2->i_data, sizeof(ei1->i_data));
abdc644e 76 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);
9c5d58fb 80 swap(ei1->i_disksize, ei2->i_disksize);
cde2d7a7
TT
81 ext4_es_remove_extent(inode1, 0, EXT_MAX_BLOCKS);
82 ext4_es_remove_extent(inode2, 0, EXT_MAX_BLOCKS);
393d1d1d
DTB
83
84 isize = i_size_read(inode1);
85 i_size_write(inode1, i_size_read(inode2));
86 i_size_write(inode2, isize);
87}
88
18aded17
TT
89static 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
393d1d1d
DTB
104/**
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;
393d1d1d 119 struct ext4_inode_info *ei_bl;
aa507b5f 120 qsize_t size, size_bl, diff;
121 blkcnt_t blocks;
122 unsigned short bytes;
393d1d1d 123
8a363970 124 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO, EXT4_IGET_SPECIAL);
d8558a29
TT
125 if (IS_ERR(inode_bl))
126 return PTR_ERR(inode_bl);
393d1d1d
DTB
127 ei_bl = EXT4_I(inode_bl);
128
393d1d1d
DTB
129 /* Protect orig inodes against a truncate and make sure,
130 * that only 1 swap_inode_boot_loader is running. */
375e289e 131 lock_two_nondirectories(inode, inode_bl);
393d1d1d 132
67a11611 133 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode) ||
134 IS_SWAPFILE(inode) || IS_ENCRYPTED(inode) ||
6e589291 135 (EXT4_I(inode)->i_flags & EXT4_JOURNAL_DATA_FL) ||
67a11611 136 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
a46c68a3 147 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
393d1d1d 156 /* Wait for all existing dio workers */
393d1d1d
DTB
157 inode_dio_wait(inode);
158 inode_dio_wait(inode_bl);
159
18aded17
TT
160 truncate_inode_pages(&inode->i_data, 0);
161 truncate_inode_pages(&inode_bl->i_data, 0);
162
393d1d1d
DTB
163 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
164 if (IS_ERR(handle)) {
165 err = -EINVAL;
a46c68a3 166 goto err_out;
393d1d1d
DTB
167 }
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;
ee73f9a5 179 inode_set_iversion(inode_bl, 1);
393d1d1d
DTB
180 i_size_write(inode_bl, 0);
181 inode_bl->i_mode = S_IFREG;
e2b911c5 182 if (ext4_has_feature_extents(sb)) {
393d1d1d
DTB
183 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
aa507b5f 189 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;
393d1d1d
DTB
196 swap_inode_data(inode, inode_bl);
197
eeca7ea1 198 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
393d1d1d 199
23253068
TT
200 inode->i_generation = prandom_u32();
201 inode_bl->i_generation = prandom_u32();
18aded17
TT
202 reset_inode_seed(inode);
203 reset_inode_seed(inode_bl);
393d1d1d
DTB
204
205 ext4_discard_preallocations(inode);
206
207 err = ext4_mark_inode_dirty(handle, inode);
208 if (err < 0) {
aa507b5f 209 /* No need to update quota information. */
393d1d1d
DTB
210 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);
18aded17 215 ext4_mark_inode_dirty(handle, inode);
aa507b5f 216 goto err_out1;
217 }
218
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);
393d1d1d 246 }
aa507b5f 247
248err_out1:
393d1d1d 249 ext4_journal_stop(handle);
393d1d1d
DTB
250 ext4_double_up_write_data_sem(inode, inode_bl);
251
a46c68a3 252err_out:
253 up_write(&EXT4_I(inode)->i_mmap_sem);
30d29b11 254journal_err_out:
375e289e 255 unlock_two_nondirectories(inode, inode_bl);
393d1d1d 256 iput(inode_bl);
393d1d1d
DTB
257 return err;
258}
259
643fa961 260#ifdef CONFIG_FS_ENCRYPTION
9bd8212f
MH
261static 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}
ba679017 270#endif
9bd8212f 271
2e538403
DW
272/*
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
9b7365fc
LX
295static 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;
fdde368e 300 int err = -EPERM, migrate = 0;
9b7365fc
LX
301 struct ext4_iloc iloc;
302 unsigned int oldflags, mask, i;
b886ee3e 303 struct super_block *sb = inode->i_sb;
9b7365fc
LX
304
305 /* Is it quota file? Do not allow user to mess with it */
02749a4c 306 if (ext4_is_quota_file(inode))
9b7365fc
LX
307 goto flags_out;
308
309 oldflags = ei->i_flags;
310
5aca2842
DW
311 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
312 if (err)
313 goto flags_out;
9b7365fc
LX
314
315 /*
316 * The JOURNAL_DATA flag can only be changed by
317 * the relevant capability.
318 */
fcebc794 319 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
9b7365fc
LX
320 if (!capable(CAP_SYS_RESOURCE))
321 goto flags_out;
322 }
323 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
324 migrate = 1;
325
b886ee3e
GKB
326 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
327 if (!ext4_has_feature_casefold(sb)) {
328 err = -EOPNOTSUPP;
329 goto flags_out;
330 }
331
332 if (!S_ISDIR(inode->i_mode)) {
333 err = -ENOTDIR;
334 goto flags_out;
335 }
336
337 if (!ext4_empty_dir(inode)) {
338 err = -ENOTEMPTY;
339 goto flags_out;
340 }
341 }
342
2e538403
DW
343 /*
344 * Wait for all pending directio and then flush all the dirty pages
345 * for this file. The flush marks all the pages readonly, so any
346 * subsequent attempt to write to the file (particularly mmap pages)
347 * will come through the filesystem and fail.
348 */
349 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
350 (flags & EXT4_IMMUTABLE_FL)) {
351 inode_dio_wait(inode);
352 err = filemap_write_and_wait(inode->i_mapping);
353 if (err)
354 goto flags_out;
355 }
356
9b7365fc
LX
357 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
358 if (IS_ERR(handle)) {
359 err = PTR_ERR(handle);
360 goto flags_out;
361 }
362 if (IS_SYNC(inode))
363 ext4_handle_sync(handle);
364 err = ext4_reserve_inode_write(handle, inode, &iloc);
365 if (err)
366 goto flags_err;
367
368 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
369 if (!(mask & EXT4_FL_USER_MODIFIABLE))
370 continue;
f8011d93
JK
371 /* These flags get special treatment later */
372 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
373 continue;
9b7365fc
LX
374 if (mask & flags)
375 ext4_set_inode_flag(inode, i);
376 else
377 ext4_clear_inode_flag(inode, i);
378 }
379
043546e4
IW
380 ext4_set_inode_flags(inode, false);
381
eeca7ea1 382 inode->i_ctime = current_time(inode);
9b7365fc
LX
383
384 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
385flags_err:
386 ext4_journal_stop(handle);
387 if (err)
388 goto flags_out;
389
fcebc794 390 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
e9072d85
RZ
391 /*
392 * Changes to the journaling mode can cause unsafe changes to
ff694ab6 393 * S_DAX if the inode is DAX
e9072d85 394 */
ff694ab6 395 if (IS_DAX(inode)) {
e9072d85
RZ
396 err = -EBUSY;
397 goto flags_out;
398 }
399
fcebc794
IW
400 err = ext4_change_inode_journal_flag(inode,
401 flags & EXT4_JOURNAL_DATA_FL);
e9072d85
RZ
402 if (err)
403 goto flags_out;
404 }
9b7365fc
LX
405 if (migrate) {
406 if (flags & EXT4_EXTENTS_FL)
407 err = ext4_ext_migrate(inode);
408 else
409 err = ext4_ind_migrate(inode);
410 }
411
412flags_out:
413 return err;
414}
415
416#ifdef CONFIG_QUOTA
417static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
418{
419 struct inode *inode = file_inode(filp);
420 struct super_block *sb = inode->i_sb;
421 struct ext4_inode_info *ei = EXT4_I(inode);
422 int err, rc;
423 handle_t *handle;
424 kprojid_t kprojid;
425 struct ext4_iloc iloc;
426 struct ext4_inode *raw_inode;
079788d0 427 struct dquot *transfer_to[MAXQUOTAS] = { };
9b7365fc 428
0b7b7779 429 if (!ext4_has_feature_project(sb)) {
9b7365fc
LX
430 if (projid != EXT4_DEF_PROJID)
431 return -EOPNOTSUPP;
432 else
433 return 0;
434 }
435
436 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
437 return -EOPNOTSUPP;
438
439 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
440
441 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
442 return 0;
443
9b7365fc 444 err = -EPERM;
9b7365fc 445 /* Is it quota file? Do not allow user to mess with it */
02749a4c 446 if (ext4_is_quota_file(inode))
dc7ac6c4 447 return err;
9b7365fc
LX
448
449 err = ext4_get_inode_loc(inode, &iloc);
450 if (err)
dc7ac6c4 451 return err;
9b7365fc
LX
452
453 raw_inode = ext4_raw_inode(&iloc);
454 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
c03b45b8
MX
455 err = ext4_expand_extra_isize(inode,
456 EXT4_SB(sb)->s_want_extra_isize,
457 &iloc);
458 if (err)
dc7ac6c4 459 return err;
c03b45b8 460 } else {
9b7365fc 461 brelse(iloc.bh);
9b7365fc 462 }
9b7365fc 463
182a79e0
WS
464 err = dquot_initialize(inode);
465 if (err)
466 return err;
9b7365fc
LX
467
468 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
469 EXT4_QUOTA_INIT_BLOCKS(sb) +
470 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
dc7ac6c4
WS
471 if (IS_ERR(handle))
472 return PTR_ERR(handle);
9b7365fc
LX
473
474 err = ext4_reserve_inode_write(handle, inode, &iloc);
475 if (err)
476 goto out_stop;
477
079788d0
WS
478 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
479 if (!IS_ERR(transfer_to[PRJQUOTA])) {
7a9ca53a
TE
480
481 /* __dquot_transfer() calls back ext4_get_inode_usage() which
482 * counts xattr inode references.
483 */
484 down_read(&EXT4_I(inode)->xattr_sem);
079788d0 485 err = __dquot_transfer(inode, transfer_to);
7a9ca53a 486 up_read(&EXT4_I(inode)->xattr_sem);
079788d0
WS
487 dqput(transfer_to[PRJQUOTA]);
488 if (err)
489 goto out_dirty;
9b7365fc 490 }
079788d0 491
9b7365fc 492 EXT4_I(inode)->i_projid = kprojid;
eeca7ea1 493 inode->i_ctime = current_time(inode);
9b7365fc
LX
494out_dirty:
495 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
496 if (!err)
497 err = rc;
498out_stop:
499 ext4_journal_stop(handle);
9b7365fc
LX
500 return err;
501}
502#else
503static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
504{
505 if (projid != EXT4_DEF_PROJID)
506 return -EOPNOTSUPP;
507 return 0;
508}
509#endif
510
511/* Transfer internal flags to xflags */
512static inline __u32 ext4_iflags_to_xflags(unsigned long iflags)
513{
514 __u32 xflags = 0;
515
516 if (iflags & EXT4_SYNC_FL)
517 xflags |= FS_XFLAG_SYNC;
518 if (iflags & EXT4_IMMUTABLE_FL)
519 xflags |= FS_XFLAG_IMMUTABLE;
520 if (iflags & EXT4_APPEND_FL)
521 xflags |= FS_XFLAG_APPEND;
522 if (iflags & EXT4_NODUMP_FL)
523 xflags |= FS_XFLAG_NODUMP;
524 if (iflags & EXT4_NOATIME_FL)
525 xflags |= FS_XFLAG_NOATIME;
526 if (iflags & EXT4_PROJINHERIT_FL)
527 xflags |= FS_XFLAG_PROJINHERIT;
528 return xflags;
529}
530
d14e7683
JK
531#define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
532 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
533 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT)
534
9b7365fc
LX
535/* Transfer xflags flags to internal */
536static inline unsigned long ext4_xflags_to_iflags(__u32 xflags)
537{
538 unsigned long iflags = 0;
539
540 if (xflags & FS_XFLAG_SYNC)
541 iflags |= EXT4_SYNC_FL;
542 if (xflags & FS_XFLAG_IMMUTABLE)
543 iflags |= EXT4_IMMUTABLE_FL;
544 if (xflags & FS_XFLAG_APPEND)
545 iflags |= EXT4_APPEND_FL;
546 if (xflags & FS_XFLAG_NODUMP)
547 iflags |= EXT4_NODUMP_FL;
548 if (xflags & FS_XFLAG_NOATIME)
549 iflags |= EXT4_NOATIME_FL;
550 if (xflags & FS_XFLAG_PROJINHERIT)
551 iflags |= EXT4_PROJINHERIT_FL;
552
553 return iflags;
554}
555
1a20a630 556static int ext4_shutdown(struct super_block *sb, unsigned long arg)
783d9485
TT
557{
558 struct ext4_sb_info *sbi = EXT4_SB(sb);
559 __u32 flags;
560
561 if (!capable(CAP_SYS_ADMIN))
562 return -EPERM;
563
564 if (get_user(flags, (__u32 __user *)arg))
565 return -EFAULT;
566
567 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
568 return -EINVAL;
569
570 if (ext4_forced_shutdown(sbi))
571 return 0;
572
573 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
ccf0f32a 574 trace_ext4_shutdown(sb, flags);
783d9485
TT
575
576 switch (flags) {
577 case EXT4_GOING_FLAGS_DEFAULT:
578 freeze_bdev(sb->s_bdev);
579 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
580 thaw_bdev(sb->s_bdev, sb);
581 break;
582 case EXT4_GOING_FLAGS_LOGFLUSH:
583 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
584 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
585 (void) ext4_force_commit(sb);
fb7c0244 586 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
783d9485
TT
587 }
588 break;
589 case EXT4_GOING_FLAGS_NOLOGFLUSH:
590 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
a6d9946b 591 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
fb7c0244 592 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
783d9485
TT
593 break;
594 default:
595 return -EINVAL;
596 }
597 clear_opt(sb, DISCARD);
598 return 0;
599}
600
0c9ec4be
DW
601struct getfsmap_info {
602 struct super_block *gi_sb;
603 struct fsmap_head __user *gi_data;
604 unsigned int gi_idx;
605 __u32 gi_last_flags;
606};
607
608static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
609{
610 struct getfsmap_info *info = priv;
611 struct fsmap fm;
612
613 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
614
615 info->gi_last_flags = xfm->fmr_flags;
616 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
617 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
618 sizeof(struct fsmap)))
619 return -EFAULT;
620
621 return 0;
622}
623
624static int ext4_ioc_getfsmap(struct super_block *sb,
625 struct fsmap_head __user *arg)
626{
0ba33fac 627 struct getfsmap_info info = { NULL };
0c9ec4be
DW
628 struct ext4_fsmap_head xhead = {0};
629 struct fsmap_head head;
630 bool aborted = false;
631 int error;
632
633 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
634 return -EFAULT;
635 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
636 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
637 sizeof(head.fmh_keys[0].fmr_reserved)) ||
638 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
639 sizeof(head.fmh_keys[1].fmr_reserved)))
640 return -EINVAL;
641 /*
642 * ext4 doesn't report file extents at all, so the only valid
643 * file offsets are the magic ones (all zeroes or all ones).
644 */
645 if (head.fmh_keys[0].fmr_offset ||
646 (head.fmh_keys[1].fmr_offset != 0 &&
647 head.fmh_keys[1].fmr_offset != -1ULL))
648 return -EINVAL;
649
650 xhead.fmh_iflags = head.fmh_iflags;
651 xhead.fmh_count = head.fmh_count;
652 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
653 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
654
655 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
656 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
657
658 info.gi_sb = sb;
659 info.gi_data = arg;
660 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
661 if (error == EXT4_QUERY_RANGE_ABORT) {
662 error = 0;
663 aborted = true;
664 } else if (error)
665 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
e145b35b
AV
685static 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
695 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
702 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);
709 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
710 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
7b0e492e 723static void ext4_fill_fsxattr(struct inode *inode, struct fsxattr *fa)
dc7ac6c4 724{
7b0e492e 725 struct ext4_inode_info *ei = EXT4_I(inode);
dc7ac6c4 726
7b0e492e
DW
727 simple_fill_fsxattr(fa, ext4_iflags_to_xflags(ei->i_flags &
728 EXT4_FL_USER_VISIBLE));
dc7ac6c4 729
7b0e492e
DW
730 if (ext4_has_feature_project(inode->i_sb))
731 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
dc7ac6c4
WS
732}
733
bb5835ed
TT
734/* copied from fs/ioctl.c */
735static int fiemap_check_ranges(struct super_block *sb,
736 u64 start, u64 len, u64 *new_len)
737{
738 u64 maxbytes = (u64) sb->s_maxbytes;
739
740 *new_len = len;
741
742 if (len == 0)
743 return -EINVAL;
744
745 if (start > maxbytes)
746 return -EFBIG;
747
748 /*
749 * Shrink request scope to what the fs can actually handle.
750 */
751 if (len > maxbytes || (maxbytes - len) < start)
752 *new_len = maxbytes - start;
753
754 return 0;
755}
756
757/* So that the fiemap access checks can't overflow on 32 bit machines. */
758#define FIEMAP_MAX_EXTENTS (UINT_MAX / sizeof(struct fiemap_extent))
759
760static int ext4_ioctl_get_es_cache(struct file *filp, unsigned long arg)
761{
762 struct fiemap fiemap;
763 struct fiemap __user *ufiemap = (struct fiemap __user *) arg;
764 struct fiemap_extent_info fieinfo = { 0, };
765 struct inode *inode = file_inode(filp);
766 struct super_block *sb = inode->i_sb;
767 u64 len;
768 int error;
769
770 if (copy_from_user(&fiemap, ufiemap, sizeof(fiemap)))
771 return -EFAULT;
772
773 if (fiemap.fm_extent_count > FIEMAP_MAX_EXTENTS)
774 return -EINVAL;
775
776 error = fiemap_check_ranges(sb, fiemap.fm_start, fiemap.fm_length,
777 &len);
778 if (error)
779 return error;
780
781 fieinfo.fi_flags = fiemap.fm_flags;
782 fieinfo.fi_extents_max = fiemap.fm_extent_count;
783 fieinfo.fi_extents_start = ufiemap->fm_extents;
784
785 if (fiemap.fm_extent_count != 0 &&
786 !access_ok(fieinfo.fi_extents_start,
787 fieinfo.fi_extents_max * sizeof(struct fiemap_extent)))
788 return -EFAULT;
789
790 if (fieinfo.fi_flags & FIEMAP_FLAG_SYNC)
791 filemap_write_and_wait(inode->i_mapping);
792
793 error = ext4_get_es_cache(inode, &fieinfo, fiemap.fm_start, len);
794 fiemap.fm_flags = fieinfo.fi_flags;
795 fiemap.fm_mapped_extents = fieinfo.fi_extents_mapped;
796 if (copy_to_user(ufiemap, &fiemap, sizeof(fiemap)))
797 error = -EFAULT;
798
799 return error;
800}
801
5cdd7b2d 802long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
ac27a0ec 803{
496ad9aa 804 struct inode *inode = file_inode(filp);
bab08ab9 805 struct super_block *sb = inode->i_sb;
617ba13b 806 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec 807 unsigned int flags;
ac27a0ec 808
af5bc92d 809 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
ac27a0ec
DK
810
811 switch (cmd) {
0c9ec4be
DW
812 case FS_IOC_GETFSMAP:
813 return ext4_ioc_getfsmap(sb, (void __user *)arg);
617ba13b
MC
814 case EXT4_IOC_GETFLAGS:
815 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
7ddf79a1
WS
816 if (S_ISREG(inode->i_mode))
817 flags &= ~EXT4_PROJINHERIT_FL;
ac27a0ec 818 return put_user(flags, (int __user *) arg);
617ba13b 819 case EXT4_IOC_SETFLAGS: {
9b7365fc 820 int err;
ac27a0ec 821
2e149670 822 if (!inode_owner_or_capable(inode))
ac27a0ec
DK
823 return -EACCES;
824
825 if (get_user(flags, (int __user *) arg))
826 return -EFAULT;
827
d14e7683
JK
828 if (flags & ~EXT4_FL_USER_VISIBLE)
829 return -EOPNOTSUPP;
830 /*
831 * chattr(1) grabs flags via GETFLAGS, modifies the result and
832 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
833 * more restrictive than just silently masking off visible but
834 * not settable flags as we always did.
835 */
836 flags &= EXT4_FL_USER_MODIFIABLE;
837 if (ext4_mask_flags(inode->i_mode, flags) != flags)
838 return -EOPNOTSUPP;
839
a561be71 840 err = mnt_want_write_file(filp);
42a74f20
DH
841 if (err)
842 return err;
843
5955102c 844 inode_lock(inode);
2e538403
DW
845 err = ext4_ioctl_check_immutable(inode,
846 from_kprojid(&init_user_ns, ei->i_projid),
847 flags);
848 if (!err)
849 err = ext4_ioctl_setflags(inode, flags);
5955102c 850 inode_unlock(inode);
2a79f17e 851 mnt_drop_write_file(filp);
ac27a0ec
DK
852 return err;
853 }
617ba13b
MC
854 case EXT4_IOC_GETVERSION:
855 case EXT4_IOC_GETVERSION_OLD:
ac27a0ec 856 return put_user(inode->i_generation, (int __user *) arg);
617ba13b
MC
857 case EXT4_IOC_SETVERSION:
858 case EXT4_IOC_SETVERSION_OLD: {
ac27a0ec 859 handle_t *handle;
617ba13b 860 struct ext4_iloc iloc;
ac27a0ec
DK
861 __u32 generation;
862 int err;
863
2e149670 864 if (!inode_owner_or_capable(inode))
ac27a0ec 865 return -EPERM;
42a74f20 866
9aa5d32b 867 if (ext4_has_metadata_csum(inode->i_sb)) {
814525f4
DW
868 ext4_warning(sb, "Setting inode version is not "
869 "supported with metadata_csum enabled.");
870 return -ENOTTY;
871 }
872
a561be71 873 err = mnt_want_write_file(filp);
42a74f20
DH
874 if (err)
875 return err;
876 if (get_user(generation, (int __user *) arg)) {
877 err = -EFAULT;
878 goto setversion_out;
879 }
ac27a0ec 880
5955102c 881 inode_lock(inode);
9924a92a 882 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
42a74f20
DH
883 if (IS_ERR(handle)) {
884 err = PTR_ERR(handle);
6c2155b9 885 goto unlock_out;
42a74f20 886 }
617ba13b 887 err = ext4_reserve_inode_write(handle, inode, &iloc);
ac27a0ec 888 if (err == 0) {
eeca7ea1 889 inode->i_ctime = current_time(inode);
ac27a0ec 890 inode->i_generation = generation;
617ba13b 891 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
ac27a0ec 892 }
617ba13b 893 ext4_journal_stop(handle);
6c2155b9
DH
894
895unlock_out:
5955102c 896 inode_unlock(inode);
42a74f20 897setversion_out:
2a79f17e 898 mnt_drop_write_file(filp);
ac27a0ec
DK
899 return err;
900 }
617ba13b
MC
901 case EXT4_IOC_GROUP_EXTEND: {
902 ext4_fsblk_t n_blocks_count;
ac046f1d 903 int err, err2=0;
ac27a0ec 904
8f82f840
YY
905 err = ext4_resize_begin(sb);
906 if (err)
907 return err;
ac27a0ec 908
014a1770
DH
909 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
910 err = -EFAULT;
911 goto group_extend_out;
912 }
ac27a0ec 913
e2b911c5 914 if (ext4_has_feature_bigalloc(sb)) {
bab08ab9
TT
915 ext4_msg(sb, KERN_ERR,
916 "Online resizing not supported with bigalloc");
014a1770
DH
917 err = -EOPNOTSUPP;
918 goto group_extend_out;
bab08ab9
TT
919 }
920
a561be71 921 err = mnt_want_write_file(filp);
42a74f20 922 if (err)
014a1770 923 goto group_extend_out;
42a74f20 924
617ba13b 925 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
ac046f1d
PT
926 if (EXT4_SB(sb)->s_journal) {
927 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
928 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
929 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
930 }
7ffe1ea8
HK
931 if (err == 0)
932 err = err2;
2a79f17e 933 mnt_drop_write_file(filp);
014a1770 934group_extend_out:
8f82f840 935 ext4_resize_end(sb);
ac27a0ec
DK
936 return err;
937 }
748de673
AF
938
939 case EXT4_IOC_MOVE_EXT: {
940 struct move_extent me;
2903ff01
AV
941 struct fd donor;
942 int err;
748de673 943
4a58579b
AF
944 if (!(filp->f_mode & FMODE_READ) ||
945 !(filp->f_mode & FMODE_WRITE))
946 return -EBADF;
947
748de673
AF
948 if (copy_from_user(&me,
949 (struct move_extent __user *)arg, sizeof(me)))
950 return -EFAULT;
4a58579b 951 me.moved_len = 0;
748de673 952
2903ff01
AV
953 donor = fdget(me.donor_fd);
954 if (!donor.file)
748de673
AF
955 return -EBADF;
956
2903ff01 957 if (!(donor.file->f_mode & FMODE_WRITE)) {
4a58579b
AF
958 err = -EBADF;
959 goto mext_out;
748de673
AF
960 }
961
e2b911c5 962 if (ext4_has_feature_bigalloc(sb)) {
bab08ab9
TT
963 ext4_msg(sb, KERN_ERR,
964 "Online defrag not supported with bigalloc");
399c9b86
AV
965 err = -EOPNOTSUPP;
966 goto mext_out;
73f34a5e
RZ
967 } else if (IS_DAX(inode)) {
968 ext4_msg(sb, KERN_ERR,
969 "Online defrag not supported with DAX");
970 err = -EOPNOTSUPP;
971 goto mext_out;
bab08ab9
TT
972 }
973
a561be71 974 err = mnt_want_write_file(filp);
4a58579b
AF
975 if (err)
976 goto mext_out;
977
2903ff01 978 err = ext4_move_extents(filp, donor.file, me.orig_start,
748de673 979 me.donor_start, me.len, &me.moved_len);
2a79f17e 980 mnt_drop_write_file(filp);
748de673 981
60e6679e 982 if (copy_to_user((struct move_extent __user *)arg,
c437b273 983 &me, sizeof(me)))
4a58579b
AF
984 err = -EFAULT;
985mext_out:
2903ff01 986 fdput(donor);
748de673
AF
987 return err;
988 }
989
617ba13b
MC
990 case EXT4_IOC_GROUP_ADD: {
991 struct ext4_new_group_data input;
ac27a0ec 992
617ba13b 993 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
e145b35b
AV
994 sizeof(input)))
995 return -EFAULT;
42a74f20 996
e145b35b 997 return ext4_ioctl_group_add(filp, &input);
ac27a0ec
DK
998 }
999
c14c6fd5 1000 case EXT4_IOC_MIGRATE:
2a43a878
AK
1001 {
1002 int err;
2e149670 1003 if (!inode_owner_or_capable(inode))
2a43a878
AK
1004 return -EACCES;
1005
a561be71 1006 err = mnt_want_write_file(filp);
2a43a878
AK
1007 if (err)
1008 return err;
1009 /*
1010 * inode_mutex prevent write and truncate on the file.
1011 * Read still goes through. We take i_data_sem in
1012 * ext4_ext_swap_inode_data before we switch the
1013 * inode format to prevent read.
1014 */
5955102c 1015 inode_lock((inode));
2a43a878 1016 err = ext4_ext_migrate(inode);
5955102c 1017 inode_unlock((inode));
2a79f17e 1018 mnt_drop_write_file(filp);
2a43a878
AK
1019 return err;
1020 }
c14c6fd5 1021
ccd2506b
TT
1022 case EXT4_IOC_ALLOC_DA_BLKS:
1023 {
1024 int err;
2e149670 1025 if (!inode_owner_or_capable(inode))
ccd2506b
TT
1026 return -EACCES;
1027
a561be71 1028 err = mnt_want_write_file(filp);
ccd2506b
TT
1029 if (err)
1030 return err;
1031 err = ext4_alloc_da_blocks(inode);
2a79f17e 1032 mnt_drop_write_file(filp);
ccd2506b
TT
1033 return err;
1034 }
1035
393d1d1d 1036 case EXT4_IOC_SWAP_BOOT:
3e67cfad
DM
1037 {
1038 int err;
393d1d1d
DTB
1039 if (!(filp->f_mode & FMODE_WRITE))
1040 return -EBADF;
3e67cfad
DM
1041 err = mnt_want_write_file(filp);
1042 if (err)
1043 return err;
1044 err = swap_inode_boot_loader(sb, inode);
1045 mnt_drop_write_file(filp);
1046 return err;
1047 }
393d1d1d 1048
19c5246d
YY
1049 case EXT4_IOC_RESIZE_FS: {
1050 ext4_fsblk_t n_blocks_count;
19c5246d 1051 int err = 0, err2 = 0;
7f511862 1052 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
19c5246d 1053
19c5246d
YY
1054 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1055 sizeof(__u64))) {
1056 return -EFAULT;
1057 }
1058
19c5246d
YY
1059 err = ext4_resize_begin(sb);
1060 if (err)
1061 return err;
1062
8cae6f71 1063 err = mnt_want_write_file(filp);
19c5246d
YY
1064 if (err)
1065 goto resizefs_out;
1066
1067 err = ext4_resize_fs(sb, n_blocks_count);
1068 if (EXT4_SB(sb)->s_journal) {
1069 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1070 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
1071 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1072 }
1073 if (err == 0)
1074 err = err2;
8cae6f71 1075 mnt_drop_write_file(filp);
310a997f 1076 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
7f511862
TT
1077 ext4_has_group_desc_csum(sb) &&
1078 test_opt(sb, INIT_INODE_TABLE))
1079 err = ext4_register_li_request(sb, o_group);
1080
19c5246d
YY
1081resizefs_out:
1082 ext4_resize_end(sb);
1083 return err;
1084 }
1085
e681c047
LC
1086 case FITRIM:
1087 {
41431792 1088 struct request_queue *q = bdev_get_queue(sb->s_bdev);
e681c047
LC
1089 struct fstrim_range range;
1090 int ret = 0;
1091
1092 if (!capable(CAP_SYS_ADMIN))
1093 return -EPERM;
1094
41431792
LC
1095 if (!blk_queue_discard(q))
1096 return -EOPNOTSUPP;
1097
18915b58
DW
1098 /*
1099 * We haven't replayed the journal, so we cannot use our
1100 * block-bitmap-guided storage zapping commands.
1101 */
1102 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1103 return -EROFS;
1104
e6705f7c 1105 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
e681c047
LC
1106 sizeof(range)))
1107 return -EFAULT;
1108
5c2ed62f
LC
1109 range.minlen = max((unsigned int)range.minlen,
1110 q->limits.discard_granularity);
e681c047
LC
1111 ret = ext4_trim_fs(sb, &range);
1112 if (ret < 0)
1113 return ret;
1114
e6705f7c 1115 if (copy_to_user((struct fstrim_range __user *)arg, &range,
e681c047
LC
1116 sizeof(range)))
1117 return -EFAULT;
1118
1119 return 0;
1120 }
7869a4a6
TT
1121 case EXT4_IOC_PRECACHE_EXTENTS:
1122 return ext4_ext_precache(inode);
9bd8212f 1123
db717d8e 1124 case EXT4_IOC_SET_ENCRYPTION_POLICY:
9a200d07
RW
1125 if (!ext4_has_feature_encrypt(sb))
1126 return -EOPNOTSUPP;
db717d8e 1127 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
9a200d07 1128
9bd8212f 1129 case EXT4_IOC_GET_ENCRYPTION_PWSALT: {
643fa961 1130#ifdef CONFIG_FS_ENCRYPTION
9bd8212f
MH
1131 int err, err2;
1132 struct ext4_sb_info *sbi = EXT4_SB(sb);
1133 handle_t *handle;
1134
35997d1c 1135 if (!ext4_has_feature_encrypt(sb))
9bd8212f
MH
1136 return -EOPNOTSUPP;
1137 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
1138 err = mnt_want_write_file(filp);
1139 if (err)
1140 return err;
1141 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
1142 if (IS_ERR(handle)) {
1143 err = PTR_ERR(handle);
1144 goto pwsalt_err_exit;
1145 }
1146 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
1147 if (err)
1148 goto pwsalt_err_journal;
1149 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
1150 err = ext4_handle_dirty_metadata(handle, NULL,
1151 sbi->s_sbh);
1152 pwsalt_err_journal:
1153 err2 = ext4_journal_stop(handle);
1154 if (err2 && !err)
1155 err = err2;
1156 pwsalt_err_exit:
1157 mnt_drop_write_file(filp);
1158 if (err)
1159 return err;
1160 }
b4ab9e29
FF
1161 if (copy_to_user((void __user *) arg,
1162 sbi->s_es->s_encrypt_pw_salt, 16))
9bd8212f
MH
1163 return -EFAULT;
1164 return 0;
ba679017
EB
1165#else
1166 return -EOPNOTSUPP;
1167#endif
9bd8212f 1168 }
db717d8e 1169 case EXT4_IOC_GET_ENCRYPTION_POLICY:
0642ea24
CY
1170 if (!ext4_has_feature_encrypt(sb))
1171 return -EOPNOTSUPP;
db717d8e 1172 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
9bd8212f 1173
29b3692e
EB
1174 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1175 if (!ext4_has_feature_encrypt(sb))
1176 return -EOPNOTSUPP;
1177 return fscrypt_ioctl_get_policy_ex(filp, (void __user *)arg);
1178
1179 case FS_IOC_ADD_ENCRYPTION_KEY:
1180 if (!ext4_has_feature_encrypt(sb))
1181 return -EOPNOTSUPP;
1182 return fscrypt_ioctl_add_key(filp, (void __user *)arg);
1183
1184 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1185 if (!ext4_has_feature_encrypt(sb))
1186 return -EOPNOTSUPP;
1187 return fscrypt_ioctl_remove_key(filp, (void __user *)arg);
1188
1189 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1190 if (!ext4_has_feature_encrypt(sb))
1191 return -EOPNOTSUPP;
1192 return fscrypt_ioctl_remove_key_all_users(filp,
1193 (void __user *)arg);
1194 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1195 if (!ext4_has_feature_encrypt(sb))
1196 return -EOPNOTSUPP;
1197 return fscrypt_ioctl_get_key_status(filp, (void __user *)arg);
1198
7ec9f3b4
EB
1199 case FS_IOC_GET_ENCRYPTION_NONCE:
1200 if (!ext4_has_feature_encrypt(sb))
1201 return -EOPNOTSUPP;
1202 return fscrypt_ioctl_get_nonce(filp, (void __user *)arg);
1203
b0c013e2
TT
1204 case EXT4_IOC_CLEAR_ES_CACHE:
1205 {
1206 if (!inode_owner_or_capable(inode))
1207 return -EACCES;
1208 ext4_clear_inode_es(inode);
1209 return 0;
1210 }
1211
1ad3ea6e
TT
1212 case EXT4_IOC_GETSTATE:
1213 {
1214 __u32 state = 0;
1215
1216 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED))
1217 state |= EXT4_STATE_FLAG_EXT_PRECACHED;
1218 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
1219 state |= EXT4_STATE_FLAG_NEW;
1220 if (ext4_test_inode_state(inode, EXT4_STATE_NEWENTRY))
1221 state |= EXT4_STATE_FLAG_NEWENTRY;
1222 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE))
1223 state |= EXT4_STATE_FLAG_DA_ALLOC_CLOSE;
1224
1225 return put_user(state, (__u32 __user *) arg);
1226 }
1227
bb5835ed
TT
1228 case EXT4_IOC_GET_ES_CACHE:
1229 return ext4_ioctl_get_es_cache(filp, arg);
1230
9b7365fc
LX
1231 case EXT4_IOC_FSGETXATTR:
1232 {
1233 struct fsxattr fa;
1234
7b0e492e 1235 ext4_fill_fsxattr(inode, &fa);
9b7365fc
LX
1236
1237 if (copy_to_user((struct fsxattr __user *)arg,
1238 &fa, sizeof(fa)))
1239 return -EFAULT;
1240 return 0;
1241 }
1242 case EXT4_IOC_FSSETXATTR:
1243 {
7b0e492e 1244 struct fsxattr fa, old_fa;
9b7365fc
LX
1245 int err;
1246
1247 if (copy_from_user(&fa, (struct fsxattr __user *)arg,
1248 sizeof(fa)))
1249 return -EFAULT;
1250
1251 /* Make sure caller has proper permission */
1252 if (!inode_owner_or_capable(inode))
1253 return -EACCES;
1254
d14e7683
JK
1255 if (fa.fsx_xflags & ~EXT4_SUPPORTED_FS_XFLAGS)
1256 return -EOPNOTSUPP;
1257
1258 flags = ext4_xflags_to_iflags(fa.fsx_xflags);
1259 if (ext4_mask_flags(inode->i_mode, flags) != flags)
1260 return -EOPNOTSUPP;
1261
9b7365fc
LX
1262 err = mnt_want_write_file(filp);
1263 if (err)
1264 return err;
1265
5955102c 1266 inode_lock(inode);
7b0e492e 1267 ext4_fill_fsxattr(inode, &old_fa);
7b0e492e 1268 err = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
dc7ac6c4
WS
1269 if (err)
1270 goto out;
9b7365fc
LX
1271 flags = (ei->i_flags & ~EXT4_FL_XFLAG_VISIBLE) |
1272 (flags & EXT4_FL_XFLAG_VISIBLE);
2e538403
DW
1273 err = ext4_ioctl_check_immutable(inode, fa.fsx_projid, flags);
1274 if (err)
1275 goto out;
9b7365fc 1276 err = ext4_ioctl_setflags(inode, flags);
9b7365fc 1277 if (err)
dc7ac6c4 1278 goto out;
9b7365fc 1279 err = ext4_ioctl_setproject(filp, fa.fsx_projid);
dc7ac6c4
WS
1280out:
1281 inode_unlock(inode);
1282 mnt_drop_write_file(filp);
1283 return err;
9b7365fc 1284 }
e9be2ac7
TT
1285 case EXT4_IOC_SHUTDOWN:
1286 return ext4_shutdown(sb, arg);
c93d8f88
EB
1287
1288 case FS_IOC_ENABLE_VERITY:
1289 if (!ext4_has_feature_verity(sb))
1290 return -EOPNOTSUPP;
1291 return fsverity_ioctl_enable(filp, (const void __user *)arg);
1292
1293 case FS_IOC_MEASURE_VERITY:
1294 if (!ext4_has_feature_verity(sb))
1295 return -EOPNOTSUPP;
1296 return fsverity_ioctl_measure(filp, (void __user *)arg);
1297
ac27a0ec
DK
1298 default:
1299 return -ENOTTY;
1300 }
1301}
1302
1303#ifdef CONFIG_COMPAT
617ba13b 1304long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
ac27a0ec 1305{
ac27a0ec
DK
1306 /* These are just misnamed, they actually get/put from/to user an int */
1307 switch (cmd) {
617ba13b
MC
1308 case EXT4_IOC32_GETFLAGS:
1309 cmd = EXT4_IOC_GETFLAGS;
ac27a0ec 1310 break;
617ba13b
MC
1311 case EXT4_IOC32_SETFLAGS:
1312 cmd = EXT4_IOC_SETFLAGS;
ac27a0ec 1313 break;
617ba13b
MC
1314 case EXT4_IOC32_GETVERSION:
1315 cmd = EXT4_IOC_GETVERSION;
ac27a0ec 1316 break;
617ba13b
MC
1317 case EXT4_IOC32_SETVERSION:
1318 cmd = EXT4_IOC_SETVERSION;
ac27a0ec 1319 break;
617ba13b
MC
1320 case EXT4_IOC32_GROUP_EXTEND:
1321 cmd = EXT4_IOC_GROUP_EXTEND;
ac27a0ec 1322 break;
617ba13b
MC
1323 case EXT4_IOC32_GETVERSION_OLD:
1324 cmd = EXT4_IOC_GETVERSION_OLD;
ac27a0ec 1325 break;
617ba13b
MC
1326 case EXT4_IOC32_SETVERSION_OLD:
1327 cmd = EXT4_IOC_SETVERSION_OLD;
ac27a0ec 1328 break;
617ba13b
MC
1329 case EXT4_IOC32_GETRSVSZ:
1330 cmd = EXT4_IOC_GETRSVSZ;
ac27a0ec 1331 break;
617ba13b
MC
1332 case EXT4_IOC32_SETRSVSZ:
1333 cmd = EXT4_IOC_SETRSVSZ;
ac27a0ec 1334 break;
4d92dc0f
BH
1335 case EXT4_IOC32_GROUP_ADD: {
1336 struct compat_ext4_new_group_input __user *uinput;
e145b35b 1337 struct ext4_new_group_data input;
4d92dc0f
BH
1338 int err;
1339
1340 uinput = compat_ptr(arg);
1341 err = get_user(input.group, &uinput->group);
1342 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1343 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1344 err |= get_user(input.inode_table, &uinput->inode_table);
1345 err |= get_user(input.blocks_count, &uinput->blocks_count);
1346 err |= get_user(input.reserved_blocks,
1347 &uinput->reserved_blocks);
1348 if (err)
1349 return -EFAULT;
e145b35b 1350 return ext4_ioctl_group_add(file, &input);
4d92dc0f 1351 }
b684b2ee 1352 case EXT4_IOC_MOVE_EXT:
19c5246d 1353 case EXT4_IOC_RESIZE_FS:
314999dc 1354 case FITRIM:
7869a4a6 1355 case EXT4_IOC_PRECACHE_EXTENTS:
9bd8212f
MH
1356 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1357 case EXT4_IOC_GET_ENCRYPTION_PWSALT:
1358 case EXT4_IOC_GET_ENCRYPTION_POLICY:
29b3692e
EB
1359 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1360 case FS_IOC_ADD_ENCRYPTION_KEY:
1361 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1362 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1363 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
7ec9f3b4 1364 case FS_IOC_GET_ENCRYPTION_NONCE:
e9be2ac7 1365 case EXT4_IOC_SHUTDOWN:
0c9ec4be 1366 case FS_IOC_GETFSMAP:
c93d8f88
EB
1367 case FS_IOC_ENABLE_VERITY:
1368 case FS_IOC_MEASURE_VERITY:
b0c013e2 1369 case EXT4_IOC_CLEAR_ES_CACHE:
1ad3ea6e 1370 case EXT4_IOC_GETSTATE:
bb5835ed 1371 case EXT4_IOC_GET_ES_CACHE:
a54d8d34
MC
1372 case EXT4_IOC_FSGETXATTR:
1373 case EXT4_IOC_FSSETXATTR:
b684b2ee 1374 break;
ac27a0ec
DK
1375 default:
1376 return -ENOIOCTLCMD;
1377 }
5cdd7b2d 1378 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
ac27a0ec
DK
1379}
1380#endif