Blame SOURCES/0004-exfat-add-directory-operations.patch

Kmods SIG 50e2b3
From ca06197382bde0a3bc20215595d1c9ce20c6e341 Mon Sep 17 00:00:00 2001
Kmods SIG 50e2b3
From: Namjae Jeon <namjae.jeon@samsung.com>
Kmods SIG 50e2b3
Date: Mon, 2 Mar 2020 15:21:35 +0900
Kmods SIG 50e2b3
Subject: [Backport ca06197382bd] exfat: add directory operations
Kmods SIG 50e2b3
MIME-Version: 1.0
Kmods SIG 50e2b3
Content-Type: text/plain; charset=UTF-8
Kmods SIG 50e2b3
Content-Transfer-Encoding: 8bit
Kmods SIG 50e2b3
Kmods SIG 50e2b3
This adds the implementation of directory operations for exfat.
Kmods SIG 50e2b3
Kmods SIG 50e2b3
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Kmods SIG 50e2b3
Signed-off-by: Sungjong Seo <sj1557.seo@samsung.com>
Kmods SIG 50e2b3
Reviewed-by: Pali Rohár <pali.rohar@gmail.com>
Kmods SIG 50e2b3
Reviewed-by: Christoph Hellwig <hch@lst.de>
Kmods SIG 50e2b3
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Kmods SIG 50e2b3
---
Kmods SIG 50e2b3
 src/dir.c | 1238 ++++++++++++++++++++++++++++++++++++++++++++++++
Kmods SIG 50e2b3
 1 file changed, 1238 insertions(+)
Kmods SIG 50e2b3
 create mode 100644 src/dir.c
Kmods SIG 50e2b3
Kmods SIG 50e2b3
diff --git a/src/dir.c b/src/dir.c
Kmods SIG 50e2b3
new file mode 100644
Kmods SIG 50e2b3
index 0000000000000000000000000000000000000000..4b91afb0f0515c06036821468b667ea14b43654d
Kmods SIG 50e2b3
--- /dev/null
Kmods SIG 50e2b3
+++ b/src/dir.c
Kmods SIG 50e2b3
@@ -0,0 +1,1238 @@
Kmods SIG 50e2b3
+// SPDX-License-Identifier: GPL-2.0-or-later
Kmods SIG 50e2b3
+/*
Kmods SIG 50e2b3
+ * Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
Kmods SIG 50e2b3
+ */
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+#include <linux/slab.h>
Kmods SIG 50e2b3
+#include <linux/bio.h>
Kmods SIG 50e2b3
+#include <linux/buffer_head.h>
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+#include "exfat_raw.h"
Kmods SIG 50e2b3
+#include "exfat_fs.h"
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static int exfat_extract_uni_name(struct exfat_dentry *ep,
Kmods SIG 50e2b3
+		unsigned short *uniname)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i, len = 0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = 0; i < EXFAT_FILE_NAME_LEN; i++) {
Kmods SIG 50e2b3
+		*uniname = le16_to_cpu(ep->dentry.name.unicode_0_14[i]);
Kmods SIG 50e2b3
+		if (*uniname == 0x0)
Kmods SIG 50e2b3
+			return len;
Kmods SIG 50e2b3
+		uniname++;
Kmods SIG 50e2b3
+		len++;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	*uniname = 0x0;
Kmods SIG 50e2b3
+	return len;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static void exfat_get_uniname_from_ext_entry(struct super_block *sb,
Kmods SIG 50e2b3
+		struct exfat_chain *p_dir, int entry, unsigned short *uniname)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep;
Kmods SIG 50e2b3
+	struct exfat_entry_set_cache *es;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	es = exfat_get_dentry_set(sb, p_dir, entry, ES_ALL_ENTRIES, &ep);
Kmods SIG 50e2b3
+	if (!es)
Kmods SIG 50e2b3
+		return;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (es->num_entries < 3)
Kmods SIG 50e2b3
+		goto free_es;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep += 2;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/*
Kmods SIG 50e2b3
+	 * First entry  : file entry
Kmods SIG 50e2b3
+	 * Second entry : stream-extension entry
Kmods SIG 50e2b3
+	 * Third entry  : first file-name entry
Kmods SIG 50e2b3
+	 * So, the index of first file-name dentry should start from 2.
Kmods SIG 50e2b3
+	 */
Kmods SIG 50e2b3
+	for (i = 2; i < es->num_entries; i++, ep++) {
Kmods SIG 50e2b3
+		/* end of name entry */
Kmods SIG 50e2b3
+		if (exfat_get_entry_type(ep) != TYPE_EXTEND)
Kmods SIG 50e2b3
+			goto free_es;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		exfat_extract_uni_name(ep, uniname);
Kmods SIG 50e2b3
+		uniname += EXFAT_FILE_NAME_LEN;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+free_es:
Kmods SIG 50e2b3
+	kfree(es);
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+/* read a directory entry from the opened directory */
Kmods SIG 50e2b3
+static int exfat_readdir(struct inode *inode, struct exfat_dir_entry *dir_entry)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i, dentries_per_clu, dentries_per_clu_bits = 0;
Kmods SIG 50e2b3
+	unsigned int type, clu_offset;
Kmods SIG 50e2b3
+	sector_t sector;
Kmods SIG 50e2b3
+	struct exfat_chain dir, clu;
Kmods SIG 50e2b3
+	struct exfat_uni_name uni_name;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep;
Kmods SIG 50e2b3
+	struct super_block *sb = inode->i_sb;
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	struct exfat_inode_info *ei = EXFAT_I(inode);
Kmods SIG 50e2b3
+	unsigned int dentry = ei->rwoffset & 0xFFFFFFFF;
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* check if the given file ID is opened */
Kmods SIG 50e2b3
+	if (ei->type != TYPE_DIR)
Kmods SIG 50e2b3
+		return -EPERM;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (ei->entry == -1)
Kmods SIG 50e2b3
+		exfat_chain_set(&dir, sbi->root_dir, 0, ALLOC_FAT_CHAIN);
Kmods SIG 50e2b3
+	else
Kmods SIG 50e2b3
+		exfat_chain_set(&dir, ei->start_clu,
Kmods SIG 50e2b3
+			EXFAT_B_TO_CLU(i_size_read(inode), sbi), ei->flags);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	dentries_per_clu = sbi->dentries_per_clu;
Kmods SIG 50e2b3
+	dentries_per_clu_bits = ilog2(dentries_per_clu);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	clu_offset = dentry >> dentries_per_clu_bits;
Kmods SIG 50e2b3
+	exfat_chain_dup(&clu, &dir;;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (clu.flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 50e2b3
+		clu.dir += clu_offset;
Kmods SIG 50e2b3
+		clu.size -= clu_offset;
Kmods SIG 50e2b3
+	} else {
Kmods SIG 50e2b3
+		/* hint_information */
Kmods SIG 50e2b3
+		if (clu_offset > 0 && ei->hint_bmap.off != EXFAT_EOF_CLUSTER &&
Kmods SIG 50e2b3
+		    ei->hint_bmap.off > 0 && clu_offset >= ei->hint_bmap.off) {
Kmods SIG 50e2b3
+			clu_offset -= ei->hint_bmap.off;
Kmods SIG 50e2b3
+			clu.dir = ei->hint_bmap.clu;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		while (clu_offset > 0) {
Kmods SIG 50e2b3
+			if (exfat_get_next_cluster(sb, &(clu.dir)))
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			clu_offset--;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	while (clu.dir != EXFAT_EOF_CLUSTER) {
Kmods SIG 50e2b3
+		i = dentry & (dentries_per_clu - 1);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		for ( ; i < dentries_per_clu; i++, dentry++) {
Kmods SIG 50e2b3
+			ep = exfat_get_dentry(sb, &clu, i, &bh, &sector);
Kmods SIG 50e2b3
+			if (!ep)
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			type = exfat_get_entry_type(ep);
Kmods SIG 50e2b3
+			if (type == TYPE_UNUSED) {
Kmods SIG 50e2b3
+				brelse(bh);
Kmods SIG 50e2b3
+				break;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (type != TYPE_FILE && type != TYPE_DIR) {
Kmods SIG 50e2b3
+				brelse(bh);
Kmods SIG 50e2b3
+				continue;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			dir_entry->attr = le16_to_cpu(ep->dentry.file.attr);
Kmods SIG 50e2b3
+			exfat_get_entry_time(sbi, &dir_entry->crtime,
Kmods SIG 50e2b3
+					ep->dentry.file.create_tz,
Kmods SIG 50e2b3
+					ep->dentry.file.create_time,
Kmods SIG 50e2b3
+					ep->dentry.file.create_date,
Kmods SIG 50e2b3
+					ep->dentry.file.create_time_ms);
Kmods SIG 50e2b3
+			exfat_get_entry_time(sbi, &dir_entry->mtime,
Kmods SIG 50e2b3
+					ep->dentry.file.modify_tz,
Kmods SIG 50e2b3
+					ep->dentry.file.modify_time,
Kmods SIG 50e2b3
+					ep->dentry.file.modify_date,
Kmods SIG 50e2b3
+					ep->dentry.file.modify_time_ms);
Kmods SIG 50e2b3
+			exfat_get_entry_time(sbi, &dir_entry->atime,
Kmods SIG 50e2b3
+					ep->dentry.file.access_tz,
Kmods SIG 50e2b3
+					ep->dentry.file.access_time,
Kmods SIG 50e2b3
+					ep->dentry.file.access_date,
Kmods SIG 50e2b3
+					0);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			*uni_name.name = 0x0;
Kmods SIG 50e2b3
+			exfat_get_uniname_from_ext_entry(sb, &dir, dentry,
Kmods SIG 50e2b3
+				uni_name.name);
Kmods SIG 50e2b3
+			exfat_utf16_to_nls(sb, &uni_name,
Kmods SIG 50e2b3
+				dir_entry->namebuf.lfn,
Kmods SIG 50e2b3
+				dir_entry->namebuf.lfnbuf_len);
Kmods SIG 50e2b3
+			brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			ep = exfat_get_dentry(sb, &clu, i + 1, &bh, NULL);
Kmods SIG 50e2b3
+			if (!ep)
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+			dir_entry->size =
Kmods SIG 50e2b3
+				le64_to_cpu(ep->dentry.stream.valid_size);
Kmods SIG 50e2b3
+			brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			ei->hint_bmap.off = dentry >> dentries_per_clu_bits;
Kmods SIG 50e2b3
+			ei->hint_bmap.clu = clu.dir;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			ei->rwoffset = ++dentry;
Kmods SIG 50e2b3
+			return 0;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (clu.flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 50e2b3
+			if (--clu.size > 0)
Kmods SIG 50e2b3
+				clu.dir++;
Kmods SIG 50e2b3
+			else
Kmods SIG 50e2b3
+				clu.dir = EXFAT_EOF_CLUSTER;
Kmods SIG 50e2b3
+		} else {
Kmods SIG 50e2b3
+			if (exfat_get_next_cluster(sb, &(clu.dir)))
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	dir_entry->namebuf.lfn[0] = '\0';
Kmods SIG 50e2b3
+	ei->rwoffset = dentry;
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static void exfat_init_namebuf(struct exfat_dentry_namebuf *nb)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	nb->lfn = NULL;
Kmods SIG 50e2b3
+	nb->lfnbuf_len = 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static int exfat_alloc_namebuf(struct exfat_dentry_namebuf *nb)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	nb->lfn = __getname();
Kmods SIG 50e2b3
+	if (!nb->lfn)
Kmods SIG 50e2b3
+		return -ENOMEM;
Kmods SIG 50e2b3
+	nb->lfnbuf_len = MAX_VFSNAME_BUF_SIZE;
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static void exfat_free_namebuf(struct exfat_dentry_namebuf *nb)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	if (!nb->lfn)
Kmods SIG 50e2b3
+		return;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	__putname(nb->lfn);
Kmods SIG 50e2b3
+	exfat_init_namebuf(nb);
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+/* skip iterating emit_dots when dir is empty */
Kmods SIG 50e2b3
+#define ITER_POS_FILLED_DOTS    (2)
Kmods SIG 50e2b3
+static int exfat_iterate(struct file *filp, struct dir_context *ctx)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct inode *inode = filp->f_path.dentry->d_inode;
Kmods SIG 50e2b3
+	struct super_block *sb = inode->i_sb;
Kmods SIG 50e2b3
+	struct inode *tmp;
Kmods SIG 50e2b3
+	struct exfat_dir_entry de;
Kmods SIG 50e2b3
+	struct exfat_dentry_namebuf *nb = &(de.namebuf);
Kmods SIG 50e2b3
+	struct exfat_inode_info *ei = EXFAT_I(inode);
Kmods SIG 50e2b3
+	unsigned long inum;
Kmods SIG 50e2b3
+	loff_t cpos, i_pos;
Kmods SIG 50e2b3
+	int err = 0, fake_offset = 0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_init_namebuf(nb);
Kmods SIG 50e2b3
+	mutex_lock(&EXFAT_SB(sb)->s_lock);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	cpos = ctx->pos;
Kmods SIG 50e2b3
+	if (!dir_emit_dots(filp, ctx))
Kmods SIG 50e2b3
+		goto unlock;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (ctx->pos == ITER_POS_FILLED_DOTS) {
Kmods SIG 50e2b3
+		cpos = 0;
Kmods SIG 50e2b3
+		fake_offset = 1;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (cpos & (DENTRY_SIZE - 1)) {
Kmods SIG 50e2b3
+		err = -ENOENT;
Kmods SIG 50e2b3
+		goto unlock;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* name buffer should be allocated before use */
Kmods SIG 50e2b3
+	err = exfat_alloc_namebuf(nb);
Kmods SIG 50e2b3
+	if (err)
Kmods SIG 50e2b3
+		goto unlock;
Kmods SIG 50e2b3
+get_new:
Kmods SIG 50e2b3
+	ei->rwoffset = EXFAT_B_TO_DEN(cpos);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (cpos >= i_size_read(inode))
Kmods SIG 50e2b3
+		goto end_of_dir;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	err = exfat_readdir(inode, &de);
Kmods SIG 50e2b3
+	if (err) {
Kmods SIG 50e2b3
+		/*
Kmods SIG 50e2b3
+		 * At least we tried to read a sector.  Move cpos to next sector
Kmods SIG 50e2b3
+		 * position (should be aligned).
Kmods SIG 50e2b3
+		 */
Kmods SIG 50e2b3
+		if (err == -EIO) {
Kmods SIG 50e2b3
+			cpos += 1 << (sb->s_blocksize_bits);
Kmods SIG 50e2b3
+			cpos &= ~(sb->s_blocksize - 1);
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		err = -EIO;
Kmods SIG 50e2b3
+		goto end_of_dir;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	cpos = EXFAT_DEN_TO_B(ei->rwoffset);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (!nb->lfn[0])
Kmods SIG 50e2b3
+		goto end_of_dir;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	i_pos = ((loff_t)ei->start_clu << 32) |
Kmods SIG 50e2b3
+		((ei->rwoffset - 1) & 0xffffffff);
Kmods SIG 50e2b3
+	tmp = exfat_iget(sb, i_pos);
Kmods SIG 50e2b3
+	if (tmp) {
Kmods SIG 50e2b3
+		inum = tmp->i_ino;
Kmods SIG 50e2b3
+		iput(tmp);
Kmods SIG 50e2b3
+	} else {
Kmods SIG 50e2b3
+		inum = iunique(sb, EXFAT_ROOT_INO);
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/*
Kmods SIG 50e2b3
+	 * Before calling dir_emit(), sb_lock should be released.
Kmods SIG 50e2b3
+	 * Because page fault can occur in dir_emit() when the size
Kmods SIG 50e2b3
+	 * of buffer given from user is larger than one page size.
Kmods SIG 50e2b3
+	 */
Kmods SIG 50e2b3
+	mutex_unlock(&EXFAT_SB(sb)->s_lock);
Kmods SIG 50e2b3
+	if (!dir_emit(ctx, nb->lfn, strlen(nb->lfn), inum,
Kmods SIG 50e2b3
+			(de.attr & ATTR_SUBDIR) ? DT_DIR : DT_REG))
Kmods SIG 50e2b3
+		goto out_unlocked;
Kmods SIG 50e2b3
+	mutex_lock(&EXFAT_SB(sb)->s_lock);
Kmods SIG 50e2b3
+	ctx->pos = cpos;
Kmods SIG 50e2b3
+	goto get_new;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+end_of_dir:
Kmods SIG 50e2b3
+	if (!cpos && fake_offset)
Kmods SIG 50e2b3
+		cpos = ITER_POS_FILLED_DOTS;
Kmods SIG 50e2b3
+	ctx->pos = cpos;
Kmods SIG 50e2b3
+unlock:
Kmods SIG 50e2b3
+	mutex_unlock(&EXFAT_SB(sb)->s_lock);
Kmods SIG 50e2b3
+out_unlocked:
Kmods SIG 50e2b3
+	/*
Kmods SIG 50e2b3
+	 * To improve performance, free namebuf after unlock sb_lock.
Kmods SIG 50e2b3
+	 * If namebuf is not allocated, this function do nothing
Kmods SIG 50e2b3
+	 */
Kmods SIG 50e2b3
+	exfat_free_namebuf(nb);
Kmods SIG 50e2b3
+	return err;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+const struct file_operations exfat_dir_operations = {
Kmods SIG 50e2b3
+	.llseek		= generic_file_llseek,
Kmods SIG 50e2b3
+	.read		= generic_read_dir,
Kmods SIG 50e2b3
+	.iterate	= exfat_iterate,
Kmods SIG 50e2b3
+	.fsync		= generic_file_fsync,
Kmods SIG 50e2b3
+};
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_alloc_new_dir(struct inode *inode, struct exfat_chain *clu)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int ret;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_chain_set(clu, EXFAT_EOF_CLUSTER, 0, ALLOC_NO_FAT_CHAIN);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ret = exfat_alloc_cluster(inode, 1, clu);
Kmods SIG 50e2b3
+	if (ret)
Kmods SIG 50e2b3
+		return ret;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	return exfat_zeroed_cluster(inode, clu->dir);
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_calc_num_entries(struct exfat_uni_name *p_uniname)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int len;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	len = p_uniname->name_len;
Kmods SIG 50e2b3
+	if (len == 0)
Kmods SIG 50e2b3
+		return -EINVAL;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* 1 file entry + 1 stream entry + name entries */
Kmods SIG 50e2b3
+	return ((len - 1) / EXFAT_FILE_NAME_LEN + 3);
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+unsigned int exfat_get_entry_type(struct exfat_dentry *ep)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	if (ep->type == EXFAT_UNUSED)
Kmods SIG 50e2b3
+		return TYPE_UNUSED;
Kmods SIG 50e2b3
+	if (IS_EXFAT_DELETED(ep->type))
Kmods SIG 50e2b3
+		return TYPE_DELETED;
Kmods SIG 50e2b3
+	if (ep->type == EXFAT_INVAL)
Kmods SIG 50e2b3
+		return TYPE_INVALID;
Kmods SIG 50e2b3
+	if (IS_EXFAT_CRITICAL_PRI(ep->type)) {
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_BITMAP)
Kmods SIG 50e2b3
+			return TYPE_BITMAP;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_UPCASE)
Kmods SIG 50e2b3
+			return TYPE_UPCASE;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_VOLUME)
Kmods SIG 50e2b3
+			return TYPE_VOLUME;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_FILE) {
Kmods SIG 50e2b3
+			if (le16_to_cpu(ep->dentry.file.attr) & ATTR_SUBDIR)
Kmods SIG 50e2b3
+				return TYPE_DIR;
Kmods SIG 50e2b3
+			return TYPE_FILE;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+		return TYPE_CRITICAL_PRI;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+	if (IS_EXFAT_BENIGN_PRI(ep->type)) {
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_GUID)
Kmods SIG 50e2b3
+			return TYPE_GUID;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_PADDING)
Kmods SIG 50e2b3
+			return TYPE_PADDING;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_ACLTAB)
Kmods SIG 50e2b3
+			return TYPE_ACLTAB;
Kmods SIG 50e2b3
+		return TYPE_BENIGN_PRI;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+	if (IS_EXFAT_CRITICAL_SEC(ep->type)) {
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_STREAM)
Kmods SIG 50e2b3
+			return TYPE_STREAM;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_NAME)
Kmods SIG 50e2b3
+			return TYPE_EXTEND;
Kmods SIG 50e2b3
+		if (ep->type == EXFAT_ACL)
Kmods SIG 50e2b3
+			return TYPE_ACL;
Kmods SIG 50e2b3
+		return TYPE_CRITICAL_SEC;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+	return TYPE_BENIGN_SEC;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static void exfat_set_entry_type(struct exfat_dentry *ep, unsigned int type)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	if (type == TYPE_UNUSED) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_UNUSED;
Kmods SIG 50e2b3
+	} else if (type == TYPE_DELETED) {
Kmods SIG 50e2b3
+		ep->type &= EXFAT_DELETE;
Kmods SIG 50e2b3
+	} else if (type == TYPE_STREAM) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_STREAM;
Kmods SIG 50e2b3
+	} else if (type == TYPE_EXTEND) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_NAME;
Kmods SIG 50e2b3
+	} else if (type == TYPE_BITMAP) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_BITMAP;
Kmods SIG 50e2b3
+	} else if (type == TYPE_UPCASE) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_UPCASE;
Kmods SIG 50e2b3
+	} else if (type == TYPE_VOLUME) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_VOLUME;
Kmods SIG 50e2b3
+	} else if (type == TYPE_DIR) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_FILE;
Kmods SIG 50e2b3
+		ep->dentry.file.attr = cpu_to_le16(ATTR_SUBDIR);
Kmods SIG 50e2b3
+	} else if (type == TYPE_FILE) {
Kmods SIG 50e2b3
+		ep->type = EXFAT_FILE;
Kmods SIG 50e2b3
+		ep->dentry.file.attr = cpu_to_le16(ATTR_ARCHIVE);
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static void exfat_init_stream_entry(struct exfat_dentry *ep,
Kmods SIG 50e2b3
+		unsigned char flags, unsigned int start_clu,
Kmods SIG 50e2b3
+		unsigned long long size)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	exfat_set_entry_type(ep, TYPE_STREAM);
Kmods SIG 50e2b3
+	ep->dentry.stream.flags = flags;
Kmods SIG 50e2b3
+	ep->dentry.stream.start_clu = cpu_to_le32(start_clu);
Kmods SIG 50e2b3
+	ep->dentry.stream.valid_size = cpu_to_le64(size);
Kmods SIG 50e2b3
+	ep->dentry.stream.size = cpu_to_le64(size);
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static void exfat_init_name_entry(struct exfat_dentry *ep,
Kmods SIG 50e2b3
+		unsigned short *uniname)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_set_entry_type(ep, TYPE_EXTEND);
Kmods SIG 50e2b3
+	ep->dentry.name.flags = 0x0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = 0; i < EXFAT_FILE_NAME_LEN; i++) {
Kmods SIG 50e2b3
+		ep->dentry.name.unicode_0_14[i] = cpu_to_le16(*uniname);
Kmods SIG 50e2b3
+		if (*uniname == 0x0)
Kmods SIG 50e2b3
+			break;
Kmods SIG 50e2b3
+		uniname++;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 50e2b3
+		int entry, unsigned int type, unsigned int start_clu,
Kmods SIG 50e2b3
+		unsigned long long size)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct super_block *sb = inode->i_sb;
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	struct timespec64 ts = current_time(inode);
Kmods SIG 50e2b3
+	sector_t sector;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep;
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/*
Kmods SIG 50e2b3
+	 * We cannot use exfat_get_dentry_set here because file ep is not
Kmods SIG 50e2b3
+	 * initialized yet.
Kmods SIG 50e2b3
+	 */
Kmods SIG 50e2b3
+	ep = exfat_get_dentry(sb, p_dir, entry, &bh, &sector);
Kmods SIG 50e2b3
+	if (!ep)
Kmods SIG 50e2b3
+		return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_set_entry_type(ep, type);
Kmods SIG 50e2b3
+	exfat_set_entry_time(sbi, &ts,
Kmods SIG 50e2b3
+			&ep->dentry.file.create_tz,
Kmods SIG 50e2b3
+			&ep->dentry.file.create_time,
Kmods SIG 50e2b3
+			&ep->dentry.file.create_date,
Kmods SIG 50e2b3
+			&ep->dentry.file.create_time_ms);
Kmods SIG 50e2b3
+	exfat_set_entry_time(sbi, &ts,
Kmods SIG 50e2b3
+			&ep->dentry.file.modify_tz,
Kmods SIG 50e2b3
+			&ep->dentry.file.modify_time,
Kmods SIG 50e2b3
+			&ep->dentry.file.modify_date,
Kmods SIG 50e2b3
+			&ep->dentry.file.modify_time_ms);
Kmods SIG 50e2b3
+	exfat_set_entry_time(sbi, &ts,
Kmods SIG 50e2b3
+			&ep->dentry.file.access_tz,
Kmods SIG 50e2b3
+			&ep->dentry.file.access_time,
Kmods SIG 50e2b3
+			&ep->dentry.file.access_date,
Kmods SIG 50e2b3
+			NULL);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh, &sector);
Kmods SIG 50e2b3
+	if (!ep)
Kmods SIG 50e2b3
+		return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_init_stream_entry(ep,
Kmods SIG 50e2b3
+		(type == TYPE_FILE) ? ALLOC_FAT_CHAIN : ALLOC_NO_FAT_CHAIN,
Kmods SIG 50e2b3
+		start_clu, size);
Kmods SIG 50e2b3
+	exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_update_dir_chksum(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 50e2b3
+		int entry)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct super_block *sb = inode->i_sb;
Kmods SIG 50e2b3
+	int ret = 0;
Kmods SIG 50e2b3
+	int i, num_entries;
Kmods SIG 50e2b3
+	sector_t sector;
Kmods SIG 50e2b3
+	unsigned short chksum;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep, *fep;
Kmods SIG 50e2b3
+	struct buffer_head *fbh, *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	fep = exfat_get_dentry(sb, p_dir, entry, &fbh, &sector);
Kmods SIG 50e2b3
+	if (!fep)
Kmods SIG 50e2b3
+		return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	num_entries = fep->dentry.file.num_ext + 1;
Kmods SIG 50e2b3
+	chksum = exfat_calc_chksum_2byte(fep, DENTRY_SIZE, 0, CS_DIR_ENTRY);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = 1; i < num_entries; i++) {
Kmods SIG 50e2b3
+		ep = exfat_get_dentry(sb, p_dir, entry + i, &bh, NULL);
Kmods SIG 50e2b3
+		if (!ep) {
Kmods SIG 50e2b3
+			ret = -EIO;
Kmods SIG 50e2b3
+			goto release_fbh;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+		chksum = exfat_calc_chksum_2byte(ep, DENTRY_SIZE, chksum,
Kmods SIG 50e2b3
+				CS_DEFAULT);
Kmods SIG 50e2b3
+		brelse(bh);
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	fep->dentry.file.checksum = cpu_to_le16(chksum);
Kmods SIG 50e2b3
+	exfat_update_bh(sb, fbh, IS_DIRSYNC(inode));
Kmods SIG 50e2b3
+release_fbh:
Kmods SIG 50e2b3
+	brelse(fbh);
Kmods SIG 50e2b3
+	return ret;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_init_ext_entry(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 50e2b3
+		int entry, int num_entries, struct exfat_uni_name *p_uniname)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct super_block *sb = inode->i_sb;
Kmods SIG 50e2b3
+	int i;
Kmods SIG 50e2b3
+	sector_t sector;
Kmods SIG 50e2b3
+	unsigned short *uniname = p_uniname->name;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep;
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+	int sync = IS_DIRSYNC(inode);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep = exfat_get_dentry(sb, p_dir, entry, &bh, &sector);
Kmods SIG 50e2b3
+	if (!ep)
Kmods SIG 50e2b3
+		return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep->dentry.file.num_ext = (unsigned char)(num_entries - 1);
Kmods SIG 50e2b3
+	exfat_update_bh(sb, bh, sync);
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep = exfat_get_dentry(sb, p_dir, entry + 1, &bh, &sector);
Kmods SIG 50e2b3
+	if (!ep)
Kmods SIG 50e2b3
+		return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep->dentry.stream.name_len = p_uniname->name_len;
Kmods SIG 50e2b3
+	ep->dentry.stream.name_hash = cpu_to_le16(p_uniname->name_hash);
Kmods SIG 50e2b3
+	exfat_update_bh(sb, bh, sync);
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = EXFAT_FIRST_CLUSTER; i < num_entries; i++) {
Kmods SIG 50e2b3
+		ep = exfat_get_dentry(sb, p_dir, entry + i, &bh, &sector);
Kmods SIG 50e2b3
+		if (!ep)
Kmods SIG 50e2b3
+			return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		exfat_init_name_entry(ep, uniname);
Kmods SIG 50e2b3
+		exfat_update_bh(sb, bh, sync);
Kmods SIG 50e2b3
+		brelse(bh);
Kmods SIG 50e2b3
+		uniname += EXFAT_FILE_NAME_LEN;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_update_dir_chksum(inode, p_dir, entry);
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_remove_entries(struct inode *inode, struct exfat_chain *p_dir,
Kmods SIG 50e2b3
+		int entry, int order, int num_entries)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct super_block *sb = inode->i_sb;
Kmods SIG 50e2b3
+	int i;
Kmods SIG 50e2b3
+	sector_t sector;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep;
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = order; i < num_entries; i++) {
Kmods SIG 50e2b3
+		ep = exfat_get_dentry(sb, p_dir, entry + i, &bh, &sector);
Kmods SIG 50e2b3
+		if (!ep)
Kmods SIG 50e2b3
+			return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		exfat_set_entry_type(ep, TYPE_DELETED);
Kmods SIG 50e2b3
+		exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
Kmods SIG 50e2b3
+		brelse(bh);
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_update_dir_chksum_with_entry_set(struct super_block *sb,
Kmods SIG 50e2b3
+		struct exfat_entry_set_cache *es, int sync)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+	sector_t sec = es->sector;
Kmods SIG 50e2b3
+	unsigned int off = es->offset;
Kmods SIG 50e2b3
+	int chksum_type = CS_DIR_ENTRY, i, num_entries = es->num_entries;
Kmods SIG 50e2b3
+	unsigned int buf_off = (off - es->offset);
Kmods SIG 50e2b3
+	unsigned int remaining_byte_in_sector, copy_entries, clu;
Kmods SIG 50e2b3
+	unsigned short chksum = 0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = 0; i < num_entries; i++) {
Kmods SIG 50e2b3
+		chksum = exfat_calc_chksum_2byte(&es->entries[i], DENTRY_SIZE,
Kmods SIG 50e2b3
+			chksum, chksum_type);
Kmods SIG 50e2b3
+		chksum_type = CS_DEFAULT;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	es->entries[0].dentry.file.checksum = cpu_to_le16(chksum);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	while (num_entries) {
Kmods SIG 50e2b3
+		/* write per sector base */
Kmods SIG 50e2b3
+		remaining_byte_in_sector = (1 << sb->s_blocksize_bits) - off;
Kmods SIG 50e2b3
+		copy_entries = min_t(int,
Kmods SIG 50e2b3
+			EXFAT_B_TO_DEN(remaining_byte_in_sector),
Kmods SIG 50e2b3
+			num_entries);
Kmods SIG 50e2b3
+		bh = sb_bread(sb, sec);
Kmods SIG 50e2b3
+		if (!bh)
Kmods SIG 50e2b3
+			goto err_out;
Kmods SIG 50e2b3
+		memcpy(bh->b_data + off,
Kmods SIG 50e2b3
+			(unsigned char *)&es->entries[0] + buf_off,
Kmods SIG 50e2b3
+			EXFAT_DEN_TO_B(copy_entries));
Kmods SIG 50e2b3
+		exfat_update_bh(sb, bh, sync);
Kmods SIG 50e2b3
+		brelse(bh);
Kmods SIG 50e2b3
+		num_entries -= copy_entries;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (num_entries) {
Kmods SIG 50e2b3
+			/* get next sector */
Kmods SIG 50e2b3
+			if (exfat_is_last_sector_in_cluster(sbi, sec)) {
Kmods SIG 50e2b3
+				clu = exfat_sector_to_cluster(sbi, sec);
Kmods SIG 50e2b3
+				if (es->alloc_flag == ALLOC_NO_FAT_CHAIN)
Kmods SIG 50e2b3
+					clu++;
Kmods SIG 50e2b3
+				else if (exfat_get_next_cluster(sb, &clu))
Kmods SIG 50e2b3
+					goto err_out;
Kmods SIG 50e2b3
+				sec = exfat_cluster_to_sector(sbi, clu);
Kmods SIG 50e2b3
+			} else {
Kmods SIG 50e2b3
+				sec++;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+			off = 0;
Kmods SIG 50e2b3
+			buf_off += EXFAT_DEN_TO_B(copy_entries);
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+err_out:
Kmods SIG 50e2b3
+	return -EIO;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static int exfat_walk_fat_chain(struct super_block *sb,
Kmods SIG 50e2b3
+		struct exfat_chain *p_dir, unsigned int byte_offset,
Kmods SIG 50e2b3
+		unsigned int *clu)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	unsigned int clu_offset;
Kmods SIG 50e2b3
+	unsigned int cur_clu;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	clu_offset = EXFAT_B_TO_CLU(byte_offset, sbi);
Kmods SIG 50e2b3
+	cur_clu = p_dir->dir;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (p_dir->flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 50e2b3
+		cur_clu += clu_offset;
Kmods SIG 50e2b3
+	} else {
Kmods SIG 50e2b3
+		while (clu_offset > 0) {
Kmods SIG 50e2b3
+			if (exfat_get_next_cluster(sb, &cur_clu))
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+			if (cur_clu == EXFAT_EOF_CLUSTER) {
Kmods SIG 50e2b3
+				exfat_fs_error(sb,
Kmods SIG 50e2b3
+					"invalid dentry access beyond EOF (clu : %u, eidx : %d)",
Kmods SIG 50e2b3
+					p_dir->dir,
Kmods SIG 50e2b3
+					EXFAT_B_TO_DEN(byte_offset));
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+			clu_offset--;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	*clu = cur_clu;
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_find_location(struct super_block *sb, struct exfat_chain *p_dir,
Kmods SIG 50e2b3
+		int entry, sector_t *sector, int *offset)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int ret;
Kmods SIG 50e2b3
+	unsigned int off, clu = 0;
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	off = EXFAT_DEN_TO_B(entry);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ret = exfat_walk_fat_chain(sb, p_dir, off, &clu);
Kmods SIG 50e2b3
+	if (ret)
Kmods SIG 50e2b3
+		return ret;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* byte offset in cluster */
Kmods SIG 50e2b3
+	off = EXFAT_CLU_OFFSET(off, sbi);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* byte offset in sector    */
Kmods SIG 50e2b3
+	*offset = EXFAT_BLK_OFFSET(off, sb);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* sector offset in cluster */
Kmods SIG 50e2b3
+	*sector = EXFAT_B_TO_BLK(off, sb);
Kmods SIG 50e2b3
+	*sector += exfat_cluster_to_sector(sbi, clu);
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+#define EXFAT_MAX_RA_SIZE     (128*1024)
Kmods SIG 50e2b3
+static int exfat_dir_readahead(struct super_block *sb, sector_t sec)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+	unsigned int max_ra_count = EXFAT_MAX_RA_SIZE >> sb->s_blocksize_bits;
Kmods SIG 50e2b3
+	unsigned int page_ra_count = PAGE_SIZE >> sb->s_blocksize_bits;
Kmods SIG 50e2b3
+	unsigned int adj_ra_count = max(sbi->sect_per_clus, page_ra_count);
Kmods SIG 50e2b3
+	unsigned int ra_count = min(adj_ra_count, max_ra_count);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* Read-ahead is not required */
Kmods SIG 50e2b3
+	if (sbi->sect_per_clus == 1)
Kmods SIG 50e2b3
+		return 0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (sec < sbi->data_start_sector) {
Kmods SIG 50e2b3
+		exfat_msg(sb, KERN_ERR,
Kmods SIG 50e2b3
+			"requested sector is invalid(sect:%llu, root:%llu)",
Kmods SIG 50e2b3
+			(unsigned long long)sec, sbi->data_start_sector);
Kmods SIG 50e2b3
+		return -EIO;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* Not sector aligned with ra_count, resize ra_count to page size */
Kmods SIG 50e2b3
+	if ((sec - sbi->data_start_sector) & (ra_count - 1))
Kmods SIG 50e2b3
+		ra_count = page_ra_count;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	bh = sb_find_get_block(sb, sec);
Kmods SIG 50e2b3
+	if (!bh || !buffer_uptodate(bh)) {
Kmods SIG 50e2b3
+		unsigned int i;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		for (i = 0; i < ra_count; i++)
Kmods SIG 50e2b3
+			sb_breadahead(sb, (sector_t)(sec + i));
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+	return 0;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+struct exfat_dentry *exfat_get_dentry(struct super_block *sb,
Kmods SIG 50e2b3
+		struct exfat_chain *p_dir, int entry, struct buffer_head **bh,
Kmods SIG 50e2b3
+		sector_t *sector)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	unsigned int dentries_per_page = EXFAT_B_TO_DEN(PAGE_SIZE);
Kmods SIG 50e2b3
+	int off;
Kmods SIG 50e2b3
+	sector_t sec;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (p_dir->dir == DIR_DELETED) {
Kmods SIG 50e2b3
+		exfat_msg(sb, KERN_ERR, "abnormal access to deleted dentry\n");
Kmods SIG 50e2b3
+		return NULL;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (exfat_find_location(sb, p_dir, entry, &sec, &off))
Kmods SIG 50e2b3
+		return NULL;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (p_dir->dir != EXFAT_FREE_CLUSTER &&
Kmods SIG 50e2b3
+			!(entry & (dentries_per_page - 1)))
Kmods SIG 50e2b3
+		exfat_dir_readahead(sb, sec);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	*bh = sb_bread(sb, sec);
Kmods SIG 50e2b3
+	if (!*bh)
Kmods SIG 50e2b3
+		return NULL;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (sector)
Kmods SIG 50e2b3
+		*sector = sec;
Kmods SIG 50e2b3
+	return (struct exfat_dentry *)((*bh)->b_data + off);
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+enum exfat_validate_dentry_mode {
Kmods SIG 50e2b3
+	ES_MODE_STARTED,
Kmods SIG 50e2b3
+	ES_MODE_GET_FILE_ENTRY,
Kmods SIG 50e2b3
+	ES_MODE_GET_STRM_ENTRY,
Kmods SIG 50e2b3
+	ES_MODE_GET_NAME_ENTRY,
Kmods SIG 50e2b3
+	ES_MODE_GET_CRITICAL_SEC_ENTRY,
Kmods SIG 50e2b3
+};
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+static bool exfat_validate_entry(unsigned int type,
Kmods SIG 50e2b3
+		enum exfat_validate_dentry_mode *mode)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	if (type == TYPE_UNUSED || type == TYPE_DELETED)
Kmods SIG 50e2b3
+		return false;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	switch (*mode) {
Kmods SIG 50e2b3
+	case ES_MODE_STARTED:
Kmods SIG 50e2b3
+		if  (type != TYPE_FILE && type != TYPE_DIR)
Kmods SIG 50e2b3
+			return false;
Kmods SIG 50e2b3
+		*mode = ES_MODE_GET_FILE_ENTRY;
Kmods SIG 50e2b3
+		return true;
Kmods SIG 50e2b3
+	case ES_MODE_GET_FILE_ENTRY:
Kmods SIG 50e2b3
+		if (type != TYPE_STREAM)
Kmods SIG 50e2b3
+			return false;
Kmods SIG 50e2b3
+		*mode = ES_MODE_GET_STRM_ENTRY;
Kmods SIG 50e2b3
+		return true;
Kmods SIG 50e2b3
+	case ES_MODE_GET_STRM_ENTRY:
Kmods SIG 50e2b3
+		if (type != TYPE_EXTEND)
Kmods SIG 50e2b3
+			return false;
Kmods SIG 50e2b3
+		*mode = ES_MODE_GET_NAME_ENTRY;
Kmods SIG 50e2b3
+		return true;
Kmods SIG 50e2b3
+	case ES_MODE_GET_NAME_ENTRY:
Kmods SIG 50e2b3
+		if (type == TYPE_STREAM)
Kmods SIG 50e2b3
+			return false;
Kmods SIG 50e2b3
+		if (type != TYPE_EXTEND) {
Kmods SIG 50e2b3
+			if (!(type & TYPE_CRITICAL_SEC))
Kmods SIG 50e2b3
+				return false;
Kmods SIG 50e2b3
+			*mode = ES_MODE_GET_CRITICAL_SEC_ENTRY;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+		return true;
Kmods SIG 50e2b3
+	case ES_MODE_GET_CRITICAL_SEC_ENTRY:
Kmods SIG 50e2b3
+		if (type == TYPE_EXTEND || type == TYPE_STREAM)
Kmods SIG 50e2b3
+			return false;
Kmods SIG 50e2b3
+		if ((type & TYPE_CRITICAL_SEC) != TYPE_CRITICAL_SEC)
Kmods SIG 50e2b3
+			return false;
Kmods SIG 50e2b3
+		return true;
Kmods SIG 50e2b3
+	default:
Kmods SIG 50e2b3
+		WARN_ON_ONCE(1);
Kmods SIG 50e2b3
+		return false;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+/*
Kmods SIG 50e2b3
+ * Returns a set of dentries for a file or dir.
Kmods SIG 50e2b3
+ *
Kmods SIG 50e2b3
+ * Note that this is a copy (dump) of dentries so that user should
Kmods SIG 50e2b3
+ * call write_entry_set() to apply changes made in this entry set
Kmods SIG 50e2b3
+ * to the real device.
Kmods SIG 50e2b3
+ *
Kmods SIG 50e2b3
+ * in:
Kmods SIG 50e2b3
+ *   sb+p_dir+entry: indicates a file/dir
Kmods SIG 50e2b3
+ *   type:  specifies how many dentries should be included.
Kmods SIG 50e2b3
+ * out:
Kmods SIG 50e2b3
+ *   file_ep: will point the first dentry(= file dentry) on success
Kmods SIG 50e2b3
+ * return:
Kmods SIG 50e2b3
+ *   pointer of entry set on success,
Kmods SIG 50e2b3
+ *   NULL on failure.
Kmods SIG 50e2b3
+ */
Kmods SIG 50e2b3
+struct exfat_entry_set_cache *exfat_get_dentry_set(struct super_block *sb,
Kmods SIG 50e2b3
+		struct exfat_chain *p_dir, int entry, unsigned int type,
Kmods SIG 50e2b3
+		struct exfat_dentry **file_ep)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int ret;
Kmods SIG 50e2b3
+	unsigned int off, byte_offset, clu = 0;
Kmods SIG 50e2b3
+	unsigned int entry_type;
Kmods SIG 50e2b3
+	sector_t sec;
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	struct exfat_entry_set_cache *es;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep, *pos;
Kmods SIG 50e2b3
+	unsigned char num_entries;
Kmods SIG 50e2b3
+	enum exfat_validate_dentry_mode mode = ES_MODE_STARTED;
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (p_dir->dir == DIR_DELETED) {
Kmods SIG 50e2b3
+		exfat_msg(sb, KERN_ERR, "access to deleted dentry\n");
Kmods SIG 50e2b3
+		return NULL;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	byte_offset = EXFAT_DEN_TO_B(entry);
Kmods SIG 50e2b3
+	ret = exfat_walk_fat_chain(sb, p_dir, byte_offset, &clu);
Kmods SIG 50e2b3
+	if (ret)
Kmods SIG 50e2b3
+		return NULL;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* byte offset in cluster */
Kmods SIG 50e2b3
+	byte_offset = EXFAT_CLU_OFFSET(byte_offset, sbi);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* byte offset in sector */
Kmods SIG 50e2b3
+	off = EXFAT_BLK_OFFSET(byte_offset, sb);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* sector offset in cluster */
Kmods SIG 50e2b3
+	sec = EXFAT_B_TO_BLK(byte_offset, sb);
Kmods SIG 50e2b3
+	sec += exfat_cluster_to_sector(sbi, clu);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	bh = sb_bread(sb, sec);
Kmods SIG 50e2b3
+	if (!bh)
Kmods SIG 50e2b3
+		return NULL;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	ep = (struct exfat_dentry *)(bh->b_data + off);
Kmods SIG 50e2b3
+	entry_type = exfat_get_entry_type(ep);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (entry_type != TYPE_FILE && entry_type != TYPE_DIR)
Kmods SIG 50e2b3
+		goto release_bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	num_entries = type == ES_ALL_ENTRIES ?
Kmods SIG 50e2b3
+		ep->dentry.file.num_ext + 1 : type;
Kmods SIG 50e2b3
+	es = kmalloc(struct_size(es, entries, num_entries), GFP_KERNEL);
Kmods SIG 50e2b3
+	if (!es)
Kmods SIG 50e2b3
+		goto release_bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	es->num_entries = num_entries;
Kmods SIG 50e2b3
+	es->sector = sec;
Kmods SIG 50e2b3
+	es->offset = off;
Kmods SIG 50e2b3
+	es->alloc_flag = p_dir->flags;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	pos = &es->entries[0];
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	while (num_entries) {
Kmods SIG 50e2b3
+		if (!exfat_validate_entry(exfat_get_entry_type(ep), &mode))
Kmods SIG 50e2b3
+			goto free_es;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		/* copy dentry */
Kmods SIG 50e2b3
+		memcpy(pos, ep, sizeof(struct exfat_dentry));
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (--num_entries == 0)
Kmods SIG 50e2b3
+			break;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (((off + DENTRY_SIZE) & (sb->s_blocksize - 1)) <
Kmods SIG 50e2b3
+		    (off & (sb->s_blocksize - 1))) {
Kmods SIG 50e2b3
+			/* get the next sector */
Kmods SIG 50e2b3
+			if (exfat_is_last_sector_in_cluster(sbi, sec)) {
Kmods SIG 50e2b3
+				if (es->alloc_flag == ALLOC_NO_FAT_CHAIN)
Kmods SIG 50e2b3
+					clu++;
Kmods SIG 50e2b3
+				else if (exfat_get_next_cluster(sb, &clu))
Kmods SIG 50e2b3
+					goto free_es;
Kmods SIG 50e2b3
+				sec = exfat_cluster_to_sector(sbi, clu);
Kmods SIG 50e2b3
+			} else {
Kmods SIG 50e2b3
+				sec++;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			brelse(bh);
Kmods SIG 50e2b3
+			bh = sb_bread(sb, sec);
Kmods SIG 50e2b3
+			if (!bh)
Kmods SIG 50e2b3
+				goto free_es;
Kmods SIG 50e2b3
+			off = 0;
Kmods SIG 50e2b3
+			ep = (struct exfat_dentry *)bh->b_data;
Kmods SIG 50e2b3
+		} else {
Kmods SIG 50e2b3
+			ep++;
Kmods SIG 50e2b3
+			off += DENTRY_SIZE;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+		pos++;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (file_ep)
Kmods SIG 50e2b3
+		*file_ep = &es->entries[0];
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+	return es;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+free_es:
Kmods SIG 50e2b3
+	kfree(es);
Kmods SIG 50e2b3
+release_bh:
Kmods SIG 50e2b3
+	brelse(bh);
Kmods SIG 50e2b3
+	return NULL;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+enum {
Kmods SIG 50e2b3
+	DIRENT_STEP_FILE,
Kmods SIG 50e2b3
+	DIRENT_STEP_STRM,
Kmods SIG 50e2b3
+	DIRENT_STEP_NAME,
Kmods SIG 50e2b3
+	DIRENT_STEP_SECD,
Kmods SIG 50e2b3
+};
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+/*
Kmods SIG 50e2b3
+ * return values:
Kmods SIG 50e2b3
+ *   >= 0	: return dir entiry position with the name in dir
Kmods SIG 50e2b3
+ *   -EEXIST	: (root dir, ".") it is the root dir itself
Kmods SIG 50e2b3
+ *   -ENOENT	: entry with the name does not exist
Kmods SIG 50e2b3
+ *   -EIO	: I/O error
Kmods SIG 50e2b3
+ */
Kmods SIG 50e2b3
+int exfat_find_dir_entry(struct super_block *sb, struct exfat_inode_info *ei,
Kmods SIG 50e2b3
+		struct exfat_chain *p_dir, struct exfat_uni_name *p_uniname,
Kmods SIG 50e2b3
+		int num_entries, unsigned int type)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i, rewind = 0, dentry = 0, end_eidx = 0, num_ext = 0, len;
Kmods SIG 50e2b3
+	int order, step, name_len = 0;
Kmods SIG 50e2b3
+	int dentries_per_clu, num_empty = 0;
Kmods SIG 50e2b3
+	unsigned int entry_type;
Kmods SIG 50e2b3
+	unsigned short *uniname = NULL;
Kmods SIG 50e2b3
+	struct exfat_chain clu;
Kmods SIG 50e2b3
+	struct exfat_hint *hint_stat = &ei->hint_stat;
Kmods SIG 50e2b3
+	struct exfat_hint_femp candi_empty;
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	dentries_per_clu = sbi->dentries_per_clu;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_chain_dup(&clu, p_dir);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	if (hint_stat->eidx) {
Kmods SIG 50e2b3
+		clu.dir = hint_stat->clu;
Kmods SIG 50e2b3
+		dentry = hint_stat->eidx;
Kmods SIG 50e2b3
+		end_eidx = dentry;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	candi_empty.eidx = EXFAT_HINT_NONE;
Kmods SIG 50e2b3
+rewind:
Kmods SIG 50e2b3
+	order = 0;
Kmods SIG 50e2b3
+	step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+	while (clu.dir != EXFAT_EOF_CLUSTER) {
Kmods SIG 50e2b3
+		i = dentry & (dentries_per_clu - 1);
Kmods SIG 50e2b3
+		for (; i < dentries_per_clu; i++, dentry++) {
Kmods SIG 50e2b3
+			struct exfat_dentry *ep;
Kmods SIG 50e2b3
+			struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (rewind && dentry == end_eidx)
Kmods SIG 50e2b3
+				goto not_found;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
Kmods SIG 50e2b3
+			if (!ep)
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			entry_type = exfat_get_entry_type(ep);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (entry_type == TYPE_UNUSED ||
Kmods SIG 50e2b3
+			    entry_type == TYPE_DELETED) {
Kmods SIG 50e2b3
+				step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				num_empty++;
Kmods SIG 50e2b3
+				if (candi_empty.eidx == EXFAT_HINT_NONE &&
Kmods SIG 50e2b3
+						num_empty == 1) {
Kmods SIG 50e2b3
+					exfat_chain_set(&candi_empty.cur,
Kmods SIG 50e2b3
+						clu.dir, clu.size, clu.flags);
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				if (candi_empty.eidx == EXFAT_HINT_NONE &&
Kmods SIG 50e2b3
+						num_empty >= num_entries) {
Kmods SIG 50e2b3
+					candi_empty.eidx =
Kmods SIG 50e2b3
+						dentry - (num_empty - 1);
Kmods SIG 50e2b3
+					WARN_ON(candi_empty.eidx < 0);
Kmods SIG 50e2b3
+					candi_empty.count = num_empty;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+					if (ei->hint_femp.eidx ==
Kmods SIG 50e2b3
+							EXFAT_HINT_NONE ||
Kmods SIG 50e2b3
+						candi_empty.eidx <=
Kmods SIG 50e2b3
+							 ei->hint_femp.eidx) {
Kmods SIG 50e2b3
+						memcpy(&ei->hint_femp,
Kmods SIG 50e2b3
+							&candi_empty,
Kmods SIG 50e2b3
+							sizeof(candi_empty));
Kmods SIG 50e2b3
+					}
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				brelse(bh);
Kmods SIG 50e2b3
+				if (entry_type == TYPE_UNUSED)
Kmods SIG 50e2b3
+					goto not_found;
Kmods SIG 50e2b3
+				continue;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			num_empty = 0;
Kmods SIG 50e2b3
+			candi_empty.eidx = EXFAT_HINT_NONE;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (entry_type == TYPE_FILE || entry_type == TYPE_DIR) {
Kmods SIG 50e2b3
+				step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+				if (type == TYPE_ALL || type == entry_type) {
Kmods SIG 50e2b3
+					num_ext = ep->dentry.file.num_ext;
Kmods SIG 50e2b3
+					step = DIRENT_STEP_STRM;
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+				brelse(bh);
Kmods SIG 50e2b3
+				continue;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (entry_type == TYPE_STREAM) {
Kmods SIG 50e2b3
+				unsigned short name_hash;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				if (step != DIRENT_STEP_STRM) {
Kmods SIG 50e2b3
+					step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+					brelse(bh);
Kmods SIG 50e2b3
+					continue;
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+				step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+				name_hash = le16_to_cpu(
Kmods SIG 50e2b3
+						ep->dentry.stream.name_hash);
Kmods SIG 50e2b3
+				if (p_uniname->name_hash == name_hash &&
Kmods SIG 50e2b3
+				    p_uniname->name_len ==
Kmods SIG 50e2b3
+						ep->dentry.stream.name_len) {
Kmods SIG 50e2b3
+					step = DIRENT_STEP_NAME;
Kmods SIG 50e2b3
+					order = 1;
Kmods SIG 50e2b3
+					name_len = 0;
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+				brelse(bh);
Kmods SIG 50e2b3
+				continue;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			brelse(bh);
Kmods SIG 50e2b3
+			if (entry_type == TYPE_EXTEND) {
Kmods SIG 50e2b3
+				unsigned short entry_uniname[16], unichar;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				if (step != DIRENT_STEP_NAME) {
Kmods SIG 50e2b3
+					step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+					continue;
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				if (++order == 2)
Kmods SIG 50e2b3
+					uniname = p_uniname->name;
Kmods SIG 50e2b3
+				else
Kmods SIG 50e2b3
+					uniname += EXFAT_FILE_NAME_LEN;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				len = exfat_extract_uni_name(ep, entry_uniname);
Kmods SIG 50e2b3
+				name_len += len;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				unichar = *(uniname+len);
Kmods SIG 50e2b3
+				*(uniname+len) = 0x0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				if (exfat_uniname_ncmp(sb, uniname,
Kmods SIG 50e2b3
+					entry_uniname, len)) {
Kmods SIG 50e2b3
+					step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+				} else if (p_uniname->name_len == name_len) {
Kmods SIG 50e2b3
+					if (order == num_ext)
Kmods SIG 50e2b3
+						goto found;
Kmods SIG 50e2b3
+					step = DIRENT_STEP_SECD;
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+				*(uniname+len) = unichar;
Kmods SIG 50e2b3
+				continue;
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (entry_type &
Kmods SIG 50e2b3
+					(TYPE_CRITICAL_SEC | TYPE_BENIGN_SEC)) {
Kmods SIG 50e2b3
+				if (step == DIRENT_STEP_SECD) {
Kmods SIG 50e2b3
+					if (++order == num_ext)
Kmods SIG 50e2b3
+						goto found;
Kmods SIG 50e2b3
+					continue;
Kmods SIG 50e2b3
+				}
Kmods SIG 50e2b3
+			}
Kmods SIG 50e2b3
+			step = DIRENT_STEP_FILE;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (clu.flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 50e2b3
+			if (--clu.size > 0)
Kmods SIG 50e2b3
+				clu.dir++;
Kmods SIG 50e2b3
+			else
Kmods SIG 50e2b3
+				clu.dir = EXFAT_EOF_CLUSTER;
Kmods SIG 50e2b3
+		} else {
Kmods SIG 50e2b3
+			if (exfat_get_next_cluster(sb, &clu.dir))
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+not_found:
Kmods SIG 50e2b3
+	/*
Kmods SIG 50e2b3
+	 * We started at not 0 index,so we should try to find target
Kmods SIG 50e2b3
+	 * from 0 index to the index we started at.
Kmods SIG 50e2b3
+	 */
Kmods SIG 50e2b3
+	if (!rewind && end_eidx) {
Kmods SIG 50e2b3
+		rewind = 1;
Kmods SIG 50e2b3
+		dentry = 0;
Kmods SIG 50e2b3
+		clu.dir = p_dir->dir;
Kmods SIG 50e2b3
+		/* reset empty hint */
Kmods SIG 50e2b3
+		num_empty = 0;
Kmods SIG 50e2b3
+		candi_empty.eidx = EXFAT_HINT_NONE;
Kmods SIG 50e2b3
+		goto rewind;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	/* initialized hint_stat */
Kmods SIG 50e2b3
+	hint_stat->clu = p_dir->dir;
Kmods SIG 50e2b3
+	hint_stat->eidx = 0;
Kmods SIG 50e2b3
+	return -ENOENT;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+found:
Kmods SIG 50e2b3
+	/* next dentry we'll find is out of this cluster */
Kmods SIG 50e2b3
+	if (!((dentry + 1) & (dentries_per_clu - 1))) {
Kmods SIG 50e2b3
+		int ret = 0;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (clu.flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 50e2b3
+			if (--clu.size > 0)
Kmods SIG 50e2b3
+				clu.dir++;
Kmods SIG 50e2b3
+			else
Kmods SIG 50e2b3
+				clu.dir = EXFAT_EOF_CLUSTER;
Kmods SIG 50e2b3
+		} else {
Kmods SIG 50e2b3
+			ret = exfat_get_next_cluster(sb, &clu.dir);
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (ret || clu.dir != EXFAT_EOF_CLUSTER) {
Kmods SIG 50e2b3
+			/* just initialized hint_stat */
Kmods SIG 50e2b3
+			hint_stat->clu = p_dir->dir;
Kmods SIG 50e2b3
+			hint_stat->eidx = 0;
Kmods SIG 50e2b3
+			return (dentry - num_ext);
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	hint_stat->clu = clu.dir;
Kmods SIG 50e2b3
+	hint_stat->eidx = dentry + 1;
Kmods SIG 50e2b3
+	return dentry - num_ext;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_count_ext_entries(struct super_block *sb, struct exfat_chain *p_dir,
Kmods SIG 50e2b3
+		int entry, struct exfat_dentry *ep)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i, count = 0;
Kmods SIG 50e2b3
+	unsigned int type;
Kmods SIG 50e2b3
+	struct exfat_dentry *ext_ep;
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	for (i = 0, entry++; i < ep->dentry.file.num_ext; i++, entry++) {
Kmods SIG 50e2b3
+		ext_ep = exfat_get_dentry(sb, p_dir, entry, &bh, NULL);
Kmods SIG 50e2b3
+		if (!ext_ep)
Kmods SIG 50e2b3
+			return -EIO;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		type = exfat_get_entry_type(ext_ep);
Kmods SIG 50e2b3
+		brelse(bh);
Kmods SIG 50e2b3
+		if (type == TYPE_EXTEND || type == TYPE_STREAM)
Kmods SIG 50e2b3
+			count++;
Kmods SIG 50e2b3
+		else
Kmods SIG 50e2b3
+			break;
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+	return count;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+int exfat_count_dir_entries(struct super_block *sb, struct exfat_chain *p_dir)
Kmods SIG 50e2b3
+{
Kmods SIG 50e2b3
+	int i, count = 0;
Kmods SIG 50e2b3
+	int dentries_per_clu;
Kmods SIG 50e2b3
+	unsigned int entry_type;
Kmods SIG 50e2b3
+	struct exfat_chain clu;
Kmods SIG 50e2b3
+	struct exfat_dentry *ep;
Kmods SIG 50e2b3
+	struct exfat_sb_info *sbi = EXFAT_SB(sb);
Kmods SIG 50e2b3
+	struct buffer_head *bh;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	dentries_per_clu = sbi->dentries_per_clu;
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	exfat_chain_dup(&clu, p_dir);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	while (clu.dir != EXFAT_EOF_CLUSTER) {
Kmods SIG 50e2b3
+		for (i = 0; i < dentries_per_clu; i++) {
Kmods SIG 50e2b3
+			ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
Kmods SIG 50e2b3
+			if (!ep)
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+			entry_type = exfat_get_entry_type(ep);
Kmods SIG 50e2b3
+			brelse(bh);
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+			if (entry_type == TYPE_UNUSED)
Kmods SIG 50e2b3
+				return count;
Kmods SIG 50e2b3
+			if (entry_type != TYPE_DIR)
Kmods SIG 50e2b3
+				continue;
Kmods SIG 50e2b3
+			count++;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+		if (clu.flags == ALLOC_NO_FAT_CHAIN) {
Kmods SIG 50e2b3
+			if (--clu.size > 0)
Kmods SIG 50e2b3
+				clu.dir++;
Kmods SIG 50e2b3
+			else
Kmods SIG 50e2b3
+				clu.dir = EXFAT_EOF_CLUSTER;
Kmods SIG 50e2b3
+		} else {
Kmods SIG 50e2b3
+			if (exfat_get_next_cluster(sb, &(clu.dir)))
Kmods SIG 50e2b3
+				return -EIO;
Kmods SIG 50e2b3
+		}
Kmods SIG 50e2b3
+	}
Kmods SIG 50e2b3
+
Kmods SIG 50e2b3
+	return count;
Kmods SIG 50e2b3
+}
Kmods SIG 50e2b3
-- 
Kmods SIG 50e2b3
2.31.1
Kmods SIG 50e2b3