2019-07-10 23:12:15 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2017-10-06 01:41:44 +03:00
|
|
|
#ifndef _BCACHEFS_DIRENT_H
|
|
|
|
#define _BCACHEFS_DIRENT_H
|
2017-03-20 02:56:34 +03:00
|
|
|
|
2017-04-15 07:38:49 +03:00
|
|
|
#include "str_hash.h"
|
|
|
|
|
2024-05-03 22:22:22 +03:00
|
|
|
enum bch_validate_flags;
|
2017-04-15 07:38:49 +03:00
|
|
|
extern const struct bch_hash_desc bch2_dirent_hash_desc;
|
2018-04-11 02:19:09 +03:00
|
|
|
|
2023-10-27 23:43:11 +03:00
|
|
|
int bch2_dirent_invalid(struct bch_fs *, struct bkey_s_c,
|
2024-05-03 22:22:22 +03:00
|
|
|
enum bch_validate_flags, struct printbuf *);
|
2018-11-09 12:00:42 +03:00
|
|
|
void bch2_dirent_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
|
2018-04-11 02:19:09 +03:00
|
|
|
|
2022-10-24 00:39:22 +03:00
|
|
|
#define bch2_bkey_ops_dirent ((struct bkey_ops) { \
|
2018-04-11 02:19:09 +03:00
|
|
|
.key_invalid = bch2_dirent_invalid, \
|
|
|
|
.val_to_text = bch2_dirent_to_text, \
|
2023-04-26 23:34:57 +03:00
|
|
|
.min_val_size = 16, \
|
2022-10-24 00:39:22 +03:00
|
|
|
})
|
2017-03-20 02:56:34 +03:00
|
|
|
|
|
|
|
struct qstr;
|
|
|
|
struct file;
|
|
|
|
struct dir_context;
|
|
|
|
struct bch_fs;
|
|
|
|
struct bch_hash_info;
|
2017-11-05 01:32:07 +03:00
|
|
|
struct bch_inode_info;
|
2017-03-20 02:56:34 +03:00
|
|
|
|
2023-08-18 00:08:33 +03:00
|
|
|
struct qstr bch2_dirent_get_name(struct bkey_s_c_dirent d);
|
2018-07-16 10:58:54 +03:00
|
|
|
|
2018-08-22 02:43:00 +03:00
|
|
|
static inline unsigned dirent_val_u64s(unsigned len)
|
|
|
|
{
|
|
|
|
return DIV_ROUND_UP(offsetof(struct bch_dirent, d_name) + len,
|
|
|
|
sizeof(u64));
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:12:15 +03:00
|
|
|
int bch2_dirent_read_target(struct btree_trans *, subvol_inum,
|
|
|
|
struct bkey_s_c_dirent, subvol_inum *);
|
|
|
|
|
2024-02-10 05:30:46 +03:00
|
|
|
int bch2_dirent_create_snapshot(struct btree_trans *, u32, u64, u32,
|
2023-12-22 03:10:40 +03:00
|
|
|
const struct bch_hash_info *, u8,
|
|
|
|
const struct qstr *, u64, u64 *,
|
2024-05-03 22:22:22 +03:00
|
|
|
enum btree_iter_update_trigger_flags);
|
2021-09-27 01:19:46 +03:00
|
|
|
int bch2_dirent_create(struct btree_trans *, subvol_inum,
|
2019-10-04 23:25:58 +03:00
|
|
|
const struct bch_hash_info *, u8,
|
2023-11-13 04:53:57 +03:00
|
|
|
const struct qstr *, u64, u64 *,
|
2024-05-03 22:22:22 +03:00
|
|
|
enum btree_iter_update_trigger_flags);
|
2019-10-04 23:25:58 +03:00
|
|
|
|
2021-09-27 01:19:46 +03:00
|
|
|
static inline unsigned vfs_d_type(unsigned type)
|
|
|
|
{
|
|
|
|
return type == DT_SUBVOL ? DT_DIR : type;
|
|
|
|
}
|
2017-03-20 02:56:34 +03:00
|
|
|
|
|
|
|
enum bch_rename_mode {
|
|
|
|
BCH_RENAME,
|
|
|
|
BCH_RENAME_OVERWRITE,
|
|
|
|
BCH_RENAME_EXCHANGE,
|
|
|
|
};
|
|
|
|
|
2018-07-16 10:58:54 +03:00
|
|
|
int bch2_dirent_rename(struct btree_trans *,
|
2021-09-27 01:19:46 +03:00
|
|
|
subvol_inum, struct bch_hash_info *,
|
|
|
|
subvol_inum, struct bch_hash_info *,
|
|
|
|
const struct qstr *, subvol_inum *, u64 *,
|
|
|
|
const struct qstr *, subvol_inum *, u64 *,
|
2018-07-16 10:58:54 +03:00
|
|
|
enum bch_rename_mode);
|
2017-03-20 02:56:34 +03:00
|
|
|
|
2024-02-06 07:09:25 +03:00
|
|
|
int bch2_dirent_lookup_trans(struct btree_trans *, struct btree_iter *,
|
2021-09-27 01:19:46 +03:00
|
|
|
subvol_inum, const struct bch_hash_info *,
|
|
|
|
const struct qstr *, subvol_inum *, unsigned);
|
|
|
|
u64 bch2_dirent_lookup(struct bch_fs *, subvol_inum,
|
|
|
|
const struct bch_hash_info *,
|
|
|
|
const struct qstr *, subvol_inum *);
|
2017-03-20 02:56:34 +03:00
|
|
|
|
2024-02-16 07:45:29 +03:00
|
|
|
int bch2_empty_dir_snapshot(struct btree_trans *, u64, u32, u32);
|
2021-09-27 01:19:46 +03:00
|
|
|
int bch2_empty_dir_trans(struct btree_trans *, subvol_inum);
|
|
|
|
int bch2_readdir(struct bch_fs *, subvol_inum, struct dir_context *);
|
2017-03-20 02:56:34 +03:00
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* _BCACHEFS_DIRENT_H */
|