Commit 632f4054 authored by Gabriel Krisman Bertazi's avatar Gabriel Krisman Bertazi Committed by Christian Brauner

f2fs: Simplify the handling of cached casefolded names

Keeping it as qstr avoids the unnecessary conversion in f2fs_match
Signed-off-by: default avatarGabriel Krisman Bertazi <krisman@collabora.com>
[eugen.hristev@collabora.com: port to 6.10-rc1 and minor changes]
Signed-off-by: default avatarEugen Hristev <eugen.hristev@collabora.com>
Link: https://lore.kernel.org/r/20240606073353.47130-3-eugen.hristev@collabora.comReviewed-by: default avatarEric Biggers <ebiggers@google.com>
Reviewed-by: default avatarGabriel Krisman Bertazi <krisman@suse.de>
Signed-off-by: default avatarChristian Brauner <brauner@kernel.org>
parent f776f02a
...@@ -42,35 +42,49 @@ static unsigned int bucket_blocks(unsigned int level) ...@@ -42,35 +42,49 @@ static unsigned int bucket_blocks(unsigned int level)
return 4; return 4;
} }
#if IS_ENABLED(CONFIG_UNICODE)
/* If @dir is casefolded, initialize @fname->cf_name from @fname->usr_fname. */ /* If @dir is casefolded, initialize @fname->cf_name from @fname->usr_fname. */
int f2fs_init_casefolded_name(const struct inode *dir, int f2fs_init_casefolded_name(const struct inode *dir,
struct f2fs_filename *fname) struct f2fs_filename *fname)
{ {
#if IS_ENABLED(CONFIG_UNICODE)
struct super_block *sb = dir->i_sb; struct super_block *sb = dir->i_sb;
unsigned char *buf;
int len;
if (IS_CASEFOLDED(dir) && if (IS_CASEFOLDED(dir) &&
!is_dot_dotdot(fname->usr_fname->name, fname->usr_fname->len)) { !is_dot_dotdot(fname->usr_fname->name, fname->usr_fname->len)) {
fname->cf_name.name = f2fs_kmem_cache_alloc(f2fs_cf_name_slab, buf = f2fs_kmem_cache_alloc(f2fs_cf_name_slab,
GFP_NOFS, false, F2FS_SB(sb)); GFP_NOFS, false, F2FS_SB(sb));
if (!fname->cf_name.name) if (!buf)
return -ENOMEM; return -ENOMEM;
fname->cf_name.len = utf8_casefold(sb->s_encoding,
fname->usr_fname, len = utf8_casefold(sb->s_encoding, fname->usr_fname,
fname->cf_name.name, buf, F2FS_NAME_LEN);
F2FS_NAME_LEN); if (len <= 0) {
if ((int)fname->cf_name.len <= 0) { kmem_cache_free(f2fs_cf_name_slab, buf);
kmem_cache_free(f2fs_cf_name_slab, fname->cf_name.name);
fname->cf_name.name = NULL;
if (sb_has_strict_encoding(sb)) if (sb_has_strict_encoding(sb))
return -EINVAL; return -EINVAL;
/* fall back to treating name as opaque byte sequence */ /* fall back to treating name as opaque byte sequence */
return 0;
} }
fname->cf_name.name = buf;
fname->cf_name.len = len;
} }
#endif
return 0; return 0;
} }
void f2fs_free_casefolded_name(struct f2fs_filename *fname)
{
unsigned char *buf = (unsigned char *)fname->cf_name.name;
if (buf) {
kmem_cache_free(f2fs_cf_name_slab, buf);
fname->cf_name.name = NULL;
}
}
#endif /* CONFIG_UNICODE */
static int __f2fs_setup_filename(const struct inode *dir, static int __f2fs_setup_filename(const struct inode *dir,
const struct fscrypt_name *crypt_name, const struct fscrypt_name *crypt_name,
struct f2fs_filename *fname) struct f2fs_filename *fname)
...@@ -142,12 +156,7 @@ void f2fs_free_filename(struct f2fs_filename *fname) ...@@ -142,12 +156,7 @@ void f2fs_free_filename(struct f2fs_filename *fname)
kfree(fname->crypto_buf.name); kfree(fname->crypto_buf.name);
fname->crypto_buf.name = NULL; fname->crypto_buf.name = NULL;
#endif #endif
#if IS_ENABLED(CONFIG_UNICODE) f2fs_free_casefolded_name(fname);
if (fname->cf_name.name) {
kmem_cache_free(f2fs_cf_name_slab, fname->cf_name.name);
fname->cf_name.name = NULL;
}
#endif
} }
static unsigned long dir_block_index(unsigned int level, static unsigned long dir_block_index(unsigned int level,
...@@ -235,11 +244,9 @@ static inline int f2fs_match_name(const struct inode *dir, ...@@ -235,11 +244,9 @@ static inline int f2fs_match_name(const struct inode *dir,
struct fscrypt_name f; struct fscrypt_name f;
#if IS_ENABLED(CONFIG_UNICODE) #if IS_ENABLED(CONFIG_UNICODE)
if (fname->cf_name.name) { if (fname->cf_name.name)
struct qstr cf = FSTR_TO_QSTR(&fname->cf_name); return f2fs_match_ci_name(dir, &fname->cf_name,
de_name, de_name_len);
return f2fs_match_ci_name(dir, &cf, de_name, de_name_len);
}
#endif #endif
f.usr_fname = fname->usr_fname; f.usr_fname = fname->usr_fname;
f.disk_name = fname->disk_name; f.disk_name = fname->disk_name;
......
...@@ -531,7 +531,7 @@ struct f2fs_filename { ...@@ -531,7 +531,7 @@ struct f2fs_filename {
* internal operation where usr_fname is also NULL. In all these cases * internal operation where usr_fname is also NULL. In all these cases
* we fall back to treating the name as an opaque byte sequence. * we fall back to treating the name as an opaque byte sequence.
*/ */
struct fscrypt_str cf_name; struct qstr cf_name;
#endif #endif
}; };
...@@ -3533,8 +3533,22 @@ int f2fs_get_tmpfile(struct mnt_idmap *idmap, struct inode *dir, ...@@ -3533,8 +3533,22 @@ int f2fs_get_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
/* /*
* dir.c * dir.c
*/ */
#if IS_ENABLED(CONFIG_UNICODE)
int f2fs_init_casefolded_name(const struct inode *dir, int f2fs_init_casefolded_name(const struct inode *dir,
struct f2fs_filename *fname); struct f2fs_filename *fname);
void f2fs_free_casefolded_name(struct f2fs_filename *fname);
#else
static inline int f2fs_init_casefolded_name(const struct inode *dir,
struct f2fs_filename *fname)
{
return 0;
}
static inline void f2fs_free_casefolded_name(struct f2fs_filename *fname)
{
}
#endif /* CONFIG_UNICODE */
int f2fs_setup_filename(struct inode *dir, const struct qstr *iname, int f2fs_setup_filename(struct inode *dir, const struct qstr *iname,
int lookup, struct f2fs_filename *fname); int lookup, struct f2fs_filename *fname);
int f2fs_prepare_lookup(struct inode *dir, struct dentry *dentry, int f2fs_prepare_lookup(struct inode *dir, struct dentry *dentry,
......
...@@ -46,10 +46,6 @@ ...@@ -46,10 +46,6 @@
static struct kmem_cache *fsync_entry_slab; static struct kmem_cache *fsync_entry_slab;
#if IS_ENABLED(CONFIG_UNICODE)
extern struct kmem_cache *f2fs_cf_name_slab;
#endif
bool f2fs_space_for_roll_forward(struct f2fs_sb_info *sbi) bool f2fs_space_for_roll_forward(struct f2fs_sb_info *sbi)
{ {
s64 nalloc = percpu_counter_sum_positive(&sbi->alloc_valid_block_count); s64 nalloc = percpu_counter_sum_positive(&sbi->alloc_valid_block_count);
...@@ -153,11 +149,8 @@ static int init_recovered_filename(const struct inode *dir, ...@@ -153,11 +149,8 @@ static int init_recovered_filename(const struct inode *dir,
if (err) if (err)
return err; return err;
f2fs_hash_filename(dir, fname); f2fs_hash_filename(dir, fname);
#if IS_ENABLED(CONFIG_UNICODE)
/* Case-sensitive match is fine for recovery */ /* Case-sensitive match is fine for recovery */
kmem_cache_free(f2fs_cf_name_slab, fname->cf_name.name); f2fs_free_casefolded_name(fname);
fname->cf_name.name = NULL;
#endif
} else { } else {
f2fs_hash_filename(dir, fname); f2fs_hash_filename(dir, fname);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment