Skip to content

Commit

Permalink
f2fs: introduce dot and dotdot name check
Browse files Browse the repository at this point in the history
This patch adds an inline function to check dot and dotdot names.

Signed-off-by: Jaegeuk Kim <[email protected]>
  • Loading branch information
Jaegeuk Kim committed May 28, 2015
1 parent c879f90 commit eaa693f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 11 additions & 0 deletions fs/f2fs/f2fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1454,6 +1454,17 @@ static inline void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi)
sbi->sb->s_flags |= MS_RDONLY;
}

static inline bool is_dot_dotdot(const struct qstr *str)
{
if (str->len == 1 && str->name[0] == '.')
return true;

if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
return true;

return false;
}

#define get_inode_mode(i) \
((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \
(F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
Expand Down
3 changes: 1 addition & 2 deletions fs/f2fs/hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ f2fs_hash_t f2fs_dentry_hash(const struct qstr *name_info)
const unsigned char *name = name_info->name;
size_t len = name_info->len;

if ((len <= 2) && (name[0] == '.') &&
(name[1] == '.' || name[1] == '\0'))
if (is_dot_dotdot(name_info))
return 0;

/* Initialize the default seed for the hash checksum functions */
Expand Down

0 comments on commit eaa693f

Please sign in to comment.