2012-11-29 12:28:09 +08:00
|
|
|
/*
|
2012-11-14 15:59:04 +08:00
|
|
|
* fs/f2fs/dir.c
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
|
|
|
|
* http://www.samsung.com/
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/f2fs_fs.h>
|
|
|
|
#include "f2fs.h"
|
f2fs: fix handling errors got by f2fs_write_inode
Ruslan reported that f2fs hangs with an infinite loop in f2fs_sync_file():
while (sync_node_pages(sbi, inode->i_ino, &wbc) == 0)
f2fs_write_inode(inode, NULL);
The reason was revealed that the cold flag is not set even thought this inode is
a normal file. Therefore, sync_node_pages() skips to write node blocks since it
only writes cold node blocks.
The cold flag is stored to the node_footer in node block, and whenever a new
node page is allocated, it is set according to its file type, file or directory.
But, after sudden-power-off, when recovering the inode page, f2fs doesn't recover
its cold flag.
So, let's assign the cold flag in more right places.
One more thing:
If f2fs_write_inode() returns an error due to whatever situations, there would
be no dirty node pages so that sync_node_pages() returns zero.
(i.e., zero means nothing was written.)
Reported-by: Ruslan N. Marchenko <me@ruff.mobi>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-12-19 14:28:39 +08:00
|
|
|
#include "node.h"
|
2012-11-14 15:59:04 +08:00
|
|
|
#include "acl.h"
|
2013-06-03 18:46:19 +08:00
|
|
|
#include "xattr.h"
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
static unsigned long dir_blocks(struct inode *inode)
|
|
|
|
{
|
|
|
|
return ((unsigned long long) (i_size_read(inode) + PAGE_CACHE_SIZE - 1))
|
|
|
|
>> PAGE_CACHE_SHIFT;
|
|
|
|
}
|
|
|
|
|
2014-02-27 17:20:00 +08:00
|
|
|
static unsigned int dir_buckets(unsigned int level, int dir_level)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
2014-05-28 08:56:09 +08:00
|
|
|
if (level + dir_level < MAX_DIR_HASH_DEPTH / 2)
|
2014-02-27 17:20:00 +08:00
|
|
|
return 1 << (level + dir_level);
|
2012-11-14 15:59:04 +08:00
|
|
|
else
|
2014-05-28 08:56:09 +08:00
|
|
|
return MAX_DIR_BUCKETS;
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int bucket_blocks(unsigned int level)
|
|
|
|
{
|
|
|
|
if (level < MAX_DIR_HASH_DEPTH / 2)
|
|
|
|
return 2;
|
|
|
|
else
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2014-09-24 18:17:04 +08:00
|
|
|
unsigned char f2fs_filetype_table[F2FS_FT_MAX] = {
|
2012-11-14 15:59:04 +08:00
|
|
|
[F2FS_FT_UNKNOWN] = DT_UNKNOWN,
|
|
|
|
[F2FS_FT_REG_FILE] = DT_REG,
|
|
|
|
[F2FS_FT_DIR] = DT_DIR,
|
|
|
|
[F2FS_FT_CHRDEV] = DT_CHR,
|
|
|
|
[F2FS_FT_BLKDEV] = DT_BLK,
|
|
|
|
[F2FS_FT_FIFO] = DT_FIFO,
|
|
|
|
[F2FS_FT_SOCK] = DT_SOCK,
|
|
|
|
[F2FS_FT_SYMLINK] = DT_LNK,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define S_SHIFT 12
|
|
|
|
static unsigned char f2fs_type_by_mode[S_IFMT >> S_SHIFT] = {
|
|
|
|
[S_IFREG >> S_SHIFT] = F2FS_FT_REG_FILE,
|
|
|
|
[S_IFDIR >> S_SHIFT] = F2FS_FT_DIR,
|
|
|
|
[S_IFCHR >> S_SHIFT] = F2FS_FT_CHRDEV,
|
|
|
|
[S_IFBLK >> S_SHIFT] = F2FS_FT_BLKDEV,
|
|
|
|
[S_IFIFO >> S_SHIFT] = F2FS_FT_FIFO,
|
|
|
|
[S_IFSOCK >> S_SHIFT] = F2FS_FT_SOCK,
|
|
|
|
[S_IFLNK >> S_SHIFT] = F2FS_FT_SYMLINK,
|
|
|
|
};
|
|
|
|
|
2015-03-31 06:07:16 +08:00
|
|
|
void set_de_type(struct f2fs_dir_entry *de, umode_t mode)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
|
|
|
de->file_type = f2fs_type_by_mode[(mode & S_IFMT) >> S_SHIFT];
|
|
|
|
}
|
|
|
|
|
2014-02-27 17:20:00 +08:00
|
|
|
static unsigned long dir_block_index(unsigned int level,
|
|
|
|
int dir_level, unsigned int idx)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
|
|
|
unsigned long i;
|
|
|
|
unsigned long bidx = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < level; i++)
|
2014-02-27 17:20:00 +08:00
|
|
|
bidx += dir_buckets(i, dir_level) * bucket_blocks(i);
|
2012-11-14 15:59:04 +08:00
|
|
|
bidx += idx * bucket_blocks(level);
|
|
|
|
return bidx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct f2fs_dir_entry *find_in_block(struct page *dentry_page,
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_name *fname,
|
2015-04-28 08:12:39 +08:00
|
|
|
f2fs_hash_t namehash,
|
|
|
|
int *max_slots,
|
2014-10-14 08:26:14 +08:00
|
|
|
struct page **res_page)
|
|
|
|
{
|
|
|
|
struct f2fs_dentry_block *dentry_blk;
|
|
|
|
struct f2fs_dir_entry *de;
|
2014-10-19 13:52:52 +08:00
|
|
|
struct f2fs_dentry_ptr d;
|
2014-10-14 08:26:14 +08:00
|
|
|
|
|
|
|
dentry_blk = (struct f2fs_dentry_block *)kmap(dentry_page);
|
2014-10-19 13:52:52 +08:00
|
|
|
|
2015-04-28 07:26:24 +08:00
|
|
|
make_dentry_ptr(NULL, &d, (void *)dentry_blk, 1);
|
2015-04-28 08:12:39 +08:00
|
|
|
de = find_target_dentry(fname, namehash, max_slots, &d);
|
2014-10-14 08:26:14 +08:00
|
|
|
if (de)
|
|
|
|
*res_page = dentry_page;
|
|
|
|
else
|
|
|
|
kunmap(dentry_page);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For the most part, it should be a bug when name_len is zero.
|
|
|
|
* We stop here for figuring out where the bugs has occurred.
|
|
|
|
*/
|
2014-10-19 13:52:52 +08:00
|
|
|
f2fs_bug_on(F2FS_P_SB(dentry_page), d.max < 0);
|
2014-10-14 08:26:14 +08:00
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
2015-05-16 07:26:10 +08:00
|
|
|
struct f2fs_dir_entry *find_target_dentry(struct fscrypt_name *fname,
|
2015-04-28 08:12:39 +08:00
|
|
|
f2fs_hash_t namehash, int *max_slots,
|
|
|
|
struct f2fs_dentry_ptr *d)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
|
|
|
struct f2fs_dir_entry *de;
|
2014-02-27 12:57:53 +08:00
|
|
|
unsigned long bit_pos = 0;
|
|
|
|
int max_len = 0;
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_str de_name = FSTR_INIT(NULL, 0);
|
|
|
|
struct fscrypt_str *name = &fname->disk_name;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2014-10-19 13:52:52 +08:00
|
|
|
if (max_slots)
|
|
|
|
*max_slots = 0;
|
|
|
|
while (bit_pos < d->max) {
|
|
|
|
if (!test_bit_le(bit_pos, d->bitmap)) {
|
2014-02-27 12:57:53 +08:00
|
|
|
bit_pos++;
|
2015-03-09 17:33:16 +08:00
|
|
|
max_len++;
|
2014-02-27 12:57:53 +08:00
|
|
|
continue;
|
|
|
|
}
|
2015-03-09 17:33:16 +08:00
|
|
|
|
2014-10-19 13:52:52 +08:00
|
|
|
de = &d->dentry[bit_pos];
|
2015-04-28 08:12:39 +08:00
|
|
|
|
|
|
|
/* encrypted case */
|
|
|
|
de_name.name = d->filename[bit_pos];
|
|
|
|
de_name.len = le16_to_cpu(de->name_len);
|
|
|
|
|
|
|
|
/* show encrypted name */
|
|
|
|
if (fname->hash) {
|
|
|
|
if (de->hash_code == fname->hash)
|
|
|
|
goto found;
|
|
|
|
} else if (de_name.len == name->len &&
|
|
|
|
de->hash_code == namehash &&
|
|
|
|
!memcmp(de_name.name, name->name, name->len))
|
2014-10-14 08:26:14 +08:00
|
|
|
goto found;
|
|
|
|
|
2015-03-09 17:33:16 +08:00
|
|
|
if (max_slots && max_len > *max_slots)
|
2014-02-27 12:57:53 +08:00
|
|
|
*max_slots = max_len;
|
2015-03-09 17:33:16 +08:00
|
|
|
max_len = 0;
|
2014-07-10 12:37:46 +08:00
|
|
|
|
2014-10-14 08:26:14 +08:00
|
|
|
/* remain bug on condition */
|
|
|
|
if (unlikely(!de->name_len))
|
2014-10-19 13:52:52 +08:00
|
|
|
d->max = -1;
|
2014-07-10 12:37:46 +08:00
|
|
|
|
2014-02-27 12:57:53 +08:00
|
|
|
bit_pos += GET_DENTRY_SLOTS(le16_to_cpu(de->name_len));
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
de = NULL;
|
|
|
|
found:
|
2014-10-19 13:52:52 +08:00
|
|
|
if (max_slots && max_len > *max_slots)
|
2014-02-27 12:57:53 +08:00
|
|
|
*max_slots = max_len;
|
2012-11-14 15:59:04 +08:00
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct f2fs_dir_entry *find_in_level(struct inode *dir,
|
2015-04-28 08:12:39 +08:00
|
|
|
unsigned int level,
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_name *fname,
|
2015-04-28 08:12:39 +08:00
|
|
|
struct page **res_page)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
2015-04-28 08:12:39 +08:00
|
|
|
struct qstr name = FSTR_TO_QSTR(&fname->disk_name);
|
|
|
|
int s = GET_DENTRY_SLOTS(name.len);
|
2012-11-14 15:59:04 +08:00
|
|
|
unsigned int nbucket, nblock;
|
|
|
|
unsigned int bidx, end_block;
|
|
|
|
struct page *dentry_page;
|
|
|
|
struct f2fs_dir_entry *de = NULL;
|
|
|
|
bool room = false;
|
2014-10-14 08:26:14 +08:00
|
|
|
int max_slots;
|
2015-04-28 08:12:39 +08:00
|
|
|
f2fs_hash_t namehash;
|
|
|
|
|
|
|
|
namehash = f2fs_dentry_hash(&name);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2014-02-27 17:20:00 +08:00
|
|
|
nbucket = dir_buckets(level, F2FS_I(dir)->i_dir_level);
|
2012-11-14 15:59:04 +08:00
|
|
|
nblock = bucket_blocks(level);
|
|
|
|
|
2014-02-27 17:20:00 +08:00
|
|
|
bidx = dir_block_index(level, F2FS_I(dir)->i_dir_level,
|
|
|
|
le32_to_cpu(namehash) % nbucket);
|
2012-11-14 15:59:04 +08:00
|
|
|
end_block = bidx + nblock;
|
|
|
|
|
|
|
|
for (; bidx < end_block; bidx++) {
|
|
|
|
/* no need to allocate new dentry pages to all the indices */
|
2015-05-01 08:00:33 +08:00
|
|
|
dentry_page = find_data_page(dir, bidx);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (IS_ERR(dentry_page)) {
|
|
|
|
room = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-04-28 08:12:39 +08:00
|
|
|
de = find_in_block(dentry_page, fname, namehash, &max_slots,
|
|
|
|
res_page);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (de)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (max_slots >= s)
|
|
|
|
room = true;
|
|
|
|
f2fs_put_page(dentry_page, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!de && room && F2FS_I(dir)->chash != namehash) {
|
|
|
|
F2FS_I(dir)->chash = namehash;
|
|
|
|
F2FS_I(dir)->clevel = level;
|
|
|
|
}
|
|
|
|
|
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find an entry in the specified directory with the wanted name.
|
|
|
|
* It returns the page where the entry was found (as a parameter - res_page),
|
|
|
|
* and the entry itself. Page is returned mapped and unlocked.
|
|
|
|
* Entry is guaranteed to be valid.
|
|
|
|
*/
|
|
|
|
struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir,
|
|
|
|
struct qstr *child, struct page **res_page)
|
|
|
|
{
|
|
|
|
unsigned long npages = dir_blocks(dir);
|
|
|
|
struct f2fs_dir_entry *de = NULL;
|
|
|
|
unsigned int max_depth;
|
|
|
|
unsigned int level;
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_name fname;
|
2015-04-28 08:12:39 +08:00
|
|
|
int err;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2015-03-07 18:07:42 +08:00
|
|
|
*res_page = NULL;
|
|
|
|
|
2015-05-16 07:26:10 +08:00
|
|
|
err = fscrypt_setup_filename(dir, child, 1, &fname);
|
2015-04-28 08:12:39 +08:00
|
|
|
if (err)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (f2fs_has_inline_dentry(dir)) {
|
|
|
|
de = find_in_inline_dir(dir, &fname, res_page);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-09-24 18:19:10 +08:00
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
if (npages == 0)
|
2015-04-28 08:12:39 +08:00
|
|
|
goto out;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
max_depth = F2FS_I(dir)->i_current_depth;
|
2016-01-01 02:28:52 +08:00
|
|
|
if (unlikely(max_depth > MAX_DIR_HASH_DEPTH)) {
|
|
|
|
f2fs_msg(F2FS_I_SB(dir)->sb, KERN_WARNING,
|
|
|
|
"Corrupted max_depth of %lu: %u",
|
|
|
|
dir->i_ino, max_depth);
|
|
|
|
max_depth = MAX_DIR_HASH_DEPTH;
|
|
|
|
F2FS_I(dir)->i_current_depth = max_depth;
|
|
|
|
mark_inode_dirty(dir);
|
|
|
|
}
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
for (level = 0; level < max_depth; level++) {
|
2015-04-28 08:12:39 +08:00
|
|
|
de = find_in_level(dir, level, &fname, res_page);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (de)
|
|
|
|
break;
|
|
|
|
}
|
2015-04-28 08:12:39 +08:00
|
|
|
out:
|
2015-05-16 07:26:10 +08:00
|
|
|
fscrypt_free_filename(&fname);
|
2012-11-14 15:59:04 +08:00
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p)
|
|
|
|
{
|
2013-05-23 21:58:07 +08:00
|
|
|
struct page *page;
|
|
|
|
struct f2fs_dir_entry *de;
|
|
|
|
struct f2fs_dentry_block *dentry_blk;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2014-09-24 18:19:10 +08:00
|
|
|
if (f2fs_has_inline_dentry(dir))
|
|
|
|
return f2fs_parent_inline_dir(dir, p);
|
|
|
|
|
2015-10-10 06:11:38 +08:00
|
|
|
page = get_lock_data_page(dir, 0, false);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (IS_ERR(page))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dentry_blk = kmap(page);
|
|
|
|
de = &dentry_blk->dentry[1];
|
|
|
|
*p = page;
|
|
|
|
unlock_page(page);
|
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
|
|
|
ino_t f2fs_inode_by_name(struct inode *dir, struct qstr *qstr)
|
|
|
|
{
|
|
|
|
ino_t res = 0;
|
|
|
|
struct f2fs_dir_entry *de;
|
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
de = f2fs_find_entry(dir, qstr, &page);
|
|
|
|
if (de) {
|
|
|
|
res = le32_to_cpu(de->ino);
|
2014-11-22 08:36:28 +08:00
|
|
|
f2fs_dentry_kunmap(dir, page);
|
2012-11-14 15:59:04 +08:00
|
|
|
f2fs_put_page(page, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void f2fs_set_link(struct inode *dir, struct f2fs_dir_entry *de,
|
|
|
|
struct page *page, struct inode *inode)
|
|
|
|
{
|
2014-10-14 10:34:26 +08:00
|
|
|
enum page_type type = f2fs_has_inline_dentry(dir) ? NODE : DATA;
|
2012-11-14 15:59:04 +08:00
|
|
|
lock_page(page);
|
2016-01-20 23:43:51 +08:00
|
|
|
f2fs_wait_on_page_writeback(page, type, true);
|
2012-11-14 15:59:04 +08:00
|
|
|
de->ino = cpu_to_le32(inode->i_ino);
|
2015-03-31 06:07:16 +08:00
|
|
|
set_de_type(de, inode->i_mode);
|
2014-12-14 05:13:11 +08:00
|
|
|
f2fs_dentry_kunmap(dir, page);
|
2012-11-14 15:59:04 +08:00
|
|
|
set_page_dirty(page);
|
|
|
|
dir->i_mtime = dir->i_ctime = CURRENT_TIME;
|
|
|
|
mark_inode_dirty(dir);
|
f2fs: fix tracking parent inode number
Previously, f2fs didn't track the parent inode number correctly which is stored
in each f2fs_inode. In the case of the following scenario, a bug can be occured.
Let's suppose there are one directory, "/b", and two files, "/a" and "/b/a".
- pino of "/a" is ROOT_INO.
- pino of "/b/a" is DIR_B_INO.
Then,
# sync
: The inode pages of "/a" and "/b/a" contain the parent inode numbers as
ROOT_INO and DIR_B_INO respectively.
# mv /a /b/a
: The parent inode number of "/a" should be changed to DIR_B_INO, but f2fs
didn't do that. Ref. f2fs_set_link().
In order to fix this clearly, I added i_pino in f2fs_inode_info, and whenever
it needs to be changed like in f2fs_add_link() and f2fs_set_link(), it is
updated temporarily in f2fs_inode_info.
And later, f2fs_write_inode() stores the latest information to the inode pages.
For power-off-recovery, f2fs_sync_file() triggers simply f2fs_write_inode().
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-12-10 16:52:48 +08:00
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
f2fs_put_page(page, 1);
|
|
|
|
}
|
|
|
|
|
2013-05-20 09:10:29 +08:00
|
|
|
static void init_dent_inode(const struct qstr *name, struct page *ipage)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
2013-12-26 15:30:41 +08:00
|
|
|
struct f2fs_inode *ri;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2016-01-20 23:43:51 +08:00
|
|
|
f2fs_wait_on_page_writeback(ipage, NODE, true);
|
2014-04-29 16:28:32 +08:00
|
|
|
|
2013-01-26 05:01:21 +08:00
|
|
|
/* copy name info. to this inode page */
|
2013-12-26 15:30:41 +08:00
|
|
|
ri = F2FS_INODE(ipage);
|
|
|
|
ri->i_namelen = cpu_to_le32(name->len);
|
|
|
|
memcpy(ri->i_name, name->name, name->len);
|
2012-11-14 15:59:04 +08:00
|
|
|
set_page_dirty(ipage);
|
|
|
|
}
|
|
|
|
|
2015-04-30 08:02:18 +08:00
|
|
|
int update_dent_inode(struct inode *inode, struct inode *to,
|
|
|
|
const struct qstr *name)
|
2013-07-18 17:02:31 +08:00
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
|
2015-04-30 08:02:18 +08:00
|
|
|
if (file_enc_name(to))
|
|
|
|
return 0;
|
|
|
|
|
2014-09-03 06:31:18 +08:00
|
|
|
page = get_node_page(F2FS_I_SB(inode), inode->i_ino);
|
2013-07-18 17:02:31 +08:00
|
|
|
if (IS_ERR(page))
|
|
|
|
return PTR_ERR(page);
|
|
|
|
|
|
|
|
init_dent_inode(name, page);
|
|
|
|
f2fs_put_page(page, 1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-19 14:06:41 +08:00
|
|
|
void do_make_empty_dir(struct inode *inode, struct inode *parent,
|
|
|
|
struct f2fs_dentry_ptr *d)
|
|
|
|
{
|
|
|
|
struct f2fs_dir_entry *de;
|
|
|
|
|
|
|
|
de = &d->dentry[0];
|
|
|
|
de->name_len = cpu_to_le16(1);
|
|
|
|
de->hash_code = 0;
|
|
|
|
de->ino = cpu_to_le32(inode->i_ino);
|
|
|
|
memcpy(d->filename[0], ".", 1);
|
2015-03-31 06:07:16 +08:00
|
|
|
set_de_type(de, inode->i_mode);
|
2014-10-19 14:06:41 +08:00
|
|
|
|
|
|
|
de = &d->dentry[1];
|
|
|
|
de->hash_code = 0;
|
|
|
|
de->name_len = cpu_to_le16(2);
|
|
|
|
de->ino = cpu_to_le32(parent->i_ino);
|
|
|
|
memcpy(d->filename[1], "..", 2);
|
2015-03-31 06:23:45 +08:00
|
|
|
set_de_type(de, parent->i_mode);
|
2014-10-19 14:06:41 +08:00
|
|
|
|
|
|
|
test_and_set_bit_le(0, (void *)d->bitmap);
|
|
|
|
test_and_set_bit_le(1, (void *)d->bitmap);
|
|
|
|
}
|
|
|
|
|
2013-05-20 09:10:29 +08:00
|
|
|
static int make_empty_dir(struct inode *inode,
|
|
|
|
struct inode *parent, struct page *page)
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
{
|
|
|
|
struct page *dentry_page;
|
|
|
|
struct f2fs_dentry_block *dentry_blk;
|
2014-10-19 14:06:41 +08:00
|
|
|
struct f2fs_dentry_ptr d;
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
|
2014-09-24 18:19:10 +08:00
|
|
|
if (f2fs_has_inline_dentry(inode))
|
|
|
|
return make_empty_inline_dir(inode, parent, page);
|
|
|
|
|
2013-05-20 09:10:29 +08:00
|
|
|
dentry_page = get_new_data_page(inode, page, 0, true);
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
if (IS_ERR(dentry_page))
|
|
|
|
return PTR_ERR(dentry_page);
|
|
|
|
|
2014-06-27 17:57:04 +08:00
|
|
|
dentry_blk = kmap_atomic(dentry_page);
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
|
2015-04-28 07:26:24 +08:00
|
|
|
make_dentry_ptr(NULL, &d, (void *)dentry_blk, 1);
|
2014-10-19 14:06:41 +08:00
|
|
|
do_make_empty_dir(inode, parent, &d);
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
|
2014-06-27 17:57:04 +08:00
|
|
|
kunmap_atomic(dentry_blk);
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
|
|
|
|
set_page_dirty(dentry_page);
|
|
|
|
f2fs_put_page(dentry_page, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-14 10:42:53 +08:00
|
|
|
struct page *init_inode_metadata(struct inode *inode, struct inode *dir,
|
|
|
|
const struct qstr *name, struct page *dpage)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
2013-05-20 09:10:29 +08:00
|
|
|
struct page *page;
|
|
|
|
int err;
|
|
|
|
|
2014-06-21 12:37:02 +08:00
|
|
|
if (is_inode_flag_set(F2FS_I(inode), FI_NEW_INODE)) {
|
2014-06-21 12:44:02 +08:00
|
|
|
page = new_inode_page(inode);
|
2013-05-20 09:10:29 +08:00
|
|
|
if (IS_ERR(page))
|
|
|
|
return page;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
if (S_ISDIR(inode->i_mode)) {
|
2013-05-20 09:10:29 +08:00
|
|
|
err = make_empty_dir(inode, dir, page);
|
|
|
|
if (err)
|
|
|
|
goto error;
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
2014-10-14 10:42:53 +08:00
|
|
|
err = f2fs_init_acl(inode, dir, page, dpage);
|
2013-05-20 09:10:29 +08:00
|
|
|
if (err)
|
2013-12-27 16:04:17 +08:00
|
|
|
goto put_error;
|
2013-05-20 09:10:29 +08:00
|
|
|
|
2013-06-03 18:46:19 +08:00
|
|
|
err = f2fs_init_security(inode, dir, name, page);
|
|
|
|
if (err)
|
2013-12-27 16:04:17 +08:00
|
|
|
goto put_error;
|
2015-04-22 11:39:58 +08:00
|
|
|
|
|
|
|
if (f2fs_encrypted_inode(dir) && f2fs_may_encrypt(inode)) {
|
2015-05-16 07:26:10 +08:00
|
|
|
err = fscrypt_inherit_context(dir, inode, page, false);
|
2015-04-22 11:39:58 +08:00
|
|
|
if (err)
|
|
|
|
goto put_error;
|
|
|
|
}
|
2012-11-14 15:59:04 +08:00
|
|
|
} else {
|
2014-09-03 06:31:18 +08:00
|
|
|
page = get_node_page(F2FS_I_SB(dir), inode->i_ino);
|
2013-05-20 09:10:29 +08:00
|
|
|
if (IS_ERR(page))
|
|
|
|
return page;
|
|
|
|
|
|
|
|
set_cold_node(inode, page);
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
2013-05-20 09:10:29 +08:00
|
|
|
|
2014-06-21 12:37:02 +08:00
|
|
|
if (name)
|
|
|
|
init_dent_inode(name, page);
|
2013-05-20 09:10:29 +08:00
|
|
|
|
2013-05-28 11:25:47 +08:00
|
|
|
/*
|
|
|
|
* This file should be checkpointed during fsync.
|
|
|
|
* We lost i_pino from now on.
|
|
|
|
*/
|
2012-11-14 15:59:04 +08:00
|
|
|
if (is_inode_flag_set(F2FS_I(inode), FI_INC_LINK)) {
|
2013-06-14 07:52:35 +08:00
|
|
|
file_lost_pino(inode);
|
2014-06-19 16:23:19 +08:00
|
|
|
/*
|
|
|
|
* If link the tmpfile to alias through linkat path,
|
|
|
|
* we should remove this inode from orphan list.
|
|
|
|
*/
|
|
|
|
if (inode->i_nlink == 0)
|
2014-09-03 06:31:18 +08:00
|
|
|
remove_orphan_inode(F2FS_I_SB(dir), inode->i_ino);
|
2012-11-14 15:59:04 +08:00
|
|
|
inc_nlink(inode);
|
|
|
|
}
|
2013-05-20 09:10:29 +08:00
|
|
|
return page;
|
|
|
|
|
2013-12-27 16:04:17 +08:00
|
|
|
put_error:
|
2013-05-20 09:10:29 +08:00
|
|
|
f2fs_put_page(page, 1);
|
2014-06-24 10:34:00 +08:00
|
|
|
error:
|
2014-02-05 10:16:39 +08:00
|
|
|
/* once the failed inode becomes a bad inode, i_mode is S_IFREG */
|
|
|
|
truncate_inode_pages(&inode->i_data, 0);
|
2014-08-15 07:32:54 +08:00
|
|
|
truncate_blocks(inode, 0, false);
|
2015-12-16 13:09:20 +08:00
|
|
|
remove_dirty_inode(inode);
|
2013-05-20 09:10:29 +08:00
|
|
|
remove_inode_page(inode);
|
|
|
|
return ERR_PTR(err);
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
2014-09-24 18:17:04 +08:00
|
|
|
void update_parent_metadata(struct inode *dir, struct inode *inode,
|
2012-11-14 15:59:04 +08:00
|
|
|
unsigned int current_depth)
|
|
|
|
{
|
2015-03-31 06:07:16 +08:00
|
|
|
if (inode && is_inode_flag_set(F2FS_I(inode), FI_NEW_INODE)) {
|
2012-11-14 15:59:04 +08:00
|
|
|
if (S_ISDIR(inode->i_mode)) {
|
|
|
|
inc_nlink(dir);
|
2013-06-07 21:08:23 +08:00
|
|
|
set_inode_flag(F2FS_I(dir), FI_UPDATE_DIR);
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
clear_inode_flag(F2FS_I(inode), FI_NEW_INODE);
|
|
|
|
}
|
|
|
|
dir->i_mtime = dir->i_ctime = CURRENT_TIME;
|
2014-01-21 12:32:12 +08:00
|
|
|
mark_inode_dirty(dir);
|
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
if (F2FS_I(dir)->i_current_depth != current_depth) {
|
|
|
|
F2FS_I(dir)->i_current_depth = current_depth;
|
2013-06-07 21:08:23 +08:00
|
|
|
set_inode_flag(F2FS_I(dir), FI_UPDATE_DIR);
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
2015-03-31 06:07:16 +08:00
|
|
|
if (inode && is_inode_flag_set(F2FS_I(inode), FI_INC_LINK))
|
2012-11-14 15:59:04 +08:00
|
|
|
clear_inode_flag(F2FS_I(inode), FI_INC_LINK);
|
|
|
|
}
|
|
|
|
|
2014-10-14 07:28:13 +08:00
|
|
|
int room_for_filename(const void *bitmap, int slots, int max_slots)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
|
|
|
int bit_start = 0;
|
|
|
|
int zero_start, zero_end;
|
|
|
|
next:
|
2014-10-14 07:28:13 +08:00
|
|
|
zero_start = find_next_zero_bit_le(bitmap, max_slots, bit_start);
|
|
|
|
if (zero_start >= max_slots)
|
|
|
|
return max_slots;
|
|
|
|
|
|
|
|
zero_end = find_next_bit_le(bitmap, max_slots, zero_start);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (zero_end - zero_start >= slots)
|
|
|
|
return zero_start;
|
|
|
|
|
|
|
|
bit_start = zero_end + 1;
|
|
|
|
|
2014-10-14 07:28:13 +08:00
|
|
|
if (zero_end + 1 >= max_slots)
|
|
|
|
return max_slots;
|
2012-11-14 15:59:04 +08:00
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
2015-03-31 06:07:16 +08:00
|
|
|
void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *d,
|
2015-02-16 16:17:20 +08:00
|
|
|
const struct qstr *name, f2fs_hash_t name_hash,
|
|
|
|
unsigned int bit_pos)
|
|
|
|
{
|
|
|
|
struct f2fs_dir_entry *de;
|
|
|
|
int slots = GET_DENTRY_SLOTS(name->len);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
de = &d->dentry[bit_pos];
|
|
|
|
de->hash_code = name_hash;
|
|
|
|
de->name_len = cpu_to_le16(name->len);
|
|
|
|
memcpy(d->filename[bit_pos], name->name, name->len);
|
2015-03-31 06:07:16 +08:00
|
|
|
de->ino = cpu_to_le32(ino);
|
|
|
|
set_de_type(de, mode);
|
2016-02-13 06:29:28 +08:00
|
|
|
for (i = 0; i < slots; i++) {
|
2015-02-16 16:17:20 +08:00
|
|
|
test_and_set_bit_le(bit_pos + i, (void *)d->bitmap);
|
2016-02-13 06:29:28 +08:00
|
|
|
/* avoid wrong garbage data for readdir */
|
|
|
|
if (i)
|
|
|
|
(de + i)->name_len = 0;
|
|
|
|
}
|
2015-02-16 16:17:20 +08:00
|
|
|
}
|
|
|
|
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
/*
|
2013-12-21 18:02:14 +08:00
|
|
|
* Caller should grab and release a rwsem by calling f2fs_lock_op() and
|
|
|
|
* f2fs_unlock_op().
|
f2fs: introduce a new global lock scheme
In the previous version, f2fs uses global locks according to the usage types,
such as directory operations, block allocation, block write, and so on.
Reference the following lock types in f2fs.h.
enum lock_type {
RENAME, /* for renaming operations */
DENTRY_OPS, /* for directory operations */
DATA_WRITE, /* for data write */
DATA_NEW, /* for data allocation */
DATA_TRUNC, /* for data truncate */
NODE_NEW, /* for node allocation */
NODE_TRUNC, /* for node truncate */
NODE_WRITE, /* for node write */
NR_LOCK_TYPE,
};
In that case, we lose the performance under the multi-threading environment,
since every types of operations must be conducted one at a time.
In order to address the problem, let's share the locks globally with a mutex
array regardless of any types.
So, let users grab a mutex and perform their jobs in parallel as much as
possbile.
For this, I propose a new global lock scheme as follows.
0. Data structure
- f2fs_sb_info -> mutex_lock[NR_GLOBAL_LOCKS]
- f2fs_sb_info -> node_write
1. mutex_lock_op(sbi)
- try to get an avaiable lock from the array.
- returns the index of the gottern lock variable.
2. mutex_unlock_op(sbi, index of the lock)
- unlock the given index of the lock.
3. mutex_lock_all(sbi)
- grab all the locks in the array before the checkpoint.
4. mutex_unlock_all(sbi)
- release all the locks in the array after checkpoint.
5. block_operations()
- call mutex_lock_all()
- sync_dirty_dir_inodes()
- grab node_write
- sync_node_pages()
Note that,
the pairs of mutex_lock_op()/mutex_unlock_op() and
mutex_lock_all()/mutex_unlock_all() should be used together.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-11-22 15:21:29 +08:00
|
|
|
*/
|
2014-01-18 04:44:39 +08:00
|
|
|
int __f2fs_add_link(struct inode *dir, const struct qstr *name,
|
2015-03-31 06:07:16 +08:00
|
|
|
struct inode *inode, nid_t ino, umode_t mode)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
|
|
|
unsigned int bit_pos;
|
|
|
|
unsigned int level;
|
|
|
|
unsigned int current_depth;
|
|
|
|
unsigned long bidx, block;
|
|
|
|
f2fs_hash_t dentry_hash;
|
|
|
|
unsigned int nbucket, nblock;
|
|
|
|
struct page *dentry_page = NULL;
|
|
|
|
struct f2fs_dentry_block *dentry_blk = NULL;
|
2015-02-16 16:17:20 +08:00
|
|
|
struct f2fs_dentry_ptr d;
|
2015-03-31 06:07:16 +08:00
|
|
|
struct page *page = NULL;
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_name fname;
|
2015-04-28 05:51:02 +08:00
|
|
|
struct qstr new_name;
|
|
|
|
int slots, err;
|
|
|
|
|
2015-05-16 07:26:10 +08:00
|
|
|
err = fscrypt_setup_filename(dir, name, 0, &fname);
|
2015-04-28 05:51:02 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
new_name.name = fname_name(&fname);
|
|
|
|
new_name.len = fname_len(&fname);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2014-09-24 18:19:10 +08:00
|
|
|
if (f2fs_has_inline_dentry(dir)) {
|
2015-04-28 05:51:02 +08:00
|
|
|
err = f2fs_add_inline_entry(dir, &new_name, inode, ino, mode);
|
2014-09-24 18:19:10 +08:00
|
|
|
if (!err || err != -EAGAIN)
|
2015-04-28 05:51:02 +08:00
|
|
|
goto out;
|
2014-09-24 18:19:10 +08:00
|
|
|
else
|
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
level = 0;
|
2015-04-28 05:51:02 +08:00
|
|
|
slots = GET_DENTRY_SLOTS(new_name.len);
|
|
|
|
dentry_hash = f2fs_dentry_hash(&new_name);
|
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
current_depth = F2FS_I(dir)->i_current_depth;
|
|
|
|
if (F2FS_I(dir)->chash == dentry_hash) {
|
|
|
|
level = F2FS_I(dir)->clevel;
|
|
|
|
F2FS_I(dir)->chash = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
start:
|
2015-04-28 05:51:02 +08:00
|
|
|
if (unlikely(current_depth == MAX_DIR_HASH_DEPTH)) {
|
|
|
|
err = -ENOSPC;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
/* Increase the depth, if required */
|
|
|
|
if (level == current_depth)
|
|
|
|
++current_depth;
|
|
|
|
|
2014-02-27 17:20:00 +08:00
|
|
|
nbucket = dir_buckets(level, F2FS_I(dir)->i_dir_level);
|
2012-11-14 15:59:04 +08:00
|
|
|
nblock = bucket_blocks(level);
|
|
|
|
|
2014-02-27 17:20:00 +08:00
|
|
|
bidx = dir_block_index(level, F2FS_I(dir)->i_dir_level,
|
|
|
|
(le32_to_cpu(dentry_hash) % nbucket));
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
for (block = bidx; block <= (bidx + nblock - 1); block++) {
|
2013-05-20 08:55:50 +08:00
|
|
|
dentry_page = get_new_data_page(dir, NULL, block, true);
|
2015-04-28 05:51:02 +08:00
|
|
|
if (IS_ERR(dentry_page)) {
|
|
|
|
err = PTR_ERR(dentry_page);
|
|
|
|
goto out;
|
|
|
|
}
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
dentry_blk = kmap(dentry_page);
|
2014-10-14 07:28:13 +08:00
|
|
|
bit_pos = room_for_filename(&dentry_blk->dentry_bitmap,
|
|
|
|
slots, NR_DENTRY_IN_BLOCK);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (bit_pos < NR_DENTRY_IN_BLOCK)
|
|
|
|
goto add_dentry;
|
|
|
|
|
|
|
|
kunmap(dentry_page);
|
|
|
|
f2fs_put_page(dentry_page, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move to next level to find the empty slot for new dentry */
|
|
|
|
++level;
|
|
|
|
goto start;
|
|
|
|
add_dentry:
|
2016-01-20 23:43:51 +08:00
|
|
|
f2fs_wait_on_page_writeback(dentry_page, DATA, true);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2015-03-31 06:07:16 +08:00
|
|
|
if (inode) {
|
|
|
|
down_write(&F2FS_I(inode)->i_sem);
|
2015-04-28 05:51:02 +08:00
|
|
|
page = init_inode_metadata(inode, dir, &new_name, NULL);
|
2015-03-31 06:07:16 +08:00
|
|
|
if (IS_ERR(page)) {
|
|
|
|
err = PTR_ERR(page);
|
|
|
|
goto fail;
|
|
|
|
}
|
2015-04-30 08:02:18 +08:00
|
|
|
if (f2fs_encrypted_inode(dir))
|
|
|
|
file_set_enc_name(inode);
|
2013-05-20 09:10:29 +08:00
|
|
|
}
|
2015-02-16 16:17:20 +08:00
|
|
|
|
2015-04-28 07:26:24 +08:00
|
|
|
make_dentry_ptr(NULL, &d, (void *)dentry_blk, 1);
|
2015-04-28 05:51:02 +08:00
|
|
|
f2fs_update_dentry(ino, mode, &d, &new_name, dentry_hash, bit_pos);
|
2015-02-16 16:17:20 +08:00
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
set_page_dirty(dentry_page);
|
f2fs: fix tracking parent inode number
Previously, f2fs didn't track the parent inode number correctly which is stored
in each f2fs_inode. In the case of the following scenario, a bug can be occured.
Let's suppose there are one directory, "/b", and two files, "/a" and "/b/a".
- pino of "/a" is ROOT_INO.
- pino of "/b/a" is DIR_B_INO.
Then,
# sync
: The inode pages of "/a" and "/b/a" contain the parent inode numbers as
ROOT_INO and DIR_B_INO respectively.
# mv /a /b/a
: The parent inode number of "/a" should be changed to DIR_B_INO, but f2fs
didn't do that. Ref. f2fs_set_link().
In order to fix this clearly, I added i_pino in f2fs_inode_info, and whenever
it needs to be changed like in f2fs_add_link() and f2fs_set_link(), it is
updated temporarily in f2fs_inode_info.
And later, f2fs_write_inode() stores the latest information to the inode pages.
For power-off-recovery, f2fs_sync_file() triggers simply f2fs_write_inode().
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
2012-12-10 16:52:48 +08:00
|
|
|
|
2015-03-31 06:07:16 +08:00
|
|
|
if (inode) {
|
|
|
|
/* we don't need to mark_inode_dirty now */
|
|
|
|
F2FS_I(inode)->i_pino = dir->i_ino;
|
|
|
|
update_inode(inode, page);
|
|
|
|
f2fs_put_page(page, 1);
|
|
|
|
}
|
2013-05-20 09:10:29 +08:00
|
|
|
|
|
|
|
update_parent_metadata(dir, inode, current_depth);
|
2012-11-14 15:59:04 +08:00
|
|
|
fail:
|
2015-03-31 06:07:16 +08:00
|
|
|
if (inode)
|
|
|
|
up_write(&F2FS_I(inode)->i_sem);
|
2014-03-20 18:10:08 +08:00
|
|
|
|
2014-02-03 16:24:51 +08:00
|
|
|
if (is_inode_flag_set(F2FS_I(dir), FI_UPDATE_DIR)) {
|
|
|
|
update_inode_page(dir);
|
|
|
|
clear_inode_flag(F2FS_I(dir), FI_UPDATE_DIR);
|
|
|
|
}
|
2012-11-14 15:59:04 +08:00
|
|
|
kunmap(dentry_page);
|
|
|
|
f2fs_put_page(dentry_page, 1);
|
2015-04-28 05:51:02 +08:00
|
|
|
out:
|
2015-05-16 07:26:10 +08:00
|
|
|
fscrypt_free_filename(&fname);
|
2016-01-09 08:57:48 +08:00
|
|
|
f2fs_update_time(F2FS_I_SB(dir), REQ_TIME);
|
2012-11-14 15:59:04 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2014-06-21 12:37:02 +08:00
|
|
|
int f2fs_do_tmpfile(struct inode *inode, struct inode *dir)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
down_write(&F2FS_I(inode)->i_sem);
|
2014-10-14 10:42:53 +08:00
|
|
|
page = init_inode_metadata(inode, dir, NULL, NULL);
|
2014-06-21 12:37:02 +08:00
|
|
|
if (IS_ERR(page)) {
|
|
|
|
err = PTR_ERR(page);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
/* we don't need to mark_inode_dirty now */
|
|
|
|
update_inode(inode, page);
|
|
|
|
f2fs_put_page(page, 1);
|
|
|
|
|
|
|
|
clear_inode_flag(F2FS_I(inode), FI_NEW_INODE);
|
|
|
|
fail:
|
|
|
|
up_write(&F2FS_I(inode)->i_sem);
|
2016-01-09 08:57:48 +08:00
|
|
|
f2fs_update_time(F2FS_I_SB(inode), REQ_TIME);
|
2014-06-21 12:37:02 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2014-09-24 18:17:04 +08:00
|
|
|
void f2fs_drop_nlink(struct inode *dir, struct inode *inode, struct page *page)
|
|
|
|
{
|
|
|
|
struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
|
|
|
|
|
|
|
|
down_write(&F2FS_I(inode)->i_sem);
|
|
|
|
|
|
|
|
if (S_ISDIR(inode->i_mode)) {
|
|
|
|
drop_nlink(dir);
|
|
|
|
if (page)
|
|
|
|
update_inode(dir, page);
|
|
|
|
else
|
|
|
|
update_inode_page(dir);
|
|
|
|
}
|
|
|
|
inode->i_ctime = CURRENT_TIME;
|
|
|
|
|
|
|
|
drop_nlink(inode);
|
|
|
|
if (S_ISDIR(inode->i_mode)) {
|
|
|
|
drop_nlink(inode);
|
|
|
|
i_size_write(inode, 0);
|
|
|
|
}
|
|
|
|
up_write(&F2FS_I(inode)->i_sem);
|
|
|
|
update_inode_page(inode);
|
|
|
|
|
|
|
|
if (inode->i_nlink == 0)
|
|
|
|
add_orphan_inode(sbi, inode->i_ino);
|
|
|
|
else
|
|
|
|
release_orphan_inode(sbi);
|
|
|
|
}
|
|
|
|
|
2012-11-29 12:28:09 +08:00
|
|
|
/*
|
2014-08-06 22:22:50 +08:00
|
|
|
* It only removes the dentry from the dentry page, corresponding name
|
2012-11-14 15:59:04 +08:00
|
|
|
* entry in name page does not need to be touched during deletion.
|
|
|
|
*/
|
|
|
|
void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
|
2014-09-24 18:17:04 +08:00
|
|
|
struct inode *dir, struct inode *inode)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
|
|
|
struct f2fs_dentry_block *dentry_blk;
|
|
|
|
unsigned int bit_pos;
|
2012-12-08 13:54:50 +08:00
|
|
|
int slots = GET_DENTRY_SLOTS(le16_to_cpu(dentry->name_len));
|
2012-11-14 15:59:04 +08:00
|
|
|
int i;
|
|
|
|
|
2016-01-09 08:57:48 +08:00
|
|
|
f2fs_update_time(F2FS_I_SB(dir), REQ_TIME);
|
|
|
|
|
2014-09-24 18:19:10 +08:00
|
|
|
if (f2fs_has_inline_dentry(dir))
|
|
|
|
return f2fs_delete_inline_entry(dentry, page, dir, inode);
|
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
lock_page(page);
|
2016-01-20 23:43:51 +08:00
|
|
|
f2fs_wait_on_page_writeback(page, DATA, true);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2014-06-27 17:57:04 +08:00
|
|
|
dentry_blk = page_address(page);
|
|
|
|
bit_pos = dentry - dentry_blk->dentry;
|
2012-11-14 15:59:04 +08:00
|
|
|
for (i = 0; i < slots; i++)
|
2014-10-23 20:40:20 +08:00
|
|
|
clear_bit_le(bit_pos + i, &dentry_blk->dentry_bitmap);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
/* Let's check and deallocate this dentry page */
|
|
|
|
bit_pos = find_next_bit_le(&dentry_blk->dentry_bitmap,
|
|
|
|
NR_DENTRY_IN_BLOCK,
|
|
|
|
0);
|
|
|
|
kunmap(page); /* kunmap - pair of f2fs_find_entry */
|
|
|
|
set_page_dirty(page);
|
|
|
|
|
|
|
|
dir->i_ctime = dir->i_mtime = CURRENT_TIME;
|
|
|
|
|
2014-09-24 18:17:04 +08:00
|
|
|
if (inode)
|
|
|
|
f2fs_drop_nlink(dir, inode, NULL);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2015-08-12 17:48:21 +08:00
|
|
|
if (bit_pos == NR_DENTRY_IN_BLOCK &&
|
|
|
|
!truncate_hole(dir, page->index, page->index + 1)) {
|
2012-11-14 15:59:04 +08:00
|
|
|
clear_page_dirty_for_io(page);
|
2015-02-26 11:25:01 +08:00
|
|
|
ClearPagePrivate(page);
|
2012-11-14 15:59:04 +08:00
|
|
|
ClearPageUptodate(page);
|
2014-09-13 06:53:45 +08:00
|
|
|
inode_dec_dirty_pages(dir);
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
2012-12-08 13:54:35 +08:00
|
|
|
f2fs_put_page(page, 1);
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool f2fs_empty_dir(struct inode *dir)
|
|
|
|
{
|
|
|
|
unsigned long bidx;
|
|
|
|
struct page *dentry_page;
|
|
|
|
unsigned int bit_pos;
|
2014-09-24 18:17:04 +08:00
|
|
|
struct f2fs_dentry_block *dentry_blk;
|
2012-11-14 15:59:04 +08:00
|
|
|
unsigned long nblock = dir_blocks(dir);
|
|
|
|
|
2014-09-24 18:19:10 +08:00
|
|
|
if (f2fs_has_inline_dentry(dir))
|
|
|
|
return f2fs_empty_inline_dir(dir);
|
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
for (bidx = 0; bidx < nblock; bidx++) {
|
2015-10-10 06:11:38 +08:00
|
|
|
dentry_page = get_lock_data_page(dir, bidx, false);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (IS_ERR(dentry_page)) {
|
|
|
|
if (PTR_ERR(dentry_page) == -ENOENT)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-06-27 17:57:04 +08:00
|
|
|
dentry_blk = kmap_atomic(dentry_page);
|
2012-11-14 15:59:04 +08:00
|
|
|
if (bidx == 0)
|
|
|
|
bit_pos = 2;
|
|
|
|
else
|
|
|
|
bit_pos = 0;
|
|
|
|
bit_pos = find_next_bit_le(&dentry_blk->dentry_bitmap,
|
|
|
|
NR_DENTRY_IN_BLOCK,
|
|
|
|
bit_pos);
|
2014-06-27 17:57:04 +08:00
|
|
|
kunmap_atomic(dentry_blk);
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
f2fs_put_page(dentry_page, 1);
|
|
|
|
|
|
|
|
if (bit_pos < NR_DENTRY_IN_BLOCK)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-19 13:52:52 +08:00
|
|
|
bool f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d,
|
2015-05-16 07:26:10 +08:00
|
|
|
unsigned int start_pos, struct fscrypt_str *fstr)
|
2014-10-16 12:29:51 +08:00
|
|
|
{
|
|
|
|
unsigned char d_type = DT_UNKNOWN;
|
|
|
|
unsigned int bit_pos;
|
|
|
|
struct f2fs_dir_entry *de = NULL;
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_str de_name = FSTR_INIT(NULL, 0);
|
2014-10-16 12:29:51 +08:00
|
|
|
|
2014-10-19 13:52:52 +08:00
|
|
|
bit_pos = ((unsigned long)ctx->pos % d->max);
|
2014-10-16 12:29:51 +08:00
|
|
|
|
2014-10-19 13:52:52 +08:00
|
|
|
while (bit_pos < d->max) {
|
|
|
|
bit_pos = find_next_bit_le(d->bitmap, d->max, bit_pos);
|
|
|
|
if (bit_pos >= d->max)
|
2014-10-16 12:29:51 +08:00
|
|
|
break;
|
|
|
|
|
2014-10-19 13:52:52 +08:00
|
|
|
de = &d->dentry[bit_pos];
|
2016-02-13 06:29:28 +08:00
|
|
|
if (de->name_len == 0) {
|
|
|
|
bit_pos++;
|
|
|
|
ctx->pos = start_pos + bit_pos;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-10-16 12:29:51 +08:00
|
|
|
if (de->file_type < F2FS_FT_MAX)
|
|
|
|
d_type = f2fs_filetype_table[de->file_type];
|
|
|
|
else
|
|
|
|
d_type = DT_UNKNOWN;
|
2015-04-28 07:26:24 +08:00
|
|
|
|
|
|
|
de_name.name = d->filename[bit_pos];
|
|
|
|
de_name.len = le16_to_cpu(de->name_len);
|
|
|
|
|
|
|
|
if (f2fs_encrypted_inode(d->inode)) {
|
|
|
|
int save_len = fstr->len;
|
|
|
|
int ret;
|
|
|
|
|
2015-09-04 04:38:23 +08:00
|
|
|
de_name.name = kmalloc(de_name.len, GFP_NOFS);
|
|
|
|
if (!de_name.name)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
memcpy(de_name.name, d->filename[bit_pos], de_name.len);
|
|
|
|
|
2015-05-16 07:26:10 +08:00
|
|
|
ret = fscrypt_fname_disk_to_usr(d->inode,
|
|
|
|
(u32)de->hash_code, 0,
|
|
|
|
&de_name, fstr);
|
2015-09-04 04:38:23 +08:00
|
|
|
kfree(de_name.name);
|
2015-04-28 07:26:24 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return true;
|
2015-09-04 04:38:23 +08:00
|
|
|
|
|
|
|
de_name = *fstr;
|
|
|
|
fstr->len = save_len;
|
2015-04-28 07:26:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!dir_emit(ctx, de_name.name, de_name.len,
|
2014-10-16 12:29:51 +08:00
|
|
|
le32_to_cpu(de->ino), d_type))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
bit_pos += GET_DENTRY_SLOTS(le16_to_cpu(de->name_len));
|
|
|
|
ctx->pos = start_pos + bit_pos;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-18 06:02:17 +08:00
|
|
|
static int f2fs_readdir(struct file *file, struct dir_context *ctx)
|
2012-11-14 15:59:04 +08:00
|
|
|
{
|
2013-01-24 06:07:38 +08:00
|
|
|
struct inode *inode = file_inode(file);
|
2012-11-14 15:59:04 +08:00
|
|
|
unsigned long npages = dir_blocks(inode);
|
|
|
|
struct f2fs_dentry_block *dentry_blk = NULL;
|
|
|
|
struct page *dentry_page = NULL;
|
2014-04-28 17:59:43 +08:00
|
|
|
struct file_ra_state *ra = &file->f_ra;
|
2013-05-18 06:02:17 +08:00
|
|
|
unsigned int n = ((unsigned long)ctx->pos / NR_DENTRY_IN_BLOCK);
|
2014-10-19 13:52:52 +08:00
|
|
|
struct f2fs_dentry_ptr d;
|
2015-05-16 07:26:10 +08:00
|
|
|
struct fscrypt_str fstr = FSTR_INIT(NULL, 0);
|
2015-04-28 07:26:24 +08:00
|
|
|
int err = 0;
|
2012-11-14 15:59:04 +08:00
|
|
|
|
2015-04-28 07:26:24 +08:00
|
|
|
if (f2fs_encrypted_inode(inode)) {
|
2015-05-16 07:26:10 +08:00
|
|
|
err = fscrypt_get_encryption_info(inode);
|
2015-05-20 13:26:54 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2015-05-16 07:26:10 +08:00
|
|
|
err = fscrypt_fname_alloc_buffer(inode, F2FS_NAME_LEN, &fstr);
|
2015-04-28 07:26:24 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f2fs_has_inline_dentry(inode)) {
|
|
|
|
err = f2fs_read_inline_dir(file, ctx, &fstr);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-09-24 18:19:10 +08:00
|
|
|
|
2014-04-28 17:59:43 +08:00
|
|
|
/* readahead for multi pages of dir */
|
|
|
|
if (npages - n > 1 && !ra_has_index(ra, n))
|
|
|
|
page_cache_sync_readahead(inode->i_mapping, ra, file, n,
|
|
|
|
min(npages - n, (pgoff_t)MAX_DIR_RA_PAGES));
|
|
|
|
|
2014-01-18 04:44:39 +08:00
|
|
|
for (; n < npages; n++) {
|
2015-10-10 06:11:38 +08:00
|
|
|
dentry_page = get_lock_data_page(inode, n, false);
|
2015-11-19 16:09:07 +08:00
|
|
|
if (IS_ERR(dentry_page)) {
|
|
|
|
err = PTR_ERR(dentry_page);
|
|
|
|
if (err == -ENOENT)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
goto out;
|
|
|
|
}
|
2012-11-14 15:59:04 +08:00
|
|
|
|
|
|
|
dentry_blk = kmap(dentry_page);
|
2013-07-05 16:28:12 +08:00
|
|
|
|
2015-04-28 07:26:24 +08:00
|
|
|
make_dentry_ptr(inode, &d, (void *)dentry_blk, 1);
|
2014-10-19 13:52:52 +08:00
|
|
|
|
2015-12-01 11:41:50 +08:00
|
|
|
if (f2fs_fill_dentries(ctx, &d, n * NR_DENTRY_IN_BLOCK, &fstr)) {
|
|
|
|
kunmap(dentry_page);
|
|
|
|
f2fs_put_page(dentry_page, 1);
|
|
|
|
break;
|
|
|
|
}
|
2014-10-16 12:29:51 +08:00
|
|
|
|
2013-05-18 06:02:17 +08:00
|
|
|
ctx->pos = (n + 1) * NR_DENTRY_IN_BLOCK;
|
2012-11-14 15:59:04 +08:00
|
|
|
kunmap(dentry_page);
|
|
|
|
f2fs_put_page(dentry_page, 1);
|
|
|
|
}
|
2015-04-28 07:26:24 +08:00
|
|
|
out:
|
2015-05-16 07:26:10 +08:00
|
|
|
fscrypt_fname_free_buffer(&fstr);
|
2015-04-28 07:26:24 +08:00
|
|
|
return err;
|
2012-11-14 15:59:04 +08:00
|
|
|
}
|
|
|
|
|
2016-02-14 18:56:55 +08:00
|
|
|
static int f2fs_dir_open(struct inode *inode, struct file *filp)
|
|
|
|
{
|
|
|
|
if (f2fs_encrypted_inode(inode))
|
2015-05-16 07:26:10 +08:00
|
|
|
return fscrypt_get_encryption_info(inode) ? -EACCES : 0;
|
2016-02-14 18:56:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-14 15:59:04 +08:00
|
|
|
const struct file_operations f2fs_dir_operations = {
|
|
|
|
.llseek = generic_file_llseek,
|
|
|
|
.read = generic_read_dir,
|
2013-05-18 06:02:17 +08:00
|
|
|
.iterate = f2fs_readdir,
|
2012-11-14 15:59:04 +08:00
|
|
|
.fsync = f2fs_sync_file,
|
2016-02-14 18:56:55 +08:00
|
|
|
.open = f2fs_dir_open,
|
2012-11-14 15:59:04 +08:00
|
|
|
.unlocked_ioctl = f2fs_ioctl,
|
2015-05-12 16:05:57 +08:00
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
.compat_ioctl = f2fs_compat_ioctl,
|
|
|
|
#endif
|
2012-11-14 15:59:04 +08:00
|
|
|
};
|