bcachefs: Subvolumes, snapshots
[linux-block.git] / fs / bcachefs / subvolume.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_SUBVOLUME_H
3 #define _BCACHEFS_SUBVOLUME_H
4
5 void bch2_snapshot_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
6 const char *bch2_snapshot_invalid(const struct bch_fs *, struct bkey_s_c);
7
8 #define bch2_bkey_ops_snapshot (struct bkey_ops) {              \
9         .key_invalid    = bch2_snapshot_invalid,                \
10         .val_to_text    = bch2_snapshot_to_text,                \
11 }
12
13 int bch2_mark_snapshot(struct bch_fs *, struct bkey_s_c,
14                        struct bkey_s_c, u64, unsigned);
15
16 static inline struct snapshot_t *snapshot_t(struct bch_fs *c, u32 id)
17 {
18         return genradix_ptr(&c->snapshots, U32_MAX - id);
19 }
20
21 static inline u32 bch2_snapshot_parent(struct bch_fs *c, u32 id)
22 {
23         return snapshot_t(c, id)->parent;
24 }
25
26 static inline u32 bch2_snapshot_internal_node(struct bch_fs *c, u32 id)
27 {
28         struct snapshot_t *s = snapshot_t(c, id);
29
30         return s->children[0] || s->children[1];
31 }
32
33 static inline u32 bch2_snapshot_sibling(struct bch_fs *c, u32 id)
34 {
35         struct snapshot_t *s;
36         u32 parent = bch2_snapshot_parent(c, id);
37
38         if (!parent)
39                 return 0;
40
41         s = snapshot_t(c, bch2_snapshot_parent(c, id));
42         if (id == s->children[0])
43                 return s->children[1];
44         if (id == s->children[1])
45                 return s->children[0];
46         return 0;
47 }
48
49 static inline bool bch2_snapshot_is_ancestor(struct bch_fs *c, u32 id, u32 ancestor)
50 {
51         while (id && id < ancestor)
52                 id = bch2_snapshot_parent(c, id);
53
54         return id == ancestor;
55 }
56
57 int bch2_fs_snapshots_check(struct bch_fs *);
58 void bch2_fs_snapshots_exit(struct bch_fs *);
59 int bch2_fs_snapshots_start(struct bch_fs *);
60
61 const char *bch2_subvolume_invalid(const struct bch_fs *, struct bkey_s_c);
62 void bch2_subvolume_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
63
64 #define bch2_bkey_ops_subvolume (struct bkey_ops) {             \
65         .key_invalid    = bch2_subvolume_invalid,               \
66         .val_to_text    = bch2_subvolume_to_text,               \
67 }
68
69 int bch2_subvolume_get_snapshot(struct btree_trans *, u32, u32 *);
70
71 int bch2_subvolume_delete(struct btree_trans *, u32, int);
72 int bch2_subvolume_create(struct btree_trans *, u64, u32,
73                           u32 *, u32 *, bool);
74
75 int bch2_fs_subvolumes_init(struct bch_fs *);
76
77 #endif /* _BCACHEFS_SUBVOLUME_H */