fs/ntfs3: Add file_modified
[linux-block.git] / fs / ntfs3 / file.c
CommitLineData
4342306f
KK
1// SPDX-License-Identifier: GPL-2.0
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
e8b8e97f
KA
6 * Regular file handling primitives for NTFS-based filesystems.
7 *
4342306f 8 */
e8b8e97f 9
4342306f 10#include <linux/backing-dev.h>
ccdf7741 11#include <linux/blkdev.h>
4342306f
KK
12#include <linux/buffer_head.h>
13#include <linux/compat.h>
14#include <linux/falloc.h>
15#include <linux/fiemap.h>
4342306f
KK
16
17#include "debug.h"
18#include "ntfs.h"
19#include "ntfs_fs.h"
20
21static int ntfs_ioctl_fitrim(struct ntfs_sb_info *sbi, unsigned long arg)
22{
23 struct fstrim_range __user *user_range;
24 struct fstrim_range range;
96de65a9 25 struct block_device *dev;
4342306f
KK
26 int err;
27
28 if (!capable(CAP_SYS_ADMIN))
29 return -EPERM;
30
96de65a9
KK
31 dev = sbi->sb->s_bdev;
32 if (!bdev_max_discard_sectors(dev))
4342306f
KK
33 return -EOPNOTSUPP;
34
35 user_range = (struct fstrim_range __user *)arg;
36 if (copy_from_user(&range, user_range, sizeof(range)))
37 return -EFAULT;
38
96de65a9 39 range.minlen = max_t(u32, range.minlen, bdev_discard_granularity(dev));
4342306f
KK
40
41 err = ntfs_trim_fs(sbi, &range);
42 if (err < 0)
43 return err;
44
45 if (copy_to_user(user_range, &range, sizeof(range)))
46 return -EFAULT;
47
48 return 0;
49}
50
51static long ntfs_ioctl(struct file *filp, u32 cmd, unsigned long arg)
52{
53 struct inode *inode = file_inode(filp);
54 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
4342306f
KK
55
56 switch (cmd) {
4342306f
KK
57 case FITRIM:
58 return ntfs_ioctl_fitrim(sbi, arg);
59 }
e8b8e97f 60 return -ENOTTY; /* Inappropriate ioctl for device. */
4342306f
KK
61}
62
63#ifdef CONFIG_COMPAT
64static long ntfs_compat_ioctl(struct file *filp, u32 cmd, unsigned long arg)
65
66{
67 return ntfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
68}
69#endif
70
71/*
e8b8e97f 72 * ntfs_getattr - inode_operations::getattr
4342306f 73 */
b74d24f7 74int ntfs_getattr(struct mnt_idmap *idmap, const struct path *path,
4342306f
KK
75 struct kstat *stat, u32 request_mask, u32 flags)
76{
77 struct inode *inode = d_inode(path->dentry);
78 struct ntfs_inode *ni = ntfs_i(inode);
79
80 if (is_compressed(ni))
81 stat->attributes |= STATX_ATTR_COMPRESSED;
82
83 if (is_encrypted(ni))
84 stat->attributes |= STATX_ATTR_ENCRYPTED;
85
86 stat->attributes_mask |= STATX_ATTR_COMPRESSED | STATX_ATTR_ENCRYPTED;
87
0d72b928 88 generic_fillattr(idmap, request_mask, inode, stat);
4342306f
KK
89
90 stat->result_mask |= STATX_BTIME;
91 stat->btime = ni->i_crtime;
92 stat->blksize = ni->mi.sbi->cluster_size; /* 512, 1K, ..., 2M */
93
94 return 0;
95}
96
97static int ntfs_extend_initialized_size(struct file *file,
98 struct ntfs_inode *ni,
99 const loff_t valid,
100 const loff_t new_valid)
101{
102 struct inode *inode = &ni->vfs_inode;
103 struct address_space *mapping = inode->i_mapping;
104 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
105 loff_t pos = valid;
106 int err;
107
108 if (is_resident(ni)) {
109 ni->i_valid = new_valid;
110 return 0;
111 }
112
113 WARN_ON(is_compressed(ni));
114 WARN_ON(valid >= new_valid);
115
116 for (;;) {
117 u32 zerofrom, len;
118 struct page *page;
4342306f
KK
119 u8 bits;
120 CLST vcn, lcn, clen;
121
122 if (is_sparsed(ni)) {
123 bits = sbi->cluster_bits;
124 vcn = pos >> bits;
125
c380b52f
KK
126 err = attr_data_get_block(ni, vcn, 1, &lcn, &clen, NULL,
127 false);
4342306f
KK
128 if (err)
129 goto out;
130
131 if (lcn == SPARSE_LCN) {
2f56a3f8
KK
132 pos = ((loff_t)clen + vcn) << bits;
133 ni->i_valid = pos;
134 goto next;
4342306f
KK
135 }
136 }
137
138 zerofrom = pos & (PAGE_SIZE - 1);
139 len = PAGE_SIZE - zerofrom;
140
141 if (pos + len > new_valid)
142 len = new_valid - pos;
143
652118b8 144 err = ntfs_write_begin(file, mapping, pos, len, &page, NULL);
4342306f
KK
145 if (err)
146 goto out;
147
148 zero_user_segment(page, zerofrom, PAGE_SIZE);
149
e8b8e97f 150 /* This function in any case puts page. */
652118b8 151 err = ntfs_write_end(file, mapping, pos, len, len, page, NULL);
4342306f
KK
152 if (err < 0)
153 goto out;
154 pos += len;
155
156next:
157 if (pos >= new_valid)
158 break;
159
160 balance_dirty_pages_ratelimited(mapping);
161 cond_resched();
162 }
163
164 return 0;
165
166out:
167 ni->i_valid = valid;
168 ntfs_inode_warn(inode, "failed to extend initialized size to %llx.",
169 new_valid);
170 return err;
171}
172
173/*
e8b8e97f 174 * ntfs_zero_range - Helper function for punch_hole.
d3624466
KK
175 *
176 * It zeroes a range [vbo, vbo_to).
4342306f
KK
177 */
178static int ntfs_zero_range(struct inode *inode, u64 vbo, u64 vbo_to)
179{
180 int err = 0;
181 struct address_space *mapping = inode->i_mapping;
f39244e2 182 u32 blocksize = i_blocksize(inode);
4342306f 183 pgoff_t idx = vbo >> PAGE_SHIFT;
c380b52f 184 u32 from = vbo & (PAGE_SIZE - 1);
4342306f
KK
185 pgoff_t idx_end = (vbo_to + PAGE_SIZE - 1) >> PAGE_SHIFT;
186 loff_t page_off;
187 struct buffer_head *head, *bh;
c380b52f 188 u32 bh_next, bh_off, to;
4342306f 189 sector_t iblock;
c3f4200a 190 struct folio *folio;
a40b73f6 191 bool dirty = false;
4342306f 192
c380b52f 193 for (; idx < idx_end; idx += 1, from = 0) {
4342306f 194 page_off = (loff_t)idx << PAGE_SHIFT;
96de65a9 195 to = (page_off + PAGE_SIZE) > vbo_to ? (vbo_to - page_off) :
f0377761 196 PAGE_SIZE;
4342306f
KK
197 iblock = page_off >> inode->i_blkbits;
198
c3f4200a
MWO
199 folio = __filemap_get_folio(mapping, idx,
200 FGP_LOCK | FGP_ACCESSED | FGP_CREAT,
201 mapping_gfp_constraint(mapping, ~__GFP_FS));
202 if (IS_ERR(folio))
203 return PTR_ERR(folio);
4342306f 204
c3f4200a
MWO
205 head = folio_buffers(folio);
206 if (!head)
0a88810d 207 head = create_empty_buffers(folio, blocksize, 0);
4342306f 208
c3f4200a 209 bh = head;
4342306f
KK
210 bh_off = 0;
211 do {
212 bh_next = bh_off + blocksize;
213
c380b52f 214 if (bh_next <= from || bh_off >= to)
4342306f
KK
215 continue;
216
217 if (!buffer_mapped(bh)) {
218 ntfs_get_block(inode, iblock, bh, 0);
d3624466 219 /* Unmapped? It's a hole - nothing to do. */
4342306f
KK
220 if (!buffer_mapped(bh))
221 continue;
222 }
223
d3624466 224 /* Ok, it's mapped. Make sure it's up-to-date. */
c3f4200a 225 if (folio_test_uptodate(folio))
4342306f 226 set_buffer_uptodate(bh);
a40b73f6
KK
227 else if (bh_read(bh, 0) < 0) {
228 err = -EIO;
229 folio_unlock(folio);
230 folio_put(folio);
231 goto out;
4342306f
KK
232 }
233
234 mark_buffer_dirty(bh);
4342306f
KK
235 } while (bh_off = bh_next, iblock += 1,
236 head != (bh = bh->b_this_page));
237
c3f4200a 238 folio_zero_segment(folio, from, to);
a40b73f6 239 dirty = true;
4342306f 240
c3f4200a
MWO
241 folio_unlock(folio);
242 folio_put(folio);
4342306f
KK
243 cond_resched();
244 }
245out:
a40b73f6
KK
246 if (dirty)
247 mark_inode_dirty(inode);
4342306f
KK
248 return err;
249}
250
4342306f 251/*
e8b8e97f 252 * ntfs_file_mmap - file_operations::mmap
4342306f
KK
253 */
254static int ntfs_file_mmap(struct file *file, struct vm_area_struct *vma)
255{
256 struct address_space *mapping = file->f_mapping;
257 struct inode *inode = mapping->host;
258 struct ntfs_inode *ni = ntfs_i(inode);
259 u64 from = ((u64)vma->vm_pgoff << PAGE_SHIFT);
260 bool rw = vma->vm_flags & VM_WRITE;
261 int err;
262
263 if (is_encrypted(ni)) {
264 ntfs_inode_warn(inode, "mmap encrypted not supported");
265 return -EOPNOTSUPP;
266 }
267
268 if (is_dedup(ni)) {
269 ntfs_inode_warn(inode, "mmap deduplicated not supported");
270 return -EOPNOTSUPP;
271 }
272
273 if (is_compressed(ni) && rw) {
274 ntfs_inode_warn(inode, "mmap(write) compressed not supported");
275 return -EOPNOTSUPP;
276 }
277
278 if (rw) {
279 u64 to = min_t(loff_t, i_size_read(inode),
280 from + vma->vm_end - vma->vm_start);
281
282 if (is_sparsed(ni)) {
e8b8e97f 283 /* Allocate clusters for rw map. */
4342306f
KK
284 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
285 CLST lcn, len;
286 CLST vcn = from >> sbi->cluster_bits;
287 CLST end = bytes_to_cluster(sbi, to);
288 bool new;
289
290 for (; vcn < end; vcn += len) {
291 err = attr_data_get_block(ni, vcn, 1, &lcn,
c380b52f 292 &len, &new, true);
4342306f
KK
293 if (err)
294 goto out;
4342306f
KK
295 }
296 }
297
298 if (ni->i_valid < to) {
299 if (!inode_trylock(inode)) {
300 err = -EAGAIN;
301 goto out;
302 }
303 err = ntfs_extend_initialized_size(file, ni,
304 ni->i_valid, to);
305 inode_unlock(inode);
306 if (err)
307 goto out;
308 }
309 }
310
311 err = generic_file_mmap(file, vma);
312out:
313 return err;
314}
315
316static int ntfs_extend(struct inode *inode, loff_t pos, size_t count,
317 struct file *file)
318{
319 struct ntfs_inode *ni = ntfs_i(inode);
320 struct address_space *mapping = inode->i_mapping;
321 loff_t end = pos + count;
322 bool extend_init = file && pos > ni->i_valid;
323 int err;
324
325 if (end <= inode->i_size && !extend_init)
326 return 0;
327
e8b8e97f 328 /* Mark rw ntfs as dirty. It will be cleared at umount. */
4342306f
KK
329 ntfs_set_state(ni->mi.sbi, NTFS_DIRTY_DIRTY);
330
331 if (end > inode->i_size) {
332 err = ntfs_set_size(inode, end);
333 if (err)
334 goto out;
4342306f
KK
335 }
336
337 if (extend_init && !is_compressed(ni)) {
338 err = ntfs_extend_initialized_size(file, ni, ni->i_valid, pos);
339 if (err)
340 goto out;
341 } else {
342 err = 0;
343 }
344
2be861fa 345 inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
4342306f
KK
346 mark_inode_dirty(inode);
347
348 if (IS_SYNC(inode)) {
349 int err2;
350
351 err = filemap_fdatawrite_range(mapping, pos, end - 1);
352 err2 = sync_mapping_buffers(mapping);
353 if (!err)
354 err = err2;
355 err2 = write_inode_now(inode, 1);
356 if (!err)
357 err = err2;
358 if (!err)
359 err = filemap_fdatawait_range(mapping, pos, end - 1);
360 }
361
362out:
363 return err;
364}
365
366static int ntfs_truncate(struct inode *inode, loff_t new_size)
367{
368 struct super_block *sb = inode->i_sb;
369 struct ntfs_inode *ni = ntfs_i(inode);
370 int err, dirty = 0;
371 u64 new_valid;
372
373 if (!S_ISREG(inode->i_mode))
374 return 0;
375
376 if (is_compressed(ni)) {
377 if (ni->i_valid > new_size)
378 ni->i_valid = new_size;
379 } else {
380 err = block_truncate_page(inode->i_mapping, new_size,
381 ntfs_get_block);
382 if (err)
383 return err;
384 }
385
386 new_valid = ntfs_up_block(sb, min_t(u64, ni->i_valid, new_size));
387
4342306f
KK
388 truncate_setsize(inode, new_size);
389
0226635c
TH
390 ni_lock(ni);
391
4342306f
KK
392 down_write(&ni->file.run_lock);
393 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run, new_size,
e95113ed 394 &new_valid, ni->mi.sbi->options->prealloc, NULL);
4342306f
KK
395 up_write(&ni->file.run_lock);
396
397 if (new_valid < ni->i_valid)
398 ni->i_valid = new_valid;
399
400 ni_unlock(ni);
401
402 ni->std_fa |= FILE_ATTRIBUTE_ARCHIVE;
2be861fa 403 inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
4342306f
KK
404 if (!IS_DIRSYNC(inode)) {
405 dirty = 1;
406 } else {
407 err = ntfs_sync_inode(inode);
408 if (err)
409 return err;
410 }
411
412 if (dirty)
413 mark_inode_dirty(inode);
414
415 /*ntfs_flush_inodes(inode->i_sb, inode, NULL);*/
416
417 return 0;
418}
419
420/*
e8b8e97f
KA
421 * ntfs_fallocate
422 *
4342306f
KK
423 * Preallocate space for a file. This implements ntfs's fallocate file
424 * operation, which gets called from sys_fallocate system call. User
425 * space requests 'len' bytes at 'vbo'. If FALLOC_FL_KEEP_SIZE is set
426 * we just allocate clusters without zeroing them out. Otherwise we
427 * allocate and zero out clusters via an expanding truncate.
428 */
429static long ntfs_fallocate(struct file *file, int mode, loff_t vbo, loff_t len)
430{
431 struct inode *inode = file->f_mapping->host;
e4d2f4fd 432 struct address_space *mapping = inode->i_mapping;
4342306f
KK
433 struct super_block *sb = inode->i_sb;
434 struct ntfs_sb_info *sbi = sb->s_fs_info;
435 struct ntfs_inode *ni = ntfs_i(inode);
436 loff_t end = vbo + len;
c380b52f
KK
437 loff_t vbo_down = round_down(vbo, max_t(unsigned long,
438 sbi->cluster_size, PAGE_SIZE));
e4d2f4fd
KK
439 bool is_supported_holes = is_sparsed(ni) || is_compressed(ni);
440 loff_t i_size, new_size;
441 bool map_locked;
4342306f
KK
442 int err;
443
e8b8e97f 444 /* No support for dir. */
4342306f
KK
445 if (!S_ISREG(inode->i_mode))
446 return -EOPNOTSUPP;
447
e4d2f4fd
KK
448 /*
449 * vfs_fallocate checks all possible combinations of mode.
450 * Do additional checks here before ntfs_set_state(dirty).
451 */
452 if (mode & FALLOC_FL_PUNCH_HOLE) {
453 if (!is_supported_holes)
454 return -EOPNOTSUPP;
455 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
456 } else if (mode & FALLOC_FL_INSERT_RANGE) {
457 if (!is_supported_holes)
458 return -EOPNOTSUPP;
459 } else if (mode &
460 ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
461 FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_INSERT_RANGE)) {
4342306f
KK
462 ntfs_inode_warn(inode, "fallocate(0x%x) is not supported",
463 mode);
464 return -EOPNOTSUPP;
465 }
466
467 ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);
468
469 inode_lock(inode);
470 i_size = inode->i_size;
e4d2f4fd
KK
471 new_size = max(end, i_size);
472 map_locked = false;
4342306f
KK
473
474 if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
e8b8e97f 475 /* Should never be here, see ntfs_file_open. */
4342306f
KK
476 err = -EOPNOTSUPP;
477 goto out;
478 }
479
e4d2f4fd
KK
480 if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_COLLAPSE_RANGE |
481 FALLOC_FL_INSERT_RANGE)) {
482 inode_dio_wait(inode);
483 filemap_invalidate_lock(mapping);
484 map_locked = true;
485 }
486
4342306f
KK
487 if (mode & FALLOC_FL_PUNCH_HOLE) {
488 u32 frame_size;
489 loff_t mask, vbo_a, end_a, tmp;
490
c380b52f
KK
491 err = filemap_write_and_wait_range(mapping, vbo_down,
492 LLONG_MAX);
4342306f
KK
493 if (err)
494 goto out;
495
4342306f
KK
496 truncate_pagecache(inode, vbo_down);
497
4342306f
KK
498 ni_lock(ni);
499 err = attr_punch_hole(ni, vbo, len, &frame_size);
500 ni_unlock(ni);
501 if (err != E_NTFS_NOTALIGNED)
502 goto out;
503
d3624466 504 /* Process not aligned punch. */
4342306f
KK
505 mask = frame_size - 1;
506 vbo_a = (vbo + mask) & ~mask;
507 end_a = end & ~mask;
508
509 tmp = min(vbo_a, end);
510 if (tmp > vbo) {
511 err = ntfs_zero_range(inode, vbo, tmp);
512 if (err)
513 goto out;
514 }
515
516 if (vbo < end_a && end_a < end) {
517 err = ntfs_zero_range(inode, end_a, end);
518 if (err)
519 goto out;
520 }
521
522 /* Aligned punch_hole */
523 if (end_a > vbo_a) {
524 ni_lock(ni);
525 err = attr_punch_hole(ni, vbo_a, end_a - vbo_a, NULL);
526 ni_unlock(ni);
527 }
528 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
4342306f
KK
529 /*
530 * Write tail of the last page before removed range since
531 * it will get removed from the page cache below.
532 */
e4d2f4fd 533 err = filemap_write_and_wait_range(mapping, vbo_down, vbo);
4342306f
KK
534 if (err)
535 goto out;
536
537 /*
538 * Write data that will be shifted to preserve them
e8b8e97f 539 * when discarding page cache below.
4342306f 540 */
e4d2f4fd 541 err = filemap_write_and_wait_range(mapping, end, LLONG_MAX);
4342306f
KK
542 if (err)
543 goto out;
544
4342306f
KK
545 truncate_pagecache(inode, vbo_down);
546
547 ni_lock(ni);
548 err = attr_collapse_range(ni, vbo, len);
549 ni_unlock(ni);
e4d2f4fd
KK
550 } else if (mode & FALLOC_FL_INSERT_RANGE) {
551 /* Check new size. */
552 err = inode_newsize_ok(inode, new_size);
553 if (err)
554 goto out;
555
556 /* Write out all dirty pages. */
557 err = filemap_write_and_wait_range(mapping, vbo_down,
558 LLONG_MAX);
559 if (err)
560 goto out;
561 truncate_pagecache(inode, vbo_down);
11434697 562
e4d2f4fd
KK
563 ni_lock(ni);
564 err = attr_insert_range(ni, vbo, len);
565 ni_unlock(ni);
4342306f 566 } else {
e4d2f4fd 567 /* Check new size. */
96de65a9 568 u8 cluster_bits = sbi->cluster_bits;
b3e04872
KK
569
570 /* generic/213: expected -ENOSPC instead of -EFBIG. */
571 if (!is_supported_holes) {
572 loff_t to_alloc = new_size - inode_get_bytes(inode);
573
574 if (to_alloc > 0 &&
96de65a9 575 (to_alloc >> cluster_bits) >
b3e04872
KK
576 wnd_zeroes(&sbi->used.bitmap)) {
577 err = -ENOSPC;
578 goto out;
579 }
580 }
11434697
KK
581
582 err = inode_newsize_ok(inode, new_size);
583 if (err)
584 goto out;
585
ad26a9c8
KK
586 if (new_size > i_size) {
587 /*
588 * Allocate clusters, do not change 'valid' size.
589 */
590 err = ntfs_set_size(inode, new_size);
591 if (err)
592 goto out;
593 }
4342306f 594
e4d2f4fd 595 if (is_supported_holes) {
96de65a9 596 CLST vcn = vbo >> cluster_bits;
4342306f 597 CLST cend = bytes_to_cluster(sbi, end);
c380b52f 598 CLST cend_v = bytes_to_cluster(sbi, ni->i_valid);
4342306f
KK
599 CLST lcn, clen;
600 bool new;
601
c380b52f
KK
602 if (cend_v > cend)
603 cend_v = cend;
604
4342306f 605 /*
c380b52f 606 * Allocate and zero new clusters.
e8b8e97f 607 * Zeroing these clusters may be too long.
c380b52f
KK
608 */
609 for (; vcn < cend_v; vcn += clen) {
610 err = attr_data_get_block(ni, vcn, cend_v - vcn,
611 &lcn, &clen, &new,
612 true);
613 if (err)
614 goto out;
615 }
616 /*
617 * Allocate but not zero new clusters.
4342306f
KK
618 */
619 for (; vcn < cend; vcn += clen) {
620 err = attr_data_get_block(ni, vcn, cend - vcn,
c380b52f
KK
621 &lcn, &clen, &new,
622 false);
4342306f
KK
623 if (err)
624 goto out;
4342306f
KK
625 }
626 }
627
628 if (mode & FALLOC_FL_KEEP_SIZE) {
629 ni_lock(ni);
e8b8e97f 630 /* True - Keep preallocated. */
4342306f
KK
631 err = attr_set_size(ni, ATTR_DATA, NULL, 0,
632 &ni->file.run, i_size, &ni->i_valid,
633 true, NULL);
634 ni_unlock(ni);
4dea9cd5
KK
635 if (err)
636 goto out;
ad26a9c8
KK
637 } else if (new_size > i_size) {
638 inode->i_size = new_size;
4342306f
KK
639 }
640 }
641
4dea9cd5
KK
642 err = file_modified(file);
643 if (err)
644 goto out;
645
4342306f 646out:
e4d2f4fd
KK
647 if (map_locked)
648 filemap_invalidate_unlock(mapping);
4342306f
KK
649
650 if (!err) {
2be861fa 651 inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
4342306f
KK
652 mark_inode_dirty(inode);
653 }
654
655 inode_unlock(inode);
656 return err;
657}
658
659/*
e8b8e97f 660 * ntfs3_setattr - inode_operations::setattr
4342306f 661 */
c1632a0f 662int ntfs3_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
4342306f
KK
663 struct iattr *attr)
664{
4342306f
KK
665 struct inode *inode = d_inode(dentry);
666 struct ntfs_inode *ni = ntfs_i(inode);
667 u32 ia_valid = attr->ia_valid;
668 umode_t mode = inode->i_mode;
669 int err;
670
c1632a0f 671 err = setattr_prepare(idmap, dentry, attr);
4342306f
KK
672 if (err)
673 goto out;
674
675 if (ia_valid & ATTR_SIZE) {
ad26a9c8 676 loff_t newsize, oldsize;
4342306f
KK
677
678 if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
e8b8e97f 679 /* Should never be here, see ntfs_file_open(). */
4342306f
KK
680 err = -EOPNOTSUPP;
681 goto out;
682 }
683 inode_dio_wait(inode);
ad26a9c8
KK
684 oldsize = inode->i_size;
685 newsize = attr->ia_size;
4342306f 686
ad26a9c8
KK
687 if (newsize <= oldsize)
688 err = ntfs_truncate(inode, newsize);
689 else
690 err = ntfs_extend(inode, newsize, 0, NULL);
4342306f
KK
691
692 if (err)
693 goto out;
694
695 ni->ni_flags |= NI_FLAG_UPDATE_PARENT;
ad26a9c8 696 inode->i_size = newsize;
4342306f
KK
697 }
698
c1632a0f 699 setattr_copy(idmap, inode, attr);
4342306f
KK
700
701 if (mode != inode->i_mode) {
13e83a49 702 err = ntfs_acl_chmod(idmap, dentry);
4342306f
KK
703 if (err)
704 goto out;
705
e8b8e97f 706 /* Linux 'w' -> Windows 'ro'. */
4342306f
KK
707 if (0222 & inode->i_mode)
708 ni->std_fa &= ~FILE_ATTRIBUTE_READONLY;
709 else
710 ni->std_fa |= FILE_ATTRIBUTE_READONLY;
711 }
712
713 if (ia_valid & (ATTR_UID | ATTR_GID | ATTR_MODE))
1842fbc8 714 ntfs_save_wsl_perm(inode, NULL);
4342306f
KK
715 mark_inode_dirty(inode);
716out:
717 return err;
718}
719
720static ssize_t ntfs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
721{
4342306f
KK
722 struct file *file = iocb->ki_filp;
723 struct inode *inode = file->f_mapping->host;
724 struct ntfs_inode *ni = ntfs_i(inode);
725
726 if (is_encrypted(ni)) {
727 ntfs_inode_warn(inode, "encrypted i/o not supported");
728 return -EOPNOTSUPP;
729 }
730
731 if (is_compressed(ni) && (iocb->ki_flags & IOCB_DIRECT)) {
732 ntfs_inode_warn(inode, "direct i/o + compressed not supported");
733 return -EOPNOTSUPP;
734 }
735
736#ifndef CONFIG_NTFS3_LZX_XPRESS
737 if (ni->ni_flags & NI_FLAG_COMPRESSED_MASK) {
738 ntfs_inode_warn(
739 inode,
740 "activate CONFIG_NTFS3_LZX_XPRESS to read external compressed files");
741 return -EOPNOTSUPP;
742 }
743#endif
744
745 if (is_dedup(ni)) {
746 ntfs_inode_warn(inode, "read deduplicated not supported");
747 return -EOPNOTSUPP;
748 }
749
dd854e4b 750 return generic_file_read_iter(iocb, iter);
4342306f
KK
751}
752
51494398 753static ssize_t ntfs_file_splice_read(struct file *in, loff_t *ppos,
f684073c
KK
754 struct pipe_inode_info *pipe, size_t len,
755 unsigned int flags)
51494398
DH
756{
757 struct inode *inode = in->f_mapping->host;
758 struct ntfs_inode *ni = ntfs_i(inode);
759
760 if (is_encrypted(ni)) {
761 ntfs_inode_warn(inode, "encrypted i/o not supported");
762 return -EOPNOTSUPP;
763 }
764
765#ifndef CONFIG_NTFS3_LZX_XPRESS
766 if (ni->ni_flags & NI_FLAG_COMPRESSED_MASK) {
767 ntfs_inode_warn(
768 inode,
769 "activate CONFIG_NTFS3_LZX_XPRESS to read external compressed files");
770 return -EOPNOTSUPP;
771 }
772#endif
773
774 if (is_dedup(ni)) {
775 ntfs_inode_warn(inode, "read deduplicated not supported");
776 return -EOPNOTSUPP;
777 }
778
2cb1e089 779 return filemap_splice_read(in, ppos, pipe, len, flags);
51494398
DH
780}
781
e8b8e97f
KA
782/*
783 * ntfs_get_frame_pages
784 *
785 * Return: Array of locked pages.
786 */
4342306f
KK
787static int ntfs_get_frame_pages(struct address_space *mapping, pgoff_t index,
788 struct page **pages, u32 pages_per_frame,
789 bool *frame_uptodate)
790{
791 gfp_t gfp_mask = mapping_gfp_mask(mapping);
792 u32 npages;
793
794 *frame_uptodate = true;
795
796 for (npages = 0; npages < pages_per_frame; npages++, index++) {
797 struct page *page;
798
799 page = find_or_create_page(mapping, index, gfp_mask);
800 if (!page) {
801 while (npages--) {
802 page = pages[npages];
803 unlock_page(page);
804 put_page(page);
805 }
806
807 return -ENOMEM;
808 }
809
810 if (!PageUptodate(page))
811 *frame_uptodate = false;
812
813 pages[npages] = page;
814 }
815
816 return 0;
817}
818
e8b8e97f
KA
819/*
820 * ntfs_compress_write - Helper for ntfs_file_write_iter() (compressed files).
821 */
4342306f
KK
822static ssize_t ntfs_compress_write(struct kiocb *iocb, struct iov_iter *from)
823{
824 int err;
825 struct file *file = iocb->ki_filp;
826 size_t count = iov_iter_count(from);
827 loff_t pos = iocb->ki_pos;
828 struct inode *inode = file_inode(file);
829 loff_t i_size = inode->i_size;
830 struct address_space *mapping = inode->i_mapping;
831 struct ntfs_inode *ni = ntfs_i(inode);
832 u64 valid = ni->i_valid;
833 struct ntfs_sb_info *sbi = ni->mi.sbi;
834 struct page *page, **pages = NULL;
835 size_t written = 0;
836 u8 frame_bits = NTFS_LZNT_CUNIT + sbi->cluster_bits;
837 u32 frame_size = 1u << frame_bits;
838 u32 pages_per_frame = frame_size >> PAGE_SHIFT;
839 u32 ip, off;
840 CLST frame;
841 u64 frame_vbo;
842 pgoff_t index;
843 bool frame_uptodate;
844
845 if (frame_size < PAGE_SIZE) {
846 /*
847 * frame_size == 8K if cluster 512
848 * frame_size == 64K if cluster 4096
849 */
850 ntfs_inode_warn(inode, "page size is bigger than frame size");
851 return -EOPNOTSUPP;
852 }
853
345482bc 854 pages = kmalloc_array(pages_per_frame, sizeof(struct page *), GFP_NOFS);
4342306f
KK
855 if (!pages)
856 return -ENOMEM;
857
4342306f
KK
858 err = file_remove_privs(file);
859 if (err)
860 goto out;
861
862 err = file_update_time(file);
863 if (err)
864 goto out;
865
e8b8e97f 866 /* Zero range [valid : pos). */
4342306f
KK
867 while (valid < pos) {
868 CLST lcn, clen;
869
870 frame = valid >> frame_bits;
871 frame_vbo = valid & ~(frame_size - 1);
872 off = valid & (frame_size - 1);
873
c380b52f
KK
874 err = attr_data_get_block(ni, frame << NTFS_LZNT_CUNIT, 1, &lcn,
875 &clen, NULL, false);
4342306f
KK
876 if (err)
877 goto out;
878
879 if (lcn == SPARSE_LCN) {
880 ni->i_valid = valid =
881 frame_vbo + ((u64)clen << sbi->cluster_bits);
882 continue;
883 }
884
e8b8e97f 885 /* Load full frame. */
4342306f
KK
886 err = ntfs_get_frame_pages(mapping, frame_vbo >> PAGE_SHIFT,
887 pages, pages_per_frame,
888 &frame_uptodate);
889 if (err)
890 goto out;
891
892 if (!frame_uptodate && off) {
893 err = ni_read_frame(ni, frame_vbo, pages,
894 pages_per_frame);
895 if (err) {
896 for (ip = 0; ip < pages_per_frame; ip++) {
897 page = pages[ip];
898 unlock_page(page);
899 put_page(page);
900 }
901 goto out;
902 }
903 }
904
905 ip = off >> PAGE_SHIFT;
906 off = offset_in_page(valid);
907 for (; ip < pages_per_frame; ip++, off = 0) {
908 page = pages[ip];
909 zero_user_segment(page, off, PAGE_SIZE);
910 flush_dcache_page(page);
911 SetPageUptodate(page);
912 }
913
914 ni_lock(ni);
915 err = ni_write_frame(ni, pages, pages_per_frame);
916 ni_unlock(ni);
917
918 for (ip = 0; ip < pages_per_frame; ip++) {
919 page = pages[ip];
920 SetPageUptodate(page);
921 unlock_page(page);
922 put_page(page);
923 }
924
925 if (err)
926 goto out;
927
928 ni->i_valid = valid = frame_vbo + frame_size;
929 }
930
e8b8e97f 931 /* Copy user data [pos : pos + count). */
4342306f
KK
932 while (count) {
933 size_t copied, bytes;
934
935 off = pos & (frame_size - 1);
936 bytes = frame_size - off;
937 if (bytes > count)
938 bytes = count;
939
4342306f
KK
940 frame_vbo = pos & ~(frame_size - 1);
941 index = frame_vbo >> PAGE_SHIFT;
942
a6294593 943 if (unlikely(fault_in_iov_iter_readable(from, bytes))) {
4342306f
KK
944 err = -EFAULT;
945 goto out;
946 }
947
e8b8e97f 948 /* Load full frame. */
4342306f
KK
949 err = ntfs_get_frame_pages(mapping, index, pages,
950 pages_per_frame, &frame_uptodate);
951 if (err)
952 goto out;
953
954 if (!frame_uptodate) {
955 loff_t to = pos + bytes;
956
957 if (off || (to < i_size && (to & (frame_size - 1)))) {
958 err = ni_read_frame(ni, frame_vbo, pages,
959 pages_per_frame);
960 if (err) {
961 for (ip = 0; ip < pages_per_frame;
962 ip++) {
963 page = pages[ip];
964 unlock_page(page);
965 put_page(page);
966 }
967 goto out;
968 }
969 }
970 }
971
972 WARN_ON(!bytes);
973 copied = 0;
974 ip = off >> PAGE_SHIFT;
975 off = offset_in_page(pos);
976
e8b8e97f 977 /* Copy user data to pages. */
4342306f
KK
978 for (;;) {
979 size_t cp, tail = PAGE_SIZE - off;
980
981 page = pages[ip];
982 cp = copy_page_from_iter_atomic(page, off,
983 min(tail, bytes), from);
984 flush_dcache_page(page);
985
986 copied += cp;
987 bytes -= cp;
988 if (!bytes || !cp)
989 break;
990
991 if (cp < tail) {
992 off += cp;
993 } else {
994 ip++;
995 off = 0;
996 }
997 }
998
999 ni_lock(ni);
1000 err = ni_write_frame(ni, pages, pages_per_frame);
1001 ni_unlock(ni);
1002
1003 for (ip = 0; ip < pages_per_frame; ip++) {
1004 page = pages[ip];
1005 ClearPageDirty(page);
1006 SetPageUptodate(page);
1007 unlock_page(page);
1008 put_page(page);
1009 }
1010
1011 if (err)
1012 goto out;
1013
1014 /*
1015 * We can loop for a long time in here. Be nice and allow
1016 * us to schedule out to avoid softlocking if preempt
1017 * is disabled.
1018 */
1019 cond_resched();
1020
1021 pos += copied;
1022 written += copied;
1023
1024 count = iov_iter_count(from);
1025 }
1026
1027out:
195c52bd 1028 kfree(pages);
4342306f 1029
4342306f
KK
1030 if (err < 0)
1031 return err;
1032
1033 iocb->ki_pos += written;
1034 if (iocb->ki_pos > ni->i_valid)
1035 ni->i_valid = iocb->ki_pos;
1036
1037 return written;
1038}
1039
1040/*
e8b8e97f 1041 * ntfs_file_write_iter - file_operations::write_iter
4342306f
KK
1042 */
1043static ssize_t ntfs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
1044{
1045 struct file *file = iocb->ki_filp;
1046 struct address_space *mapping = file->f_mapping;
1047 struct inode *inode = mapping->host;
1048 ssize_t ret;
4dea9cd5 1049 int err;
4342306f
KK
1050 struct ntfs_inode *ni = ntfs_i(inode);
1051
1052 if (is_encrypted(ni)) {
1053 ntfs_inode_warn(inode, "encrypted i/o not supported");
1054 return -EOPNOTSUPP;
1055 }
1056
1057 if (is_compressed(ni) && (iocb->ki_flags & IOCB_DIRECT)) {
1058 ntfs_inode_warn(inode, "direct i/o + compressed not supported");
1059 return -EOPNOTSUPP;
1060 }
1061
1062 if (is_dedup(ni)) {
1063 ntfs_inode_warn(inode, "write into deduplicated not supported");
1064 return -EOPNOTSUPP;
1065 }
1066
1067 if (!inode_trylock(inode)) {
1068 if (iocb->ki_flags & IOCB_NOWAIT)
1069 return -EAGAIN;
1070 inode_lock(inode);
1071 }
1072
1073 ret = generic_write_checks(iocb, from);
1074 if (ret <= 0)
1075 goto out;
1076
4dea9cd5
KK
1077 err = file_modified(iocb->ki_filp);
1078 if (err) {
1079 ret = err;
1080 goto out;
1081 }
1082
4342306f 1083 if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
d3624466 1084 /* Should never be here, see ntfs_file_open(). */
4342306f
KK
1085 ret = -EOPNOTSUPP;
1086 goto out;
1087 }
1088
1089 ret = ntfs_extend(inode, iocb->ki_pos, ret, file);
1090 if (ret)
1091 goto out;
1092
96de65a9 1093 ret = is_compressed(ni) ? ntfs_compress_write(iocb, from) :
f0377761 1094 __generic_file_write_iter(iocb, from);
4342306f
KK
1095
1096out:
1097 inode_unlock(inode);
1098
1099 if (ret > 0)
1100 ret = generic_write_sync(iocb, ret);
1101
1102 return ret;
1103}
1104
1105/*
e8b8e97f 1106 * ntfs_file_open - file_operations::open
4342306f
KK
1107 */
1108int ntfs_file_open(struct inode *inode, struct file *file)
1109{
1110 struct ntfs_inode *ni = ntfs_i(inode);
1111
1112 if (unlikely((is_compressed(ni) || is_encrypted(ni)) &&
1113 (file->f_flags & O_DIRECT))) {
1114 return -EOPNOTSUPP;
1115 }
1116
e8b8e97f 1117 /* Decompress "external compressed" file if opened for rw. */
4342306f
KK
1118 if ((ni->ni_flags & NI_FLAG_COMPRESSED_MASK) &&
1119 (file->f_flags & (O_WRONLY | O_RDWR | O_TRUNC))) {
1120#ifdef CONFIG_NTFS3_LZX_XPRESS
1121 int err = ni_decompress_file(ni);
1122
1123 if (err)
1124 return err;
1125#else
1126 ntfs_inode_warn(
1127 inode,
1128 "activate CONFIG_NTFS3_LZX_XPRESS to write external compressed files");
1129 return -EOPNOTSUPP;
1130#endif
1131 }
1132
1133 return generic_file_open(inode, file);
1134}
1135
1136/*
e8b8e97f 1137 * ntfs_file_release - file_operations::release
4342306f
KK
1138 */
1139static int ntfs_file_release(struct inode *inode, struct file *file)
1140{
1141 struct ntfs_inode *ni = ntfs_i(inode);
1142 struct ntfs_sb_info *sbi = ni->mi.sbi;
1143 int err = 0;
1144
e8b8e97f 1145 /* If we are last writer on the inode, drop the block reservation. */
96de65a9
KK
1146 if (sbi->options->prealloc &&
1147 ((file->f_mode & FMODE_WRITE) &&
1148 atomic_read(&inode->i_writecount) == 1)) {
4342306f
KK
1149 ni_lock(ni);
1150 down_write(&ni->file.run_lock);
1151
1152 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run,
1153 inode->i_size, &ni->i_valid, false, NULL);
1154
1155 up_write(&ni->file.run_lock);
1156 ni_unlock(ni);
1157 }
1158 return err;
1159}
1160
e8b8e97f
KA
1161/*
1162 * ntfs_fiemap - file_operations::fiemap
1163 */
4342306f
KK
1164int ntfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1165 __u64 start, __u64 len)
1166{
1167 int err;
1168 struct ntfs_inode *ni = ntfs_i(inode);
1169
d4e8e135
KA
1170 err = fiemap_prep(inode, fieinfo, start, &len, ~FIEMAP_FLAG_XATTR);
1171 if (err)
1172 return err;
4342306f
KK
1173
1174 ni_lock(ni);
1175
1176 err = ni_fiemap(ni, fieinfo, start, len);
1177
1178 ni_unlock(ni);
1179
1180 return err;
1181}
1182
1183// clang-format off
1184const struct inode_operations ntfs_file_inode_operations = {
1185 .getattr = ntfs_getattr,
1186 .setattr = ntfs3_setattr,
1187 .listxattr = ntfs_listxattr,
75c5e0c9 1188 .get_acl = ntfs_get_acl,
4342306f
KK
1189 .set_acl = ntfs_set_acl,
1190 .fiemap = ntfs_fiemap,
1191};
1192
1193const struct file_operations ntfs_file_operations = {
1194 .llseek = generic_file_llseek,
1195 .read_iter = ntfs_file_read_iter,
1196 .write_iter = ntfs_file_write_iter,
1197 .unlocked_ioctl = ntfs_ioctl,
1198#ifdef CONFIG_COMPAT
1199 .compat_ioctl = ntfs_compat_ioctl,
1200#endif
51494398 1201 .splice_read = ntfs_file_splice_read,
4342306f
KK
1202 .mmap = ntfs_file_mmap,
1203 .open = ntfs_file_open,
1204 .fsync = generic_file_fsync,
1205 .splice_write = iter_file_splice_write,
1206 .fallocate = ntfs_fallocate,
1207 .release = ntfs_file_release,
1208};
1209// clang-format on