]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/inode.h
Update bcachefs sources to 8dbfede1d9 fixup! bcachefs: More info on check_bucket_ref...
[bcachefs-tools-debian] / libbcachefs / inode.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_INODE_H
3 #define _BCACHEFS_INODE_H
4
5 #include "bkey.h"
6 #include "opts.h"
7
8 extern const char * const bch2_inode_opts[];
9
10 int bch2_inode_invalid(const struct bch_fs *, struct bkey_s_c, unsigned, struct printbuf *);
11 int bch2_inode_v2_invalid(const struct bch_fs *, struct bkey_s_c, unsigned, struct printbuf *);
12 int bch2_inode_v3_invalid(const struct bch_fs *, struct bkey_s_c, unsigned, struct printbuf *);
13 void bch2_inode_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
14
15 #define bch2_bkey_ops_inode ((struct bkey_ops) {        \
16         .key_invalid    = bch2_inode_invalid,           \
17         .val_to_text    = bch2_inode_to_text,           \
18         .trans_trigger  = bch2_trans_mark_inode,        \
19         .atomic_trigger = bch2_mark_inode,              \
20 })
21
22 #define bch2_bkey_ops_inode_v2 ((struct bkey_ops) {     \
23         .key_invalid    = bch2_inode_v2_invalid,        \
24         .val_to_text    = bch2_inode_to_text,           \
25         .trans_trigger  = bch2_trans_mark_inode,        \
26         .atomic_trigger = bch2_mark_inode,              \
27 })
28
29 #define bch2_bkey_ops_inode_v3 ((struct bkey_ops) {     \
30         .key_invalid    = bch2_inode_v3_invalid,        \
31         .val_to_text    = bch2_inode_to_text,           \
32         .trans_trigger  = bch2_trans_mark_inode,        \
33         .atomic_trigger = bch2_mark_inode,              \
34 })
35
36 static inline bool bkey_is_inode(const struct bkey *k)
37 {
38         return  k->type == KEY_TYPE_inode ||
39                 k->type == KEY_TYPE_inode_v2 ||
40                 k->type == KEY_TYPE_inode_v3;
41 }
42
43 int bch2_inode_generation_invalid(const struct bch_fs *, struct bkey_s_c,
44                                   unsigned, struct printbuf *);
45 void bch2_inode_generation_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
46
47 #define bch2_bkey_ops_inode_generation ((struct bkey_ops) {     \
48         .key_invalid    = bch2_inode_generation_invalid,        \
49         .val_to_text    = bch2_inode_generation_to_text,        \
50 })
51
52 #if 0
53 typedef struct {
54         u64                     lo;
55         u32                     hi;
56 } __packed __aligned(4) u96;
57 #endif
58 typedef u64 u96;
59
60 struct bch_inode_unpacked {
61         u64                     bi_inum;
62         u64                     bi_journal_seq;
63         __le64                  bi_hash_seed;
64         u64                     bi_size;
65         u64                     bi_sectors;
66         u64                     bi_version;
67         u32                     bi_flags;
68         u16                     bi_mode;
69
70 #define x(_name, _bits) u##_bits _name;
71         BCH_INODE_FIELDS_v3()
72 #undef  x
73 };
74
75 struct bkey_inode_buf {
76         struct bkey_i_inode_v3  inode;
77
78 #define x(_name, _bits)         + 8 + _bits / 8
79         u8              _pad[0 + BCH_INODE_FIELDS_v3()];
80 #undef  x
81 } __packed __aligned(8);
82
83 void bch2_inode_pack(struct bkey_inode_buf *, const struct bch_inode_unpacked *);
84 int bch2_inode_unpack(struct bkey_s_c, struct bch_inode_unpacked *);
85 struct bkey_i *bch2_inode_to_v3(struct btree_trans *, struct bkey_i *);
86
87 void bch2_inode_unpacked_to_text(struct printbuf *, struct bch_inode_unpacked *);
88
89 int bch2_inode_peek(struct btree_trans *, struct btree_iter *,
90                     struct bch_inode_unpacked *, subvol_inum, unsigned);
91 int bch2_inode_write(struct btree_trans *, struct btree_iter *,
92                      struct bch_inode_unpacked *);
93
94 void bch2_inode_init_early(struct bch_fs *,
95                            struct bch_inode_unpacked *);
96 void bch2_inode_init_late(struct bch_inode_unpacked *, u64,
97                           uid_t, gid_t, umode_t, dev_t,
98                           struct bch_inode_unpacked *);
99 void bch2_inode_init(struct bch_fs *, struct bch_inode_unpacked *,
100                      uid_t, gid_t, umode_t, dev_t,
101                      struct bch_inode_unpacked *);
102
103 int bch2_inode_create(struct btree_trans *, struct btree_iter *,
104                       struct bch_inode_unpacked *, u32, u64);
105
106 int bch2_inode_rm(struct bch_fs *, subvol_inum);
107
108 int bch2_inode_find_by_inum_trans(struct btree_trans *, subvol_inum,
109                                   struct bch_inode_unpacked *);
110 int bch2_inode_find_by_inum(struct bch_fs *, subvol_inum,
111                             struct bch_inode_unpacked *);
112
113 #define inode_opt_get(_c, _inode, _name)                        \
114         ((_inode)->bi_##_name ? (_inode)->bi_##_name - 1 : (_c)->opts._name)
115
116 static inline void bch2_inode_opt_set(struct bch_inode_unpacked *inode,
117                                       enum inode_opt_id id, u64 v)
118 {
119         switch (id) {
120 #define x(_name, ...)                                                   \
121         case Inode_opt_##_name:                                         \
122                 inode->bi_##_name = v;                                  \
123                 break;
124         BCH_INODE_OPTS()
125 #undef x
126         default:
127                 BUG();
128         }
129 }
130
131 static inline u64 bch2_inode_opt_get(struct bch_inode_unpacked *inode,
132                                      enum inode_opt_id id)
133 {
134         switch (id) {
135 #define x(_name, ...)                                                   \
136         case Inode_opt_##_name:                                         \
137                 return inode->bi_##_name;
138         BCH_INODE_OPTS()
139 #undef x
140         default:
141                 BUG();
142         }
143 }
144
145 static inline u8 mode_to_type(umode_t mode)
146 {
147         return (mode >> 12) & 15;
148 }
149
150 static inline u8 inode_d_type(struct bch_inode_unpacked *inode)
151 {
152         return inode->bi_subvol ? DT_SUBVOL : mode_to_type(inode->bi_mode);
153 }
154
155 /* i_nlink: */
156
157 static inline unsigned nlink_bias(umode_t mode)
158 {
159         return S_ISDIR(mode) ? 2 : 1;
160 }
161
162 static inline unsigned bch2_inode_nlink_get(struct bch_inode_unpacked *bi)
163 {
164         return bi->bi_flags & BCH_INODE_UNLINKED
165                   ? 0
166                   : bi->bi_nlink + nlink_bias(bi->bi_mode);
167 }
168
169 static inline void bch2_inode_nlink_set(struct bch_inode_unpacked *bi,
170                                         unsigned nlink)
171 {
172         if (nlink) {
173                 bi->bi_nlink = nlink - nlink_bias(bi->bi_mode);
174                 bi->bi_flags &= ~BCH_INODE_UNLINKED;
175         } else {
176                 bi->bi_nlink = 0;
177                 bi->bi_flags |= BCH_INODE_UNLINKED;
178         }
179 }
180
181 int bch2_inode_nlink_inc(struct bch_inode_unpacked *);
182 void bch2_inode_nlink_dec(struct btree_trans *, struct bch_inode_unpacked *);
183
184 struct bch_opts bch2_inode_opts_to_opts(struct bch_inode_unpacked *);
185 void bch2_inode_opts_get(struct bch_io_opts *, struct bch_fs *,
186                          struct bch_inode_unpacked *);
187
188 #endif /* _BCACHEFS_INODE_H */