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, links = 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;
50 /* Setup 'uid' and 'gid' */
51 inode->i_uid = sbi->options->fs_uid;
52 inode->i_gid = sbi->options->fs_gid;
54 err = mi_init(&ni->mi, sbi, ino);
58 if (!sbi->mft.ni && ino == MFT_REC_MFT && !sb->s_root) {
59 t64 = sbi->mft.lbo >> sbi->cluster_bits;
60 t32 = bytes_to_cluster(sbi, MFT_REC_VOL * sbi->record_size);
62 init_rwsem(&ni->file.run_lock);
64 if (!run_add_entry(&ni->file.run, 0, t64, t32, true)) {
70 err = mi_read(&ni->mi, ino == MFT_REC_MFT);
77 if (sbi->flags & NTFS_FLAGS_LOG_REPLAYING) {
79 } else if (ref->seq != rec->seq) {
81 ntfs_err(sb, "MFT: r=%lx, expect seq=%x instead of %x!", ino,
82 le16_to_cpu(ref->seq), le16_to_cpu(rec->seq));
84 } else if (!is_rec_inuse(rec)) {
86 ntfs_err(sb, "Inode r=%x is not in use!", (u32)ino);
90 if (le32_to_cpu(rec->total) != sbi->record_size) {
96 if (!is_rec_base(rec)) {
101 /* Record should contain $I30 root. */
102 is_dir = rec->flags & RECORD_FLAG_DIR;
104 /* MFT_REC_MFT is not a dir */
105 if (is_dir && ino == MFT_REC_MFT) {
110 inode->i_generation = le16_to_cpu(rec->seq);
112 /* Enumerate all struct Attributes MFT. */
117 * To reduce tab pressure use goto instead of
118 * while( (attr = ni_enum_attr_ex(ni, attr, &le, NULL) ))
123 attr = ni_enum_attr_ex(ni, attr, &le, NULL);
128 /* This is non primary attribute segment. Ignore if not MFT. */
129 if (ino != MFT_REC_MFT || attr->type != ATTR_DATA)
133 asize = le32_to_cpu(attr->size);
134 goto attr_unpack_run;
137 roff = attr->non_res ? 0 : le16_to_cpu(attr->res.data_off);
138 rsize = attr->non_res ? 0 : le32_to_cpu(attr->res.data_size);
139 asize = le32_to_cpu(attr->size);
142 * Really this check was done in 'ni_enum_attr_ex' -> ... 'mi_enum_attr'.
143 * There not critical to check this case again
145 if (attr->name_len &&
146 sizeof(short) * attr->name_len + le16_to_cpu(attr->name_off) >
151 t64 = le64_to_cpu(attr->nres.alloc_size);
152 if (le64_to_cpu(attr->nres.data_size) > t64 ||
153 le64_to_cpu(attr->nres.valid_size) > t64)
157 switch (attr->type) {
160 asize < sizeof(struct ATTR_STD_INFO) + roff ||
161 rsize < sizeof(struct ATTR_STD_INFO))
167 std5 = Add2Ptr(attr, roff);
170 nt2kernel(std5->cr_time, &ni->i_crtime);
172 nt2kernel(std5->a_time, &ts);
173 inode_set_atime_to_ts(inode, ts);
174 nt2kernel(std5->c_time, &ts);
175 inode_set_ctime_to_ts(inode, ts);
176 nt2kernel(std5->m_time, &ts);
177 inode_set_mtime_to_ts(inode, ts);
179 ni->std_fa = std5->fa;
181 if (asize >= sizeof(struct ATTR_STD_INFO5) + roff &&
182 rsize >= sizeof(struct ATTR_STD_INFO5))
183 ni->std_security_id = std5->security_id;
187 if (attr->name_len || le || ino == MFT_REC_LOG)
190 err = ntfs_load_attr_list(ni, attr);
199 if (attr->non_res || asize < SIZEOF_ATTRIBUTE_FILENAME + roff ||
200 rsize < SIZEOF_ATTRIBUTE_FILENAME)
204 fname = Add2Ptr(attr, roff);
205 if (fname->type == FILE_NAME_DOS)
209 if (name && name->len == fname->name_len &&
210 !ntfs_cmp_names_cpu(name, (struct le_str *)&fname->name_len,
218 /* Ignore data attribute in dir record. */
222 if (ino == MFT_REC_BADCLUST && !attr->non_res)
225 if (attr->name_len &&
226 ((ino != MFT_REC_BADCLUST || !attr->non_res ||
227 attr->name_len != ARRAY_SIZE(BAD_NAME) ||
228 memcmp(attr_name(attr), BAD_NAME, sizeof(BAD_NAME))) &&
229 (ino != MFT_REC_SECURE || !attr->non_res ||
230 attr->name_len != ARRAY_SIZE(SDS_NAME) ||
231 memcmp(attr_name(attr), SDS_NAME, sizeof(SDS_NAME))))) {
232 /* File contains stream attribute. Ignore it. */
236 if (is_attr_sparsed(attr))
237 ni->std_fa |= FILE_ATTRIBUTE_SPARSE_FILE;
239 ni->std_fa &= ~FILE_ATTRIBUTE_SPARSE_FILE;
241 if (is_attr_compressed(attr))
242 ni->std_fa |= FILE_ATTRIBUTE_COMPRESSED;
244 ni->std_fa &= ~FILE_ATTRIBUTE_COMPRESSED;
246 if (is_attr_encrypted(attr))
247 ni->std_fa |= FILE_ATTRIBUTE_ENCRYPTED;
249 ni->std_fa &= ~FILE_ATTRIBUTE_ENCRYPTED;
251 if (!attr->non_res) {
252 ni->i_valid = inode->i_size = rsize;
253 inode_set_bytes(inode, rsize);
256 mode = S_IFREG | (0777 & sbi->options->fs_fmask_inv);
258 if (!attr->non_res) {
259 ni->ni_flags |= NI_FLAG_RESIDENT;
263 inode_set_bytes(inode, attr_ondisk_size(attr));
265 ni->i_valid = le64_to_cpu(attr->nres.valid_size);
266 inode->i_size = le64_to_cpu(attr->nres.data_size);
267 if (!attr->nres.alloc_size)
270 run = ino == MFT_REC_BITMAP ? &sbi->used.bitmap.run :
278 root = Add2Ptr(attr, roff);
280 if (attr->name_len != ARRAY_SIZE(I30_NAME) ||
281 memcmp(attr_name(attr), I30_NAME, sizeof(I30_NAME)))
284 if (root->type != ATTR_NAME ||
285 root->rule != NTFS_COLLATION_TYPE_FILENAME)
292 ni->ni_flags |= NI_FLAG_DIR;
294 err = indx_init(&ni->dir, sbi, attr, INDEX_MUTEX_I30);
299 (S_IFDIR | (0777 & sbi->options->fs_dmask_inv)) :
304 if (!is_root || attr->name_len != ARRAY_SIZE(I30_NAME) ||
305 memcmp(attr_name(attr), I30_NAME, sizeof(I30_NAME)))
308 inode->i_size = le64_to_cpu(attr->nres.data_size);
309 ni->i_valid = le64_to_cpu(attr->nres.valid_size);
310 inode_set_bytes(inode, le64_to_cpu(attr->nres.alloc_size));
312 run = &ni->dir.alloc_run;
316 if (ino == MFT_REC_MFT) {
319 #ifndef CONFIG_NTFS3_64BIT_CLUSTER
320 /* 0x20000000 = 2^32 / 8 */
321 if (le64_to_cpu(attr->nres.alloc_size) >= 0x20000000)
324 run = &sbi->mft.bitmap.run;
326 } else if (is_dir && attr->name_len == ARRAY_SIZE(I30_NAME) &&
327 !memcmp(attr_name(attr), I30_NAME,
330 run = &ni->dir.bitmap_run;
339 rp_fa = ni_parse_reparse(ni, attr, &rp);
344 * Assume one unicode symbol == one utf8.
346 inode->i_size = le16_to_cpu(rp.SymbolicLinkReparseBuffer
349 ni->i_valid = inode->i_size;
350 /* Clear directory bit. */
351 if (ni->ni_flags & NI_FLAG_DIR) {
352 indx_clear(&ni->dir);
353 memset(&ni->dir, 0, sizeof(ni->dir));
354 ni->ni_flags &= ~NI_FLAG_DIR;
356 run_close(&ni->file.run);
358 mode = S_IFLNK | 0777;
362 goto attr_unpack_run; // Double break.
366 case REPARSE_COMPRESSED:
369 case REPARSE_DEDUPLICATED:
375 if (!attr->name_len &&
376 resident_data_ex(attr, sizeof(struct EA_INFO))) {
377 ni->ni_flags |= NI_FLAG_EA;
379 * ntfs_get_wsl_perm updates inode->i_uid, inode->i_gid, inode->i_mode
381 inode->i_mode = mode;
382 ntfs_get_wsl_perm(inode);
383 mode = inode->i_mode;
392 roff = le16_to_cpu(attr->nres.run_off);
399 t64 = le64_to_cpu(attr->nres.svcn);
401 err = run_unpack_ex(run, sbi, ino, t64, le64_to_cpu(attr->nres.evcn),
402 t64, Add2Ptr(attr, roff), asize - roff);
413 if (!is_match && name) {
418 if (std5->fa & FILE_ATTRIBUTE_READONLY)
426 if (names != le16_to_cpu(rec->hard_links)) {
427 /* Correct minor error on the fly. Do not mark inode as dirty. */
428 ntfs_inode_warn(inode, "Correct links count -> %u.", names);
429 rec->hard_links = cpu_to_le16(names);
433 set_nlink(inode, links);
436 ni->std_fa |= FILE_ATTRIBUTE_DIRECTORY;
439 * Dot and dot-dot should be included in count but was not
440 * included in enumeration.
441 * Usually a hard links to directories are disabled.
443 inode->i_op = &ntfs_dir_inode_operations;
444 if (is_legacy_ntfs(inode->i_sb))
445 inode->i_fop = &ntfs_legacy_dir_operations;
447 inode->i_fop = &ntfs_dir_operations;
449 } else if (S_ISLNK(mode)) {
450 ni->std_fa &= ~FILE_ATTRIBUTE_DIRECTORY;
451 inode->i_op = &ntfs_link_inode_operations;
453 inode_nohighmem(inode);
454 } else if (S_ISREG(mode)) {
455 ni->std_fa &= ~FILE_ATTRIBUTE_DIRECTORY;
456 inode->i_op = &ntfs_file_inode_operations;
457 if (is_legacy_ntfs(inode->i_sb))
458 inode->i_fop = &ntfs_legacy_file_operations;
460 inode->i_fop = &ntfs_file_operations;
461 inode->i_mapping->a_ops = is_compressed(ni) ? &ntfs_aops_cmpr :
463 if (ino != MFT_REC_MFT)
464 init_rwsem(&ni->file.run_lock);
465 } else if (S_ISCHR(mode) || S_ISBLK(mode) || S_ISFIFO(mode) ||
467 inode->i_op = &ntfs_special_inode_operations;
468 init_special_inode(inode, mode, inode->i_rdev);
469 } else if (fname && fname->home.low == cpu_to_le32(MFT_REC_EXTEND) &&
470 fname->home.seq == cpu_to_le16(MFT_REC_EXTEND)) {
471 /* Records in $Extend are not a files or general directories. */
472 inode->i_op = &ntfs_file_inode_operations;
478 if ((sbi->options->sys_immutable &&
479 (std5->fa & FILE_ATTRIBUTE_SYSTEM)) &&
480 !S_ISFIFO(mode) && !S_ISSOCK(mode) && !S_ISLNK(mode)) {
481 inode->i_flags |= S_IMMUTABLE;
483 inode->i_flags &= ~S_IMMUTABLE;
486 inode->i_mode = mode;
487 if (!(ni->ni_flags & NI_FLAG_EA)) {
488 /* If no xattr then no security (stored in xattr). */
489 inode->i_flags |= S_NOSEC;
492 if (ino == MFT_REC_MFT && !sb->s_root)
495 unlock_new_inode(inode);
500 if (ino == MFT_REC_MFT && !sb->s_root)
510 * Return: 1 if match.
512 static int ntfs_test_inode(struct inode *inode, void *data)
514 struct MFT_REF *ref = data;
516 return ino_get(ref) == inode->i_ino;
519 static int ntfs_set_inode(struct inode *inode, void *data)
521 const struct MFT_REF *ref = data;
523 inode->i_ino = ino_get(ref);
527 struct inode *ntfs_iget5(struct super_block *sb, const struct MFT_REF *ref,
528 const struct cpu_str *name)
532 inode = iget5_locked(sb, ino_get(ref), ntfs_test_inode, ntfs_set_inode,
534 if (unlikely(!inode))
535 return ERR_PTR(-ENOMEM);
537 /* If this is a freshly allocated inode, need to read it now. */
538 if (inode->i_state & I_NEW)
539 inode = ntfs_read_mft(inode, name, ref);
540 else if (ref->seq != ntfs_i(inode)->mi.mrec->seq) {
541 /* Inode overlaps? */
542 _ntfs_bad_inode(inode);
545 if (IS_ERR(inode) && name)
546 ntfs_set_state(sb->s_fs_info, NTFS_DIRTY_ERROR);
552 GET_BLOCK_GENERAL = 0,
553 GET_BLOCK_WRITE_BEGIN = 1,
554 GET_BLOCK_DIRECT_IO_R = 2,
555 GET_BLOCK_DIRECT_IO_W = 3,
559 static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo,
560 struct buffer_head *bh, int create,
561 enum get_block_ctx ctx)
563 struct super_block *sb = inode->i_sb;
564 struct ntfs_sb_info *sbi = sb->s_fs_info;
565 struct ntfs_inode *ni = ntfs_i(inode);
566 struct folio *folio = bh->b_folio;
567 u8 cluster_bits = sbi->cluster_bits;
568 u32 block_size = sb->s_blocksize;
569 u64 bytes, lbo, valid;
575 /* Clear previous state. */
576 clear_buffer_new(bh);
577 clear_buffer_uptodate(bh);
579 if (is_resident(ni)) {
580 bh->b_blocknr = RESIDENT_LCN;
581 bh->b_size = block_size;
586 err = attr_data_read_resident(ni, &folio->page);
590 set_buffer_uptodate(bh);
595 vcn = vbo >> cluster_bits;
596 off = vbo & sbi->cluster_mask;
599 err = attr_data_get_block(ni, vcn, 1, &lcn, &len, create ? &new : NULL,
600 create && sbi->cluster_size > PAGE_SIZE);
607 bytes = ((u64)len << cluster_bits) - off;
609 if (lcn == SPARSE_LCN) {
611 if (bh->b_size > bytes)
621 lbo = ((u64)lcn << cluster_bits) + off;
623 set_buffer_mapped(bh);
624 bh->b_bdev = sb->s_bdev;
625 bh->b_blocknr = lbo >> sb->s_blocksize_bits;
629 if (ctx == GET_BLOCK_DIRECT_IO_W) {
630 /* ntfs_direct_IO will update ni->i_valid. */
635 if (bytes > bh->b_size)
641 if (vbo + bytes > valid) {
642 ni->i_valid = vbo + bytes;
643 mark_inode_dirty(inode);
645 } else if (vbo >= valid) {
646 /* Read out of valid data. */
647 clear_buffer_mapped(bh);
648 } else if (vbo + bytes <= valid) {
650 } else if (vbo + block_size <= valid) {
651 /* Normal short read. */
655 * Read across valid size: vbo < valid && valid < vbo + block_size
660 u32 voff = valid - vbo;
662 bh->b_size = block_size;
663 off = vbo & (PAGE_SIZE - 1);
664 folio_set_bh(bh, folio, off);
666 if (bh_read(bh, 0) < 0) {
670 folio_zero_segment(folio, off + voff, off + block_size);
674 if (bh->b_size > bytes)
678 if (ctx == GET_BLOCK_DIRECT_IO_W || ctx == GET_BLOCK_DIRECT_IO_R) {
679 static_assert(sizeof(size_t) < sizeof(loff_t));
680 if (bytes > 0x40000000u)
681 bh->b_size = 0x40000000u;
691 int ntfs_get_block(struct inode *inode, sector_t vbn,
692 struct buffer_head *bh_result, int create)
694 return ntfs_get_block_vbo(inode, (u64)vbn << inode->i_blkbits,
695 bh_result, create, GET_BLOCK_GENERAL);
698 static int ntfs_get_block_bmap(struct inode *inode, sector_t vsn,
699 struct buffer_head *bh_result, int create)
701 return ntfs_get_block_vbo(inode,
702 (u64)vsn << inode->i_sb->s_blocksize_bits,
703 bh_result, create, GET_BLOCK_BMAP);
706 static sector_t ntfs_bmap(struct address_space *mapping, sector_t block)
708 return generic_block_bmap(mapping, block, ntfs_get_block_bmap);
711 static int ntfs_read_folio(struct file *file, struct folio *folio)
713 struct page *page = &folio->page;
715 struct address_space *mapping = page->mapping;
716 struct inode *inode = mapping->host;
717 struct ntfs_inode *ni = ntfs_i(inode);
719 if (is_resident(ni)) {
721 err = attr_data_read_resident(ni, page);
723 if (err != E_NTFS_NONRESIDENT) {
729 if (is_compressed(ni)) {
731 err = ni_readpage_cmpr(ni, page);
736 /* Normal + sparse files. */
737 return mpage_read_folio(folio, ntfs_get_block);
740 static void ntfs_readahead(struct readahead_control *rac)
742 struct address_space *mapping = rac->mapping;
743 struct inode *inode = mapping->host;
744 struct ntfs_inode *ni = ntfs_i(inode);
748 if (is_resident(ni)) {
749 /* No readahead for resident. */
753 if (is_compressed(ni)) {
754 /* No readahead for compressed. */
759 pos = readahead_pos(rac);
761 if (valid < i_size_read(inode) && pos <= valid &&
762 valid < pos + readahead_length(rac)) {
763 /* Range cross 'valid'. Read it page by page. */
767 mpage_readahead(rac, ntfs_get_block);
770 static int ntfs_get_block_direct_IO_R(struct inode *inode, sector_t iblock,
771 struct buffer_head *bh_result, int create)
773 return ntfs_get_block_vbo(inode, (u64)iblock << inode->i_blkbits,
774 bh_result, create, GET_BLOCK_DIRECT_IO_R);
777 static int ntfs_get_block_direct_IO_W(struct inode *inode, sector_t iblock,
778 struct buffer_head *bh_result, int create)
780 return ntfs_get_block_vbo(inode, (u64)iblock << inode->i_blkbits,
781 bh_result, create, GET_BLOCK_DIRECT_IO_W);
784 static ssize_t ntfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
786 struct file *file = iocb->ki_filp;
787 struct address_space *mapping = file->f_mapping;
788 struct inode *inode = mapping->host;
789 struct ntfs_inode *ni = ntfs_i(inode);
790 loff_t vbo = iocb->ki_pos;
792 int wr = iov_iter_rw(iter) & WRITE;
793 size_t iter_count = iov_iter_count(iter);
797 if (is_resident(ni)) {
798 /* Switch to buffered write. */
803 ret = blockdev_direct_IO(iocb, inode, iter,
804 wr ? ntfs_get_block_direct_IO_W :
805 ntfs_get_block_direct_IO_R);
809 else if (wr && ret == -EIOCBQUEUED)
810 end = vbo + iter_count;
816 if (end > valid && !S_ISBLK(inode->i_mode)) {
818 mark_inode_dirty(inode);
820 } else if (vbo < valid && valid < end) {
822 iov_iter_revert(iter, end - valid);
823 iov_iter_zero(end - valid, iter);
830 int ntfs_set_size(struct inode *inode, u64 new_size)
832 struct super_block *sb = inode->i_sb;
833 struct ntfs_sb_info *sbi = sb->s_fs_info;
834 struct ntfs_inode *ni = ntfs_i(inode);
837 /* Check for maximum file size. */
838 if (is_sparsed(ni) || is_compressed(ni)) {
839 if (new_size > sbi->maxbytes_sparse) {
843 } else if (new_size > sbi->maxbytes) {
849 down_write(&ni->file.run_lock);
851 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run, new_size,
852 &ni->i_valid, true, NULL);
854 up_write(&ni->file.run_lock);
857 mark_inode_dirty(inode);
863 static int ntfs_resident_writepage(struct folio *folio,
864 struct writeback_control *wbc, void *data)
866 struct address_space *mapping = data;
867 struct inode *inode = mapping->host;
868 struct ntfs_inode *ni = ntfs_i(inode);
871 if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
875 ret = attr_data_write_resident(ni, &folio->page);
878 if (ret != E_NTFS_NONRESIDENT)
880 mapping_set_error(mapping, ret);
884 static int ntfs_writepages(struct address_space *mapping,
885 struct writeback_control *wbc)
887 struct inode *inode = mapping->host;
889 if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
892 if (is_resident(ntfs_i(inode)))
893 return write_cache_pages(mapping, wbc, ntfs_resident_writepage,
895 return mpage_writepages(mapping, wbc, ntfs_get_block);
898 static int ntfs_get_block_write_begin(struct inode *inode, sector_t vbn,
899 struct buffer_head *bh_result, int create)
901 return ntfs_get_block_vbo(inode, (u64)vbn << inode->i_blkbits,
902 bh_result, create, GET_BLOCK_WRITE_BEGIN);
905 int ntfs_write_begin(struct file *file, struct address_space *mapping,
906 loff_t pos, u32 len, struct page **pagep, void **fsdata)
909 struct inode *inode = mapping->host;
910 struct ntfs_inode *ni = ntfs_i(inode);
912 if (unlikely(ntfs3_forced_shutdown(inode->i_sb)))
916 if (is_resident(ni)) {
918 grab_cache_page_write_begin(mapping, pos >> PAGE_SHIFT);
926 err = attr_data_read_resident(ni, page);
936 if (err != E_NTFS_NONRESIDENT)
940 err = block_write_begin(mapping, pos, len, pagep,
941 ntfs_get_block_write_begin);
948 * ntfs_write_end - Address_space_operations::write_end.
950 int ntfs_write_end(struct file *file, struct address_space *mapping, loff_t pos,
951 u32 len, u32 copied, struct page *page, void *fsdata)
953 struct inode *inode = mapping->host;
954 struct ntfs_inode *ni = ntfs_i(inode);
955 u64 valid = ni->i_valid;
959 if (is_resident(ni)) {
961 err = attr_data_write_resident(ni, page);
965 /* Clear any buffers in page. */
966 if (page_has_buffers(page)) {
967 struct buffer_head *head, *bh;
969 bh = head = page_buffers(page);
971 clear_buffer_dirty(bh);
972 clear_buffer_mapped(bh);
973 set_buffer_uptodate(bh);
974 } while (head != (bh = bh->b_this_page));
976 SetPageUptodate(page);
982 err = generic_write_end(file, mapping, pos, len, copied, page,
987 if (!(ni->std_fa & FILE_ATTRIBUTE_ARCHIVE)) {
988 inode_set_mtime_to_ts(inode,
989 inode_set_ctime_current(inode));
990 ni->std_fa |= FILE_ATTRIBUTE_ARCHIVE;
994 if (valid != ni->i_valid) {
995 /* ni->i_valid is changed in ntfs_get_block_vbo. */
999 if (pos + err > inode->i_size) {
1000 i_size_write(inode, pos + err);
1005 mark_inode_dirty(inode);
1011 int reset_log_file(struct inode *inode)
1015 u32 log_size = inode->i_size;
1016 struct address_space *mapping = inode->i_mapping;
1023 len = pos + PAGE_SIZE > log_size ? (log_size - pos) : PAGE_SIZE;
1025 err = block_write_begin(mapping, pos, len, &page,
1026 ntfs_get_block_write_begin);
1030 kaddr = kmap_atomic(page);
1031 memset(kaddr, -1, len);
1032 kunmap_atomic(kaddr);
1033 flush_dcache_page(page);
1035 err = block_write_end(NULL, mapping, pos, len, len, page, NULL);
1040 if (pos >= log_size)
1042 balance_dirty_pages_ratelimited(mapping);
1045 mark_inode_dirty_sync(inode);
1050 int ntfs3_write_inode(struct inode *inode, struct writeback_control *wbc)
1052 return _ni_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
1055 int ntfs_sync_inode(struct inode *inode)
1057 return _ni_write_inode(inode, 1);
1061 * writeback_inode - Helper function for ntfs_flush_inodes().
1063 * This writes both the inode and the file data blocks, waiting
1064 * for in flight data blocks before the start of the call. It
1065 * does not wait for any io started during the call.
1067 static int writeback_inode(struct inode *inode)
1069 int ret = sync_inode_metadata(inode, 0);
1072 ret = filemap_fdatawrite(inode->i_mapping);
1079 * Write data and metadata corresponding to i1 and i2. The io is
1080 * started but we do not wait for any of it to finish.
1082 * filemap_flush() is used for the block device, so if there is a dirty
1083 * page for a block already in flight, we will not wait and start the
1086 int ntfs_flush_inodes(struct super_block *sb, struct inode *i1,
1092 ret = writeback_inode(i1);
1094 ret = writeback_inode(i2);
1096 ret = sync_blockdev_nowait(sb->s_bdev);
1100 int inode_write_data(struct inode *inode, const void *data, size_t bytes)
1104 /* Write non resident data. */
1105 for (idx = 0; bytes; idx++) {
1106 size_t op = bytes > PAGE_SIZE ? PAGE_SIZE : bytes;
1107 struct page *page = ntfs_map_page(inode->i_mapping, idx);
1110 return PTR_ERR(page);
1113 WARN_ON(!PageUptodate(page));
1114 ClearPageUptodate(page);
1116 memcpy(page_address(page), data, op);
1118 flush_dcache_page(page);
1119 SetPageUptodate(page);
1122 ntfs_unmap_page(page);
1125 data = Add2Ptr(data, PAGE_SIZE);
1131 * ntfs_reparse_bytes
1133 * Number of bytes for REPARSE_DATA_BUFFER(IO_REPARSE_TAG_SYMLINK)
1134 * for unicode string of @uni_len length.
1136 static inline u32 ntfs_reparse_bytes(u32 uni_len)
1138 /* Header + unicode string + decorated unicode string. */
1139 return sizeof(short) * (2 * uni_len + 4) +
1140 offsetof(struct REPARSE_DATA_BUFFER,
1141 SymbolicLinkReparseBuffer.PathBuffer);
1144 static struct REPARSE_DATA_BUFFER *
1145 ntfs_create_reparse_buffer(struct ntfs_sb_info *sbi, const char *symname,
1146 u32 size, u16 *nsize)
1149 struct REPARSE_DATA_BUFFER *rp;
1151 typeof(rp->SymbolicLinkReparseBuffer) *rs;
1153 rp = kzalloc(ntfs_reparse_bytes(2 * size + 2), GFP_NOFS);
1155 return ERR_PTR(-ENOMEM);
1157 rs = &rp->SymbolicLinkReparseBuffer;
1158 rp_name = rs->PathBuffer;
1160 /* Convert link name to UTF-16. */
1161 err = ntfs_nls_to_utf16(sbi, symname, size,
1162 (struct cpu_str *)(rp_name - 1), 2 * size,
1163 UTF16_LITTLE_ENDIAN);
1167 /* err = the length of unicode name of symlink. */
1168 *nsize = ntfs_reparse_bytes(err);
1170 if (*nsize > sbi->reparse.max_size) {
1175 /* Translate Linux '/' into Windows '\'. */
1176 for (i = 0; i < err; i++) {
1177 if (rp_name[i] == cpu_to_le16('/'))
1178 rp_name[i] = cpu_to_le16('\\');
1181 rp->ReparseTag = IO_REPARSE_TAG_SYMLINK;
1182 rp->ReparseDataLength =
1183 cpu_to_le16(*nsize - offsetof(struct REPARSE_DATA_BUFFER,
1184 SymbolicLinkReparseBuffer));
1186 /* PrintName + SubstituteName. */
1187 rs->SubstituteNameOffset = cpu_to_le16(sizeof(short) * err);
1188 rs->SubstituteNameLength = cpu_to_le16(sizeof(short) * err + 8);
1189 rs->PrintNameLength = rs->SubstituteNameOffset;
1192 * TODO: Use relative path if possible to allow Windows to
1194 * 0-absolute path 1- relative path (SYMLINK_FLAG_RELATIVE).
1198 memmove(rp_name + err + 4, rp_name, sizeof(short) * err);
1200 /* Decorate SubstituteName. */
1202 rp_name[0] = cpu_to_le16('\\');
1203 rp_name[1] = cpu_to_le16('?');
1204 rp_name[2] = cpu_to_le16('?');
1205 rp_name[3] = cpu_to_le16('\\');
1210 return ERR_PTR(err);
1216 * Helper function for:
1221 * - ntfs_atomic_open
1223 * NOTE: if fnd != NULL (ntfs_atomic_open) then @dir is locked
1225 int ntfs_create_inode(struct mnt_idmap *idmap, struct inode *dir,
1226 struct dentry *dentry, const struct cpu_str *uni,
1227 umode_t mode, dev_t dev, const char *symname, u32 size,
1228 struct ntfs_fnd *fnd)
1231 struct super_block *sb = dir->i_sb;
1232 struct ntfs_sb_info *sbi = sb->s_fs_info;
1233 const struct qstr *name = &dentry->d_name;
1235 struct ntfs_inode *dir_ni = ntfs_i(dir);
1236 struct ntfs_inode *ni = NULL;
1237 struct inode *inode = NULL;
1238 struct ATTRIB *attr;
1239 struct ATTR_STD_INFO5 *std5;
1240 struct ATTR_FILE_NAME *fname;
1241 struct MFT_REC *rec;
1242 u32 asize, dsize, sd_size;
1243 enum FILE_ATTRIBUTE fa;
1244 __le32 security_id = SECURITY_ID_INVALID;
1247 u16 t16, nsize = 0, aid = 0;
1248 struct INDEX_ROOT *root, *dir_root;
1249 struct NTFS_DE *e, *new_de = NULL;
1250 struct REPARSE_DATA_BUFFER *rp = NULL;
1251 bool rp_inserted = false;
1253 /* New file will be resident or non resident. */
1254 const bool new_file_resident = 1;
1257 ni_lock_dir(dir_ni);
1259 dir_root = indx_get_root(&dir_ni->dir, dir_ni, NULL, NULL);
1265 if (S_ISDIR(mode)) {
1266 /* Use parent's directory attributes. */
1267 fa = dir_ni->std_fa | FILE_ATTRIBUTE_DIRECTORY |
1268 FILE_ATTRIBUTE_ARCHIVE;
1270 * By default child directory inherits parent attributes.
1271 * Root directory is hidden + system.
1272 * Make an exception for children in root.
1274 if (dir->i_ino == MFT_REC_ROOT)
1275 fa &= ~(FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM);
1276 } else if (S_ISLNK(mode)) {
1277 /* It is good idea that link should be the same type (file/dir) as target */
1278 fa = FILE_ATTRIBUTE_REPARSE_POINT;
1281 * Linux: there are dir/file/symlink and so on.
1282 * NTFS: symlinks are "dir + reparse" or "file + reparse"
1283 * It is good idea to create:
1284 * dir + reparse if 'symname' points to directory
1286 * file + reparse if 'symname' points to file
1287 * Unfortunately kern_path hangs if symname contains 'dir'.
1293 * if (!kern_path(symname, LOOKUP_FOLLOW, &path)){
1294 * struct inode *target = d_inode(path.dentry);
1296 * if (S_ISDIR(target->i_mode))
1297 * fa |= FILE_ATTRIBUTE_DIRECTORY;
1298 * // if ( target->i_sb == sb ){
1299 * // use relative path?
1304 } else if (S_ISREG(mode)) {
1305 if (sbi->options->sparse) {
1306 /* Sparsed regular file, cause option 'sparse'. */
1307 fa = FILE_ATTRIBUTE_SPARSE_FILE |
1308 FILE_ATTRIBUTE_ARCHIVE;
1309 } else if (dir_ni->std_fa & FILE_ATTRIBUTE_COMPRESSED) {
1310 /* Compressed regular file, if parent is compressed. */
1311 fa = FILE_ATTRIBUTE_COMPRESSED | FILE_ATTRIBUTE_ARCHIVE;
1313 /* Regular file, default attributes. */
1314 fa = FILE_ATTRIBUTE_ARCHIVE;
1317 fa = FILE_ATTRIBUTE_ARCHIVE;
1320 /* If option "hide_dot_files" then set hidden attribute for dot files. */
1321 if (sbi->options->hide_dot_files && name->name[0] == '.')
1322 fa |= FILE_ATTRIBUTE_HIDDEN;
1325 fa |= FILE_ATTRIBUTE_READONLY;
1327 /* Allocate PATH_MAX bytes. */
1328 new_de = __getname();
1334 if (unlikely(ntfs3_forced_shutdown(sb))) {
1339 /* Mark rw ntfs as dirty. it will be cleared at umount. */
1340 ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);
1342 /* Step 1: allocate and fill new mft record. */
1343 err = ntfs_look_free_mft(sbi, &ino, false, NULL, NULL);
1347 ni = ntfs_new_inode(sbi, ino, S_ISDIR(mode) ? RECORD_FLAG_DIR : 0);
1353 inode = &ni->vfs_inode;
1354 inode_init_owner(idmap, inode, dir, mode);
1355 mode = inode->i_mode;
1357 ni->i_crtime = current_time(inode);
1360 rec->hard_links = cpu_to_le16(1);
1361 attr = Add2Ptr(rec, le16_to_cpu(rec->attr_off));
1363 /* Get default security id. */
1364 sd = s_default_security;
1365 sd_size = sizeof(s_default_security);
1367 if (is_ntfs3(sbi)) {
1368 security_id = dir_ni->std_security_id;
1369 if (le32_to_cpu(security_id) < SECURITY_ID_FIRST) {
1370 security_id = sbi->security.def_security_id;
1372 if (security_id == SECURITY_ID_INVALID &&
1373 !ntfs_insert_security(sbi, sd, sd_size,
1374 &security_id, NULL))
1375 sbi->security.def_security_id = security_id;
1379 /* Insert standard info. */
1380 std5 = Add2Ptr(attr, SIZEOF_RESIDENT);
1382 if (security_id == SECURITY_ID_INVALID) {
1383 dsize = sizeof(struct ATTR_STD_INFO);
1385 dsize = sizeof(struct ATTR_STD_INFO5);
1386 std5->security_id = security_id;
1387 ni->std_security_id = security_id;
1389 asize = SIZEOF_RESIDENT + dsize;
1391 attr->type = ATTR_STD;
1392 attr->size = cpu_to_le32(asize);
1393 attr->id = cpu_to_le16(aid++);
1394 attr->res.data_off = SIZEOF_RESIDENT_LE;
1395 attr->res.data_size = cpu_to_le32(dsize);
1397 std5->cr_time = std5->m_time = std5->c_time = std5->a_time =
1398 kernel2nt(&ni->i_crtime);
1400 std5->fa = ni->std_fa = fa;
1402 attr = Add2Ptr(attr, asize);
1404 /* Insert file name. */
1405 err = fill_name_de(sbi, new_de, name, uni);
1409 mi_get_ref(&ni->mi, &new_de->ref);
1411 fname = (struct ATTR_FILE_NAME *)(new_de + 1);
1413 if (sbi->options->windows_names &&
1414 !valid_windows_name(sbi, (struct le_str *)&fname->name_len)) {
1419 mi_get_ref(&dir_ni->mi, &fname->home);
1420 fname->dup.cr_time = fname->dup.m_time = fname->dup.c_time =
1421 fname->dup.a_time = std5->cr_time;
1422 fname->dup.alloc_size = fname->dup.data_size = 0;
1423 fname->dup.fa = std5->fa;
1424 fname->dup.ea_size = fname->dup.reparse = 0;
1426 dsize = le16_to_cpu(new_de->key_size);
1427 asize = ALIGN(SIZEOF_RESIDENT + dsize, 8);
1429 attr->type = ATTR_NAME;
1430 attr->size = cpu_to_le32(asize);
1431 attr->res.data_off = SIZEOF_RESIDENT_LE;
1432 attr->res.flags = RESIDENT_FLAG_INDEXED;
1433 attr->id = cpu_to_le16(aid++);
1434 attr->res.data_size = cpu_to_le32(dsize);
1435 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), fname, dsize);
1437 attr = Add2Ptr(attr, asize);
1439 if (security_id == SECURITY_ID_INVALID) {
1440 /* Insert security attribute. */
1441 asize = SIZEOF_RESIDENT + ALIGN(sd_size, 8);
1443 attr->type = ATTR_SECURE;
1444 attr->size = cpu_to_le32(asize);
1445 attr->id = cpu_to_le16(aid++);
1446 attr->res.data_off = SIZEOF_RESIDENT_LE;
1447 attr->res.data_size = cpu_to_le32(sd_size);
1448 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), sd, sd_size);
1450 attr = Add2Ptr(attr, asize);
1453 attr->id = cpu_to_le16(aid++);
1454 if (fa & FILE_ATTRIBUTE_DIRECTORY) {
1456 * Regular directory or symlink to directory.
1457 * Create root attribute.
1459 dsize = sizeof(struct INDEX_ROOT) + sizeof(struct NTFS_DE);
1460 asize = sizeof(I30_NAME) + SIZEOF_RESIDENT + dsize;
1462 attr->type = ATTR_ROOT;
1463 attr->size = cpu_to_le32(asize);
1465 attr->name_len = ARRAY_SIZE(I30_NAME);
1466 attr->name_off = SIZEOF_RESIDENT_LE;
1467 attr->res.data_off =
1468 cpu_to_le16(sizeof(I30_NAME) + SIZEOF_RESIDENT);
1469 attr->res.data_size = cpu_to_le32(dsize);
1470 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), I30_NAME,
1473 root = Add2Ptr(attr, sizeof(I30_NAME) + SIZEOF_RESIDENT);
1474 memcpy(root, dir_root, offsetof(struct INDEX_ROOT, ihdr));
1475 root->ihdr.de_off = cpu_to_le32(sizeof(struct INDEX_HDR));
1476 root->ihdr.used = cpu_to_le32(sizeof(struct INDEX_HDR) +
1477 sizeof(struct NTFS_DE));
1478 root->ihdr.total = root->ihdr.used;
1480 e = Add2Ptr(root, sizeof(struct INDEX_ROOT));
1481 e->size = cpu_to_le16(sizeof(struct NTFS_DE));
1482 e->flags = NTFS_IE_LAST;
1483 } else if (S_ISLNK(mode)) {
1486 * Create empty resident data attribute.
1488 asize = SIZEOF_RESIDENT;
1490 /* Insert empty ATTR_DATA */
1491 attr->type = ATTR_DATA;
1492 attr->size = cpu_to_le32(SIZEOF_RESIDENT);
1493 attr->name_off = SIZEOF_RESIDENT_LE;
1494 attr->res.data_off = SIZEOF_RESIDENT_LE;
1495 } else if (!new_file_resident && S_ISREG(mode)) {
1497 * Regular file. Create empty non resident data attribute.
1499 attr->type = ATTR_DATA;
1501 attr->nres.evcn = cpu_to_le64(-1ll);
1502 if (fa & FILE_ATTRIBUTE_SPARSE_FILE) {
1503 attr->size = cpu_to_le32(SIZEOF_NONRESIDENT_EX + 8);
1504 attr->name_off = SIZEOF_NONRESIDENT_EX_LE;
1505 attr->flags = ATTR_FLAG_SPARSED;
1506 asize = SIZEOF_NONRESIDENT_EX + 8;
1507 } else if (fa & FILE_ATTRIBUTE_COMPRESSED) {
1508 attr->size = cpu_to_le32(SIZEOF_NONRESIDENT_EX + 8);
1509 attr->name_off = SIZEOF_NONRESIDENT_EX_LE;
1510 attr->flags = ATTR_FLAG_COMPRESSED;
1511 attr->nres.c_unit = COMPRESSION_UNIT;
1512 asize = SIZEOF_NONRESIDENT_EX + 8;
1514 attr->size = cpu_to_le32(SIZEOF_NONRESIDENT + 8);
1515 attr->name_off = SIZEOF_NONRESIDENT_LE;
1516 asize = SIZEOF_NONRESIDENT + 8;
1518 attr->nres.run_off = attr->name_off;
1521 * Node. Create empty resident data attribute.
1523 attr->type = ATTR_DATA;
1524 attr->size = cpu_to_le32(SIZEOF_RESIDENT);
1525 attr->name_off = SIZEOF_RESIDENT_LE;
1526 if (fa & FILE_ATTRIBUTE_SPARSE_FILE)
1527 attr->flags = ATTR_FLAG_SPARSED;
1528 else if (fa & FILE_ATTRIBUTE_COMPRESSED)
1529 attr->flags = ATTR_FLAG_COMPRESSED;
1530 attr->res.data_off = SIZEOF_RESIDENT_LE;
1531 asize = SIZEOF_RESIDENT;
1532 ni->ni_flags |= NI_FLAG_RESIDENT;
1535 if (S_ISDIR(mode)) {
1536 ni->ni_flags |= NI_FLAG_DIR;
1537 err = indx_init(&ni->dir, sbi, attr, INDEX_MUTEX_I30);
1540 } else if (S_ISLNK(mode)) {
1541 rp = ntfs_create_reparse_buffer(sbi, symname, size, &nsize);
1550 * Insert ATTR_REPARSE.
1552 attr = Add2Ptr(attr, asize);
1553 attr->type = ATTR_REPARSE;
1554 attr->id = cpu_to_le16(aid++);
1556 /* Resident or non resident? */
1557 asize = ALIGN(SIZEOF_RESIDENT + nsize, 8);
1558 t16 = PtrOffset(rec, attr);
1561 * Below function 'ntfs_save_wsl_perm' requires 0x78 bytes.
1562 * It is good idea to keep extened attributes resident.
1564 if (asize + t16 + 0x78 + 8 > sbi->record_size) {
1566 CLST clst = bytes_to_cluster(sbi, nsize);
1568 /* Bytes per runs. */
1569 t16 = sbi->record_size - t16 - SIZEOF_NONRESIDENT;
1572 attr->nres.evcn = cpu_to_le64(clst - 1);
1573 attr->name_off = SIZEOF_NONRESIDENT_LE;
1574 attr->nres.run_off = attr->name_off;
1575 attr->nres.data_size = cpu_to_le64(nsize);
1576 attr->nres.valid_size = attr->nres.data_size;
1577 attr->nres.alloc_size =
1578 cpu_to_le64(ntfs_up_cluster(sbi, nsize));
1580 err = attr_allocate_clusters(sbi, &ni->file.run, 0, 0,
1581 clst, NULL, ALLOCATE_DEF,
1582 &alen, 0, NULL, NULL);
1586 err = run_pack(&ni->file.run, 0, clst,
1587 Add2Ptr(attr, SIZEOF_NONRESIDENT), t16,
1597 asize = SIZEOF_NONRESIDENT + ALIGN(err, 8);
1598 /* Write non resident data. */
1599 err = ntfs_sb_write_run(sbi, &ni->file.run, 0, rp,
1604 attr->res.data_off = SIZEOF_RESIDENT_LE;
1605 attr->res.data_size = cpu_to_le32(nsize);
1606 memcpy(Add2Ptr(attr, SIZEOF_RESIDENT), rp, nsize);
1608 /* Size of symlink equals the length of input string. */
1609 inode->i_size = size;
1611 attr->size = cpu_to_le32(asize);
1613 err = ntfs_insert_reparse(sbi, IO_REPARSE_TAG_SYMLINK,
1621 attr = Add2Ptr(attr, asize);
1622 attr->type = ATTR_END;
1624 rec->used = cpu_to_le32(PtrOffset(rec, attr) + 8);
1625 rec->next_attr_id = cpu_to_le16(aid);
1627 inode->i_generation = le16_to_cpu(rec->seq);
1629 if (S_ISDIR(mode)) {
1630 inode->i_op = &ntfs_dir_inode_operations;
1631 if (is_legacy_ntfs(inode->i_sb))
1632 inode->i_fop = &ntfs_legacy_dir_operations;
1634 inode->i_fop = &ntfs_dir_operations;
1635 } else if (S_ISLNK(mode)) {
1636 inode->i_op = &ntfs_link_inode_operations;
1637 inode->i_fop = NULL;
1638 inode->i_mapping->a_ops = &ntfs_aops;
1639 inode->i_size = size;
1640 inode_nohighmem(inode);
1641 } else if (S_ISREG(mode)) {
1642 inode->i_op = &ntfs_file_inode_operations;
1643 if (is_legacy_ntfs(inode->i_sb))
1644 inode->i_fop = &ntfs_legacy_file_operations;
1646 inode->i_fop = &ntfs_file_operations;
1647 inode->i_mapping->a_ops = is_compressed(ni) ? &ntfs_aops_cmpr :
1649 init_rwsem(&ni->file.run_lock);
1651 inode->i_op = &ntfs_special_inode_operations;
1652 init_special_inode(inode, mode, dev);
1655 #ifdef CONFIG_NTFS3_FS_POSIX_ACL
1656 if (!S_ISLNK(mode) && (sb->s_flags & SB_POSIXACL)) {
1657 err = ntfs_init_acl(idmap, inode, dir);
1663 inode->i_flags |= S_NOSEC;
1667 * ntfs_init_acl and ntfs_save_wsl_perm update extended attribute.
1668 * The packed size of extended attribute is stored in direntry too.
1669 * 'fname' here points to inside new_de.
1671 ntfs_save_wsl_perm(inode, &fname->dup.ea_size);
1674 * update ea_size in file_name attribute too.
1675 * Use ni_find_attr cause layout of MFT record may be changed
1676 * in ntfs_init_acl and ntfs_save_wsl_perm.
1678 attr = ni_find_attr(ni, NULL, NULL, ATTR_NAME, NULL, 0, NULL, NULL);
1680 struct ATTR_FILE_NAME *fn;
1682 fn = resident_data_ex(attr, SIZEOF_ATTRIBUTE_FILENAME);
1684 fn->dup.ea_size = fname->dup.ea_size;
1687 /* We do not need to update parent directory later */
1688 ni->ni_flags &= ~NI_FLAG_UPDATE_PARENT;
1690 /* Step 2: Add new name in index. */
1691 err = indx_insert_entry(&dir_ni->dir, dir_ni, new_de, sbi, fnd, 0);
1696 * Call 'd_instantiate' after inode->i_op is set
1697 * but before finish_open.
1699 d_instantiate(dentry, inode);
1701 /* Set original time. inode times (i_ctime) may be changed in ntfs_init_acl. */
1702 inode_set_atime_to_ts(inode, ni->i_crtime);
1703 inode_set_ctime_to_ts(inode, ni->i_crtime);
1704 inode_set_mtime_to_ts(inode, ni->i_crtime);
1705 inode_set_mtime_to_ts(dir, ni->i_crtime);
1706 inode_set_ctime_to_ts(dir, ni->i_crtime);
1708 mark_inode_dirty(dir);
1709 mark_inode_dirty(inode);
1716 ntfs_remove_reparse(sbi, IO_REPARSE_TAG_SYMLINK, &new_de->ref);
1720 run_deallocate(sbi, &ni->file.run, false);
1723 clear_rec_inuse(rec);
1725 ni->mi.dirty = false;
1726 discard_new_inode(inode);
1728 ntfs_mark_rec_free(sbi, ino, false);
1739 unlock_new_inode(inode);
1744 int ntfs_link_inode(struct inode *inode, struct dentry *dentry)
1747 struct ntfs_inode *ni = ntfs_i(inode);
1748 struct ntfs_sb_info *sbi = inode->i_sb->s_fs_info;
1751 /* Allocate PATH_MAX bytes. */
1756 /* Mark rw ntfs as dirty. It will be cleared at umount. */
1757 ntfs_set_state(sbi, NTFS_DIRTY_DIRTY);
1759 /* Construct 'de'. */
1760 err = fill_name_de(sbi, de, &dentry->d_name, NULL);
1764 err = ni_add_name(ntfs_i(d_inode(dentry->d_parent)), ni, de);
1773 * inode_operations::unlink
1774 * inode_operations::rmdir
1776 int ntfs_unlink_inode(struct inode *dir, const struct dentry *dentry)
1779 struct ntfs_sb_info *sbi = dir->i_sb->s_fs_info;
1780 struct inode *inode = d_inode(dentry);
1781 struct ntfs_inode *ni = ntfs_i(inode);
1782 struct ntfs_inode *dir_ni = ntfs_i(dir);
1783 struct NTFS_DE *de, *de2 = NULL;
1786 if (ntfs_is_meta_file(sbi, ni->mi.rno))
1789 /* Allocate PATH_MAX bytes. */
1796 if (S_ISDIR(inode->i_mode) && !dir_is_empty(inode)) {
1801 err = fill_name_de(sbi, de, &dentry->d_name, NULL);
1806 err = ni_remove_name(dir_ni, ni, de, &de2, &undo_remove);
1810 inode_set_mtime_to_ts(dir, inode_set_ctime_current(dir));
1811 mark_inode_dirty(dir);
1812 inode_set_ctime_to_ts(inode, inode_get_ctime(dir));
1814 mark_inode_dirty(inode);
1815 } else if (!ni_remove_name_undo(dir_ni, ni, de, de2, undo_remove)) {
1816 _ntfs_bad_inode(inode);
1818 if (ni_is_dirty(dir))
1819 mark_inode_dirty(dir);
1820 if (ni_is_dirty(inode))
1821 mark_inode_dirty(inode);
1830 void ntfs_evict_inode(struct inode *inode)
1832 truncate_inode_pages_final(&inode->i_data);
1834 invalidate_inode_buffers(inode);
1837 ni_clear(ntfs_i(inode));
1841 * ntfs_translate_junction
1843 * Translate a Windows junction target to the Linux equivalent.
1844 * On junctions, targets are always absolute (they include the drive
1845 * letter). We have no way of knowing if the target is for the current
1846 * mounted device or not so we just assume it is.
1848 static int ntfs_translate_junction(const struct super_block *sb,
1849 const struct dentry *link_de, char *target,
1850 int target_len, int target_max)
1852 int tl_len, err = target_len;
1853 char *link_path_buffer = NULL, *link_path;
1854 char *translated = NULL;
1858 link_path_buffer = kmalloc(PATH_MAX, GFP_NOFS);
1859 if (!link_path_buffer) {
1863 /* Get link path, relative to mount point */
1864 link_path = dentry_path_raw(link_de, link_path_buffer, PATH_MAX);
1865 if (IS_ERR(link_path)) {
1866 ntfs_err(sb, "Error getting link path");
1871 translated = kmalloc(PATH_MAX, GFP_NOFS);
1877 /* Make translated path a relative path to mount point */
1878 strcpy(translated, "./");
1879 ++link_path; /* Skip leading / */
1880 for (tl_len = sizeof("./") - 1; *link_path; ++link_path) {
1881 if (*link_path == '/') {
1882 if (PATH_MAX - tl_len < sizeof("../")) {
1884 "Link path %s has too many components",
1889 strcpy(translated + tl_len, "../");
1890 tl_len += sizeof("../") - 1;
1894 /* Skip drive letter */
1895 target_start = target;
1896 while (*target_start && *target_start != ':')
1899 if (!*target_start) {
1900 ntfs_err(sb, "Link target (%s) missing drive separator",
1906 /* Skip drive separator and leading /, if exists */
1907 target_start += 1 + (target_start[1] == '/');
1908 copy_len = target_len - (target_start - target);
1910 if (PATH_MAX - tl_len <= copy_len) {
1911 ntfs_err(sb, "Link target %s too large for buffer (%d <= %d)",
1912 target_start, PATH_MAX - tl_len, copy_len);
1917 /* translated path has a trailing / and target_start does not */
1918 strcpy(translated + tl_len, target_start);
1920 if (target_max <= tl_len) {
1921 ntfs_err(sb, "Target path %s too large for buffer (%d <= %d)",
1922 translated, target_max, tl_len);
1926 strcpy(target, translated);
1930 kfree(link_path_buffer);
1935 static noinline int ntfs_readlink_hlp(const struct dentry *link_de,
1936 struct inode *inode, char *buffer,
1939 int i, err = -EINVAL;
1940 struct ntfs_inode *ni = ntfs_i(inode);
1941 struct super_block *sb = inode->i_sb;
1942 struct ntfs_sb_info *sbi = sb->s_fs_info;
1945 void *to_free = NULL;
1946 struct REPARSE_DATA_BUFFER *rp;
1947 const __le16 *uname;
1948 struct ATTRIB *attr;
1950 /* Reparse data present. Try to parse it. */
1951 static_assert(!offsetof(struct REPARSE_DATA_BUFFER, ReparseTag));
1952 static_assert(sizeof(u32) == sizeof(rp->ReparseTag));
1956 attr = ni_find_attr(ni, NULL, NULL, ATTR_REPARSE, NULL, 0, NULL, NULL);
1960 if (!attr->non_res) {
1961 rp = resident_data_ex(attr, sizeof(struct REPARSE_DATA_BUFFER));
1964 size = le32_to_cpu(attr->res.data_size);
1966 size = le64_to_cpu(attr->nres.data_size);
1970 if (size > sbi->reparse.max_size || size <= sizeof(u32))
1974 rp = kmalloc(size, GFP_NOFS);
1980 /* Read into temporal buffer. */
1981 err = ntfs_read_run_nb(sbi, &ni->file.run, 0, rp, size, NULL);
1986 /* Microsoft Tag. */
1987 switch (rp->ReparseTag) {
1988 case IO_REPARSE_TAG_MOUNT_POINT:
1989 /* Mount points and junctions. */
1990 /* Can we use 'Rp->MountPointReparseBuffer.PrintNameLength'? */
1991 if (size <= offsetof(struct REPARSE_DATA_BUFFER,
1992 MountPointReparseBuffer.PathBuffer))
1995 offsetof(struct REPARSE_DATA_BUFFER,
1996 MountPointReparseBuffer.PathBuffer) +
1997 le16_to_cpu(rp->MountPointReparseBuffer
1999 ulen = le16_to_cpu(rp->MountPointReparseBuffer.PrintNameLength);
2002 case IO_REPARSE_TAG_SYMLINK:
2003 /* FolderSymbolicLink */
2004 /* Can we use 'Rp->SymbolicLinkReparseBuffer.PrintNameLength'? */
2005 if (size <= offsetof(struct REPARSE_DATA_BUFFER,
2006 SymbolicLinkReparseBuffer.PathBuffer))
2009 rp, offsetof(struct REPARSE_DATA_BUFFER,
2010 SymbolicLinkReparseBuffer.PathBuffer) +
2011 le16_to_cpu(rp->SymbolicLinkReparseBuffer
2014 rp->SymbolicLinkReparseBuffer.PrintNameLength);
2017 case IO_REPARSE_TAG_CLOUD:
2018 case IO_REPARSE_TAG_CLOUD_1:
2019 case IO_REPARSE_TAG_CLOUD_2:
2020 case IO_REPARSE_TAG_CLOUD_3:
2021 case IO_REPARSE_TAG_CLOUD_4:
2022 case IO_REPARSE_TAG_CLOUD_5:
2023 case IO_REPARSE_TAG_CLOUD_6:
2024 case IO_REPARSE_TAG_CLOUD_7:
2025 case IO_REPARSE_TAG_CLOUD_8:
2026 case IO_REPARSE_TAG_CLOUD_9:
2027 case IO_REPARSE_TAG_CLOUD_A:
2028 case IO_REPARSE_TAG_CLOUD_B:
2029 case IO_REPARSE_TAG_CLOUD_C:
2030 case IO_REPARSE_TAG_CLOUD_D:
2031 case IO_REPARSE_TAG_CLOUD_E:
2032 case IO_REPARSE_TAG_CLOUD_F:
2033 err = sizeof("OneDrive") - 1;
2036 memcpy(buffer, "OneDrive", err);
2040 if (IsReparseTagMicrosoft(rp->ReparseTag)) {
2041 /* Unknown Microsoft Tag. */
2044 if (!IsReparseTagNameSurrogate(rp->ReparseTag) ||
2045 size <= sizeof(struct REPARSE_POINT)) {
2050 uname = Add2Ptr(rp, sizeof(struct REPARSE_POINT));
2051 ulen = le16_to_cpu(rp->ReparseDataLength) -
2052 sizeof(struct REPARSE_POINT);
2055 /* Convert nlen from bytes to UNICODE chars. */
2058 /* Check that name is available. */
2059 if (!ulen || uname + ulen > (__le16 *)Add2Ptr(rp, size))
2062 /* If name is already zero terminated then truncate it now. */
2063 if (!uname[ulen - 1])
2066 err = ntfs_utf16_to_nls(sbi, uname, ulen, buffer, buflen);
2071 /* Translate Windows '\' into Linux '/'. */
2072 for (i = 0; i < err; i++) {
2073 if (buffer[i] == '\\')
2077 /* Always set last zero. */
2080 /* If this is a junction, translate the link target. */
2081 if (rp->ReparseTag == IO_REPARSE_TAG_MOUNT_POINT)
2082 err = ntfs_translate_junction(sb, link_de, buffer, err, buflen);
2089 static const char *ntfs_get_link(struct dentry *de, struct inode *inode,
2090 struct delayed_call *done)
2096 return ERR_PTR(-ECHILD);
2098 ret = kmalloc(PAGE_SIZE, GFP_NOFS);
2100 return ERR_PTR(-ENOMEM);
2102 err = ntfs_readlink_hlp(de, inode, ret, PAGE_SIZE);
2105 return ERR_PTR(err);
2108 set_delayed_call(done, kfree_link, ret);
2114 const struct inode_operations ntfs_link_inode_operations = {
2115 .get_link = ntfs_get_link,
2116 .setattr = ntfs3_setattr,
2117 .listxattr = ntfs_listxattr,
2120 const struct address_space_operations ntfs_aops = {
2121 .read_folio = ntfs_read_folio,
2122 .readahead = ntfs_readahead,
2123 .writepages = ntfs_writepages,
2124 .write_begin = ntfs_write_begin,
2125 .write_end = ntfs_write_end,
2126 .direct_IO = ntfs_direct_IO,
2128 .dirty_folio = block_dirty_folio,
2129 .migrate_folio = buffer_migrate_folio,
2130 .invalidate_folio = block_invalidate_folio,
2133 const struct address_space_operations ntfs_aops_cmpr = {
2134 .read_folio = ntfs_read_folio,
2135 .readahead = ntfs_readahead,