]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/ext4/ioctl.c
Merge tag 'linux-kselftest-4.13-rc6-fixes' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-artful-kernel.git] / fs / ext4 / ioctl.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/ioctl.c
ac27a0ec
DK
3 *
4 * Copyright (C) 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 */
9
10#include <linux/fs.h>
ac27a0ec 11#include <linux/capability.h>
ac27a0ec
DK
12#include <linux/time.h>
13#include <linux/compat.h>
42a74f20 14#include <linux/mount.h>
748de673 15#include <linux/file.h>
9b7365fc 16#include <linux/quotaops.h>
8da4b8c4 17#include <linux/uuid.h>
7c0f6ba6 18#include <linux/uaccess.h>
783d9485 19#include <linux/delay.h>
3dcf5451
CH
20#include "ext4_jbd2.h"
21#include "ext4.h"
0c9ec4be
DW
22#include <linux/fsmap.h>
23#include "fsmap.h"
24#include <trace/events/ext4.h>
ac27a0ec 25
393d1d1d
DTB
26/**
27 * Swap memory between @a and @b for @len bytes.
28 *
29 * @a: pointer to first memory area
30 * @b: pointer to second memory area
31 * @len: number of bytes to swap
32 *
33 */
34static void memswap(void *a, void *b, size_t len)
35{
36 unsigned char *ap, *bp;
393d1d1d
DTB
37
38 ap = (unsigned char *)a;
39 bp = (unsigned char *)b;
40 while (len-- > 0) {
4b7e2db5 41 swap(*ap, *bp);
393d1d1d
DTB
42 ap++;
43 bp++;
44 }
45}
46
47/**
48 * Swap i_data and associated attributes between @inode1 and @inode2.
49 * This function is used for the primary swap between inode1 and inode2
50 * and also to revert this primary swap in case of errors.
51 *
52 * Therefore you have to make sure, that calling this method twice
53 * will revert all changes.
54 *
55 * @inode1: pointer to first inode
56 * @inode2: pointer to second inode
57 */
58static void swap_inode_data(struct inode *inode1, struct inode *inode2)
59{
60 loff_t isize;
61 struct ext4_inode_info *ei1;
62 struct ext4_inode_info *ei2;
63
64 ei1 = EXT4_I(inode1);
65 ei2 = EXT4_I(inode2);
66
9c5d58fb
JL
67 swap(inode1->i_flags, inode2->i_flags);
68 swap(inode1->i_version, inode2->i_version);
69 swap(inode1->i_blocks, inode2->i_blocks);
70 swap(inode1->i_bytes, inode2->i_bytes);
71 swap(inode1->i_atime, inode2->i_atime);
72 swap(inode1->i_mtime, inode2->i_mtime);
393d1d1d
DTB
73
74 memswap(ei1->i_data, ei2->i_data, sizeof(ei1->i_data));
9c5d58fb
JL
75 swap(ei1->i_flags, ei2->i_flags);
76 swap(ei1->i_disksize, ei2->i_disksize);
cde2d7a7
TT
77 ext4_es_remove_extent(inode1, 0, EXT_MAX_BLOCKS);
78 ext4_es_remove_extent(inode2, 0, EXT_MAX_BLOCKS);
393d1d1d
DTB
79
80 isize = i_size_read(inode1);
81 i_size_write(inode1, i_size_read(inode2));
82 i_size_write(inode2, isize);
83}
84
85/**
86 * Swap the information from the given @inode and the inode
87 * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other
88 * important fields of the inodes.
89 *
90 * @sb: the super block of the filesystem
91 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
92 *
93 */
94static long swap_inode_boot_loader(struct super_block *sb,
95 struct inode *inode)
96{
97 handle_t *handle;
98 int err;
99 struct inode *inode_bl;
393d1d1d 100 struct ext4_inode_info *ei_bl;
d7092ae2 101 struct ext4_sb_info *sbi = EXT4_SB(sb);
393d1d1d 102
d8558a29
TT
103 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode))
104 return -EINVAL;
393d1d1d 105
d8558a29
TT
106 if (!inode_owner_or_capable(inode) || !capable(CAP_SYS_ADMIN))
107 return -EPERM;
393d1d1d 108
393d1d1d 109 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO);
d8558a29
TT
110 if (IS_ERR(inode_bl))
111 return PTR_ERR(inode_bl);
393d1d1d
DTB
112 ei_bl = EXT4_I(inode_bl);
113
114 filemap_flush(inode->i_mapping);
115 filemap_flush(inode_bl->i_mapping);
116
117 /* Protect orig inodes against a truncate and make sure,
118 * that only 1 swap_inode_boot_loader is running. */
375e289e 119 lock_two_nondirectories(inode, inode_bl);
393d1d1d
DTB
120
121 truncate_inode_pages(&inode->i_data, 0);
122 truncate_inode_pages(&inode_bl->i_data, 0);
123
124 /* Wait for all existing dio workers */
125 ext4_inode_block_unlocked_dio(inode);
126 ext4_inode_block_unlocked_dio(inode_bl);
127 inode_dio_wait(inode);
128 inode_dio_wait(inode_bl);
129
130 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
131 if (IS_ERR(handle)) {
132 err = -EINVAL;
30d29b11 133 goto journal_err_out;
393d1d1d
DTB
134 }
135
136 /* Protect extent tree against block allocations via delalloc */
137 ext4_double_down_write_data_sem(inode, inode_bl);
138
139 if (inode_bl->i_nlink == 0) {
140 /* this inode has never been used as a BOOT_LOADER */
141 set_nlink(inode_bl, 1);
142 i_uid_write(inode_bl, 0);
143 i_gid_write(inode_bl, 0);
144 inode_bl->i_flags = 0;
145 ei_bl->i_flags = 0;
146 inode_bl->i_version = 1;
147 i_size_write(inode_bl, 0);
148 inode_bl->i_mode = S_IFREG;
e2b911c5 149 if (ext4_has_feature_extents(sb)) {
393d1d1d
DTB
150 ext4_set_inode_flag(inode_bl, EXT4_INODE_EXTENTS);
151 ext4_ext_tree_init(handle, inode_bl);
152 } else
153 memset(ei_bl->i_data, 0, sizeof(ei_bl->i_data));
154 }
155
156 swap_inode_data(inode, inode_bl);
157
eeca7ea1 158 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
393d1d1d
DTB
159
160 spin_lock(&sbi->s_next_gen_lock);
161 inode->i_generation = sbi->s_next_generation++;
162 inode_bl->i_generation = sbi->s_next_generation++;
163 spin_unlock(&sbi->s_next_gen_lock);
164
165 ext4_discard_preallocations(inode);
166
167 err = ext4_mark_inode_dirty(handle, inode);
168 if (err < 0) {
169 ext4_warning(inode->i_sb,
170 "couldn't mark inode #%lu dirty (err %d)",
171 inode->i_ino, err);
172 /* Revert all changes: */
173 swap_inode_data(inode, inode_bl);
174 } else {
175 err = ext4_mark_inode_dirty(handle, inode_bl);
176 if (err < 0) {
177 ext4_warning(inode_bl->i_sb,
178 "couldn't mark inode #%lu dirty (err %d)",
179 inode_bl->i_ino, err);
180 /* Revert all changes: */
181 swap_inode_data(inode, inode_bl);
182 ext4_mark_inode_dirty(handle, inode);
183 }
184 }
393d1d1d 185 ext4_journal_stop(handle);
393d1d1d
DTB
186 ext4_double_up_write_data_sem(inode, inode_bl);
187
30d29b11 188journal_err_out:
393d1d1d
DTB
189 ext4_inode_resume_unlocked_dio(inode);
190 ext4_inode_resume_unlocked_dio(inode_bl);
375e289e 191 unlock_two_nondirectories(inode, inode_bl);
393d1d1d 192 iput(inode_bl);
393d1d1d
DTB
193 return err;
194}
195
ba679017 196#ifdef CONFIG_EXT4_FS_ENCRYPTION
9bd8212f
MH
197static int uuid_is_zero(__u8 u[16])
198{
199 int i;
200
201 for (i = 0; i < 16; i++)
202 if (u[i])
203 return 0;
204 return 1;
205}
ba679017 206#endif
9bd8212f 207
9b7365fc
LX
208static int ext4_ioctl_setflags(struct inode *inode,
209 unsigned int flags)
210{
211 struct ext4_inode_info *ei = EXT4_I(inode);
212 handle_t *handle = NULL;
fdde368e 213 int err = -EPERM, migrate = 0;
9b7365fc
LX
214 struct ext4_iloc iloc;
215 unsigned int oldflags, mask, i;
216 unsigned int jflag;
217
218 /* Is it quota file? Do not allow user to mess with it */
02749a4c 219 if (ext4_is_quota_file(inode))
9b7365fc
LX
220 goto flags_out;
221
222 oldflags = ei->i_flags;
223
224 /* The JOURNAL_DATA flag is modifiable only by root */
225 jflag = flags & EXT4_JOURNAL_DATA_FL;
226
227 /*
228 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
229 * the relevant capability.
230 *
231 * This test looks nicer. Thanks to Pauline Middelink
232 */
233 if ((flags ^ oldflags) & (EXT4_APPEND_FL | EXT4_IMMUTABLE_FL)) {
234 if (!capable(CAP_LINUX_IMMUTABLE))
235 goto flags_out;
236 }
237
238 /*
239 * The JOURNAL_DATA flag can only be changed by
240 * the relevant capability.
241 */
242 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
243 if (!capable(CAP_SYS_RESOURCE))
244 goto flags_out;
245 }
246 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
247 migrate = 1;
248
249 if (flags & EXT4_EOFBLOCKS_FL) {
250 /* we don't support adding EOFBLOCKS flag */
251 if (!(oldflags & EXT4_EOFBLOCKS_FL)) {
252 err = -EOPNOTSUPP;
253 goto flags_out;
254 }
2c98eb5e
TT
255 } else if (oldflags & EXT4_EOFBLOCKS_FL) {
256 err = ext4_truncate(inode);
257 if (err)
258 goto flags_out;
259 }
9b7365fc
LX
260
261 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
262 if (IS_ERR(handle)) {
263 err = PTR_ERR(handle);
264 goto flags_out;
265 }
266 if (IS_SYNC(inode))
267 ext4_handle_sync(handle);
268 err = ext4_reserve_inode_write(handle, inode, &iloc);
269 if (err)
270 goto flags_err;
271
272 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
273 if (!(mask & EXT4_FL_USER_MODIFIABLE))
274 continue;
f8011d93
JK
275 /* These flags get special treatment later */
276 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
277 continue;
9b7365fc
LX
278 if (mask & flags)
279 ext4_set_inode_flag(inode, i);
280 else
281 ext4_clear_inode_flag(inode, i);
282 }
283
284 ext4_set_inode_flags(inode);
eeca7ea1 285 inode->i_ctime = current_time(inode);
9b7365fc
LX
286
287 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
288flags_err:
289 ext4_journal_stop(handle);
290 if (err)
291 goto flags_out;
292
293 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL))
294 err = ext4_change_inode_journal_flag(inode, jflag);
295 if (err)
296 goto flags_out;
297 if (migrate) {
298 if (flags & EXT4_EXTENTS_FL)
299 err = ext4_ext_migrate(inode);
300 else
301 err = ext4_ind_migrate(inode);
302 }
303
304flags_out:
305 return err;
306}
307
308#ifdef CONFIG_QUOTA
309static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
310{
311 struct inode *inode = file_inode(filp);
312 struct super_block *sb = inode->i_sb;
313 struct ext4_inode_info *ei = EXT4_I(inode);
314 int err, rc;
315 handle_t *handle;
316 kprojid_t kprojid;
317 struct ext4_iloc iloc;
318 struct ext4_inode *raw_inode;
079788d0 319 struct dquot *transfer_to[MAXQUOTAS] = { };
9b7365fc 320
0b7b7779 321 if (!ext4_has_feature_project(sb)) {
9b7365fc
LX
322 if (projid != EXT4_DEF_PROJID)
323 return -EOPNOTSUPP;
324 else
325 return 0;
326 }
327
328 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
329 return -EOPNOTSUPP;
330
331 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
332
333 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
334 return 0;
335
336 err = mnt_want_write_file(filp);
337 if (err)
338 return err;
339
340 err = -EPERM;
5955102c 341 inode_lock(inode);
9b7365fc 342 /* Is it quota file? Do not allow user to mess with it */
02749a4c 343 if (ext4_is_quota_file(inode))
9b7365fc
LX
344 goto out_unlock;
345
346 err = ext4_get_inode_loc(inode, &iloc);
347 if (err)
348 goto out_unlock;
349
350 raw_inode = ext4_raw_inode(&iloc);
351 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
c03b45b8
MX
352 err = ext4_expand_extra_isize(inode,
353 EXT4_SB(sb)->s_want_extra_isize,
354 &iloc);
355 if (err)
356 goto out_unlock;
357 } else {
9b7365fc 358 brelse(iloc.bh);
9b7365fc 359 }
9b7365fc
LX
360
361 dquot_initialize(inode);
362
363 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
364 EXT4_QUOTA_INIT_BLOCKS(sb) +
365 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
366 if (IS_ERR(handle)) {
367 err = PTR_ERR(handle);
368 goto out_unlock;
369 }
370
371 err = ext4_reserve_inode_write(handle, inode, &iloc);
372 if (err)
373 goto out_stop;
374
079788d0
WS
375 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
376 if (!IS_ERR(transfer_to[PRJQUOTA])) {
7a9ca53a
TE
377
378 /* __dquot_transfer() calls back ext4_get_inode_usage() which
379 * counts xattr inode references.
380 */
381 down_read(&EXT4_I(inode)->xattr_sem);
079788d0 382 err = __dquot_transfer(inode, transfer_to);
7a9ca53a 383 up_read(&EXT4_I(inode)->xattr_sem);
079788d0
WS
384 dqput(transfer_to[PRJQUOTA]);
385 if (err)
386 goto out_dirty;
9b7365fc 387 }
079788d0 388
9b7365fc 389 EXT4_I(inode)->i_projid = kprojid;
eeca7ea1 390 inode->i_ctime = current_time(inode);
9b7365fc
LX
391out_dirty:
392 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
393 if (!err)
394 err = rc;
395out_stop:
396 ext4_journal_stop(handle);
397out_unlock:
5955102c 398 inode_unlock(inode);
9b7365fc
LX
399 mnt_drop_write_file(filp);
400 return err;
401}
402#else
403static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
404{
405 if (projid != EXT4_DEF_PROJID)
406 return -EOPNOTSUPP;
407 return 0;
408}
409#endif
410
411/* Transfer internal flags to xflags */
412static inline __u32 ext4_iflags_to_xflags(unsigned long iflags)
413{
414 __u32 xflags = 0;
415
416 if (iflags & EXT4_SYNC_FL)
417 xflags |= FS_XFLAG_SYNC;
418 if (iflags & EXT4_IMMUTABLE_FL)
419 xflags |= FS_XFLAG_IMMUTABLE;
420 if (iflags & EXT4_APPEND_FL)
421 xflags |= FS_XFLAG_APPEND;
422 if (iflags & EXT4_NODUMP_FL)
423 xflags |= FS_XFLAG_NODUMP;
424 if (iflags & EXT4_NOATIME_FL)
425 xflags |= FS_XFLAG_NOATIME;
426 if (iflags & EXT4_PROJINHERIT_FL)
427 xflags |= FS_XFLAG_PROJINHERIT;
428 return xflags;
429}
430
d14e7683
JK
431#define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
432 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
433 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT)
434
9b7365fc
LX
435/* Transfer xflags flags to internal */
436static inline unsigned long ext4_xflags_to_iflags(__u32 xflags)
437{
438 unsigned long iflags = 0;
439
440 if (xflags & FS_XFLAG_SYNC)
441 iflags |= EXT4_SYNC_FL;
442 if (xflags & FS_XFLAG_IMMUTABLE)
443 iflags |= EXT4_IMMUTABLE_FL;
444 if (xflags & FS_XFLAG_APPEND)
445 iflags |= EXT4_APPEND_FL;
446 if (xflags & FS_XFLAG_NODUMP)
447 iflags |= EXT4_NODUMP_FL;
448 if (xflags & FS_XFLAG_NOATIME)
449 iflags |= EXT4_NOATIME_FL;
450 if (xflags & FS_XFLAG_PROJINHERIT)
451 iflags |= EXT4_PROJINHERIT_FL;
452
453 return iflags;
454}
455
1a20a630 456static int ext4_shutdown(struct super_block *sb, unsigned long arg)
783d9485
TT
457{
458 struct ext4_sb_info *sbi = EXT4_SB(sb);
459 __u32 flags;
460
461 if (!capable(CAP_SYS_ADMIN))
462 return -EPERM;
463
464 if (get_user(flags, (__u32 __user *)arg))
465 return -EFAULT;
466
467 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
468 return -EINVAL;
469
470 if (ext4_forced_shutdown(sbi))
471 return 0;
472
473 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
474
475 switch (flags) {
476 case EXT4_GOING_FLAGS_DEFAULT:
477 freeze_bdev(sb->s_bdev);
478 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
479 thaw_bdev(sb->s_bdev, sb);
480 break;
481 case EXT4_GOING_FLAGS_LOGFLUSH:
482 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
483 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
484 (void) ext4_force_commit(sb);
485 jbd2_journal_abort(sbi->s_journal, 0);
486 }
487 break;
488 case EXT4_GOING_FLAGS_NOLOGFLUSH:
489 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
490 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
491 msleep(100);
492 jbd2_journal_abort(sbi->s_journal, 0);
493 }
494 break;
495 default:
496 return -EINVAL;
497 }
498 clear_opt(sb, DISCARD);
499 return 0;
500}
501
0c9ec4be
DW
502struct getfsmap_info {
503 struct super_block *gi_sb;
504 struct fsmap_head __user *gi_data;
505 unsigned int gi_idx;
506 __u32 gi_last_flags;
507};
508
509static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
510{
511 struct getfsmap_info *info = priv;
512 struct fsmap fm;
513
514 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
515
516 info->gi_last_flags = xfm->fmr_flags;
517 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
518 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
519 sizeof(struct fsmap)))
520 return -EFAULT;
521
522 return 0;
523}
524
525static int ext4_ioc_getfsmap(struct super_block *sb,
526 struct fsmap_head __user *arg)
527{
528 struct getfsmap_info info = {0};
529 struct ext4_fsmap_head xhead = {0};
530 struct fsmap_head head;
531 bool aborted = false;
532 int error;
533
534 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
535 return -EFAULT;
536 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
537 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
538 sizeof(head.fmh_keys[0].fmr_reserved)) ||
539 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
540 sizeof(head.fmh_keys[1].fmr_reserved)))
541 return -EINVAL;
542 /*
543 * ext4 doesn't report file extents at all, so the only valid
544 * file offsets are the magic ones (all zeroes or all ones).
545 */
546 if (head.fmh_keys[0].fmr_offset ||
547 (head.fmh_keys[1].fmr_offset != 0 &&
548 head.fmh_keys[1].fmr_offset != -1ULL))
549 return -EINVAL;
550
551 xhead.fmh_iflags = head.fmh_iflags;
552 xhead.fmh_count = head.fmh_count;
553 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
554 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
555
556 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
557 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
558
559 info.gi_sb = sb;
560 info.gi_data = arg;
561 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
562 if (error == EXT4_QUERY_RANGE_ABORT) {
563 error = 0;
564 aborted = true;
565 } else if (error)
566 return error;
567
568 /* If we didn't abort, set the "last" flag in the last fmx */
569 if (!aborted && info.gi_idx) {
570 info.gi_last_flags |= FMR_OF_LAST;
571 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
572 &info.gi_last_flags,
573 sizeof(info.gi_last_flags)))
574 return -EFAULT;
575 }
576
577 /* copy back header */
578 head.fmh_entries = xhead.fmh_entries;
579 head.fmh_oflags = xhead.fmh_oflags;
580 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
581 return -EFAULT;
582
583 return 0;
584}
585
5cdd7b2d 586long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
ac27a0ec 587{
496ad9aa 588 struct inode *inode = file_inode(filp);
bab08ab9 589 struct super_block *sb = inode->i_sb;
617ba13b 590 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec 591 unsigned int flags;
ac27a0ec 592
af5bc92d 593 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
ac27a0ec
DK
594
595 switch (cmd) {
0c9ec4be
DW
596 case FS_IOC_GETFSMAP:
597 return ext4_ioc_getfsmap(sb, (void __user *)arg);
617ba13b
MC
598 case EXT4_IOC_GETFLAGS:
599 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
ac27a0ec 600 return put_user(flags, (int __user *) arg);
617ba13b 601 case EXT4_IOC_SETFLAGS: {
9b7365fc 602 int err;
ac27a0ec 603
2e149670 604 if (!inode_owner_or_capable(inode))
ac27a0ec
DK
605 return -EACCES;
606
607 if (get_user(flags, (int __user *) arg))
608 return -EFAULT;
609
d14e7683
JK
610 if (flags & ~EXT4_FL_USER_VISIBLE)
611 return -EOPNOTSUPP;
612 /*
613 * chattr(1) grabs flags via GETFLAGS, modifies the result and
614 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
615 * more restrictive than just silently masking off visible but
616 * not settable flags as we always did.
617 */
618 flags &= EXT4_FL_USER_MODIFIABLE;
619 if (ext4_mask_flags(inode->i_mode, flags) != flags)
620 return -EOPNOTSUPP;
621
a561be71 622 err = mnt_want_write_file(filp);
42a74f20
DH
623 if (err)
624 return err;
625
5955102c 626 inode_lock(inode);
9b7365fc 627 err = ext4_ioctl_setflags(inode, flags);
5955102c 628 inode_unlock(inode);
2a79f17e 629 mnt_drop_write_file(filp);
ac27a0ec
DK
630 return err;
631 }
617ba13b
MC
632 case EXT4_IOC_GETVERSION:
633 case EXT4_IOC_GETVERSION_OLD:
ac27a0ec 634 return put_user(inode->i_generation, (int __user *) arg);
617ba13b
MC
635 case EXT4_IOC_SETVERSION:
636 case EXT4_IOC_SETVERSION_OLD: {
ac27a0ec 637 handle_t *handle;
617ba13b 638 struct ext4_iloc iloc;
ac27a0ec
DK
639 __u32 generation;
640 int err;
641
2e149670 642 if (!inode_owner_or_capable(inode))
ac27a0ec 643 return -EPERM;
42a74f20 644
9aa5d32b 645 if (ext4_has_metadata_csum(inode->i_sb)) {
814525f4
DW
646 ext4_warning(sb, "Setting inode version is not "
647 "supported with metadata_csum enabled.");
648 return -ENOTTY;
649 }
650
a561be71 651 err = mnt_want_write_file(filp);
42a74f20
DH
652 if (err)
653 return err;
654 if (get_user(generation, (int __user *) arg)) {
655 err = -EFAULT;
656 goto setversion_out;
657 }
ac27a0ec 658
5955102c 659 inode_lock(inode);
9924a92a 660 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
42a74f20
DH
661 if (IS_ERR(handle)) {
662 err = PTR_ERR(handle);
6c2155b9 663 goto unlock_out;
42a74f20 664 }
617ba13b 665 err = ext4_reserve_inode_write(handle, inode, &iloc);
ac27a0ec 666 if (err == 0) {
eeca7ea1 667 inode->i_ctime = current_time(inode);
ac27a0ec 668 inode->i_generation = generation;
617ba13b 669 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
ac27a0ec 670 }
617ba13b 671 ext4_journal_stop(handle);
6c2155b9
DH
672
673unlock_out:
5955102c 674 inode_unlock(inode);
42a74f20 675setversion_out:
2a79f17e 676 mnt_drop_write_file(filp);
ac27a0ec
DK
677 return err;
678 }
617ba13b
MC
679 case EXT4_IOC_GROUP_EXTEND: {
680 ext4_fsblk_t n_blocks_count;
ac046f1d 681 int err, err2=0;
ac27a0ec 682
8f82f840
YY
683 err = ext4_resize_begin(sb);
684 if (err)
685 return err;
ac27a0ec 686
014a1770
DH
687 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
688 err = -EFAULT;
689 goto group_extend_out;
690 }
ac27a0ec 691
e2b911c5 692 if (ext4_has_feature_bigalloc(sb)) {
bab08ab9
TT
693 ext4_msg(sb, KERN_ERR,
694 "Online resizing not supported with bigalloc");
014a1770
DH
695 err = -EOPNOTSUPP;
696 goto group_extend_out;
bab08ab9
TT
697 }
698
a561be71 699 err = mnt_want_write_file(filp);
42a74f20 700 if (err)
014a1770 701 goto group_extend_out;
42a74f20 702
617ba13b 703 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
ac046f1d
PT
704 if (EXT4_SB(sb)->s_journal) {
705 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
706 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
707 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
708 }
7ffe1ea8
HK
709 if (err == 0)
710 err = err2;
2a79f17e 711 mnt_drop_write_file(filp);
014a1770 712group_extend_out:
8f82f840 713 ext4_resize_end(sb);
ac27a0ec
DK
714 return err;
715 }
748de673
AF
716
717 case EXT4_IOC_MOVE_EXT: {
718 struct move_extent me;
2903ff01
AV
719 struct fd donor;
720 int err;
748de673 721
4a58579b
AF
722 if (!(filp->f_mode & FMODE_READ) ||
723 !(filp->f_mode & FMODE_WRITE))
724 return -EBADF;
725
748de673
AF
726 if (copy_from_user(&me,
727 (struct move_extent __user *)arg, sizeof(me)))
728 return -EFAULT;
4a58579b 729 me.moved_len = 0;
748de673 730
2903ff01
AV
731 donor = fdget(me.donor_fd);
732 if (!donor.file)
748de673
AF
733 return -EBADF;
734
2903ff01 735 if (!(donor.file->f_mode & FMODE_WRITE)) {
4a58579b
AF
736 err = -EBADF;
737 goto mext_out;
748de673
AF
738 }
739
e2b911c5 740 if (ext4_has_feature_bigalloc(sb)) {
bab08ab9
TT
741 ext4_msg(sb, KERN_ERR,
742 "Online defrag not supported with bigalloc");
399c9b86
AV
743 err = -EOPNOTSUPP;
744 goto mext_out;
73f34a5e
RZ
745 } else if (IS_DAX(inode)) {
746 ext4_msg(sb, KERN_ERR,
747 "Online defrag not supported with DAX");
748 err = -EOPNOTSUPP;
749 goto mext_out;
bab08ab9
TT
750 }
751
a561be71 752 err = mnt_want_write_file(filp);
4a58579b
AF
753 if (err)
754 goto mext_out;
755
2903ff01 756 err = ext4_move_extents(filp, donor.file, me.orig_start,
748de673 757 me.donor_start, me.len, &me.moved_len);
2a79f17e 758 mnt_drop_write_file(filp);
748de673 759
60e6679e 760 if (copy_to_user((struct move_extent __user *)arg,
c437b273 761 &me, sizeof(me)))
4a58579b
AF
762 err = -EFAULT;
763mext_out:
2903ff01 764 fdput(donor);
748de673
AF
765 return err;
766 }
767
617ba13b
MC
768 case EXT4_IOC_GROUP_ADD: {
769 struct ext4_new_group_data input;
ac046f1d 770 int err, err2=0;
ac27a0ec 771
8f82f840
YY
772 err = ext4_resize_begin(sb);
773 if (err)
774 return err;
ac27a0ec 775
617ba13b 776 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
014a1770
DH
777 sizeof(input))) {
778 err = -EFAULT;
779 goto group_add_out;
780 }
ac27a0ec 781
e2b911c5 782 if (ext4_has_feature_bigalloc(sb)) {
bab08ab9
TT
783 ext4_msg(sb, KERN_ERR,
784 "Online resizing not supported with bigalloc");
014a1770
DH
785 err = -EOPNOTSUPP;
786 goto group_add_out;
bab08ab9
TT
787 }
788
a561be71 789 err = mnt_want_write_file(filp);
42a74f20 790 if (err)
014a1770 791 goto group_add_out;
42a74f20 792
617ba13b 793 err = ext4_group_add(sb, &input);
ac046f1d
PT
794 if (EXT4_SB(sb)->s_journal) {
795 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
796 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
797 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
798 }
7ffe1ea8
HK
799 if (err == 0)
800 err = err2;
2a79f17e 801 mnt_drop_write_file(filp);
7f511862
TT
802 if (!err && ext4_has_group_desc_csum(sb) &&
803 test_opt(sb, INIT_INODE_TABLE))
804 err = ext4_register_li_request(sb, input.group);
014a1770 805group_add_out:
8f82f840 806 ext4_resize_end(sb);
ac27a0ec
DK
807 return err;
808 }
809
c14c6fd5 810 case EXT4_IOC_MIGRATE:
2a43a878
AK
811 {
812 int err;
2e149670 813 if (!inode_owner_or_capable(inode))
2a43a878
AK
814 return -EACCES;
815
a561be71 816 err = mnt_want_write_file(filp);
2a43a878
AK
817 if (err)
818 return err;
819 /*
820 * inode_mutex prevent write and truncate on the file.
821 * Read still goes through. We take i_data_sem in
822 * ext4_ext_swap_inode_data before we switch the
823 * inode format to prevent read.
824 */
5955102c 825 inode_lock((inode));
2a43a878 826 err = ext4_ext_migrate(inode);
5955102c 827 inode_unlock((inode));
2a79f17e 828 mnt_drop_write_file(filp);
2a43a878
AK
829 return err;
830 }
c14c6fd5 831
ccd2506b
TT
832 case EXT4_IOC_ALLOC_DA_BLKS:
833 {
834 int err;
2e149670 835 if (!inode_owner_or_capable(inode))
ccd2506b
TT
836 return -EACCES;
837
a561be71 838 err = mnt_want_write_file(filp);
ccd2506b
TT
839 if (err)
840 return err;
841 err = ext4_alloc_da_blocks(inode);
2a79f17e 842 mnt_drop_write_file(filp);
ccd2506b
TT
843 return err;
844 }
845
393d1d1d 846 case EXT4_IOC_SWAP_BOOT:
3e67cfad
DM
847 {
848 int err;
393d1d1d
DTB
849 if (!(filp->f_mode & FMODE_WRITE))
850 return -EBADF;
3e67cfad
DM
851 err = mnt_want_write_file(filp);
852 if (err)
853 return err;
854 err = swap_inode_boot_loader(sb, inode);
855 mnt_drop_write_file(filp);
856 return err;
857 }
393d1d1d 858
19c5246d
YY
859 case EXT4_IOC_RESIZE_FS: {
860 ext4_fsblk_t n_blocks_count;
19c5246d 861 int err = 0, err2 = 0;
7f511862 862 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
19c5246d 863
e2b911c5 864 if (ext4_has_feature_bigalloc(sb)) {
19c5246d
YY
865 ext4_msg(sb, KERN_ERR,
866 "Online resizing not (yet) supported with bigalloc");
867 return -EOPNOTSUPP;
868 }
869
19c5246d
YY
870 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
871 sizeof(__u64))) {
872 return -EFAULT;
873 }
874
19c5246d
YY
875 err = ext4_resize_begin(sb);
876 if (err)
877 return err;
878
8cae6f71 879 err = mnt_want_write_file(filp);
19c5246d
YY
880 if (err)
881 goto resizefs_out;
882
883 err = ext4_resize_fs(sb, n_blocks_count);
884 if (EXT4_SB(sb)->s_journal) {
885 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
886 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
887 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
888 }
889 if (err == 0)
890 err = err2;
8cae6f71 891 mnt_drop_write_file(filp);
7f511862
TT
892 if (!err && (o_group > EXT4_SB(sb)->s_groups_count) &&
893 ext4_has_group_desc_csum(sb) &&
894 test_opt(sb, INIT_INODE_TABLE))
895 err = ext4_register_li_request(sb, o_group);
896
19c5246d
YY
897resizefs_out:
898 ext4_resize_end(sb);
899 return err;
900 }
901
e681c047
LC
902 case FITRIM:
903 {
41431792 904 struct request_queue *q = bdev_get_queue(sb->s_bdev);
e681c047
LC
905 struct fstrim_range range;
906 int ret = 0;
907
908 if (!capable(CAP_SYS_ADMIN))
909 return -EPERM;
910
41431792
LC
911 if (!blk_queue_discard(q))
912 return -EOPNOTSUPP;
913
e6705f7c 914 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
e681c047
LC
915 sizeof(range)))
916 return -EFAULT;
917
5c2ed62f
LC
918 range.minlen = max((unsigned int)range.minlen,
919 q->limits.discard_granularity);
e681c047
LC
920 ret = ext4_trim_fs(sb, &range);
921 if (ret < 0)
922 return ret;
923
e6705f7c 924 if (copy_to_user((struct fstrim_range __user *)arg, &range,
e681c047
LC
925 sizeof(range)))
926 return -EFAULT;
927
928 return 0;
929 }
7869a4a6
TT
930 case EXT4_IOC_PRECACHE_EXTENTS:
931 return ext4_ext_precache(inode);
9bd8212f 932
db717d8e 933 case EXT4_IOC_SET_ENCRYPTION_POLICY:
9a200d07
RW
934 if (!ext4_has_feature_encrypt(sb))
935 return -EOPNOTSUPP;
db717d8e 936 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
9a200d07 937
9bd8212f 938 case EXT4_IOC_GET_ENCRYPTION_PWSALT: {
ba679017 939#ifdef CONFIG_EXT4_FS_ENCRYPTION
9bd8212f
MH
940 int err, err2;
941 struct ext4_sb_info *sbi = EXT4_SB(sb);
942 handle_t *handle;
943
35997d1c 944 if (!ext4_has_feature_encrypt(sb))
9bd8212f
MH
945 return -EOPNOTSUPP;
946 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
947 err = mnt_want_write_file(filp);
948 if (err)
949 return err;
950 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
951 if (IS_ERR(handle)) {
952 err = PTR_ERR(handle);
953 goto pwsalt_err_exit;
954 }
955 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
956 if (err)
957 goto pwsalt_err_journal;
958 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
959 err = ext4_handle_dirty_metadata(handle, NULL,
960 sbi->s_sbh);
961 pwsalt_err_journal:
962 err2 = ext4_journal_stop(handle);
963 if (err2 && !err)
964 err = err2;
965 pwsalt_err_exit:
966 mnt_drop_write_file(filp);
967 if (err)
968 return err;
969 }
b4ab9e29
FF
970 if (copy_to_user((void __user *) arg,
971 sbi->s_es->s_encrypt_pw_salt, 16))
9bd8212f
MH
972 return -EFAULT;
973 return 0;
ba679017
EB
974#else
975 return -EOPNOTSUPP;
976#endif
9bd8212f 977 }
db717d8e
EB
978 case EXT4_IOC_GET_ENCRYPTION_POLICY:
979 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
9bd8212f 980
9b7365fc
LX
981 case EXT4_IOC_FSGETXATTR:
982 {
983 struct fsxattr fa;
984
985 memset(&fa, 0, sizeof(struct fsxattr));
9b7365fc
LX
986 fa.fsx_xflags = ext4_iflags_to_xflags(ei->i_flags & EXT4_FL_USER_VISIBLE);
987
0b7b7779 988 if (ext4_has_feature_project(inode->i_sb)) {
9b7365fc
LX
989 fa.fsx_projid = (__u32)from_kprojid(&init_user_ns,
990 EXT4_I(inode)->i_projid);
991 }
992
993 if (copy_to_user((struct fsxattr __user *)arg,
994 &fa, sizeof(fa)))
995 return -EFAULT;
996 return 0;
997 }
998 case EXT4_IOC_FSSETXATTR:
999 {
1000 struct fsxattr fa;
1001 int err;
1002
1003 if (copy_from_user(&fa, (struct fsxattr __user *)arg,
1004 sizeof(fa)))
1005 return -EFAULT;
1006
1007 /* Make sure caller has proper permission */
1008 if (!inode_owner_or_capable(inode))
1009 return -EACCES;
1010
d14e7683
JK
1011 if (fa.fsx_xflags & ~EXT4_SUPPORTED_FS_XFLAGS)
1012 return -EOPNOTSUPP;
1013
1014 flags = ext4_xflags_to_iflags(fa.fsx_xflags);
1015 if (ext4_mask_flags(inode->i_mode, flags) != flags)
1016 return -EOPNOTSUPP;
1017
9b7365fc
LX
1018 err = mnt_want_write_file(filp);
1019 if (err)
1020 return err;
1021
5955102c 1022 inode_lock(inode);
9b7365fc
LX
1023 flags = (ei->i_flags & ~EXT4_FL_XFLAG_VISIBLE) |
1024 (flags & EXT4_FL_XFLAG_VISIBLE);
1025 err = ext4_ioctl_setflags(inode, flags);
5955102c 1026 inode_unlock(inode);
9b7365fc
LX
1027 mnt_drop_write_file(filp);
1028 if (err)
1029 return err;
1030
1031 err = ext4_ioctl_setproject(filp, fa.fsx_projid);
1032 if (err)
1033 return err;
1034
1035 return 0;
1036 }
e9be2ac7
TT
1037 case EXT4_IOC_SHUTDOWN:
1038 return ext4_shutdown(sb, arg);
ac27a0ec
DK
1039 default:
1040 return -ENOTTY;
1041 }
1042}
1043
1044#ifdef CONFIG_COMPAT
617ba13b 1045long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
ac27a0ec 1046{
ac27a0ec
DK
1047 /* These are just misnamed, they actually get/put from/to user an int */
1048 switch (cmd) {
617ba13b
MC
1049 case EXT4_IOC32_GETFLAGS:
1050 cmd = EXT4_IOC_GETFLAGS;
ac27a0ec 1051 break;
617ba13b
MC
1052 case EXT4_IOC32_SETFLAGS:
1053 cmd = EXT4_IOC_SETFLAGS;
ac27a0ec 1054 break;
617ba13b
MC
1055 case EXT4_IOC32_GETVERSION:
1056 cmd = EXT4_IOC_GETVERSION;
ac27a0ec 1057 break;
617ba13b
MC
1058 case EXT4_IOC32_SETVERSION:
1059 cmd = EXT4_IOC_SETVERSION;
ac27a0ec 1060 break;
617ba13b
MC
1061 case EXT4_IOC32_GROUP_EXTEND:
1062 cmd = EXT4_IOC_GROUP_EXTEND;
ac27a0ec 1063 break;
617ba13b
MC
1064 case EXT4_IOC32_GETVERSION_OLD:
1065 cmd = EXT4_IOC_GETVERSION_OLD;
ac27a0ec 1066 break;
617ba13b
MC
1067 case EXT4_IOC32_SETVERSION_OLD:
1068 cmd = EXT4_IOC_SETVERSION_OLD;
ac27a0ec 1069 break;
617ba13b
MC
1070 case EXT4_IOC32_GETRSVSZ:
1071 cmd = EXT4_IOC_GETRSVSZ;
ac27a0ec 1072 break;
617ba13b
MC
1073 case EXT4_IOC32_SETRSVSZ:
1074 cmd = EXT4_IOC_SETRSVSZ;
ac27a0ec 1075 break;
4d92dc0f
BH
1076 case EXT4_IOC32_GROUP_ADD: {
1077 struct compat_ext4_new_group_input __user *uinput;
1078 struct ext4_new_group_input input;
1079 mm_segment_t old_fs;
1080 int err;
1081
1082 uinput = compat_ptr(arg);
1083 err = get_user(input.group, &uinput->group);
1084 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1085 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1086 err |= get_user(input.inode_table, &uinput->inode_table);
1087 err |= get_user(input.blocks_count, &uinput->blocks_count);
1088 err |= get_user(input.reserved_blocks,
1089 &uinput->reserved_blocks);
1090 if (err)
1091 return -EFAULT;
1092 old_fs = get_fs();
1093 set_fs(KERNEL_DS);
1094 err = ext4_ioctl(file, EXT4_IOC_GROUP_ADD,
1095 (unsigned long) &input);
1096 set_fs(old_fs);
1097 return err;
1098 }
b684b2ee 1099 case EXT4_IOC_MOVE_EXT:
19c5246d 1100 case EXT4_IOC_RESIZE_FS:
7869a4a6 1101 case EXT4_IOC_PRECACHE_EXTENTS:
9bd8212f
MH
1102 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1103 case EXT4_IOC_GET_ENCRYPTION_PWSALT:
1104 case EXT4_IOC_GET_ENCRYPTION_POLICY:
e9be2ac7 1105 case EXT4_IOC_SHUTDOWN:
0c9ec4be 1106 case FS_IOC_GETFSMAP:
b684b2ee 1107 break;
ac27a0ec
DK
1108 default:
1109 return -ENOIOCTLCMD;
1110 }
5cdd7b2d 1111 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
ac27a0ec
DK
1112}
1113#endif