f2fs: check filename length in recover_dentry
authorChao Yu <chao2.yu@samsung.com>
Mon, 23 Dec 2013 03:12:21 +0000 (11:12 +0800)
committerJaegeuk Kim <jaegeuk.kim@samsung.com>
Thu, 26 Dec 2013 03:50:09 +0000 (12:50 +0900)
In current flow, we will get Null return value of f2fs_find_entry in
recover_dentry when name.len is bigger than F2FS_NAME_LEN, and then we
still add this inode into its dir entry.
To avoid this situation, we must check filename length before we use it.

Another point is that we could remove the code of checking filename length
In f2fs_find_entry, because f2fs_lookup will be called previously to ensure of
validity of filename length.

V2:
 o add WARN_ON() as Jaegeuk Kim suggested.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
fs/f2fs/dir.c
fs/f2fs/recovery.c

index 07ad850bbf97f5f975382f6d8ac6bc5100e3ae0b..f0b463049444218c789c76aebc139f2ed45d279c 100644 (file)
@@ -190,9 +190,6 @@ struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir,
        unsigned int max_depth;
        unsigned int level;
 
-       if (unlikely(namelen > F2FS_NAME_LEN))
-               return NULL;
-
        if (npages == 0)
                return NULL;
 
index a3f4542160cf1abb099a94419afe2bb19bfd56b9..4d411a26b85d547f1ca05f23af7de6f2424a4518 100644 (file)
@@ -62,6 +62,12 @@ static int recover_dentry(struct page *ipage, struct inode *inode)
 
        name.len = le32_to_cpu(raw_inode->i_namelen);
        name.name = raw_inode->i_name;
+
+       if (unlikely(name.len > F2FS_NAME_LEN)) {
+               WARN_ON(1);
+               err = -ENAMETOOLONG;
+               goto out;
+       }
 retry:
        de = f2fs_find_entry(dir, &name, &page);
        if (de && inode->i_ino == le32_to_cpu(de->ino))