file.c 26.9 KB
Newer Older
1 2 3 4 5
// SPDX-License-Identifier: GPL-2.0
/*
 *
 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
 *
6 7
 *  Regular file handling primitives for NTFS-based filesystems.
 *
8
 */
9

10
#include <linux/backing-dev.h>
11
#include <linux/blkdev.h>
12 13 14 15 16 17 18 19 20 21 22 23 24
#include <linux/buffer_head.h>
#include <linux/compat.h>
#include <linux/falloc.h>
#include <linux/fiemap.h>

#include "debug.h"
#include "ntfs.h"
#include "ntfs_fs.h"

static int ntfs_ioctl_fitrim(struct ntfs_sb_info *sbi, unsigned long arg)
{
	struct fstrim_range __user *user_range;
	struct fstrim_range range;
25
	struct block_device *dev;
26 27 28 29 30
	int err;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

31 32
	dev = sbi->sb->s_bdev;
	if (!bdev_max_discard_sectors(dev))
33 34 35 36 37 38
		return -EOPNOTSUPP;

	user_range = (struct fstrim_range __user *)arg;
	if (copy_from_user(&range, user_range, sizeof(range)))
		return -EFAULT;

39
	range.minlen = max_t(u32, range.minlen, bdev_discard_granularity(dev));
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

	err = ntfs_trim_fs(sbi, &range);
	if (err < 0)
		return err;

	if (copy_to_user(user_range, &range, sizeof(range)))
		return -EFAULT;

	return 0;
}

static long ntfs_ioctl(struct file *filp, u32 cmd, unsigned long arg)
{
	struct inode *inode = file_inode(filp);
	struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;

	switch (cmd) {
	case FITRIM:
		return ntfs_ioctl_fitrim(sbi, arg);
	}
60
	return -ENOTTY; /* Inappropriate ioctl for device. */
61 62 63 64 65 66 67 68 69 70 71
}

#ifdef CONFIG_COMPAT
static long ntfs_compat_ioctl(struct file *filp, u32 cmd, unsigned long arg)

{
	return ntfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
}
#endif

/*
72
 * ntfs_getattr - inode_operations::getattr
73
 */
74
int ntfs_getattr(struct mnt_idmap *idmap, const struct path *path,
75 76 77 78 79 80 81 82 83 84 85 86 87
		 struct kstat *stat, u32 request_mask, u32 flags)
{
	struct inode *inode = d_inode(path->dentry);
	struct ntfs_inode *ni = ntfs_i(inode);

	if (is_compressed(ni))
		stat->attributes |= STATX_ATTR_COMPRESSED;

	if (is_encrypted(ni))
		stat->attributes |= STATX_ATTR_ENCRYPTED;

	stat->attributes_mask |= STATX_ATTR_COMPRESSED | STATX_ATTR_ENCRYPTED;

88
	generic_fillattr(idmap, request_mask, inode, stat);
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

	stat->result_mask |= STATX_BTIME;
	stat->btime = ni->i_crtime;
	stat->blksize = ni->mi.sbi->cluster_size; /* 512, 1K, ..., 2M */

	return 0;
}

static int ntfs_extend_initialized_size(struct file *file,
					struct ntfs_inode *ni,
					const loff_t valid,
					const loff_t new_valid)
{
	struct inode *inode = &ni->vfs_inode;
	struct address_space *mapping = inode->i_mapping;
	struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
	loff_t pos = valid;
	int err;

	if (is_resident(ni)) {
		ni->i_valid = new_valid;
		return 0;
	}

	WARN_ON(is_compressed(ni));
	WARN_ON(valid >= new_valid);

	for (;;) {
		u32 zerofrom, len;
		struct page *page;
		u8 bits;
		CLST vcn, lcn, clen;

		if (is_sparsed(ni)) {
			bits = sbi->cluster_bits;
			vcn = pos >> bits;

126 127
			err = attr_data_get_block(ni, vcn, 1, &lcn, &clen, NULL,
						  false);
128 129 130 131
			if (err)
				goto out;

			if (lcn == SPARSE_LCN) {
132 133 134
				pos = ((loff_t)clen + vcn) << bits;
				ni->i_valid = pos;
				goto next;
135 136 137 138 139 140 141 142 143
			}
		}

		zerofrom = pos & (PAGE_SIZE - 1);
		len = PAGE_SIZE - zerofrom;

		if (pos + len > new_valid)
			len = new_valid - pos;

144
		err = ntfs_write_begin(file, mapping, pos, len, &page, NULL);
145 146 147 148 149
		if (err)
			goto out;

		zero_user_segment(page, zerofrom, PAGE_SIZE);

150
		/* This function in any case puts page. */
151
		err = ntfs_write_end(file, mapping, pos, len, len, page, NULL);
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
		if (err < 0)
			goto out;
		pos += len;

next:
		if (pos >= new_valid)
			break;

		balance_dirty_pages_ratelimited(mapping);
		cond_resched();
	}

	return 0;

out:
	ni->i_valid = valid;
	ntfs_inode_warn(inode, "failed to extend initialized size to %llx.",
			new_valid);
	return err;
}

/*
174
 * ntfs_zero_range - Helper function for punch_hole.
175 176
 *
 * It zeroes a range [vbo, vbo_to).
177 178 179 180 181
 */
static int ntfs_zero_range(struct inode *inode, u64 vbo, u64 vbo_to)
{
	int err = 0;
	struct address_space *mapping = inode->i_mapping;
182
	u32 blocksize = i_blocksize(inode);
183
	pgoff_t idx = vbo >> PAGE_SHIFT;
184
	u32 from = vbo & (PAGE_SIZE - 1);
185 186 187
	pgoff_t idx_end = (vbo_to + PAGE_SIZE - 1) >> PAGE_SHIFT;
	loff_t page_off;
	struct buffer_head *head, *bh;
188
	u32 bh_next, bh_off, to;
189
	sector_t iblock;
190
	struct folio *folio;
191
	bool dirty = false;
192

193
	for (; idx < idx_end; idx += 1, from = 0) {
194
		page_off = (loff_t)idx << PAGE_SHIFT;
195
		to = (page_off + PAGE_SIZE) > vbo_to ? (vbo_to - page_off) :
196
						       PAGE_SIZE;
197 198
		iblock = page_off >> inode->i_blkbits;

199 200 201 202 203
		folio = __filemap_get_folio(mapping, idx,
				FGP_LOCK | FGP_ACCESSED | FGP_CREAT,
				mapping_gfp_constraint(mapping, ~__GFP_FS));
		if (IS_ERR(folio))
			return PTR_ERR(folio);
204

205 206
		head = folio_buffers(folio);
		if (!head)
207
			head = create_empty_buffers(folio, blocksize, 0);
208

209
		bh = head;
210 211 212 213
		bh_off = 0;
		do {
			bh_next = bh_off + blocksize;

214
			if (bh_next <= from || bh_off >= to)
215 216 217 218
				continue;

			if (!buffer_mapped(bh)) {
				ntfs_get_block(inode, iblock, bh, 0);
219
				/* Unmapped? It's a hole - nothing to do. */
220 221 222 223
				if (!buffer_mapped(bh))
					continue;
			}

224
			/* Ok, it's mapped. Make sure it's up-to-date. */
225
			if (folio_test_uptodate(folio))
226
				set_buffer_uptodate(bh);
227 228 229 230 231
			else if (bh_read(bh, 0) < 0) {
				err = -EIO;
				folio_unlock(folio);
				folio_put(folio);
				goto out;
232 233 234 235 236 237
			}

			mark_buffer_dirty(bh);
		} while (bh_off = bh_next, iblock += 1,
			 head != (bh = bh->b_this_page));

238
		folio_zero_segment(folio, from, to);
239
		dirty = true;
240

241 242
		folio_unlock(folio);
		folio_put(folio);
243 244 245
		cond_resched();
	}
out:
246 247
	if (dirty)
		mark_inode_dirty(inode);
248 249 250 251
	return err;
}

/*
252
 * ntfs_file_mmap - file_operations::mmap
253 254 255 256 257 258 259 260 261 262
 */
static int ntfs_file_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct address_space *mapping = file->f_mapping;
	struct inode *inode = mapping->host;
	struct ntfs_inode *ni = ntfs_i(inode);
	u64 from = ((u64)vma->vm_pgoff << PAGE_SHIFT);
	bool rw = vma->vm_flags & VM_WRITE;
	int err;

263 264 265
	if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
		return -EIO;

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	if (is_encrypted(ni)) {
		ntfs_inode_warn(inode, "mmap encrypted not supported");
		return -EOPNOTSUPP;
	}

	if (is_dedup(ni)) {
		ntfs_inode_warn(inode, "mmap deduplicated not supported");
		return -EOPNOTSUPP;
	}

	if (is_compressed(ni) && rw) {
		ntfs_inode_warn(inode, "mmap(write) compressed not supported");
		return -EOPNOTSUPP;
	}

	if (rw) {
		u64 to = min_t(loff_t, i_size_read(inode),
			       from + vma->vm_end - vma->vm_start);

		if (is_sparsed(ni)) {
286
			/* Allocate clusters for rw map. */
287 288 289 290 291 292 293 294
			struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
			CLST lcn, len;
			CLST vcn = from >> sbi->cluster_bits;
			CLST end = bytes_to_cluster(sbi, to);
			bool new;

			for (; vcn < end; vcn += len) {
				err = attr_data_get_block(ni, vcn, 1, &lcn,
295
							  &len, &new, true);
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
				if (err)
					goto out;
			}
		}

		if (ni->i_valid < to) {
			if (!inode_trylock(inode)) {
				err = -EAGAIN;
				goto out;
			}
			err = ntfs_extend_initialized_size(file, ni,
							   ni->i_valid, to);
			inode_unlock(inode);
			if (err)
				goto out;
		}
	}

	err = generic_file_mmap(file, vma);
out:
	return err;
}

static int ntfs_extend(struct inode *inode, loff_t pos, size_t count,
		       struct file *file)
{
	struct ntfs_inode *ni = ntfs_i(inode);
	struct address_space *mapping = inode->i_mapping;
	loff_t end = pos + count;
	bool extend_init = file && pos > ni->i_valid;
	int err;

	if (end <= inode->i_size && !extend_init)
		return 0;

331
	/* Mark rw ntfs as dirty. It will be cleared at umount. */
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
	ntfs_set_state(ni->mi.sbi, NTFS_DIRTY_DIRTY);

	if (end > inode->i_size) {
		err = ntfs_set_size(inode, end);
		if (err)
			goto out;
	}

	if (extend_init && !is_compressed(ni)) {
		err = ntfs_extend_initialized_size(file, ni, ni->i_valid, pos);
		if (err)
			goto out;
	} else {
		err = 0;
	}

348
	inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
	mark_inode_dirty(inode);

	if (IS_SYNC(inode)) {
		int err2;

		err = filemap_fdatawrite_range(mapping, pos, end - 1);
		err2 = sync_mapping_buffers(mapping);
		if (!err)
			err = err2;
		err2 = write_inode_now(inode, 1);
		if (!err)
			err = err2;
		if (!err)
			err = filemap_fdatawait_range(mapping, pos, end - 1);
	}

out:
	return err;
}

static int ntfs_truncate(struct inode *inode, loff_t new_size)
{
	struct super_block *sb = inode->i_sb;
	struct ntfs_inode *ni = ntfs_i(inode);
	int err, dirty = 0;
	u64 new_valid;

	if (!S_ISREG(inode->i_mode))
		return 0;

	if (is_compressed(ni)) {
		if (ni->i_valid > new_size)
			ni->i_valid = new_size;
	} else {
		err = block_truncate_page(inode->i_mapping, new_size,
					  ntfs_get_block);
		if (err)
			return err;
	}

	new_valid = ntfs_up_block(sb, min_t(u64, ni->i_valid, new_size));

	truncate_setsize(inode, new_size);

393 394
	ni_lock(ni);

395 396
	down_write(&ni->file.run_lock);
	err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run, new_size,
397
			    &new_valid, ni->mi.sbi->options->prealloc, NULL);
398 399 400 401 402 403 404 405
	up_write(&ni->file.run_lock);

	if (new_valid < ni->i_valid)
		ni->i_valid = new_valid;

	ni_unlock(ni);

	ni->std_fa |= FILE_ATTRIBUTE_ARCHIVE;
406
	inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
	if (!IS_DIRSYNC(inode)) {
		dirty = 1;
	} else {
		err = ntfs_sync_inode(inode);
		if (err)
			return err;
	}

	if (dirty)
		mark_inode_dirty(inode);

	/*ntfs_flush_inodes(inode->i_sb, inode, NULL);*/

	return 0;
}

/*
424 425
 * ntfs_fallocate
 *
426 427 428 429 430 431 432 433 434
 * Preallocate space for a file. This implements ntfs's fallocate file
 * operation, which gets called from sys_fallocate system call. User
 * space requests 'len' bytes at 'vbo'. If FALLOC_FL_KEEP_SIZE is set
 * we just allocate clusters without zeroing them out. Otherwise we
 * allocate and zero out clusters via an expanding truncate.
 */
static long ntfs_fallocate(struct file *file, int mode, loff_t vbo, loff_t len)
{
	struct inode *inode = file->f_mapping->host;
435
	struct address_space *mapping = inode->i_mapping;
436 437 438 439
	struct super_block *sb = inode->i_sb;
	struct ntfs_sb_info *sbi = sb->s_fs_info;
	struct ntfs_inode *ni = ntfs_i(inode);
	loff_t end = vbo + len;
440 441
	loff_t vbo_down = round_down(vbo, max_t(unsigned long,
						sbi->cluster_size, PAGE_SIZE));
442 443 444
	bool is_supported_holes = is_sparsed(ni) || is_compressed(ni);
	loff_t i_size, new_size;
	bool map_locked;
445 446
	int err;

447
	/* No support for dir. */
448 449 450
	if (!S_ISREG(inode->i_mode))
		return -EOPNOTSUPP;

451 452 453 454 455 456 457 458 459 460 461 462 463 464
	/*
	 * vfs_fallocate checks all possible combinations of mode.
	 * Do additional checks here before ntfs_set_state(dirty).
	 */
	if (mode & FALLOC_FL_PUNCH_HOLE) {
		if (!is_supported_holes)
			return -EOPNOTSUPP;
	} else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
	} else if (mode & FALLOC_FL_INSERT_RANGE) {
		if (!is_supported_holes)
			return -EOPNOTSUPP;
	} else if (mode &
		   ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
		     FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_INSERT_RANGE)) {
465 466 467 468 469 470 471 472 473
		ntfs_inode_warn(inode, "fallocate(0x%x) is not supported",
				mode);
		return -EOPNOTSUPP;
	}

	ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);

	inode_lock(inode);
	i_size = inode->i_size;
474 475
	new_size = max(end, i_size);
	map_locked = false;
476 477

	if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
478
		/* Should never be here, see ntfs_file_open. */
479 480 481 482
		err = -EOPNOTSUPP;
		goto out;
	}

483 484 485 486 487 488 489
	if (mode & (FALLOC_FL_PUNCH_HOLE | FALLOC_FL_COLLAPSE_RANGE |
		    FALLOC_FL_INSERT_RANGE)) {
		inode_dio_wait(inode);
		filemap_invalidate_lock(mapping);
		map_locked = true;
	}

490 491 492 493
	if (mode & FALLOC_FL_PUNCH_HOLE) {
		u32 frame_size;
		loff_t mask, vbo_a, end_a, tmp;

494 495
		err = filemap_write_and_wait_range(mapping, vbo_down,
						   LLONG_MAX);
496 497 498 499 500 501 502 503
		if (err)
			goto out;

		truncate_pagecache(inode, vbo_down);

		ni_lock(ni);
		err = attr_punch_hole(ni, vbo, len, &frame_size);
		ni_unlock(ni);
504 505 506
		if (!err)
			goto ok;

507 508 509
		if (err != E_NTFS_NOTALIGNED)
			goto out;

510
		/* Process not aligned punch. */
511
		err = 0;
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
		mask = frame_size - 1;
		vbo_a = (vbo + mask) & ~mask;
		end_a = end & ~mask;

		tmp = min(vbo_a, end);
		if (tmp > vbo) {
			err = ntfs_zero_range(inode, vbo, tmp);
			if (err)
				goto out;
		}

		if (vbo < end_a && end_a < end) {
			err = ntfs_zero_range(inode, end_a, end);
			if (err)
				goto out;
		}

		/* Aligned punch_hole */
		if (end_a > vbo_a) {
			ni_lock(ni);
			err = attr_punch_hole(ni, vbo_a, end_a - vbo_a, NULL);
			ni_unlock(ni);
534 535
			if (err)
				goto out;
536 537 538 539 540 541
		}
	} else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
		/*
		 * Write tail of the last page before removed range since
		 * it will get removed from the page cache below.
		 */
542
		err = filemap_write_and_wait_range(mapping, vbo_down, vbo);
543 544 545 546 547
		if (err)
			goto out;

		/*
		 * Write data that will be shifted to preserve them
548
		 * when discarding page cache below.
549
		 */
550
		err = filemap_write_and_wait_range(mapping, end, LLONG_MAX);
551 552 553 554 555 556 557 558
		if (err)
			goto out;

		truncate_pagecache(inode, vbo_down);

		ni_lock(ni);
		err = attr_collapse_range(ni, vbo, len);
		ni_unlock(ni);
559 560 561 562 563 564 565 566 567 568 569 570
	} else if (mode & FALLOC_FL_INSERT_RANGE) {
		/* Check new size. */
		err = inode_newsize_ok(inode, new_size);
		if (err)
			goto out;

		/* Write out all dirty pages. */
		err = filemap_write_and_wait_range(mapping, vbo_down,
						   LLONG_MAX);
		if (err)
			goto out;
		truncate_pagecache(inode, vbo_down);
571

572 573 574
		ni_lock(ni);
		err = attr_insert_range(ni, vbo, len);
		ni_unlock(ni);
575 576
		if (err)
			goto out;
577
	} else {
578
		/* Check new size. */
579
		u8 cluster_bits = sbi->cluster_bits;
580 581 582 583 584 585

		/* generic/213: expected -ENOSPC instead of -EFBIG. */
		if (!is_supported_holes) {
			loff_t to_alloc = new_size - inode_get_bytes(inode);

			if (to_alloc > 0 &&
586
			    (to_alloc >> cluster_bits) >
587 588 589 590 591
				    wnd_zeroes(&sbi->used.bitmap)) {
				err = -ENOSPC;
				goto out;
			}
		}
592 593 594 595 596

		err = inode_newsize_ok(inode, new_size);
		if (err)
			goto out;

597 598 599 600 601 602 603 604
		if (new_size > i_size) {
			/*
			 * Allocate clusters, do not change 'valid' size.
			 */
			err = ntfs_set_size(inode, new_size);
			if (err)
				goto out;
		}
605

606
		if (is_supported_holes) {
607
			CLST vcn = vbo >> cluster_bits;
608
			CLST cend = bytes_to_cluster(sbi, end);
609
			CLST cend_v = bytes_to_cluster(sbi, ni->i_valid);
610 611 612
			CLST lcn, clen;
			bool new;

613 614 615
			if (cend_v > cend)
				cend_v = cend;

616
			/*
617
			 * Allocate and zero new clusters.
618
			 * Zeroing these clusters may be too long.
619 620 621 622 623 624 625 626 627 628
			 */
			for (; vcn < cend_v; vcn += clen) {
				err = attr_data_get_block(ni, vcn, cend_v - vcn,
							  &lcn, &clen, &new,
							  true);
				if (err)
					goto out;
			}
			/*
			 * Allocate but not zero new clusters.
629 630 631
			 */
			for (; vcn < cend; vcn += clen) {
				err = attr_data_get_block(ni, vcn, cend - vcn,
632 633
							  &lcn, &clen, &new,
							  false);
634 635 636 637 638 639 640
				if (err)
					goto out;
			}
		}

		if (mode & FALLOC_FL_KEEP_SIZE) {
			ni_lock(ni);
641
			/* True - Keep preallocated. */
642 643 644 645
			err = attr_set_size(ni, ATTR_DATA, NULL, 0,
					    &ni->file.run, i_size, &ni->i_valid,
					    true, NULL);
			ni_unlock(ni);
646 647
			if (err)
				goto out;
648
		} else if (new_size > i_size) {
649
			i_size_write(inode, new_size);
650 651 652
		}
	}

653
ok:
654 655 656 657
	err = file_modified(file);
	if (err)
		goto out;

658
out:
659 660
	if (map_locked)
		filemap_invalidate_unlock(mapping);
661 662

	if (!err) {
663
		inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
664 665 666 667 668 669 670 671
		mark_inode_dirty(inode);
	}

	inode_unlock(inode);
	return err;
}

/*
672
 * ntfs3_setattr - inode_operations::setattr
673
 */
674
int ntfs3_setattr(struct mnt_idmap *idmap, struct dentry *dentry,
675 676 677 678 679 680 681 682
		  struct iattr *attr)
{
	struct inode *inode = d_inode(dentry);
	struct ntfs_inode *ni = ntfs_i(inode);
	u32 ia_valid = attr->ia_valid;
	umode_t mode = inode->i_mode;
	int err;

683 684 685
	if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
		return -EIO;

686
	err = setattr_prepare(idmap, dentry, attr);
687 688 689 690
	if (err)
		goto out;

	if (ia_valid & ATTR_SIZE) {
691
		loff_t newsize, oldsize;
692 693

		if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
694
			/* Should never be here, see ntfs_file_open(). */
695 696 697 698
			err = -EOPNOTSUPP;
			goto out;
		}
		inode_dio_wait(inode);
699
		oldsize = i_size_read(inode);
700
		newsize = attr->ia_size;
701

702 703 704 705
		if (newsize <= oldsize)
			err = ntfs_truncate(inode, newsize);
		else
			err = ntfs_extend(inode, newsize, 0, NULL);
706 707 708 709 710

		if (err)
			goto out;

		ni->ni_flags |= NI_FLAG_UPDATE_PARENT;
711
		i_size_write(inode, newsize);
712 713
	}

714
	setattr_copy(idmap, inode, attr);
715 716

	if (mode != inode->i_mode) {
717
		err = ntfs_acl_chmod(idmap, dentry);
718 719 720
		if (err)
			goto out;

721
		/* Linux 'w' -> Windows 'ro'. */
722 723 724 725 726 727 728
		if (0222 & inode->i_mode)
			ni->std_fa &= ~FILE_ATTRIBUTE_READONLY;
		else
			ni->std_fa |= FILE_ATTRIBUTE_READONLY;
	}

	if (ia_valid & (ATTR_UID | ATTR_GID | ATTR_MODE))
729
		ntfs_save_wsl_perm(inode, NULL);
730 731 732 733 734 735 736 737 738 739 740
	mark_inode_dirty(inode);
out:
	return err;
}

static ssize_t ntfs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
{
	struct file *file = iocb->ki_filp;
	struct inode *inode = file->f_mapping->host;
	struct ntfs_inode *ni = ntfs_i(inode);

741 742 743
	if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
		return -EIO;

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
	if (is_encrypted(ni)) {
		ntfs_inode_warn(inode, "encrypted i/o not supported");
		return -EOPNOTSUPP;
	}

	if (is_compressed(ni) && (iocb->ki_flags & IOCB_DIRECT)) {
		ntfs_inode_warn(inode, "direct i/o + compressed not supported");
		return -EOPNOTSUPP;
	}

#ifndef CONFIG_NTFS3_LZX_XPRESS
	if (ni->ni_flags & NI_FLAG_COMPRESSED_MASK) {
		ntfs_inode_warn(
			inode,
			"activate CONFIG_NTFS3_LZX_XPRESS to read external compressed files");
		return -EOPNOTSUPP;
	}
#endif

	if (is_dedup(ni)) {
		ntfs_inode_warn(inode, "read deduplicated not supported");
		return -EOPNOTSUPP;
	}

768
	return generic_file_read_iter(iocb, iter);
769 770
}

771
static ssize_t ntfs_file_splice_read(struct file *in, loff_t *ppos,
772 773
				     struct pipe_inode_info *pipe, size_t len,
				     unsigned int flags)
774 775 776 777
{
	struct inode *inode = in->f_mapping->host;
	struct ntfs_inode *ni = ntfs_i(inode);

778 779 780
	if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
		return -EIO;

781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
	if (is_encrypted(ni)) {
		ntfs_inode_warn(inode, "encrypted i/o not supported");
		return -EOPNOTSUPP;
	}

#ifndef CONFIG_NTFS3_LZX_XPRESS
	if (ni->ni_flags & NI_FLAG_COMPRESSED_MASK) {
		ntfs_inode_warn(
			inode,
			"activate CONFIG_NTFS3_LZX_XPRESS to read external compressed files");
		return -EOPNOTSUPP;
	}
#endif

	if (is_dedup(ni)) {
		ntfs_inode_warn(inode, "read deduplicated not supported");
		return -EOPNOTSUPP;
	}

800
	return filemap_splice_read(in, ppos, pipe, len, flags);
801 802
}

803 804 805 806 807
/*
 * ntfs_get_frame_pages
 *
 * Return: Array of locked pages.
 */
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
static int ntfs_get_frame_pages(struct address_space *mapping, pgoff_t index,
				struct page **pages, u32 pages_per_frame,
				bool *frame_uptodate)
{
	gfp_t gfp_mask = mapping_gfp_mask(mapping);
	u32 npages;

	*frame_uptodate = true;

	for (npages = 0; npages < pages_per_frame; npages++, index++) {
		struct page *page;

		page = find_or_create_page(mapping, index, gfp_mask);
		if (!page) {
			while (npages--) {
				page = pages[npages];
				unlock_page(page);
				put_page(page);
			}

			return -ENOMEM;
		}

		if (!PageUptodate(page))
			*frame_uptodate = false;

		pages[npages] = page;
	}

	return 0;
}

840 841 842
/*
 * ntfs_compress_write - Helper for ntfs_file_write_iter() (compressed files).
 */
843 844 845 846 847 848 849
static ssize_t ntfs_compress_write(struct kiocb *iocb, struct iov_iter *from)
{
	int err;
	struct file *file = iocb->ki_filp;
	size_t count = iov_iter_count(from);
	loff_t pos = iocb->ki_pos;
	struct inode *inode = file_inode(file);
850
	loff_t i_size = i_size_read(inode);
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
	struct address_space *mapping = inode->i_mapping;
	struct ntfs_inode *ni = ntfs_i(inode);
	u64 valid = ni->i_valid;
	struct ntfs_sb_info *sbi = ni->mi.sbi;
	struct page *page, **pages = NULL;
	size_t written = 0;
	u8 frame_bits = NTFS_LZNT_CUNIT + sbi->cluster_bits;
	u32 frame_size = 1u << frame_bits;
	u32 pages_per_frame = frame_size >> PAGE_SHIFT;
	u32 ip, off;
	CLST frame;
	u64 frame_vbo;
	pgoff_t index;
	bool frame_uptodate;

	if (frame_size < PAGE_SIZE) {
		/*
		 * frame_size == 8K if cluster 512
		 * frame_size == 64K if cluster 4096
		 */
		ntfs_inode_warn(inode, "page size is bigger than frame size");
		return -EOPNOTSUPP;
	}

875
	pages = kmalloc_array(pages_per_frame, sizeof(struct page *), GFP_NOFS);
876 877 878 879 880 881 882 883 884 885 886
	if (!pages)
		return -ENOMEM;

	err = file_remove_privs(file);
	if (err)
		goto out;

	err = file_update_time(file);
	if (err)
		goto out;

887
	/* Zero range [valid : pos). */
888 889 890 891 892 893 894
	while (valid < pos) {
		CLST lcn, clen;

		frame = valid >> frame_bits;
		frame_vbo = valid & ~(frame_size - 1);
		off = valid & (frame_size - 1);

895 896
		err = attr_data_get_block(ni, frame << NTFS_LZNT_CUNIT, 1, &lcn,
					  &clen, NULL, false);
897 898 899 900 901 902 903 904 905
		if (err)
			goto out;

		if (lcn == SPARSE_LCN) {
			ni->i_valid = valid =
				frame_vbo + ((u64)clen << sbi->cluster_bits);
			continue;
		}

906
		/* Load full frame. */
907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951
		err = ntfs_get_frame_pages(mapping, frame_vbo >> PAGE_SHIFT,
					   pages, pages_per_frame,
					   &frame_uptodate);
		if (err)
			goto out;

		if (!frame_uptodate && off) {
			err = ni_read_frame(ni, frame_vbo, pages,
					    pages_per_frame);
			if (err) {
				for (ip = 0; ip < pages_per_frame; ip++) {
					page = pages[ip];
					unlock_page(page);
					put_page(page);
				}
				goto out;
			}
		}

		ip = off >> PAGE_SHIFT;
		off = offset_in_page(valid);
		for (; ip < pages_per_frame; ip++, off = 0) {
			page = pages[ip];
			zero_user_segment(page, off, PAGE_SIZE);
			flush_dcache_page(page);
			SetPageUptodate(page);
		}

		ni_lock(ni);
		err = ni_write_frame(ni, pages, pages_per_frame);
		ni_unlock(ni);

		for (ip = 0; ip < pages_per_frame; ip++) {
			page = pages[ip];
			SetPageUptodate(page);
			unlock_page(page);
			put_page(page);
		}

		if (err)
			goto out;

		ni->i_valid = valid = frame_vbo + frame_size;
	}

952
	/* Copy user data [pos : pos + count). */
953 954 955 956 957 958 959 960 961 962 963
	while (count) {
		size_t copied, bytes;

		off = pos & (frame_size - 1);
		bytes = frame_size - off;
		if (bytes > count)
			bytes = count;

		frame_vbo = pos & ~(frame_size - 1);
		index = frame_vbo >> PAGE_SHIFT;

964
		if (unlikely(fault_in_iov_iter_readable(from, bytes))) {
965 966 967 968
			err = -EFAULT;
			goto out;
		}

969
		/* Load full frame. */
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997
		err = ntfs_get_frame_pages(mapping, index, pages,
					   pages_per_frame, &frame_uptodate);
		if (err)
			goto out;

		if (!frame_uptodate) {
			loff_t to = pos + bytes;

			if (off || (to < i_size && (to & (frame_size - 1)))) {
				err = ni_read_frame(ni, frame_vbo, pages,
						    pages_per_frame);
				if (err) {
					for (ip = 0; ip < pages_per_frame;
					     ip++) {
						page = pages[ip];
						unlock_page(page);
						put_page(page);
					}
					goto out;
				}
			}
		}

		WARN_ON(!bytes);
		copied = 0;
		ip = off >> PAGE_SHIFT;
		off = offset_in_page(pos);

998
		/* Copy user data to pages. */
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
		for (;;) {
			size_t cp, tail = PAGE_SIZE - off;

			page = pages[ip];
			cp = copy_page_from_iter_atomic(page, off,
							min(tail, bytes), from);
			flush_dcache_page(page);

			copied += cp;
			bytes -= cp;
			if (!bytes || !cp)
				break;

			if (cp < tail) {
				off += cp;
			} else {
				ip++;
				off = 0;
			}
		}

		ni_lock(ni);
		err = ni_write_frame(ni, pages, pages_per_frame);
		ni_unlock(ni);

		for (ip = 0; ip < pages_per_frame; ip++) {
			page = pages[ip];
			ClearPageDirty(page);
			SetPageUptodate(page);
			unlock_page(page);
			put_page(page);
		}

		if (err)
			goto out;

		/*
		 * We can loop for a long time in here. Be nice and allow
		 * us to schedule out to avoid softlocking if preempt
		 * is disabled.
		 */
		cond_resched();

		pos += copied;
		written += copied;

		count = iov_iter_count(from);
	}

out:
1049
	kfree(pages);
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061

	if (err < 0)
		return err;

	iocb->ki_pos += written;
	if (iocb->ki_pos > ni->i_valid)
		ni->i_valid = iocb->ki_pos;

	return written;
}

/*
1062
 * ntfs_file_write_iter - file_operations::write_iter
1063 1064 1065 1066 1067 1068 1069
 */
static ssize_t ntfs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
{
	struct file *file = iocb->ki_filp;
	struct address_space *mapping = file->f_mapping;
	struct inode *inode = mapping->host;
	ssize_t ret;
1070
	int err;
1071 1072
	struct ntfs_inode *ni = ntfs_i(inode);

1073 1074 1075
	if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
		return -EIO;

1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
	if (is_encrypted(ni)) {
		ntfs_inode_warn(inode, "encrypted i/o not supported");
		return -EOPNOTSUPP;
	}

	if (is_compressed(ni) && (iocb->ki_flags & IOCB_DIRECT)) {
		ntfs_inode_warn(inode, "direct i/o + compressed not supported");
		return -EOPNOTSUPP;
	}

	if (is_dedup(ni)) {
		ntfs_inode_warn(inode, "write into deduplicated not supported");
		return -EOPNOTSUPP;
	}

	if (!inode_trylock(inode)) {
		if (iocb->ki_flags & IOCB_NOWAIT)
			return -EAGAIN;
		inode_lock(inode);
	}

	ret = generic_write_checks(iocb, from);
	if (ret <= 0)
		goto out;

1101 1102 1103 1104 1105 1106
	err = file_modified(iocb->ki_filp);
	if (err) {
		ret = err;
		goto out;
	}

1107
	if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
1108
		/* Should never be here, see ntfs_file_open(). */
1109 1110 1111 1112 1113 1114 1115 1116
		ret = -EOPNOTSUPP;
		goto out;
	}

	ret = ntfs_extend(inode, iocb->ki_pos, ret, file);
	if (ret)
		goto out;

1117
	ret = is_compressed(ni) ? ntfs_compress_write(iocb, from) :
1118
				  __generic_file_write_iter(iocb, from);
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129

out:
	inode_unlock(inode);

	if (ret > 0)
		ret = generic_write_sync(iocb, ret);

	return ret;
}

/*
1130
 * ntfs_file_open - file_operations::open
1131 1132 1133 1134 1135
 */
int ntfs_file_open(struct inode *inode, struct file *file)
{
	struct ntfs_inode *ni = ntfs_i(inode);

1136 1137 1138
	if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
		return -EIO;

1139 1140 1141 1142 1143
	if (unlikely((is_compressed(ni) || is_encrypted(ni)) &&
		     (file->f_flags & O_DIRECT))) {
		return -EOPNOTSUPP;
	}

1144
	/* Decompress "external compressed" file if opened for rw. */
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
	if ((ni->ni_flags & NI_FLAG_COMPRESSED_MASK) &&
	    (file->f_flags & (O_WRONLY | O_RDWR | O_TRUNC))) {
#ifdef CONFIG_NTFS3_LZX_XPRESS
		int err = ni_decompress_file(ni);

		if (err)
			return err;
#else
		ntfs_inode_warn(
			inode,
			"activate CONFIG_NTFS3_LZX_XPRESS to write external compressed files");
		return -EOPNOTSUPP;
#endif
	}

	return generic_file_open(inode, file);
}

/*
1164
 * ntfs_file_release - file_operations::release
1165 1166 1167 1168 1169 1170 1171
 */
static int ntfs_file_release(struct inode *inode, struct file *file)
{
	struct ntfs_inode *ni = ntfs_i(inode);
	struct ntfs_sb_info *sbi = ni->mi.sbi;
	int err = 0;

1172
	/* If we are last writer on the inode, drop the block reservation. */
1173 1174 1175
	if (sbi->options->prealloc &&
	    ((file->f_mode & FMODE_WRITE) &&
	     atomic_read(&inode->i_writecount) == 1)) {
1176 1177 1178 1179
		ni_lock(ni);
		down_write(&ni->file.run_lock);

		err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run,
1180 1181
				    i_size_read(inode), &ni->i_valid, false,
				    NULL);
1182 1183 1184 1185 1186 1187 1188

		up_write(&ni->file.run_lock);
		ni_unlock(ni);
	}
	return err;
}

1189 1190 1191
/*
 * ntfs_fiemap - file_operations::fiemap
 */
1192 1193 1194 1195 1196 1197
int ntfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
		__u64 start, __u64 len)
{
	int err;
	struct ntfs_inode *ni = ntfs_i(inode);

1198 1199 1200
	err = fiemap_prep(inode, fieinfo, start, &len, ~FIEMAP_FLAG_XATTR);
	if (err)
		return err;
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215

	ni_lock(ni);

	err = ni_fiemap(ni, fieinfo, start, len);

	ni_unlock(ni);

	return err;
}

// clang-format off
const struct inode_operations ntfs_file_inode_operations = {
	.getattr	= ntfs_getattr,
	.setattr	= ntfs3_setattr,
	.listxattr	= ntfs_listxattr,
1216
	.get_acl	= ntfs_get_acl,
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
	.set_acl	= ntfs_set_acl,
	.fiemap		= ntfs_fiemap,
};

const struct file_operations ntfs_file_operations = {
	.llseek		= generic_file_llseek,
	.read_iter	= ntfs_file_read_iter,
	.write_iter	= ntfs_file_write_iter,
	.unlocked_ioctl = ntfs_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl	= ntfs_compat_ioctl,
#endif
1229
	.splice_read	= ntfs_file_splice_read,
1230 1231 1232 1233 1234 1235 1236 1237
	.mmap		= ntfs_file_mmap,
	.open		= ntfs_file_open,
	.fsync		= generic_file_fsync,
	.splice_write	= iter_file_splice_write,
	.fallocate	= ntfs_fallocate,
	.release	= ntfs_file_release,
};
// clang-format on