bcachefs-tools/libbcachefs/dirent.c

428 lines
11 KiB
C
Raw Normal View History

2017-01-08 12:13:18 +03:00
#include "bcachefs.h"
2017-01-08 12:13:18 +03:00
#include "bkey_methods.h"
#include "btree_update.h"
#include "extents.h"
#include "dirent.h"
#include "fs.h"
#include "keylist.h"
#include "str_hash.h"
#include <linux/dcache.h>
unsigned bch2_dirent_name_bytes(struct bkey_s_c_dirent d)
2017-01-08 12:13:18 +03:00
{
unsigned len = bkey_val_bytes(d.k) - sizeof(struct bch_dirent);
while (len && !d.v->d_name[len - 1])
--len;
return len;
}
static u64 bch2_dirent_hash(const struct bch_hash_info *info,
const struct qstr *name)
2017-01-08 12:13:18 +03:00
{
2016-10-04 06:22:17 +03:00
struct bch_str_hash_ctx ctx;
bch2_str_hash_init(&ctx, info);
bch2_str_hash_update(&ctx, info, name->name, name->len);
2016-10-04 06:22:17 +03:00
/* [0,2) reserved for dots */
return max_t(u64, bch2_str_hash_end(&ctx, info), 2);
2017-01-08 12:13:18 +03:00
}
static u64 dirent_hash_key(const struct bch_hash_info *info, const void *key)
{
return bch2_dirent_hash(info, key);
2017-01-08 12:13:18 +03:00
}
static u64 dirent_hash_bkey(const struct bch_hash_info *info, struct bkey_s_c k)
{
struct bkey_s_c_dirent d = bkey_s_c_to_dirent(k);
struct qstr name = QSTR_INIT(d.v->d_name, bch2_dirent_name_bytes(d));
2017-01-08 12:13:18 +03:00
return bch2_dirent_hash(info, &name);
2017-01-08 12:13:18 +03:00
}
static bool dirent_cmp_key(struct bkey_s_c _l, const void *_r)
{
struct bkey_s_c_dirent l = bkey_s_c_to_dirent(_l);
int len = bch2_dirent_name_bytes(l);
2017-01-08 12:13:18 +03:00
const struct qstr *r = _r;
return len - r->len ?: memcmp(l.v->d_name, r->name, len);
}
static bool dirent_cmp_bkey(struct bkey_s_c _l, struct bkey_s_c _r)
{
struct bkey_s_c_dirent l = bkey_s_c_to_dirent(_l);
struct bkey_s_c_dirent r = bkey_s_c_to_dirent(_r);
int l_len = bch2_dirent_name_bytes(l);
int r_len = bch2_dirent_name_bytes(r);
2017-01-08 12:13:18 +03:00
return l_len - r_len ?: memcmp(l.v->d_name, r.v->d_name, l_len);
}
static const struct bch_hash_desc dirent_hash_desc = {
.btree_id = BTREE_ID_DIRENTS,
.key_type = BCH_DIRENT,
.whiteout_type = BCH_DIRENT_WHITEOUT,
.hash_key = dirent_hash_key,
.hash_bkey = dirent_hash_bkey,
.cmp_key = dirent_cmp_key,
.cmp_bkey = dirent_cmp_bkey,
};
static const char *bch2_dirent_invalid(const struct bch_fs *c,
struct bkey_s_c k)
2017-01-08 12:13:18 +03:00
{
switch (k.k->type) {
case BCH_DIRENT:
return bkey_val_bytes(k.k) < sizeof(struct bch_dirent)
? "value too small"
: NULL;
case BCH_DIRENT_WHITEOUT:
return bkey_val_bytes(k.k) != 0
? "value size should be zero"
: NULL;
default:
return "invalid type";
}
}
static void bch2_dirent_to_text(struct bch_fs *c, char *buf,
size_t size, struct bkey_s_c k)
2017-01-08 12:13:18 +03:00
{
struct bkey_s_c_dirent d;
switch (k.k->type) {
case BCH_DIRENT:
d = bkey_s_c_to_dirent(k);
if (size) {
unsigned n = min_t(unsigned, size,
bch2_dirent_name_bytes(d));
2017-01-08 12:13:18 +03:00
memcpy(buf, d.v->d_name, n);
buf[size - 1] = '\0';
buf += n;
size -= n;
}
scnprintf(buf, size, " -> %llu", d.v->d_inum);
break;
case BCH_DIRENT_WHITEOUT:
scnprintf(buf, size, "whiteout");
break;
}
}
const struct bkey_ops bch2_bkey_dirent_ops = {
.key_invalid = bch2_dirent_invalid,
.val_to_text = bch2_dirent_to_text,
2017-01-08 12:13:18 +03:00
};
static struct bkey_i_dirent *dirent_create_key(u8 type,
const struct qstr *name, u64 dst)
{
struct bkey_i_dirent *dirent;
unsigned u64s = BKEY_U64s +
DIV_ROUND_UP(sizeof(struct bch_dirent) + name->len,
sizeof(u64));
dirent = kmalloc(u64s * sizeof(u64), GFP_NOFS);
if (!dirent)
return NULL;
bkey_dirent_init(&dirent->k_i);
dirent->k.u64s = u64s;
dirent->v.d_inum = cpu_to_le64(dst);
dirent->v.d_type = type;
memcpy(dirent->v.d_name, name->name, name->len);
memset(dirent->v.d_name + name->len, 0,
bkey_val_bytes(&dirent->k) -
(sizeof(struct bch_dirent) + name->len));
EBUG_ON(bch2_dirent_name_bytes(dirent_i_to_s_c(dirent)) != name->len);
2017-01-08 12:13:18 +03:00
return dirent;
}
int bch2_dirent_create(struct bch_fs *c, u64 dir_inum,
const struct bch_hash_info *hash_info,
u8 type, const struct qstr *name, u64 dst_inum,
u64 *journal_seq, int flags)
2017-01-08 12:13:18 +03:00
{
struct bkey_i_dirent *dirent;
int ret;
dirent = dirent_create_key(type, name, dst_inum);
if (!dirent)
return -ENOMEM;
ret = bch2_hash_set(dirent_hash_desc, hash_info, c, dir_inum,
2017-02-02 06:16:42 +03:00
journal_seq, &dirent->k_i, flags);
2017-01-08 12:13:18 +03:00
kfree(dirent);
return ret;
}
static void dirent_copy_target(struct bkey_i_dirent *dst,
struct bkey_s_c_dirent src)
{
dst->v.d_inum = src.v->d_inum;
dst->v.d_type = src.v->d_type;
}
static struct bpos bch2_dirent_pos(struct bch_inode_info *ei,
const struct qstr *name)
2017-01-08 12:13:18 +03:00
{
return POS(ei->vfs_inode.i_ino, bch2_dirent_hash(&ei->str_hash, name));
2017-01-08 12:13:18 +03:00
}
int bch2_dirent_rename(struct bch_fs *c,
struct inode *src_dir, const struct qstr *src_name,
struct inode *dst_dir, const struct qstr *dst_name,
u64 *journal_seq, enum bch_rename_mode mode)
2017-01-08 12:13:18 +03:00
{
struct bch_inode_info *src_ei = to_bch_ei(src_dir);
struct bch_inode_info *dst_ei = to_bch_ei(dst_dir);
struct btree_iter src_iter, dst_iter, whiteout_iter;
struct bkey_s_c old_src, old_dst;
struct bkey delete;
struct bkey_i_dirent *new_src = NULL, *new_dst = NULL;
struct bpos src_pos = bch2_dirent_pos(src_ei, src_name);
struct bpos dst_pos = bch2_dirent_pos(dst_ei, dst_name);
2017-01-08 12:13:18 +03:00
bool need_whiteout;
int ret = -ENOMEM;
bch2_btree_iter_init_intent(&src_iter, c, BTREE_ID_DIRENTS, src_pos);
bch2_btree_iter_init_intent(&dst_iter, c, BTREE_ID_DIRENTS, dst_pos);
bch2_btree_iter_link(&src_iter, &dst_iter);
2017-01-08 12:13:18 +03:00
bch2_btree_iter_init(&whiteout_iter, c, BTREE_ID_DIRENTS, src_pos);
bch2_btree_iter_link(&src_iter, &whiteout_iter);
2017-01-08 12:13:18 +03:00
if (mode == BCH_RENAME_EXCHANGE) {
new_src = dirent_create_key(0, src_name, 0);
if (!new_src)
goto err;
} else {
new_src = (void *) &delete;
}
new_dst = dirent_create_key(0, dst_name, 0);
if (!new_dst)
goto err;
retry:
/*
* Note that on -EINTR/dropped locks we're not restarting the lookup
* from the original hashed position (like we do when creating dirents,
* in bch_hash_set) - we never move existing dirents to different slot:
*/
old_src = bch2_hash_lookup_at(dirent_hash_desc,
2017-01-08 12:13:18 +03:00
&src_ei->str_hash,
&src_iter, src_name);
if ((ret = btree_iter_err(old_src)))
goto err;
ret = bch2_hash_needs_whiteout(dirent_hash_desc,
2017-01-08 12:13:18 +03:00
&src_ei->str_hash,
&whiteout_iter, &src_iter);
if (ret < 0)
goto err;
need_whiteout = ret;
/*
* Note that in BCH_RENAME mode, we're _not_ checking if
* the target already exists - we're relying on the VFS
* to do that check for us for correctness:
*/
old_dst = mode == BCH_RENAME
? bch2_hash_hole_at(dirent_hash_desc, &dst_iter)
: bch2_hash_lookup_at(dirent_hash_desc,
2017-01-08 12:13:18 +03:00
&dst_ei->str_hash,
&dst_iter, dst_name);
if ((ret = btree_iter_err(old_dst)))
goto err;
switch (mode) {
case BCH_RENAME:
bkey_init(&new_src->k);
dirent_copy_target(new_dst, bkey_s_c_to_dirent(old_src));
if (bkey_cmp(dst_pos, src_iter.pos) <= 0 &&
bkey_cmp(src_iter.pos, dst_iter.pos) < 0) {
/*
* If we couldn't insert new_dst at its hashed
* position (dst_pos) due to a hash collision,
* and we're going to be deleting in
* between the hashed position and first empty
* slot we found - just overwrite the pos we
* were going to delete:
*
* Note: this is a correctness issue, in this
* situation bch2_hash_needs_whiteout() could
2017-01-08 12:13:18 +03:00
* return false when the whiteout would have
* been needed if we inserted at the pos
* __dirent_find_hole() found
*/
new_dst->k.p = src_iter.pos;
ret = bch2_btree_insert_at(c, NULL, NULL,
2017-01-08 12:13:18 +03:00
journal_seq,
BTREE_INSERT_ATOMIC,
BTREE_INSERT_ENTRY(&src_iter,
&new_dst->k_i));
goto err;
}
if (need_whiteout)
new_src->k.type = BCH_DIRENT_WHITEOUT;
break;
case BCH_RENAME_OVERWRITE:
bkey_init(&new_src->k);
dirent_copy_target(new_dst, bkey_s_c_to_dirent(old_src));
if (bkey_cmp(dst_pos, src_iter.pos) <= 0 &&
bkey_cmp(src_iter.pos, dst_iter.pos) < 0) {
/*
* Same case described above -
* bch_hash_needs_whiteout could spuriously
* return false, but we have to insert at
* dst_iter.pos because we're overwriting
* another dirent:
*/
new_src->k.type = BCH_DIRENT_WHITEOUT;
} else if (need_whiteout)
new_src->k.type = BCH_DIRENT_WHITEOUT;
break;
case BCH_RENAME_EXCHANGE:
dirent_copy_target(new_src, bkey_s_c_to_dirent(old_dst));
dirent_copy_target(new_dst, bkey_s_c_to_dirent(old_src));
break;
}
new_src->k.p = src_iter.pos;
new_dst->k.p = dst_iter.pos;
ret = bch2_btree_insert_at(c, NULL, NULL, journal_seq,
2017-01-08 12:13:18 +03:00
BTREE_INSERT_ATOMIC,
BTREE_INSERT_ENTRY(&src_iter, &new_src->k_i),
BTREE_INSERT_ENTRY(&dst_iter, &new_dst->k_i));
err:
if (ret == -EINTR)
goto retry;
bch2_btree_iter_unlock(&whiteout_iter);
bch2_btree_iter_unlock(&dst_iter);
bch2_btree_iter_unlock(&src_iter);
2017-01-08 12:13:18 +03:00
if (new_src != (void *) &delete)
kfree(new_src);
kfree(new_dst);
return ret;
}
int bch2_dirent_delete(struct bch_fs *c, u64 dir_inum,
const struct bch_hash_info *hash_info,
const struct qstr *name,
u64 *journal_seq)
2017-01-08 12:13:18 +03:00
{
return bch2_hash_delete(dirent_hash_desc, hash_info,
2017-02-02 06:16:42 +03:00
c, dir_inum, journal_seq, name);
2017-01-08 12:13:18 +03:00
}
u64 bch2_dirent_lookup(struct bch_fs *c, u64 dir_inum,
const struct bch_hash_info *hash_info,
const struct qstr *name)
2017-01-08 12:13:18 +03:00
{
struct btree_iter iter;
struct bkey_s_c k;
u64 inum;
k = bch2_hash_lookup(dirent_hash_desc, hash_info, c,
2017-02-02 06:16:42 +03:00
dir_inum, &iter, name);
2017-01-08 12:13:18 +03:00
if (IS_ERR(k.k)) {
bch2_btree_iter_unlock(&iter);
2017-01-08 12:13:18 +03:00
return 0;
}
inum = le64_to_cpu(bkey_s_c_to_dirent(k).v->d_inum);
bch2_btree_iter_unlock(&iter);
2017-01-08 12:13:18 +03:00
return inum;
}
int bch2_empty_dir(struct bch_fs *c, u64 dir_inum)
2017-01-08 12:13:18 +03:00
{
struct btree_iter iter;
struct bkey_s_c k;
int ret = 0;
for_each_btree_key(&iter, c, BTREE_ID_DIRENTS, POS(dir_inum, 0), k) {
if (k.k->p.inode > dir_inum)
break;
if (k.k->type == BCH_DIRENT) {
ret = -ENOTEMPTY;
break;
}
}
bch2_btree_iter_unlock(&iter);
2017-01-08 12:13:18 +03:00
return ret;
}
int bch2_readdir(struct bch_fs *c, struct file *file,
struct dir_context *ctx)
2017-01-08 12:13:18 +03:00
{
struct inode *inode = file_inode(file);
struct btree_iter iter;
struct bkey_s_c k;
struct bkey_s_c_dirent dirent;
unsigned len;
if (!dir_emit_dots(file, ctx))
return 0;
pr_debug("listing for %lu from %llu", inode->i_ino, ctx->pos);
for_each_btree_key(&iter, c, BTREE_ID_DIRENTS,
POS(inode->i_ino, ctx->pos), k) {
if (k.k->type != BCH_DIRENT)
continue;
dirent = bkey_s_c_to_dirent(k);
pr_debug("saw %llu:%llu (%s) -> %llu",
k.k->p.inode, k.k->p.offset,
dirent.v->d_name, dirent.v->d_inum);
if (bkey_cmp(k.k->p, POS(inode->i_ino, ctx->pos)) < 0)
continue;
if (k.k->p.inode > inode->i_ino)
break;
len = bch2_dirent_name_bytes(dirent);
2017-01-08 12:13:18 +03:00
pr_debug("emitting %s", dirent.v->d_name);
/*
* XXX: dir_emit() can fault and block, while we're holding
* locks
*/
if (!dir_emit(ctx, dirent.v->d_name, len,
le64_to_cpu(dirent.v->d_inum),
dirent.v->d_type))
break;
ctx->pos = k.k->p.offset + 1;
}
bch2_btree_iter_unlock(&iter);
2017-01-08 12:13:18 +03:00
return 0;
}