1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
6 * Regular file handling primitives for NTFS-based filesystems.
10 #include <linux/backing-dev.h>
11 #include <linux/blkdev.h>
12 #include <linux/buffer_head.h>
13 #include <linux/compat.h>
14 #include <linux/falloc.h>
15 #include <linux/fiemap.h>
21 static int ntfs_ioctl_fitrim(struct ntfs_sb_info *sbi, unsigned long arg)
23 struct fstrim_range __user *user_range;
24 struct fstrim_range range;
27 if (!capable(CAP_SYS_ADMIN))
30 if (!bdev_max_discard_sectors(sbi->sb->s_bdev))
33 user_range = (struct fstrim_range __user *)arg;
34 if (copy_from_user(&range, user_range, sizeof(range)))
37 range.minlen = max_t(u32, range.minlen,
38 bdev_discard_granularity(sbi->sb->s_bdev));
40 err = ntfs_trim_fs(sbi, &range);
44 if (copy_to_user(user_range, &range, sizeof(range)))
50 static long ntfs_ioctl(struct file *filp, u32 cmd, unsigned long arg)
52 struct inode *inode = file_inode(filp);
53 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
57 return ntfs_ioctl_fitrim(sbi, arg);
59 return -ENOTTY; /* Inappropriate ioctl for device. */
63 static long ntfs_compat_ioctl(struct file *filp, u32 cmd, unsigned long arg)
66 return ntfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
71 * ntfs_getattr - inode_operations::getattr
73 int ntfs_getattr(struct user_namespace *mnt_userns, const struct path *path,
74 struct kstat *stat, u32 request_mask, u32 flags)
76 struct inode *inode = d_inode(path->dentry);
77 struct ntfs_inode *ni = ntfs_i(inode);
79 if (is_compressed(ni))
80 stat->attributes |= STATX_ATTR_COMPRESSED;
83 stat->attributes |= STATX_ATTR_ENCRYPTED;
85 stat->attributes_mask |= STATX_ATTR_COMPRESSED | STATX_ATTR_ENCRYPTED;
87 generic_fillattr(mnt_userns, inode, stat);
89 stat->result_mask |= STATX_BTIME;
90 stat->btime = ni->i_crtime;
91 stat->blksize = ni->mi.sbi->cluster_size; /* 512, 1K, ..., 2M */
96 static int ntfs_extend_initialized_size(struct file *file,
97 struct ntfs_inode *ni,
99 const loff_t new_valid)
101 struct inode *inode = &ni->vfs_inode;
102 struct address_space *mapping = inode->i_mapping;
103 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
107 if (is_resident(ni)) {
108 ni->i_valid = new_valid;
112 WARN_ON(is_compressed(ni));
113 WARN_ON(valid >= new_valid);
121 if (is_sparsed(ni)) {
122 bits = sbi->cluster_bits;
125 err = attr_data_get_block(ni, vcn, 0, &lcn, &clen,
130 if (lcn == SPARSE_LCN) {
131 loff_t vbo = (loff_t)vcn << bits;
132 loff_t to = vbo + ((loff_t)clen << bits);
134 if (to <= new_valid) {
143 to = (new_valid >> bits) << bits;
153 zerofrom = pos & (PAGE_SIZE - 1);
154 len = PAGE_SIZE - zerofrom;
156 if (pos + len > new_valid)
157 len = new_valid - pos;
159 err = ntfs_write_begin(file, mapping, pos, len, &page, NULL);
163 zero_user_segment(page, zerofrom, PAGE_SIZE);
165 /* This function in any case puts page. */
166 err = ntfs_write_end(file, mapping, pos, len, len, page, NULL);
172 if (pos >= new_valid)
175 balance_dirty_pages_ratelimited(mapping);
183 ntfs_inode_warn(inode, "failed to extend initialized size to %llx.",
189 * ntfs_zero_range - Helper function for punch_hole.
191 * It zeroes a range [vbo, vbo_to).
193 static int ntfs_zero_range(struct inode *inode, u64 vbo, u64 vbo_to)
196 struct address_space *mapping = inode->i_mapping;
197 u32 blocksize = 1 << inode->i_blkbits;
198 pgoff_t idx = vbo >> PAGE_SHIFT;
199 u32 z_start = vbo & (PAGE_SIZE - 1);
200 pgoff_t idx_end = (vbo_to + PAGE_SIZE - 1) >> PAGE_SHIFT;
202 struct buffer_head *head, *bh;
203 u32 bh_next, bh_off, z_end;
207 for (; idx < idx_end; idx += 1, z_start = 0) {
208 page_off = (loff_t)idx << PAGE_SHIFT;
209 z_end = (page_off + PAGE_SIZE) > vbo_to ? (vbo_to - page_off)
211 iblock = page_off >> inode->i_blkbits;
213 page = find_or_create_page(mapping, idx,
214 mapping_gfp_constraint(mapping,
219 if (!page_has_buffers(page))
220 create_empty_buffers(page, blocksize, 0);
222 bh = head = page_buffers(page);
225 bh_next = bh_off + blocksize;
227 if (bh_next <= z_start || bh_off >= z_end)
230 if (!buffer_mapped(bh)) {
231 ntfs_get_block(inode, iblock, bh, 0);
232 /* Unmapped? It's a hole - nothing to do. */
233 if (!buffer_mapped(bh))
237 /* Ok, it's mapped. Make sure it's up-to-date. */
238 if (PageUptodate(page))
239 set_buffer_uptodate(bh);
241 if (!buffer_uptodate(bh)) {
243 bh->b_end_io = end_buffer_read_sync;
245 submit_bh(REQ_OP_READ, bh);
248 if (!buffer_uptodate(bh)) {
256 mark_buffer_dirty(bh);
258 } while (bh_off = bh_next, iblock += 1,
259 head != (bh = bh->b_this_page));
261 zero_user_segment(page, z_start, z_end);
268 mark_inode_dirty(inode);
273 * ntfs_sparse_cluster - Helper function to zero a new allocated clusters.
275 * NOTE: 512 <= cluster size <= 2M
277 void ntfs_sparse_cluster(struct inode *inode, struct page *page0, CLST vcn,
280 struct address_space *mapping = inode->i_mapping;
281 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
282 u64 vbo = (u64)vcn << sbi->cluster_bits;
283 u64 bytes = (u64)len << sbi->cluster_bits;
284 u32 blocksize = 1 << inode->i_blkbits;
285 pgoff_t idx0 = page0 ? page0->index : -1;
286 loff_t vbo_clst = vbo & sbi->cluster_mask_inv;
287 loff_t end = ntfs_up_cluster(sbi, vbo + bytes);
288 pgoff_t idx = vbo_clst >> PAGE_SHIFT;
289 u32 from = vbo_clst & (PAGE_SIZE - 1);
290 pgoff_t idx_end = (end + PAGE_SIZE - 1) >> PAGE_SHIFT;
296 for (; idx < idx_end; idx += 1, from = 0) {
297 page = idx == idx0 ? page0 : grab_cache_page(mapping, idx);
302 page_off = (loff_t)idx << PAGE_SHIFT;
303 to = (page_off + PAGE_SIZE) > end ? (end - page_off)
307 if ((from || PAGE_SIZE != to) &&
308 likely(!page_has_buffers(page))) {
309 create_empty_buffers(page, blocksize, 0);
312 if (page_has_buffers(page)) {
313 struct buffer_head *head, *bh;
316 bh = head = page_buffers(page);
318 u32 bh_next = bh_off + blocksize;
320 if (from <= bh_off && bh_next <= to) {
321 set_buffer_uptodate(bh);
322 mark_buffer_dirty(bh);
323 } else if (!buffer_uptodate(bh)) {
327 } while (head != (bh = bh->b_this_page));
330 zero_user_segment(page, from, to);
333 if (!PageUptodate(page))
334 SetPageUptodate(page);
335 set_page_dirty(page);
344 mark_inode_dirty(inode);
348 * ntfs_file_mmap - file_operations::mmap
350 static int ntfs_file_mmap(struct file *file, struct vm_area_struct *vma)
352 struct address_space *mapping = file->f_mapping;
353 struct inode *inode = mapping->host;
354 struct ntfs_inode *ni = ntfs_i(inode);
355 u64 from = ((u64)vma->vm_pgoff << PAGE_SHIFT);
356 bool rw = vma->vm_flags & VM_WRITE;
359 if (is_encrypted(ni)) {
360 ntfs_inode_warn(inode, "mmap encrypted not supported");
365 ntfs_inode_warn(inode, "mmap deduplicated not supported");
369 if (is_compressed(ni) && rw) {
370 ntfs_inode_warn(inode, "mmap(write) compressed not supported");
375 u64 to = min_t(loff_t, i_size_read(inode),
376 from + vma->vm_end - vma->vm_start);
378 if (is_sparsed(ni)) {
379 /* Allocate clusters for rw map. */
380 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
382 CLST vcn = from >> sbi->cluster_bits;
383 CLST end = bytes_to_cluster(sbi, to);
386 for (; vcn < end; vcn += len) {
387 err = attr_data_get_block(ni, vcn, 1, &lcn,
394 ntfs_sparse_cluster(inode, NULL, vcn, 1);
398 if (ni->i_valid < to) {
399 if (!inode_trylock(inode)) {
403 err = ntfs_extend_initialized_size(file, ni,
411 err = generic_file_mmap(file, vma);
416 static int ntfs_extend(struct inode *inode, loff_t pos, size_t count,
419 struct ntfs_inode *ni = ntfs_i(inode);
420 struct address_space *mapping = inode->i_mapping;
421 loff_t end = pos + count;
422 bool extend_init = file && pos > ni->i_valid;
425 if (end <= inode->i_size && !extend_init)
428 /* Mark rw ntfs as dirty. It will be cleared at umount. */
429 ntfs_set_state(ni->mi.sbi, NTFS_DIRTY_DIRTY);
431 if (end > inode->i_size) {
432 err = ntfs_set_size(inode, end);
438 if (extend_init && !is_compressed(ni)) {
439 err = ntfs_extend_initialized_size(file, ni, ni->i_valid, pos);
446 inode->i_ctime = inode->i_mtime = current_time(inode);
447 mark_inode_dirty(inode);
449 if (IS_SYNC(inode)) {
452 err = filemap_fdatawrite_range(mapping, pos, end - 1);
453 err2 = sync_mapping_buffers(mapping);
456 err2 = write_inode_now(inode, 1);
460 err = filemap_fdatawait_range(mapping, pos, end - 1);
467 static int ntfs_truncate(struct inode *inode, loff_t new_size)
469 struct super_block *sb = inode->i_sb;
470 struct ntfs_inode *ni = ntfs_i(inode);
474 if (!S_ISREG(inode->i_mode))
477 if (is_compressed(ni)) {
478 if (ni->i_valid > new_size)
479 ni->i_valid = new_size;
481 err = block_truncate_page(inode->i_mapping, new_size,
487 new_valid = ntfs_up_block(sb, min_t(u64, ni->i_valid, new_size));
491 truncate_setsize(inode, new_size);
493 down_write(&ni->file.run_lock);
494 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run, new_size,
495 &new_valid, ni->mi.sbi->options->prealloc, NULL);
496 up_write(&ni->file.run_lock);
498 if (new_valid < ni->i_valid)
499 ni->i_valid = new_valid;
503 ni->std_fa |= FILE_ATTRIBUTE_ARCHIVE;
504 inode->i_ctime = inode->i_mtime = current_time(inode);
505 if (!IS_DIRSYNC(inode)) {
508 err = ntfs_sync_inode(inode);
514 mark_inode_dirty(inode);
516 /*ntfs_flush_inodes(inode->i_sb, inode, NULL);*/
524 * Preallocate space for a file. This implements ntfs's fallocate file
525 * operation, which gets called from sys_fallocate system call. User
526 * space requests 'len' bytes at 'vbo'. If FALLOC_FL_KEEP_SIZE is set
527 * we just allocate clusters without zeroing them out. Otherwise we
528 * allocate and zero out clusters via an expanding truncate.
530 static long ntfs_fallocate(struct file *file, int mode, loff_t vbo, loff_t len)
532 struct inode *inode = file->f_mapping->host;
533 struct super_block *sb = inode->i_sb;
534 struct ntfs_sb_info *sbi = sb->s_fs_info;
535 struct ntfs_inode *ni = ntfs_i(inode);
536 loff_t end = vbo + len;
537 loff_t vbo_down = round_down(vbo, PAGE_SIZE);
541 /* No support for dir. */
542 if (!S_ISREG(inode->i_mode))
545 /* Return error if mode is not supported. */
546 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
547 FALLOC_FL_COLLAPSE_RANGE)) {
548 ntfs_inode_warn(inode, "fallocate(0x%x) is not supported",
553 ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);
556 i_size = inode->i_size;
558 if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
559 /* Should never be here, see ntfs_file_open. */
564 if (mode & FALLOC_FL_PUNCH_HOLE) {
566 loff_t mask, vbo_a, end_a, tmp;
568 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
573 err = filemap_write_and_wait_range(inode->i_mapping, vbo,
578 err = filemap_write_and_wait_range(inode->i_mapping, end,
583 inode_dio_wait(inode);
585 truncate_pagecache(inode, vbo_down);
587 if (!is_sparsed(ni) && !is_compressed(ni)) {
589 * Normal file, can't make hole.
590 * TODO: Try to find way to save info about hole.
597 err = attr_punch_hole(ni, vbo, len, &frame_size);
599 if (err != E_NTFS_NOTALIGNED)
602 /* Process not aligned punch. */
603 mask = frame_size - 1;
604 vbo_a = (vbo + mask) & ~mask;
607 tmp = min(vbo_a, end);
609 err = ntfs_zero_range(inode, vbo, tmp);
614 if (vbo < end_a && end_a < end) {
615 err = ntfs_zero_range(inode, end_a, end);
620 /* Aligned punch_hole */
623 err = attr_punch_hole(ni, vbo_a, end_a - vbo_a, NULL);
626 } else if (mode & FALLOC_FL_COLLAPSE_RANGE) {
627 if (mode & ~FALLOC_FL_COLLAPSE_RANGE) {
633 * Write tail of the last page before removed range since
634 * it will get removed from the page cache below.
636 err = filemap_write_and_wait_range(inode->i_mapping, vbo_down,
642 * Write data that will be shifted to preserve them
643 * when discarding page cache below.
645 err = filemap_write_and_wait_range(inode->i_mapping, end,
650 /* Wait for existing dio to complete. */
651 inode_dio_wait(inode);
653 truncate_pagecache(inode, vbo_down);
656 err = attr_collapse_range(ni, vbo, len);
660 * Normal file: Allocate clusters, do not change 'valid' size.
662 loff_t new_size = max(end, i_size);
664 err = inode_newsize_ok(inode, new_size);
668 err = ntfs_set_size(inode, new_size);
672 if (is_sparsed(ni) || is_compressed(ni)) {
673 CLST vcn_v = ni->i_valid >> sbi->cluster_bits;
674 CLST vcn = vbo >> sbi->cluster_bits;
675 CLST cend = bytes_to_cluster(sbi, end);
680 * Allocate but do not zero new clusters. (see below comments)
681 * This breaks security: One can read unused on-disk areas.
682 * Zeroing these clusters may be too long.
683 * Maybe we should check here for root rights?
685 for (; vcn < cend; vcn += clen) {
686 err = attr_data_get_block(ni, vcn, cend - vcn,
690 if (!new || vcn >= vcn_v)
695 * NTFS is not able to store several unwritten areas.
696 * Activate 'ntfs_sparse_cluster' to zero new allocated clusters.
699 * 1G of sparsed clusters + 1 cluster of data =>
700 * valid_size == 1G + 1 cluster
701 * fallocate(1G) will zero 1G and this can be very long
702 * xfstest 016/086 will fail without 'ntfs_sparse_cluster'.
704 ntfs_sparse_cluster(inode, NULL, vcn,
705 min(vcn_v - vcn, clen));
709 if (mode & FALLOC_FL_KEEP_SIZE) {
711 /* True - Keep preallocated. */
712 err = attr_set_size(ni, ATTR_DATA, NULL, 0,
713 &ni->file.run, i_size, &ni->i_valid,
724 inode->i_ctime = inode->i_mtime = current_time(inode);
725 mark_inode_dirty(inode);
733 * ntfs3_setattr - inode_operations::setattr
735 int ntfs3_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
738 struct super_block *sb = dentry->d_sb;
739 struct ntfs_sb_info *sbi = sb->s_fs_info;
740 struct inode *inode = d_inode(dentry);
741 struct ntfs_inode *ni = ntfs_i(inode);
742 u32 ia_valid = attr->ia_valid;
743 umode_t mode = inode->i_mode;
746 if (sbi->options->noacsrules) {
747 /* "No access rules" - Force any changes of time etc. */
748 attr->ia_valid |= ATTR_FORCE;
749 /* and disable for editing some attributes. */
750 attr->ia_valid &= ~(ATTR_UID | ATTR_GID | ATTR_MODE);
751 ia_valid = attr->ia_valid;
754 err = setattr_prepare(mnt_userns, dentry, attr);
758 if (ia_valid & ATTR_SIZE) {
759 loff_t oldsize = inode->i_size;
761 if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
762 /* Should never be here, see ntfs_file_open(). */
766 inode_dio_wait(inode);
768 if (attr->ia_size <= oldsize)
769 err = ntfs_truncate(inode, attr->ia_size);
770 else if (attr->ia_size > oldsize)
771 err = ntfs_extend(inode, attr->ia_size, 0, NULL);
776 ni->ni_flags |= NI_FLAG_UPDATE_PARENT;
779 setattr_copy(mnt_userns, inode, attr);
781 if (mode != inode->i_mode) {
782 err = ntfs_acl_chmod(mnt_userns, inode);
786 /* Linux 'w' -> Windows 'ro'. */
787 if (0222 & inode->i_mode)
788 ni->std_fa &= ~FILE_ATTRIBUTE_READONLY;
790 ni->std_fa |= FILE_ATTRIBUTE_READONLY;
793 if (ia_valid & (ATTR_UID | ATTR_GID | ATTR_MODE))
794 ntfs_save_wsl_perm(inode);
795 mark_inode_dirty(inode);
800 static ssize_t ntfs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
802 struct file *file = iocb->ki_filp;
803 struct inode *inode = file->f_mapping->host;
804 struct ntfs_inode *ni = ntfs_i(inode);
806 if (is_encrypted(ni)) {
807 ntfs_inode_warn(inode, "encrypted i/o not supported");
811 if (is_compressed(ni) && (iocb->ki_flags & IOCB_DIRECT)) {
812 ntfs_inode_warn(inode, "direct i/o + compressed not supported");
816 #ifndef CONFIG_NTFS3_LZX_XPRESS
817 if (ni->ni_flags & NI_FLAG_COMPRESSED_MASK) {
820 "activate CONFIG_NTFS3_LZX_XPRESS to read external compressed files");
826 ntfs_inode_warn(inode, "read deduplicated not supported");
830 return generic_file_read_iter(iocb, iter);
834 * ntfs_get_frame_pages
836 * Return: Array of locked pages.
838 static int ntfs_get_frame_pages(struct address_space *mapping, pgoff_t index,
839 struct page **pages, u32 pages_per_frame,
840 bool *frame_uptodate)
842 gfp_t gfp_mask = mapping_gfp_mask(mapping);
845 *frame_uptodate = true;
847 for (npages = 0; npages < pages_per_frame; npages++, index++) {
850 page = find_or_create_page(mapping, index, gfp_mask);
853 page = pages[npages];
861 if (!PageUptodate(page))
862 *frame_uptodate = false;
864 pages[npages] = page;
871 * ntfs_compress_write - Helper for ntfs_file_write_iter() (compressed files).
873 static ssize_t ntfs_compress_write(struct kiocb *iocb, struct iov_iter *from)
876 struct file *file = iocb->ki_filp;
877 size_t count = iov_iter_count(from);
878 loff_t pos = iocb->ki_pos;
879 struct inode *inode = file_inode(file);
880 loff_t i_size = inode->i_size;
881 struct address_space *mapping = inode->i_mapping;
882 struct ntfs_inode *ni = ntfs_i(inode);
883 u64 valid = ni->i_valid;
884 struct ntfs_sb_info *sbi = ni->mi.sbi;
885 struct page *page, **pages = NULL;
887 u8 frame_bits = NTFS_LZNT_CUNIT + sbi->cluster_bits;
888 u32 frame_size = 1u << frame_bits;
889 u32 pages_per_frame = frame_size >> PAGE_SHIFT;
896 if (frame_size < PAGE_SIZE) {
898 * frame_size == 8K if cluster 512
899 * frame_size == 64K if cluster 4096
901 ntfs_inode_warn(inode, "page size is bigger than frame size");
905 pages = kmalloc_array(pages_per_frame, sizeof(struct page *), GFP_NOFS);
909 current->backing_dev_info = inode_to_bdi(inode);
910 err = file_remove_privs(file);
914 err = file_update_time(file);
918 /* Zero range [valid : pos). */
919 while (valid < pos) {
922 frame = valid >> frame_bits;
923 frame_vbo = valid & ~(frame_size - 1);
924 off = valid & (frame_size - 1);
926 err = attr_data_get_block(ni, frame << NTFS_LZNT_CUNIT, 0, &lcn,
931 if (lcn == SPARSE_LCN) {
932 ni->i_valid = valid =
933 frame_vbo + ((u64)clen << sbi->cluster_bits);
937 /* Load full frame. */
938 err = ntfs_get_frame_pages(mapping, frame_vbo >> PAGE_SHIFT,
939 pages, pages_per_frame,
944 if (!frame_uptodate && off) {
945 err = ni_read_frame(ni, frame_vbo, pages,
948 for (ip = 0; ip < pages_per_frame; ip++) {
957 ip = off >> PAGE_SHIFT;
958 off = offset_in_page(valid);
959 for (; ip < pages_per_frame; ip++, off = 0) {
961 zero_user_segment(page, off, PAGE_SIZE);
962 flush_dcache_page(page);
963 SetPageUptodate(page);
967 err = ni_write_frame(ni, pages, pages_per_frame);
970 for (ip = 0; ip < pages_per_frame; ip++) {
972 SetPageUptodate(page);
980 ni->i_valid = valid = frame_vbo + frame_size;
983 /* Copy user data [pos : pos + count). */
985 size_t copied, bytes;
987 off = pos & (frame_size - 1);
988 bytes = frame_size - off;
992 frame = pos >> frame_bits;
993 frame_vbo = pos & ~(frame_size - 1);
994 index = frame_vbo >> PAGE_SHIFT;
996 if (unlikely(fault_in_iov_iter_readable(from, bytes))) {
1001 /* Load full frame. */
1002 err = ntfs_get_frame_pages(mapping, index, pages,
1003 pages_per_frame, &frame_uptodate);
1007 if (!frame_uptodate) {
1008 loff_t to = pos + bytes;
1010 if (off || (to < i_size && (to & (frame_size - 1)))) {
1011 err = ni_read_frame(ni, frame_vbo, pages,
1014 for (ip = 0; ip < pages_per_frame;
1027 ip = off >> PAGE_SHIFT;
1028 off = offset_in_page(pos);
1030 /* Copy user data to pages. */
1032 size_t cp, tail = PAGE_SIZE - off;
1035 cp = copy_page_from_iter_atomic(page, off,
1036 min(tail, bytes), from);
1037 flush_dcache_page(page);
1053 err = ni_write_frame(ni, pages, pages_per_frame);
1056 for (ip = 0; ip < pages_per_frame; ip++) {
1058 ClearPageDirty(page);
1059 SetPageUptodate(page);
1068 * We can loop for a long time in here. Be nice and allow
1069 * us to schedule out to avoid softlocking if preempt
1077 count = iov_iter_count(from);
1083 current->backing_dev_info = NULL;
1088 iocb->ki_pos += written;
1089 if (iocb->ki_pos > ni->i_valid)
1090 ni->i_valid = iocb->ki_pos;
1096 * ntfs_file_write_iter - file_operations::write_iter
1098 static ssize_t ntfs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
1100 struct file *file = iocb->ki_filp;
1101 struct address_space *mapping = file->f_mapping;
1102 struct inode *inode = mapping->host;
1104 struct ntfs_inode *ni = ntfs_i(inode);
1106 if (is_encrypted(ni)) {
1107 ntfs_inode_warn(inode, "encrypted i/o not supported");
1111 if (is_compressed(ni) && (iocb->ki_flags & IOCB_DIRECT)) {
1112 ntfs_inode_warn(inode, "direct i/o + compressed not supported");
1117 ntfs_inode_warn(inode, "write into deduplicated not supported");
1121 if (!inode_trylock(inode)) {
1122 if (iocb->ki_flags & IOCB_NOWAIT)
1127 ret = generic_write_checks(iocb, from);
1131 if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
1132 /* Should never be here, see ntfs_file_open(). */
1137 ret = ntfs_extend(inode, iocb->ki_pos, ret, file);
1141 ret = is_compressed(ni) ? ntfs_compress_write(iocb, from)
1142 : __generic_file_write_iter(iocb, from);
1145 inode_unlock(inode);
1148 ret = generic_write_sync(iocb, ret);
1154 * ntfs_file_open - file_operations::open
1156 int ntfs_file_open(struct inode *inode, struct file *file)
1158 struct ntfs_inode *ni = ntfs_i(inode);
1160 if (unlikely((is_compressed(ni) || is_encrypted(ni)) &&
1161 (file->f_flags & O_DIRECT))) {
1165 /* Decompress "external compressed" file if opened for rw. */
1166 if ((ni->ni_flags & NI_FLAG_COMPRESSED_MASK) &&
1167 (file->f_flags & (O_WRONLY | O_RDWR | O_TRUNC))) {
1168 #ifdef CONFIG_NTFS3_LZX_XPRESS
1169 int err = ni_decompress_file(ni);
1176 "activate CONFIG_NTFS3_LZX_XPRESS to write external compressed files");
1181 return generic_file_open(inode, file);
1185 * ntfs_file_release - file_operations::release
1187 static int ntfs_file_release(struct inode *inode, struct file *file)
1189 struct ntfs_inode *ni = ntfs_i(inode);
1190 struct ntfs_sb_info *sbi = ni->mi.sbi;
1193 /* If we are last writer on the inode, drop the block reservation. */
1194 if (sbi->options->prealloc && ((file->f_mode & FMODE_WRITE) &&
1195 atomic_read(&inode->i_writecount) == 1)) {
1197 down_write(&ni->file.run_lock);
1199 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run,
1200 inode->i_size, &ni->i_valid, false, NULL);
1202 up_write(&ni->file.run_lock);
1209 * ntfs_fiemap - file_operations::fiemap
1211 int ntfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
1212 __u64 start, __u64 len)
1215 struct ntfs_inode *ni = ntfs_i(inode);
1217 err = fiemap_prep(inode, fieinfo, start, &len, ~FIEMAP_FLAG_XATTR);
1223 err = ni_fiemap(ni, fieinfo, start, len);
1231 const struct inode_operations ntfs_file_inode_operations = {
1232 .getattr = ntfs_getattr,
1233 .setattr = ntfs3_setattr,
1234 .listxattr = ntfs_listxattr,
1235 .permission = ntfs_permission,
1236 .get_acl = ntfs_get_acl,
1237 .set_acl = ntfs_set_acl,
1238 .fiemap = ntfs_fiemap,
1241 const struct file_operations ntfs_file_operations = {
1242 .llseek = generic_file_llseek,
1243 .read_iter = ntfs_file_read_iter,
1244 .write_iter = ntfs_file_write_iter,
1245 .unlocked_ioctl = ntfs_ioctl,
1246 #ifdef CONFIG_COMPAT
1247 .compat_ioctl = ntfs_compat_ioctl,
1249 .splice_read = generic_file_splice_read,
1250 .mmap = ntfs_file_mmap,
1251 .open = ntfs_file_open,
1252 .fsync = generic_file_fsync,
1253 .splice_write = iter_file_splice_write,
1254 .fallocate = ntfs_fallocate,
1255 .release = ntfs_file_release,