]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/xattr.h
Add upstream files
[bcachefs-tools-debian] / libbcachefs / xattr.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_XATTR_H
3 #define _BCACHEFS_XATTR_H
4
5 #include "str_hash.h"
6
7 extern const struct bch_hash_desc bch2_xattr_hash_desc;
8
9 const char *bch2_xattr_invalid(const struct bch_fs *, struct bkey_s_c);
10 void bch2_xattr_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
11
12 #define bch2_bkey_ops_xattr (struct bkey_ops) {         \
13         .key_invalid    = bch2_xattr_invalid,           \
14         .val_to_text    = bch2_xattr_to_text,           \
15 }
16
17 static inline unsigned xattr_val_u64s(unsigned name_len, unsigned val_len)
18 {
19         return DIV_ROUND_UP(offsetof(struct bch_xattr, x_name) +
20                             name_len + val_len, sizeof(u64));
21 }
22
23 #define xattr_val(_xattr)                                       \
24         ((void *) (_xattr)->x_name + (_xattr)->x_name_len)
25
26 struct xattr_search_key {
27         u8              type;
28         struct qstr     name;
29 };
30
31 #define X_SEARCH(_type, _name, _len) ((struct xattr_search_key) \
32         { .type = _type, .name = QSTR_INIT(_name, _len) })
33
34 struct dentry;
35 struct xattr_handler;
36 struct bch_hash_info;
37 struct bch_inode_info;
38
39 int bch2_xattr_get(struct bch_fs *, struct bch_inode_info *,
40                   const char *, void *, size_t, int);
41
42 int bch2_xattr_set(struct btree_trans *, u64, const struct bch_hash_info *,
43                    const char *, const void *, size_t, int, int);
44
45 ssize_t bch2_xattr_list(struct dentry *, char *, size_t);
46
47 extern const struct xattr_handler *bch2_xattr_handlers[];
48
49 #endif /* _BCACHEFS_XATTR_H */