1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
8 #include <linux/buffer_head.h>
10 #include <linux/mpage.h>
11 #include <linux/namei.h>
12 #include <linux/nls.h>
13 #include <linux/uio.h>
14 #include <linux/writeback.h>
21 * ntfs_read_mft - Read record and parses MFT.
23 static struct inode *ntfs_read_mft(struct inode *inode,
24 const struct cpu_str *name,
25 const struct MFT_REF *ref)
28 struct ntfs_inode *ni = ntfs_i(inode);
29 struct super_block *sb = inode->i_sb;
30 struct ntfs_sb_info *sbi = sb->s_fs_info;
32 struct ATTR_STD_INFO5 *std5 = NULL;
33 struct ATTR_LIST_ENTRY *le;
35 bool is_match = false;
38 unsigned long ino = inode->i_ino;
39 u32 rp_fa = 0, asize, t32;
40 u16 roff, rsize, names = 0;
41 const struct ATTR_FILE_NAME *fname = NULL;
42 const struct INDEX_ROOT *root;
43 struct REPARSE_DATA_BUFFER rp; // 0x18 bytes
46 struct runs_tree *run;
49 /* Setup 'uid' and 'gid' */
50 inode->i_uid = sbi->options->fs_uid;
51 inode->i_gid = sbi->options->fs_gid;
53 err = mi_init(&ni->mi, sbi, ino);
57 if (!sbi->mft.ni && ino == MFT_REC_MFT && !sb->s_root) {
58 t64 = sbi->mft.lbo >> sbi->cluster_bits;
59 t32 = bytes_to_cluster(sbi, MFT_REC_VOL * sbi->record_size);
61 init_rwsem(&ni->file.run_lock);
63 if (!run_add_entry(&ni->file.run, 0, t64, t32, true)) {
69 err = mi_read(&ni->mi, ino == MFT_REC_MFT);
76 if (sbi->flags & NTFS_FLAGS_LOG_REPLAYING) {
78 } else if (ref->seq != rec->seq) {
80 ntfs_err(sb, "MFT: r=%lx, expect seq=%x instead of %x!", ino,
81 le16_to_cpu(ref->seq), le16_to_cpu(rec->seq));
83 } else if (!is_rec_inuse(rec)) {
85 ntfs_err(sb, "Inode r=%x is not in use!", (u32)ino);
89 if (le32_to_cpu(rec->total) != sbi->record_size) {
95 if (!is_rec_base(rec)) {
100 /* Record should contain $I30 root. */
101 is_dir = rec->flags & RECORD_FLAG_DIR;
103 /* MFT_REC_MFT is not a dir */
104 if (is_dir && ino == MFT_REC_MFT) {
109 inode->i_generation = le16_to_cpu(rec->seq);
111 /* Enumerate all struct Attributes MFT. */
116 * To reduce tab pressure use goto instead of
117 * while( (attr = ni_enum_attr_ex(ni, attr, &le, NULL) ))
122 attr = ni_enum_attr_ex(ni, attr, &le, NULL);
127 /* This is non primary attribute segment. Ignore if not MFT. */
128 if (ino != MFT_REC_MFT || attr->type != ATTR_DATA)
132 asize = le32_to_cpu(attr->size);
133 goto attr_unpack_run;
136 roff = attr->non_res ? 0 : le16_to_cpu(attr->res.data_off);
137 rsize = attr->non_res ? 0 : le32_to_cpu(attr->res.data_size);
138 asize = le32_to_cpu(attr->size);
141 * Really this check was done in 'ni_enum_attr_ex' -> ... 'mi_enum_attr'.
142 * There not critical to check this case again
144 if (attr->name_len &&
145 sizeof(short) * attr->name_len + le16_to_cpu(attr->name_off) >
150 t64 = le64_to_cpu(attr->nres.alloc_size);
151 if (le64_to_cpu(attr->nres.data_size) > t64 ||
152 le64_to_cpu(attr->nres.valid_size) > t64)
156 switch (attr->type) {
159 asize < sizeof(struct ATTR_STD_INFO) + roff ||
160 rsize < sizeof(struct ATTR_STD_INFO))
166 std5 = Add2Ptr(attr, roff);
169 nt2kernel(std5->cr_time, &ni->i_crtime);
171 nt2kernel(std5->a_time, &inode->i_atime);
172 nt2kernel(std5->c_time, &inode->i_ctime);
173 nt2kernel(std5->m_time, &inode->i_mtime);
175 ni->std_fa = std5->fa;
177 if (asize >= sizeof(struct ATTR_STD_INFO5) + roff &&
178 rsize >= sizeof(struct ATTR_STD_INFO5))
179 ni->std_security_id = std5->security_id;
183 if (attr->name_len || le || ino == MFT_REC_LOG)
186 err = ntfs_load_attr_list(ni, attr);
195 if (attr->non_res || asize < SIZEOF_ATTRIBUTE_FILENAME + roff ||
196 rsize < SIZEOF_ATTRIBUTE_FILENAME)
199 fname = Add2Ptr(attr, roff);
200 if (fname->type == FILE_NAME_DOS)
204 if (name && name->len == fname->name_len &&
205 !ntfs_cmp_names_cpu(name, (struct le_str *)&fname->name_len,
213 /* Ignore data attribute in dir record. */
217 if (ino == MFT_REC_BADCLUST && !attr->non_res)
220 if (attr->name_len &&
221 ((ino != MFT_REC_BADCLUST || !attr->non_res ||
222 attr->name_len != ARRAY_SIZE(BAD_NAME) ||
223 memcmp(attr_name(attr), BAD_NAME, sizeof(BAD_NAME))) &&
224 (ino != MFT_REC_SECURE || !attr->non_res ||
225 attr->name_len != ARRAY_SIZE(SDS_NAME) ||
226 memcmp(attr_name(attr), SDS_NAME, sizeof(SDS_NAME))))) {
227 /* File contains stream attribute. Ignore it. */
231 if (is_attr_sparsed(attr))
232 ni->std_fa |= FILE_ATTRIBUTE_SPARSE_FILE;
234 ni->std_fa &= ~FILE_ATTRIBUTE_SPARSE_FILE;
236 if (is_attr_compressed(attr))
237 ni->std_fa |= FILE_ATTRIBUTE_COMPRESSED;
239 ni->std_fa &= ~FILE_ATTRIBUTE_COMPRESSED;
241 if (is_attr_encrypted(attr))
242 ni->std_fa |= FILE_ATTRIBUTE_ENCRYPTED;
244 ni->std_fa &= ~FILE_ATTRIBUTE_ENCRYPTED;
246 if (!attr->non_res) {
247 ni->i_valid = inode->i_size = rsize;
248 inode_set_bytes(inode, rsize);
251 mode = S_IFREG | (0777 & sbi->options->fs_fmask_inv);
253 if (!attr->non_res) {
254 ni->ni_flags |= NI_FLAG_RESIDENT;
258 inode_set_bytes(inode, attr_ondisk_size(attr));
260 ni->i_valid = le64_to_cpu(attr->nres.valid_size);
261 inode->i_size = le64_to_cpu(attr->nres.data_size);
262 if (!attr->nres.alloc_size)
265 run = ino == MFT_REC_BITMAP ? &sbi->used.bitmap.run :
273 root = Add2Ptr(attr, roff);
275 if (attr->name_len != ARRAY_SIZE(I30_NAME) ||
276 memcmp(attr_name(attr), I30_NAME, sizeof(I30_NAME)))
279 if (root->type != ATTR_NAME ||
280 root->rule != NTFS_COLLATION_TYPE_FILENAME)
287 ni->ni_flags |= NI_FLAG_DIR;
289 err = indx_init(&ni->dir, sbi, attr, INDEX_MUTEX_I30);
294 (S_IFDIR | (0777 & sbi->options->fs_dmask_inv)) :
299 if (!is_root || attr->name_len != ARRAY_SIZE(I30_NAME) ||
300 memcmp(attr_name(attr), I30_NAME, sizeof(I30_NAME)))
303 inode->i_size = le64_to_cpu(attr->nres.data_size);
304 ni->i_valid = le64_to_cpu(attr->nres.valid_size);
305 inode_set_bytes(inode, le64_to_cpu(attr->nres.alloc_size));
307 run = &ni->dir.alloc_run;
311 if (ino == MFT_REC_MFT) {
314 #ifndef CONFIG_NTFS3_64BIT_CLUSTER
315 /* 0x20000000 = 2^32 / 8 */
316 if (le64_to_cpu(attr->nres.alloc_size) >= 0x20000000)
319 run = &sbi->mft.bitmap.run;
321 } else if (is_dir && attr->name_len == ARRAY_SIZE(I30_NAME) &&
322 !memcmp(attr_name(attr), I30_NAME,
325 run = &ni->dir.bitmap_run;
334 rp_fa = ni_parse_reparse(ni, attr, &rp);
339 * Assume one unicode symbol == one utf8.
341 inode->i_size = le16_to_cpu(rp.SymbolicLinkReparseBuffer
345 ni->i_valid = inode->i_size;
347 /* Clear directory bit. */
348 if (ni->ni_flags & NI_FLAG_DIR) {
349 indx_clear(&ni->dir);
350 memset(&ni->dir, 0, sizeof(ni->dir));
351 ni->ni_flags &= ~NI_FLAG_DIR;
353 run_close(&ni->file.run);
355 mode = S_IFLNK | 0777;
359 goto attr_unpack_run; // Double break.
363 case REPARSE_COMPRESSED:
366 case REPARSE_DEDUPLICATED:
372 if (!attr->name_len &&
373 resident_data_ex(attr, sizeof(struct EA_INFO))) {
374 ni->ni_flags |= NI_FLAG_EA;
376 * ntfs_get_wsl_perm updates inode->i_uid, inode->i_gid, inode->i_mode
378 inode->i_mode = mode;
379 ntfs_get_wsl_perm(inode);
380 mode = inode->i_mode;
389 roff = le16_to_cpu(attr->nres.run_off);
396 t64 = le64_to_cpu(attr->nres.svcn);
398 err = run_unpack_ex(run, sbi, ino, t64, le64_to_cpu(attr->nres.evcn),
399 t64, Add2Ptr(attr, roff), asize - roff);
410 if (!is_match && name) {
411 /* Reuse rec as buffer for ascii name. */
416 if (std5->fa & FILE_ATTRIBUTE_READONLY)
424 if (names != le16_to_cpu(rec->hard_links)) {
425 /* Correct minor error on the fly. Do not mark inode as dirty. */
426 rec->hard_links = cpu_to_le16(names);
430 set_nlink(inode, names);
433 ni->std_fa |= FILE_ATTRIBUTE_DIRECTORY;
436 * Dot and dot-dot should be included in count but was not
437 * included in enumeration.
438 * Usually a hard links to directories are disabled.
440 inode->i_op = &ntfs_dir_inode_operations;
441 inode->i_fop = &ntfs_dir_operations;
443 } else if (S_ISLNK(mode)) {
444 ni->std_fa &= ~FILE_ATTRIBUTE_DIRECTORY;
445 inode->i_op = &ntfs_link_inode_operations;
447 inode_nohighmem(inode);
448 } else if (S_ISREG(mode)) {
449 ni->std_fa &= ~FILE_ATTRIBUTE_DIRECTORY;
450 inode->i_op = &ntfs_file_inode_operations;
451 inode->i_fop = &ntfs_file_operations;
452 inode->i_mapping->a_ops = is_compressed(ni) ? &ntfs_aops_cmpr :
454 if (ino != MFT_REC_MFT)
455 init_rwsem(&ni->file.run_lock);
456 } else if (S_ISCHR(mode) || S_ISBLK(mode) || S_ISFIFO(mode) ||
458 inode->i_op = &ntfs_special_inode_operations;
459 init_special_inode(inode, mode, inode->i_rdev);
460 } else if (fname && fname->home.low == cpu_to_le32(MFT_REC_EXTEND) &&
461 fname->home.seq == cpu_to_le16(MFT_REC_EXTEND)) {
462 /* Records in $Extend are not a files or general directories. */
463 inode->i_op = &ntfs_file_inode_operations;
469 if ((sbi->options->sys_immutable &&
470 (std5->fa & FILE_ATTRIBUTE_SYSTEM)) &&
471 !S_ISFIFO(mode) && !S_ISSOCK(mode) && !S_ISLNK(mode)) {
472 inode->i_flags |= S_IMMUTABLE;
474 inode->i_flags &= ~S_IMMUTABLE;
477 inode->i_mode = mode;
478 if (!(ni->ni_flags & NI_FLAG_EA)) {
479 /* If no xattr then no security (stored in xattr). */
480 inode->i_flags |= S_NOSEC;
483 if (ino == MFT_REC_MFT && !sb->s_root)
486 unlock_new_inode(inode);
491 if (ino == MFT_REC_MFT && !sb->s_root)
501 * Return: 1 if match.
503 static int ntfs_test_inode(struct inode *inode, void *data)
505 struct MFT_REF *ref = data;
507 return ino_get(ref) == inode->i_ino;
510 static int ntfs_set_inode(struct inode *inode, void *data)
512 const struct MFT_REF *ref = data;
514 inode->i_ino = ino_get(ref);
518 struct inode *ntfs_iget5(struct super_block *sb, const struct MFT_REF *ref,
519 const struct cpu_str *name)
523 inode = iget5_locked(sb, ino_get(ref), ntfs_test_inode, ntfs_set_inode,
525 if (unlikely(!inode))
526 return ERR_PTR(-ENOMEM);
528 /* If this is a freshly allocated inode, need to read it now. */
529 if (inode->i_state & I_NEW)
530 inode = ntfs_read_mft(inode, name, ref);
531 else if (ref->seq != ntfs_i(inode)->mi.mrec->seq) {
532 /* Inode overlaps? */
533 _ntfs_bad_inode(inode);
536 if (IS_ERR(inode) && name)
537 ntfs_set_state(sb->s_fs_info, NTFS_DIRTY_ERROR);
543 GET_BLOCK_GENERAL = 0,
544 GET_BLOCK_WRITE_BEGIN = 1,
545 GET_BLOCK_DIRECT_IO_R = 2,
546 GET_BLOCK_DIRECT_IO_W = 3,
550 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo,
551 struct buffer_head *bh, int create,
552 enum get_block_ctx ctx)
554 struct super_block *sb = inode->i_sb;
555 struct ntfs_sb_info *sbi = sb->s_fs_info;
556 struct ntfs_inode *ni = ntfs_i(inode);
557 struct page *page = bh->b_page;
558 u8 cluster_bits = sbi->cluster_bits;
559 u32 block_size = sb->s_blocksize;
560 u64 bytes, lbo, valid;
566 /* Clear previous state. */
567 clear_buffer_new(bh);
568 clear_buffer_uptodate(bh);
570 if (is_resident(ni)) {
572 err = attr_data_read_resident(ni, page);
576 set_buffer_uptodate(bh);
577 bh->b_size = block_size;
581 vcn = vbo >> cluster_bits;
582 off = vbo & sbi->cluster_mask;
585 err = attr_data_get_block(ni, vcn, 1, &lcn, &len, create ? &new : NULL,
586 create && sbi->cluster_size > PAGE_SIZE);
593 bytes = ((u64)len << cluster_bits) - off;
595 if (lcn == SPARSE_LCN) {
597 if (bh->b_size > bytes)
607 lbo = ((u64)lcn << cluster_bits) + off;
609 set_buffer_mapped(bh);
610 bh->b_bdev = sb->s_bdev;
611 bh->b_blocknr = lbo >> sb->s_blocksize_bits;
615 if (ctx == GET_BLOCK_DIRECT_IO_W) {
616 /* ntfs_direct_IO will update ni->i_valid. */
621 if (bytes > bh->b_size)
627 if (vbo + bytes > valid) {
628 ni->i_valid = vbo + bytes;
629 mark_inode_dirty(inode);
631 } else if (vbo >= valid) {
632 /* Read out of valid data. */
633 clear_buffer_mapped(bh);
634 } else if (vbo + bytes <= valid) {
636 } else if (vbo + block_size <= valid) {
637 /* Normal short read. */
641 * Read across valid size: vbo < valid && valid < vbo + block_size
646 u32 voff = valid - vbo;
648 bh->b_size = block_size;
649 off = vbo & (PAGE_SIZE - 1);
650 set_bh_page(bh, page, off);
652 err = bh_read(bh, 0);
655 zero_user_segment(page, off + voff, off + block_size);
659 if (bh->b_size > bytes)
663 if (ctx == GET_BLOCK_DIRECT_IO_W || ctx == GET_BLOCK_DIRECT_IO_R) {
664 static_assert(sizeof(size_t) < sizeof(loff_t));
665 if (bytes > 0x40000000u)
666 bh->b_size = 0x40000000u;
676 int ntfs_get_block(struct inode *inode, sector_t vbn,
677 struct buffer_head *bh_result, int create)
679 return ntfs_get_block_vbo(inode, (u64)vbn << inode->i_blkbits,
680 bh_result, create, GET_BLOCK_GENERAL);
683 static int ntfs_get_block_bmap(struct inode *inode, sector_t vsn,
684 struct buffer_head *bh_result, int create)
686 return ntfs_get_block_vbo(inode,
687 (u64)vsn << inode->i_sb->s_blocksize_bits,
688 bh_result, create, GET_BLOCK_BMAP);
691 static sector_t ntfs_bmap(struct address_space *mapping, sector_t block)
693 return generic_block_bmap(mapping, block, ntfs_get_block_bmap);
696 static int ntfs_read_folio(struct file *file, struct folio *folio)
698 struct page *page = &folio->page;
700 struct address_space *mapping = page->mapping;
701 struct inode *inode = mapping->host;
702 struct ntfs_inode *ni = ntfs_i(inode);
704 if (is_resident(ni)) {
706 err = attr_data_read_resident(ni, page);
708 if (err != E_NTFS_NONRESIDENT) {
714 if (is_compressed(ni)) {
716 err = ni_readpage_cmpr(ni, page);
721 /* Normal + sparse files. */
722 return mpage_read_folio(folio, ntfs_get_block);
725 static void ntfs_readahead(struct readahead_control *rac)
727 struct address_space *mapping = rac->mapping;
728 struct inode *inode = mapping->host;
729 struct ntfs_inode *ni = ntfs_i(inode);
733 if (is_resident(ni)) {
734 /* No readahead for resident. */
738 if (is_compressed(ni)) {
739 /* No readahead for compressed. */
744 pos = readahead_pos(rac);
746 if (valid < i_size_read(inode) && pos <= valid &&
747 valid < pos + readahead_length(rac)) {
748 /* Range cross 'valid'. Read it page by page. */
752 mpage_readahead(rac, ntfs_get_block);
755 static int ntfs_get_block_direct_IO_R(struct inode *inode, sector_t iblock,
756 struct buffer_head *bh_result, int create)
758 return ntfs_get_block_vbo(inode, (u64)iblock << inode->i_blkbits,
759 bh_result, create, GET_BLOCK_DIRECT_IO_R);
762 static int ntfs_get_block_direct_IO_W(struct inode *inode, sector_t iblock,
763 struct buffer_head *bh_result, int create)
765 return ntfs_get_block_vbo(inode, (u64)iblock << inode->i_blkbits,
766 bh_result, create, GET_BLOCK_DIRECT_IO_W);
769 static ssize_t ntfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
771 struct file *file = iocb->ki_filp;
772 struct address_space *mapping = file->f_mapping;
773 struct inode *inode = mapping->host;
774 struct ntfs_inode *ni = ntfs_i(inode);
775 loff_t vbo = iocb->ki_pos;
777 int wr = iov_iter_rw(iter) & WRITE;
778 size_t iter_count = iov_iter_count(iter);
782 if (is_resident(ni)) {
783 /* Switch to buffered write. */
788 ret = blockdev_direct_IO(iocb, inode, iter,
789 wr ? ntfs_get_block_direct_IO_W :
790 ntfs_get_block_direct_IO_R);
794 else if (wr && ret == -EIOCBQUEUED)
795 end = vbo + iter_count;
801 if (end > valid && !S_ISBLK(inode->i_mode)) {
803 mark_inode_dirty(inode);
805 } else if (vbo < valid && valid < end) {
807 iov_iter_revert(iter, end - valid);
808 iov_iter_zero(end - valid, iter);
815 int ntfs_set_size(struct inode *inode, u64 new_size)
817 struct super_block *sb = inode->i_sb;
818 struct ntfs_sb_info *sbi = sb->s_fs_info;
819 struct ntfs_inode *ni = ntfs_i(inode);
822 /* Check for maximum file size. */
823 if (is_sparsed(ni) || is_compressed(ni)) {
824 if (new_size > sbi->maxbytes_sparse) {
828 } else if (new_size > sbi->maxbytes) {
834 down_write(&ni->file.run_lock);
836 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run, new_size,
837 &ni->i_valid, true, NULL);
839 up_write(&ni->file.run_lock);
842 mark_inode_dirty(inode);
848 static int ntfs_resident_writepage(struct folio *folio,
849 struct writeback_control *wbc, void *data)
851 struct address_space *mapping = data;
852 struct ntfs_inode *ni = ntfs_i(mapping->host);
856 ret = attr_data_write_resident(ni, &folio->page);
859 if (ret != E_NTFS_NONRESIDENT)
861 mapping_set_error(mapping, ret);
865 static int ntfs_writepages(struct address_space *mapping,
866 struct writeback_control *wbc)
868 if (is_resident(ntfs_i(mapping->host)))
869 return write_cache_pages(mapping, wbc, ntfs_resident_writepage,
871 return mpage_writepages(mapping, wbc, ntfs_get_block);
874 static int ntfs_get_block_write_begin(struct inode *inode, sector_t vbn,
875 struct buffer_head *bh_result, int create)
877 return ntfs_get_block_vbo(inode, (u64)vbn << inode->i_blkbits,
878 bh_result, create, GET_BLOCK_WRITE_BEGIN);
881 int ntfs_write_begin(struct file *file, struct address_space *mapping,
882 loff_t pos, u32 len, struct page **pagep, void **fsdata)
885 struct inode *inode = mapping->host;
886 struct ntfs_inode *ni = ntfs_i(inode);
889 if (is_resident(ni)) {
891 grab_cache_page_write_begin(mapping, pos >> PAGE_SHIFT);
899 err = attr_data_read_resident(ni, page);
909 if (err != E_NTFS_NONRESIDENT)
913 err = block_write_begin(mapping, pos, len, pagep,
914 ntfs_get_block_write_begin);
921 * ntfs_write_end - Address_space_operations::write_end.
923 int ntfs_write_end(struct file *file, struct address_space *mapping, loff_t pos,
924 u32 len, u32 copied, struct page *page, void *fsdata)
926 struct inode *inode = mapping->host;
927 struct ntfs_inode *ni = ntfs_i(inode);
928 u64 valid = ni->i_valid;
932 if (is_resident(ni)) {
934 err = attr_data_write_resident(ni, page);
938 /* Clear any buffers in page. */
939 if (page_has_buffers(page)) {
940 struct buffer_head *head, *bh;
942 bh = head = page_buffers(page);
944 clear_buffer_dirty(bh);
945 clear_buffer_mapped(bh);
946 set_buffer_uptodate(bh);
947 } while (head != (bh = bh->b_this_page));
949 SetPageUptodate(page);
955 err = generic_write_end(file, mapping, pos, len, copied, page,
960 if (!(ni->std_fa & FILE_ATTRIBUTE_ARCHIVE)) {
961 inode->i_ctime = inode->i_mtime = current_time(inode);
962 ni->std_fa |= FILE_ATTRIBUTE_ARCHIVE;
966 if (valid != ni->i_valid) {
967 /* ni->i_valid is changed in ntfs_get_block_vbo. */
971 if (pos + err > inode->i_size) {
972 inode->i_size = pos + err;
977 mark_inode_dirty(inode);
983 int reset_log_file(struct inode *inode)
987 u32 log_size = inode->i_size;
988 struct address_space *mapping = inode->i_mapping;
995 len = pos + PAGE_SIZE > log_size ? (log_size - pos) : PAGE_SIZE;
997 err = block_write_begin(mapping, pos, len, &page,
998 ntfs_get_block_write_begin);
1002 kaddr = kmap_atomic(page);
1003 memset(kaddr, -1, len);
1004 kunmap_atomic(kaddr);
1005 flush_dcache_page(page);
1007 err = block_write_end(NULL, mapping, pos, len, len, page, NULL);
1012 if (pos >= log_size)
1014 balance_dirty_pages_ratelimited(mapping);
1017 mark_inode_dirty_sync(inode);
1022 int ntfs3_write_inode(struct inode *inode, struct writeback_control *wbc)
1024 return _ni_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
1027 int ntfs_sync_inode(struct inode *inode)
1029 return _ni_write_inode(inode, 1);
1033 * writeback_inode - Helper function for ntfs_flush_inodes().
1035 * This writes both the inode and the file data blocks, waiting
1036 * for in flight data blocks before the start of the call. It
1037 * does not wait for any io started during the call.
1039 static int writeback_inode(struct inode *inode)
1041 int ret = sync_inode_metadata(inode, 0);
1044 ret = filemap_fdatawrite(inode->i_mapping);
1051 * Write data and metadata corresponding to i1 and i2. The io is
1052 * started but we do not wait for any of it to finish.
1054 * filemap_flush() is used for the block device, so if there is a dirty
1055 * page for a block already in flight, we will not wait and start the
1058 int ntfs_flush_inodes(struct super_block *sb, struct inode *i1,
1064 ret = writeback_inode(i1);
1066 ret = writeback_inode(i2);
1068 ret = sync_blockdev_nowait(sb->s_bdev);
1072 int inode_write_data(struct inode *inode, const void *data, size_t bytes)
1076 /* Write non resident data. */
1077 for (idx = 0; bytes; idx++) {
1078 size_t op = bytes > PAGE_SIZE ? PAGE_SIZE : bytes;
1079 struct page *page = ntfs_map_page(inode->i_mapping, idx);
1082 return PTR_ERR(page);
1085 WARN_ON(!PageUptodate(page));
1086 ClearPageUptodate(page);
1088 memcpy(page_address(page), data, op);
1090 flush_dcache_page(page);
1091 SetPageUptodate(page);
1094 ntfs_unmap_page(page);
1097 data = Add2Ptr(data, PAGE_SIZE);
1103 * ntfs_reparse_bytes
1105 * Number of bytes for REPARSE_DATA_BUFFER(IO_REPARSE_TAG_SYMLINK)
1106 * for unicode string of @uni_len length.
1108 static inline u32 ntfs_reparse_bytes(u32 uni_len)
1110 /* Header + unicode string + decorated unicode string. */
1111 return sizeof(short) * (2 * uni_len + 4) +
1112 offsetof(struct REPARSE_DATA_BUFFER,
1113 SymbolicLinkReparseBuffer.PathBuffer);
1116 static struct REPARSE_DATA_BUFFER *
1117 ntfs_create_reparse_buffer(struct ntfs_sb_info *sbi, const char *symname,
1118 u32 size, u16 *nsize)
1121 struct REPARSE_DATA_BUFFER *rp;
1123 typeof(rp->SymbolicLinkReparseBuffer) *rs;
1125 rp = kzalloc(ntfs_reparse_bytes(2 * size + 2), GFP_NOFS);
1127 return ERR_PTR(-ENOMEM);
1129 rs = &rp->SymbolicLinkReparseBuffer;
1130 rp_name = rs->PathBuffer;
1132 /* Convert link name to UTF-16. */
1133 err = ntfs_nls_to_utf16(sbi, symname, size,
1134 (struct cpu_str *)(rp_name - 1), 2 * size,
1135 UTF16_LITTLE_ENDIAN);
1139 /* err = the length of unicode name of symlink. */
1140 *nsize = ntfs_reparse_bytes(err);
1142 if (*nsize > sbi->reparse.max_size) {
1147 /* Translate Linux '/' into Windows '\'. */
1148 for (i = 0; i < err; i++) {
1149 if (rp_name[i] == cpu_to_le16('/'))
1150 rp_name[i] = cpu_to_le16('\\');
1153 rp->ReparseTag = IO_REPARSE_TAG_SYMLINK;
1154 rp->ReparseDataLength =
1155 cpu_to_le16(*nsize - offsetof(struct REPARSE_DATA_BUFFER,
1156 SymbolicLinkReparseBuffer));
1158 /* PrintName + SubstituteName. */
1159 rs->SubstituteNameOffset = cpu_to_le16(sizeof(short) * err);
1160 rs->SubstituteNameLength = cpu_to_le16(sizeof(short) * err + 8);
1161 rs->PrintNameLength = rs->SubstituteNameOffset;
1164 * TODO: Use relative path if possible to allow Windows to
1166 * 0-absolute path 1- relative path (SYMLINK_FLAG_RELATIVE).
1170 memmove(rp_name + err + 4, rp_name, sizeof(short) * err);
1172 /* Decorate SubstituteName. */
1174 rp_name[0] = cpu_to_le16('\\');
1175 rp_name[1] = cpu_to_le16('?');
1176 rp_name[2] = cpu_to_le16('?');
1177 rp_name[3] = cpu_to_le16('\\');
1182 return ERR_PTR(err);
1188 * Helper function for:
1193 * - ntfs_atomic_open
1195 * NOTE: if fnd != NULL (ntfs_atomic_open) then @dir is locked
1197 struct inode *ntfs_create_inode(struct mnt_idmap *idmap,
1198 struct inode *dir, struct dentry *dentry,
1199 const struct cpu_str *uni, umode_t mode,
1200 dev_t dev, const char *symname, u32 size,
1201 struct ntfs_fnd *fnd)
1204 struct super_block *sb = dir->i_sb;
1205 struct ntfs_sb_info *sbi = sb->s_fs_info;
1206 const struct qstr *name = &dentry->d_name;
1208 struct ntfs_inode *dir_ni = ntfs_i(dir);
1209 struct ntfs_inode *ni = NULL;
1210 struct inode *inode = NULL;
1211 struct ATTRIB *attr;
1212 struct ATTR_STD_INFO5 *std5;
1213 struct ATTR_FILE_NAME *fname;
1214 struct MFT_REC *rec;
1215 u32 asize, dsize, sd_size;
1216 enum FILE_ATTRIBUTE fa;
1217 __le32 security_id = SECURITY_ID_INVALID;
1220 u16 t16, nsize = 0, aid = 0;
1221 struct INDEX_ROOT *root, *dir_root;
1222 struct NTFS_DE *e, *new_de = NULL;
1223 struct REPARSE_DATA_BUFFER *rp = NULL;
1224 bool rp_inserted = false;
1227 ni_lock_dir(dir_ni);
1229 dir_root = indx_get_root(&dir_ni->dir, dir_ni, NULL, NULL);
1235 if (S_ISDIR(mode)) {
1236 /* Use parent's directory attributes. */
1237 fa = dir_ni->std_fa | FILE_ATTRIBUTE_DIRECTORY |
1238 FILE_ATTRIBUTE_ARCHIVE;
1240 * By default child directory inherits parent attributes.
1241 * Root directory is hidden + system.
1242 * Make an exception for children in root.
1244 if (dir->i_ino == MFT_REC_ROOT)
1245 fa &= ~(FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM);
1246 } else if (S_ISLNK(mode)) {
1247 /* It is good idea that link should be the same type (file/dir) as target */
1248 fa = FILE_ATTRIBUTE_REPARSE_POINT;
1251 * Linux: there are dir/file/symlink and so on.
1252 * NTFS: symlinks are "dir + reparse" or "file + reparse"
1253 * It is good idea to create:
1254 * dir + reparse if 'symname' points to directory
1256 * file + reparse if 'symname' points to file
1257 * Unfortunately kern_path hangs if symname contains 'dir'.
1263 * if (!kern_path(symname, LOOKUP_FOLLOW, &path)){
1264 * struct inode *target = d_inode(path.dentry);
1266 * if (S_ISDIR(target->i_mode))
1267 * fa |= FILE_ATTRIBUTE_DIRECTORY;
1268 * // if ( target->i_sb == sb ){
1269 * // use relative path?
1274 } else if (S_ISREG(mode)) {
1275 if (sbi->options->sparse) {
1276 /* Sparsed regular file, cause option 'sparse'. */
1277 fa = FILE_ATTRIBUTE_SPARSE_FILE |
1278 FILE_ATTRIBUTE_ARCHIVE;
1279 } else if (dir_ni->std_fa & FILE_ATTRIBUTE_COMPRESSED) {
1280 /* Compressed regular file, if parent is compressed. */
1281 fa = FILE_ATTRIBUTE_COMPRESSED | FILE_ATTRIBUTE_ARCHIVE;
1283 /* Regular file, default attributes. */
1284 fa = FILE_ATTRIBUTE_ARCHIVE;
1287 fa = FILE_ATTRIBUTE_ARCHIVE;
1290 /* If option "hide_dot_files" then set hidden attribute for dot files. */
1291 if (sbi->options->hide_dot_files && name->name[0] == '.')
1292 fa |= FILE_ATTRIBUTE_HIDDEN;
1295 fa |= FILE_ATTRIBUTE_READONLY;
1297 /* Allocate PATH_MAX bytes. */
1298 new_de = __getname();
1304 /* Mark rw ntfs as dirty. it will be cleared at umount. */
1305 ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);
1307 /* Step 1: allocate and fill new mft record. */
1308 err = ntfs_look_free_mft(sbi, &ino, false, NULL, NULL);
1312 ni = ntfs_new_inode(sbi, ino, fa & FILE_ATTRIBUTE_DIRECTORY);
1318 inode = &ni->vfs_inode;
1319 inode_init_owner(idmap, inode, dir, mode);
1320 mode = inode->i_mode;
1322 ni->i_crtime = current_time(inode);
1325 rec->hard_links = cpu_to_le16(1);
1326 attr = Add2Ptr(rec, le16_to_cpu(rec->attr_off));
1328 /* Get default security id. */
1329 sd = s_default_security;
1330 sd_size = sizeof(s_default_security);
1332 if (is_ntfs3(sbi)) {
1333 security_id = dir_ni->std_security_id;
1334 if (le32_to_cpu(security_id) < SECURITY_ID_FIRST) {
1335 security_id = sbi->security.def_security_id;
1337 if (security_id == SECURITY_ID_INVALID &&
1338 !ntfs_insert_security(sbi, sd, sd_size,
1339 &security_id, NULL))
1340 sbi->security.def_security_id = security_id;
1344 /* Insert standard info. */
1345 std5 = Add2Ptr(attr, SIZEOF_RESIDENT);
1347 if (security_id == SECURITY_ID_INVALID) {
1348 dsize = sizeof(struct ATTR_STD_INFO);
1350 dsize = sizeof(struct ATTR_STD_INFO5);
1351 std5->security_id = security_id;
1352 ni->std_security_id = security_id;
1354 asize = SIZEOF_RESIDENT + dsize;
1356 attr->type = ATTR_STD;
1357 attr->size = cpu_to_le32(asize);
1358 attr->id = cpu_to_le16(aid++);
1359 attr->res.data_off = SIZEOF_RESIDENT_LE;
1360 attr->res.data_size = cpu_to_le32(dsize);
1362 std5->cr_time = std5->m_time = std5->c_time = std5->a_time =
1363 kernel2nt(&ni->i_crtime);
1365 std5->fa = ni->std_fa = fa;
1367 attr = Add2Ptr(attr, asize);
1369 /* Insert file name. */
1370 err = fill_name_de(sbi, new_de, name, uni);
1374 mi_get_ref(&ni->mi, &new_de->ref);
1376 fname = (struct ATTR_FILE_NAME *)(new_de + 1);
1378 if (sbi->options->windows_names &&
1379 !valid_windows_name(sbi, (struct le_str *)&fname->name_len)) {
1384 mi_get_ref(&dir_ni->mi, &fname->home);
1385 fname->dup.cr_time = fname->dup.m_time = fname->dup.c_time =
1386 fname->dup.a_time = std5->cr_time;
1387 fname->dup.alloc_size = fname->dup.data_size = 0;
1388 fname->dup.fa = std5->fa;
1389 fname->dup.ea_size = fname->dup.reparse = 0;
1391 dsize = le16_to_cpu(new_de->key_size);
1392 asize = ALIGN(SIZEOF_RESIDENT + dsize, 8);
1394 attr->type = ATTR_NAME;
1395 attr->size = cpu_to_le32(asize);
1396 attr->res.data_off = SIZEOF_RESIDENT_LE;
1397 attr->res.flags = RESIDENT_FLAG_INDEXED;
1398 attr->id = cpu_to_le16(aid++);
1399 attr->res.data_size = cpu_to_le32(dsize);
1400 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), fname, dsize);
1402 attr = Add2Ptr(attr, asize);
1404 if (security_id == SECURITY_ID_INVALID) {
1405 /* Insert security attribute. */
1406 asize = SIZEOF_RESIDENT + ALIGN(sd_size, 8);
1408 attr->type = ATTR_SECURE;
1409 attr->size = cpu_to_le32(asize);
1410 attr->id = cpu_to_le16(aid++);
1411 attr->res.data_off = SIZEOF_RESIDENT_LE;
1412 attr->res.data_size = cpu_to_le32(sd_size);
1413 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), sd, sd_size);
1415 attr = Add2Ptr(attr, asize);
1418 attr->id = cpu_to_le16(aid++);
1419 if (fa & FILE_ATTRIBUTE_DIRECTORY) {
1421 * Regular directory or symlink to directory.
1422 * Create root attribute.
1424 dsize = sizeof(struct INDEX_ROOT) + sizeof(struct NTFS_DE);
1425 asize = sizeof(I30_NAME) + SIZEOF_RESIDENT + dsize;
1427 attr->type = ATTR_ROOT;
1428 attr->size = cpu_to_le32(asize);
1430 attr->name_len = ARRAY_SIZE(I30_NAME);
1431 attr->name_off = SIZEOF_RESIDENT_LE;
1432 attr->res.data_off =
1433 cpu_to_le16(sizeof(I30_NAME) + SIZEOF_RESIDENT);
1434 attr->res.data_size = cpu_to_le32(dsize);
1435 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), I30_NAME,
1438 root = Add2Ptr(attr, sizeof(I30_NAME) + SIZEOF_RESIDENT);
1439 memcpy(root, dir_root, offsetof(struct INDEX_ROOT, ihdr));
1441 cpu_to_le32(sizeof(struct INDEX_HDR)); // 0x10
1442 root->ihdr.used = cpu_to_le32(sizeof(struct INDEX_HDR) +
1443 sizeof(struct NTFS_DE));
1444 root->ihdr.total = root->ihdr.used;
1446 e = Add2Ptr(root, sizeof(struct INDEX_ROOT));
1447 e->size = cpu_to_le16(sizeof(struct NTFS_DE));
1448 e->flags = NTFS_IE_LAST;
1449 } else if (S_ISLNK(mode)) {
1452 * Create empty resident data attribute.
1454 asize = SIZEOF_RESIDENT;
1456 /* Insert empty ATTR_DATA */
1457 attr->type = ATTR_DATA;
1458 attr->size = cpu_to_le32(SIZEOF_RESIDENT);
1459 attr->name_off = SIZEOF_RESIDENT_LE;
1460 attr->res.data_off = SIZEOF_RESIDENT_LE;
1461 } else if (S_ISREG(mode)) {
1463 * Regular file. Create empty non resident data attribute.
1465 attr->type = ATTR_DATA;
1467 attr->nres.evcn = cpu_to_le64(-1ll);
1468 if (fa & FILE_ATTRIBUTE_SPARSE_FILE) {
1469 attr->size = cpu_to_le32(SIZEOF_NONRESIDENT_EX + 8);
1470 attr->name_off = SIZEOF_NONRESIDENT_EX_LE;
1471 attr->flags = ATTR_FLAG_SPARSED;
1472 asize = SIZEOF_NONRESIDENT_EX + 8;
1473 } else if (fa & FILE_ATTRIBUTE_COMPRESSED) {
1474 attr->size = cpu_to_le32(SIZEOF_NONRESIDENT_EX + 8);
1475 attr->name_off = SIZEOF_NONRESIDENT_EX_LE;
1476 attr->flags = ATTR_FLAG_COMPRESSED;
1477 attr->nres.c_unit = COMPRESSION_UNIT;
1478 asize = SIZEOF_NONRESIDENT_EX + 8;
1480 attr->size = cpu_to_le32(SIZEOF_NONRESIDENT + 8);
1481 attr->name_off = SIZEOF_NONRESIDENT_LE;
1482 asize = SIZEOF_NONRESIDENT + 8;
1484 attr->nres.run_off = attr->name_off;
1487 * Node. Create empty resident data attribute.
1489 attr->type = ATTR_DATA;
1490 attr->size = cpu_to_le32(SIZEOF_RESIDENT);
1491 attr->name_off = SIZEOF_RESIDENT_LE;
1492 if (fa & FILE_ATTRIBUTE_SPARSE_FILE)
1493 attr->flags = ATTR_FLAG_SPARSED;
1494 else if (fa & FILE_ATTRIBUTE_COMPRESSED)
1495 attr->flags = ATTR_FLAG_COMPRESSED;
1496 attr->res.data_off = SIZEOF_RESIDENT_LE;
1497 asize = SIZEOF_RESIDENT;
1498 ni->ni_flags |= NI_FLAG_RESIDENT;
1501 if (S_ISDIR(mode)) {
1502 ni->ni_flags |= NI_FLAG_DIR;
1503 err = indx_init(&ni->dir, sbi, attr, INDEX_MUTEX_I30);
1506 } else if (S_ISLNK(mode)) {
1507 rp = ntfs_create_reparse_buffer(sbi, symname, size, &nsize);
1516 * Insert ATTR_REPARSE.
1518 attr = Add2Ptr(attr, asize);
1519 attr->type = ATTR_REPARSE;
1520 attr->id = cpu_to_le16(aid++);
1522 /* Resident or non resident? */
1523 asize = ALIGN(SIZEOF_RESIDENT + nsize, 8);
1524 t16 = PtrOffset(rec, attr);
1527 * Below function 'ntfs_save_wsl_perm' requires 0x78 bytes.
1528 * It is good idea to keep extened attributes resident.
1530 if (asize + t16 + 0x78 + 8 > sbi->record_size) {
1532 CLST clst = bytes_to_cluster(sbi, nsize);
1534 /* Bytes per runs. */
1535 t16 = sbi->record_size - t16 - SIZEOF_NONRESIDENT;
1538 attr->nres.evcn = cpu_to_le64(clst - 1);
1539 attr->name_off = SIZEOF_NONRESIDENT_LE;
1540 attr->nres.run_off = attr->name_off;
1541 attr->nres.data_size = cpu_to_le64(nsize);
1542 attr->nres.valid_size = attr->nres.data_size;
1543 attr->nres.alloc_size =
1544 cpu_to_le64(ntfs_up_cluster(sbi, nsize));
1546 err = attr_allocate_clusters(sbi, &ni->file.run, 0, 0,
1547 clst, NULL, ALLOCATE_DEF,
1548 &alen, 0, NULL, NULL);
1552 err = run_pack(&ni->file.run, 0, clst,
1553 Add2Ptr(attr, SIZEOF_NONRESIDENT), t16,
1563 asize = SIZEOF_NONRESIDENT + ALIGN(err, 8);
1564 /* Write non resident data. */
1565 err = ntfs_sb_write_run(sbi, &ni->file.run, 0, rp,
1570 attr->res.data_off = SIZEOF_RESIDENT_LE;
1571 attr->res.data_size = cpu_to_le32(nsize);
1572 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), rp, nsize);
1574 /* Size of symlink equals the length of input string. */
1575 inode->i_size = size;
1577 attr->size = cpu_to_le32(asize);
1579 err = ntfs_insert_reparse(sbi, IO_REPARSE_TAG_SYMLINK,
1587 attr = Add2Ptr(attr, asize);
1588 attr->type = ATTR_END;
1590 rec->used = cpu_to_le32(PtrOffset(rec, attr) + 8);
1591 rec->next_attr_id = cpu_to_le16(aid);
1593 inode->i_generation = le16_to_cpu(rec->seq);
1595 if (S_ISDIR(mode)) {
1596 inode->i_op = &ntfs_dir_inode_operations;
1597 inode->i_fop = &ntfs_dir_operations;
1598 } else if (S_ISLNK(mode)) {
1599 inode->i_op = &ntfs_link_inode_operations;
1600 inode->i_fop = NULL;
1601 inode->i_mapping->a_ops = &ntfs_aops;
1602 inode->i_size = size;
1603 inode_nohighmem(inode);
1604 } else if (S_ISREG(mode)) {
1605 inode->i_op = &ntfs_file_inode_operations;
1606 inode->i_fop = &ntfs_file_operations;
1607 inode->i_mapping->a_ops = is_compressed(ni) ? &ntfs_aops_cmpr :
1609 init_rwsem(&ni->file.run_lock);
1611 inode->i_op = &ntfs_special_inode_operations;
1612 init_special_inode(inode, mode, dev);
1615 #ifdef CONFIG_NTFS3_FS_POSIX_ACL
1616 if (!S_ISLNK(mode) && (sb->s_flags & SB_POSIXACL)) {
1617 err = ntfs_init_acl(idmap, inode, dir);
1623 inode->i_flags |= S_NOSEC;
1627 * ntfs_init_acl and ntfs_save_wsl_perm update extended attribute.
1628 * The packed size of extended attribute is stored in direntry too.
1629 * 'fname' here points to inside new_de.
1631 ntfs_save_wsl_perm(inode, &fname->dup.ea_size);
1634 * update ea_size in file_name attribute too.
1635 * Use ni_find_attr cause layout of MFT record may be changed
1636 * in ntfs_init_acl and ntfs_save_wsl_perm.
1638 attr = ni_find_attr(ni, NULL, NULL, ATTR_NAME, NULL, 0, NULL, NULL);
1640 struct ATTR_FILE_NAME *fn;
1642 fn = resident_data_ex(attr, SIZEOF_ATTRIBUTE_FILENAME);
1644 fn->dup.ea_size = fname->dup.ea_size;
1647 /* We do not need to update parent directory later */
1648 ni->ni_flags &= ~NI_FLAG_UPDATE_PARENT;
1650 /* Step 2: Add new name in index. */
1651 err = indx_insert_entry(&dir_ni->dir, dir_ni, new_de, sbi, fnd, 0);
1656 * Call 'd_instantiate' after inode->i_op is set
1657 * but before finish_open.
1659 d_instantiate(dentry, inode);
1661 /* Set original time. inode times (i_ctime) may be changed in ntfs_init_acl. */
1662 inode->i_atime = inode->i_mtime = inode->i_ctime = dir->i_mtime =
1663 dir->i_ctime = ni->i_crtime;
1665 mark_inode_dirty(dir);
1666 mark_inode_dirty(inode);
1673 ntfs_remove_reparse(sbi, IO_REPARSE_TAG_SYMLINK, &new_de->ref);
1677 run_deallocate(sbi, &ni->file.run, false);
1680 clear_rec_inuse(rec);
1682 ni->mi.dirty = false;
1683 discard_new_inode(inode);
1685 ntfs_mark_rec_free(sbi, ino, false);
1696 return ERR_PTR(err);
1698 unlock_new_inode(inode);
1703 int ntfs_link_inode(struct inode *inode, struct dentry *dentry)
1706 struct ntfs_inode *ni = ntfs_i(inode);
1707 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
1710 /* Allocate PATH_MAX bytes. */
1715 /* Mark rw ntfs as dirty. It will be cleared at umount. */
1716 ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);
1718 /* Construct 'de'. */
1719 err = fill_name_de(sbi, de, &dentry->d_name, NULL);
1723 err = ni_add_name(ntfs_i(d_inode(dentry->d_parent)), ni, de);
1732 * inode_operations::unlink
1733 * inode_operations::rmdir
1735 int ntfs_unlink_inode(struct inode *dir, const struct dentry *dentry)
1738 struct ntfs_sb_info *sbi = dir->i_sb->s_fs_info;
1739 struct inode *inode = d_inode(dentry);
1740 struct ntfs_inode *ni = ntfs_i(inode);
1741 struct ntfs_inode *dir_ni = ntfs_i(dir);
1742 struct NTFS_DE *de, *de2 = NULL;
1745 if (ntfs_is_meta_file(sbi, ni->mi.rno))
1748 /* Allocate PATH_MAX bytes. */
1755 if (S_ISDIR(inode->i_mode) && !dir_is_empty(inode)) {
1760 err = fill_name_de(sbi, de, &dentry->d_name, NULL);
1765 err = ni_remove_name(dir_ni, ni, de, &de2, &undo_remove);
1769 dir->i_mtime = dir->i_ctime = current_time(dir);
1770 mark_inode_dirty(dir);
1771 inode->i_ctime = dir->i_ctime;
1773 mark_inode_dirty(inode);
1774 } else if (!ni_remove_name_undo(dir_ni, ni, de, de2, undo_remove)) {
1775 _ntfs_bad_inode(inode);
1777 if (ni_is_dirty(dir))
1778 mark_inode_dirty(dir);
1779 if (ni_is_dirty(inode))
1780 mark_inode_dirty(inode);
1789 void ntfs_evict_inode(struct inode *inode)
1791 truncate_inode_pages_final(&inode->i_data);
1793 invalidate_inode_buffers(inode);
1796 ni_clear(ntfs_i(inode));
1800 * ntfs_translate_junction
1802 * Translate a Windows junction target to the Linux equivalent.
1803 * On junctions, targets are always absolute (they include the drive
1804 * letter). We have no way of knowing if the target is for the current
1805 * mounted device or not so we just assume it is.
1807 static int ntfs_translate_junction(const struct super_block *sb,
1808 const struct dentry *link_de, char *target,
1809 int target_len, int target_max)
1811 int tl_len, err = target_len;
1812 char *link_path_buffer = NULL, *link_path;
1813 char *translated = NULL;
1817 link_path_buffer = kmalloc(PATH_MAX, GFP_NOFS);
1818 if (!link_path_buffer) {
1822 /* Get link path, relative to mount point */
1823 link_path = dentry_path_raw(link_de, link_path_buffer, PATH_MAX);
1824 if (IS_ERR(link_path)) {
1825 ntfs_err(sb, "Error getting link path");
1830 translated = kmalloc(PATH_MAX, GFP_NOFS);
1836 /* Make translated path a relative path to mount point */
1837 strcpy(translated, "./");
1838 ++link_path; /* Skip leading / */
1839 for (tl_len = sizeof("./") - 1; *link_path; ++link_path) {
1840 if (*link_path == '/') {
1841 if (PATH_MAX - tl_len < sizeof("../")) {
1843 "Link path %s has too many components",
1848 strcpy(translated + tl_len, "../");
1849 tl_len += sizeof("../") - 1;
1853 /* Skip drive letter */
1854 target_start = target;
1855 while (*target_start && *target_start != ':')
1858 if (!*target_start) {
1859 ntfs_err(sb, "Link target (%s) missing drive separator",
1865 /* Skip drive separator and leading /, if exists */
1866 target_start += 1 + (target_start[1] == '/');
1867 copy_len = target_len - (target_start - target);
1869 if (PATH_MAX - tl_len <= copy_len) {
1870 ntfs_err(sb, "Link target %s too large for buffer (%d <= %d)",
1871 target_start, PATH_MAX - tl_len, copy_len);
1876 /* translated path has a trailing / and target_start does not */
1877 strcpy(translated + tl_len, target_start);
1879 if (target_max <= tl_len) {
1880 ntfs_err(sb, "Target path %s too large for buffer (%d <= %d)",
1881 translated, target_max, tl_len);
1885 strcpy(target, translated);
1889 kfree(link_path_buffer);
1894 static noinline int ntfs_readlink_hlp(const struct dentry *link_de,
1895 struct inode *inode, char *buffer,
1898 int i, err = -EINVAL;
1899 struct ntfs_inode *ni = ntfs_i(inode);
1900 struct super_block *sb = inode->i_sb;
1901 struct ntfs_sb_info *sbi = sb->s_fs_info;
1904 void *to_free = NULL;
1905 struct REPARSE_DATA_BUFFER *rp;
1906 const __le16 *uname;
1907 struct ATTRIB *attr;
1909 /* Reparse data present. Try to parse it. */
1910 static_assert(!offsetof(struct REPARSE_DATA_BUFFER, ReparseTag));
1911 static_assert(sizeof(u32) == sizeof(rp->ReparseTag));
1915 attr = ni_find_attr(ni, NULL, NULL, ATTR_REPARSE, NULL, 0, NULL, NULL);
1919 if (!attr->non_res) {
1920 rp = resident_data_ex(attr, sizeof(struct REPARSE_DATA_BUFFER));
1923 size = le32_to_cpu(attr->res.data_size);
1925 size = le64_to_cpu(attr->nres.data_size);
1929 if (size > sbi->reparse.max_size || size <= sizeof(u32))
1933 rp = kmalloc(size, GFP_NOFS);
1939 /* Read into temporal buffer. */
1940 err = ntfs_read_run_nb(sbi, &ni->file.run, 0, rp, size, NULL);
1945 /* Microsoft Tag. */
1946 switch (rp->ReparseTag) {
1947 case IO_REPARSE_TAG_MOUNT_POINT:
1948 /* Mount points and junctions. */
1949 /* Can we use 'Rp->MountPointReparseBuffer.PrintNameLength'? */
1950 if (size <= offsetof(struct REPARSE_DATA_BUFFER,
1951 MountPointReparseBuffer.PathBuffer))
1954 offsetof(struct REPARSE_DATA_BUFFER,
1955 MountPointReparseBuffer.PathBuffer) +
1956 le16_to_cpu(rp->MountPointReparseBuffer
1958 ulen = le16_to_cpu(rp->MountPointReparseBuffer.PrintNameLength);
1961 case IO_REPARSE_TAG_SYMLINK:
1962 /* FolderSymbolicLink */
1963 /* Can we use 'Rp->SymbolicLinkReparseBuffer.PrintNameLength'? */
1964 if (size <= offsetof(struct REPARSE_DATA_BUFFER,
1965 SymbolicLinkReparseBuffer.PathBuffer))
1968 rp, offsetof(struct REPARSE_DATA_BUFFER,
1969 SymbolicLinkReparseBuffer.PathBuffer) +
1970 le16_to_cpu(rp->SymbolicLinkReparseBuffer
1973 rp->SymbolicLinkReparseBuffer.PrintNameLength);
1976 case IO_REPARSE_TAG_CLOUD:
1977 case IO_REPARSE_TAG_CLOUD_1:
1978 case IO_REPARSE_TAG_CLOUD_2:
1979 case IO_REPARSE_TAG_CLOUD_3:
1980 case IO_REPARSE_TAG_CLOUD_4:
1981 case IO_REPARSE_TAG_CLOUD_5:
1982 case IO_REPARSE_TAG_CLOUD_6:
1983 case IO_REPARSE_TAG_CLOUD_7:
1984 case IO_REPARSE_TAG_CLOUD_8:
1985 case IO_REPARSE_TAG_CLOUD_9:
1986 case IO_REPARSE_TAG_CLOUD_A:
1987 case IO_REPARSE_TAG_CLOUD_B:
1988 case IO_REPARSE_TAG_CLOUD_C:
1989 case IO_REPARSE_TAG_CLOUD_D:
1990 case IO_REPARSE_TAG_CLOUD_E:
1991 case IO_REPARSE_TAG_CLOUD_F:
1992 err = sizeof("OneDrive") - 1;
1995 memcpy(buffer, "OneDrive", err);
1999 if (IsReparseTagMicrosoft(rp->ReparseTag)) {
2000 /* Unknown Microsoft Tag. */
2003 if (!IsReparseTagNameSurrogate(rp->ReparseTag) ||
2004 size <= sizeof(struct REPARSE_POINT)) {
2009 uname = Add2Ptr(rp, sizeof(struct REPARSE_POINT));
2010 ulen = le16_to_cpu(rp->ReparseDataLength) -
2011 sizeof(struct REPARSE_POINT);
2014 /* Convert nlen from bytes to UNICODE chars. */
2017 /* Check that name is available. */
2018 if (!ulen || uname + ulen > (__le16 *)Add2Ptr(rp, size))
2021 /* If name is already zero terminated then truncate it now. */
2022 if (!uname[ulen - 1])
2025 err = ntfs_utf16_to_nls(sbi, uname, ulen, buffer, buflen);
2030 /* Translate Windows '\' into Linux '/'. */
2031 for (i = 0; i < err; i++) {
2032 if (buffer[i] == '\\')
2036 /* Always set last zero. */
2039 /* If this is a junction, translate the link target. */
2040 if (rp->ReparseTag == IO_REPARSE_TAG_MOUNT_POINT)
2041 err = ntfs_translate_junction(sb, link_de, buffer, err, buflen);
2048 static const char *ntfs_get_link(struct dentry *de, struct inode *inode,
2049 struct delayed_call *done)
2055 return ERR_PTR(-ECHILD);
2057 ret = kmalloc(PAGE_SIZE, GFP_NOFS);
2059 return ERR_PTR(-ENOMEM);
2061 err = ntfs_readlink_hlp(de, inode, ret, PAGE_SIZE);
2064 return ERR_PTR(err);
2067 set_delayed_call(done, kfree_link, ret);
2073 const struct inode_operations ntfs_link_inode_operations = {
2074 .get_link = ntfs_get_link,
2075 .setattr = ntfs3_setattr,
2076 .listxattr = ntfs_listxattr,
2079 const struct address_space_operations ntfs_aops = {
2080 .read_folio = ntfs_read_folio,
2081 .readahead = ntfs_readahead,
2082 .writepages = ntfs_writepages,
2083 .write_begin = ntfs_write_begin,
2084 .write_end = ntfs_write_end,
2085 .direct_IO = ntfs_direct_IO,
2087 .dirty_folio = block_dirty_folio,
2088 .migrate_folio = buffer_migrate_folio,
2089 .invalidate_folio = block_invalidate_folio,
2092 const struct address_space_operations ntfs_aops_cmpr = {
2093 .read_folio = ntfs_read_folio,
2094 .readahead = ntfs_readahead,