]> git.sesse.net Git - bcachefs-tools-debian/blob - c_src/libbcachefs/inode.c
rust: bump rpassword to v7.x
[bcachefs-tools-debian] / c_src / libbcachefs / inode.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include "bcachefs.h"
4 #include "btree_key_cache.h"
5 #include "btree_write_buffer.h"
6 #include "bkey_methods.h"
7 #include "btree_update.h"
8 #include "buckets.h"
9 #include "compress.h"
10 #include "dirent.h"
11 #include "error.h"
12 #include "extents.h"
13 #include "extent_update.h"
14 #include "inode.h"
15 #include "str_hash.h"
16 #include "snapshot.h"
17 #include "subvolume.h"
18 #include "varint.h"
19
20 #include <linux/random.h>
21
22 #include <asm/unaligned.h>
23
24 #define x(name, ...)    #name,
25 const char * const bch2_inode_opts[] = {
26         BCH_INODE_OPTS()
27         NULL,
28 };
29
30 static const char * const bch2_inode_flag_strs[] = {
31         BCH_INODE_FLAGS()
32         NULL
33 };
34 #undef  x
35
36 static const u8 byte_table[8] = { 1, 2, 3, 4, 6, 8, 10, 13 };
37
38 static int inode_decode_field(const u8 *in, const u8 *end,
39                               u64 out[2], unsigned *out_bits)
40 {
41         __be64 be[2] = { 0, 0 };
42         unsigned bytes, shift;
43         u8 *p;
44
45         if (in >= end)
46                 return -1;
47
48         if (!*in)
49                 return -1;
50
51         /*
52          * position of highest set bit indicates number of bytes:
53          * shift = number of bits to remove in high byte:
54          */
55         shift   = 8 - __fls(*in); /* 1 <= shift <= 8 */
56         bytes   = byte_table[shift - 1];
57
58         if (in + bytes > end)
59                 return -1;
60
61         p = (u8 *) be + 16 - bytes;
62         memcpy(p, in, bytes);
63         *p ^= (1 << 8) >> shift;
64
65         out[0] = be64_to_cpu(be[0]);
66         out[1] = be64_to_cpu(be[1]);
67         *out_bits = out[0] ? 64 + fls64(out[0]) : fls64(out[1]);
68
69         return bytes;
70 }
71
72 static inline void bch2_inode_pack_inlined(struct bkey_inode_buf *packed,
73                                            const struct bch_inode_unpacked *inode)
74 {
75         struct bkey_i_inode_v3 *k = &packed->inode;
76         u8 *out = k->v.fields;
77         u8 *end = (void *) &packed[1];
78         u8 *last_nonzero_field = out;
79         unsigned nr_fields = 0, last_nonzero_fieldnr = 0;
80         unsigned bytes;
81         int ret;
82
83         bkey_inode_v3_init(&packed->inode.k_i);
84         packed->inode.k.p.offset        = inode->bi_inum;
85         packed->inode.v.bi_journal_seq  = cpu_to_le64(inode->bi_journal_seq);
86         packed->inode.v.bi_hash_seed    = inode->bi_hash_seed;
87         packed->inode.v.bi_flags        = cpu_to_le64(inode->bi_flags);
88         packed->inode.v.bi_sectors      = cpu_to_le64(inode->bi_sectors);
89         packed->inode.v.bi_size         = cpu_to_le64(inode->bi_size);
90         packed->inode.v.bi_version      = cpu_to_le64(inode->bi_version);
91         SET_INODEv3_MODE(&packed->inode.v, inode->bi_mode);
92         SET_INODEv3_FIELDS_START(&packed->inode.v, INODEv3_FIELDS_START_CUR);
93
94
95 #define x(_name, _bits)                                                 \
96         nr_fields++;                                                    \
97                                                                         \
98         if (inode->_name) {                                             \
99                 ret = bch2_varint_encode_fast(out, inode->_name);       \
100                 out += ret;                                             \
101                                                                         \
102                 if (_bits > 64)                                         \
103                         *out++ = 0;                                     \
104                                                                         \
105                 last_nonzero_field = out;                               \
106                 last_nonzero_fieldnr = nr_fields;                       \
107         } else {                                                        \
108                 *out++ = 0;                                             \
109                                                                         \
110                 if (_bits > 64)                                         \
111                         *out++ = 0;                                     \
112         }
113
114         BCH_INODE_FIELDS_v3()
115 #undef  x
116         BUG_ON(out > end);
117
118         out = last_nonzero_field;
119         nr_fields = last_nonzero_fieldnr;
120
121         bytes = out - (u8 *) &packed->inode.v;
122         set_bkey_val_bytes(&packed->inode.k, bytes);
123         memset_u64s_tail(&packed->inode.v, 0, bytes);
124
125         SET_INODEv3_NR_FIELDS(&k->v, nr_fields);
126
127         if (IS_ENABLED(CONFIG_BCACHEFS_DEBUG)) {
128                 struct bch_inode_unpacked unpacked;
129
130                 ret = bch2_inode_unpack(bkey_i_to_s_c(&packed->inode.k_i), &unpacked);
131                 BUG_ON(ret);
132                 BUG_ON(unpacked.bi_inum         != inode->bi_inum);
133                 BUG_ON(unpacked.bi_hash_seed    != inode->bi_hash_seed);
134                 BUG_ON(unpacked.bi_sectors      != inode->bi_sectors);
135                 BUG_ON(unpacked.bi_size         != inode->bi_size);
136                 BUG_ON(unpacked.bi_version      != inode->bi_version);
137                 BUG_ON(unpacked.bi_mode         != inode->bi_mode);
138
139 #define x(_name, _bits) if (unpacked._name != inode->_name)             \
140                         panic("unpacked %llu should be %llu",           \
141                               (u64) unpacked._name, (u64) inode->_name);
142                 BCH_INODE_FIELDS_v3()
143 #undef  x
144         }
145 }
146
147 void bch2_inode_pack(struct bkey_inode_buf *packed,
148                      const struct bch_inode_unpacked *inode)
149 {
150         bch2_inode_pack_inlined(packed, inode);
151 }
152
153 static noinline int bch2_inode_unpack_v1(struct bkey_s_c_inode inode,
154                                 struct bch_inode_unpacked *unpacked)
155 {
156         const u8 *in = inode.v->fields;
157         const u8 *end = bkey_val_end(inode);
158         u64 field[2];
159         unsigned fieldnr = 0, field_bits;
160         int ret;
161
162 #define x(_name, _bits)                                 \
163         if (fieldnr++ == INODE_NR_FIELDS(inode.v)) {                    \
164                 unsigned offset = offsetof(struct bch_inode_unpacked, _name);\
165                 memset((void *) unpacked + offset, 0,                   \
166                        sizeof(*unpacked) - offset);                     \
167                 return 0;                                               \
168         }                                                               \
169                                                                         \
170         ret = inode_decode_field(in, end, field, &field_bits);          \
171         if (ret < 0)                                                    \
172                 return ret;                                             \
173                                                                         \
174         if (field_bits > sizeof(unpacked->_name) * 8)                   \
175                 return -1;                                              \
176                                                                         \
177         unpacked->_name = field[1];                                     \
178         in += ret;
179
180         BCH_INODE_FIELDS_v2()
181 #undef  x
182
183         /* XXX: signal if there were more fields than expected? */
184         return 0;
185 }
186
187 static int bch2_inode_unpack_v2(struct bch_inode_unpacked *unpacked,
188                                 const u8 *in, const u8 *end,
189                                 unsigned nr_fields)
190 {
191         unsigned fieldnr = 0;
192         int ret;
193         u64 v[2];
194
195 #define x(_name, _bits)                                                 \
196         if (fieldnr < nr_fields) {                                      \
197                 ret = bch2_varint_decode_fast(in, end, &v[0]);          \
198                 if (ret < 0)                                            \
199                         return ret;                                     \
200                 in += ret;                                              \
201                                                                         \
202                 if (_bits > 64) {                                       \
203                         ret = bch2_varint_decode_fast(in, end, &v[1]);  \
204                         if (ret < 0)                                    \
205                                 return ret;                             \
206                         in += ret;                                      \
207                 } else {                                                \
208                         v[1] = 0;                                       \
209                 }                                                       \
210         } else {                                                        \
211                 v[0] = v[1] = 0;                                        \
212         }                                                               \
213                                                                         \
214         unpacked->_name = v[0];                                         \
215         if (v[1] || v[0] != unpacked->_name)                            \
216                 return -1;                                              \
217         fieldnr++;
218
219         BCH_INODE_FIELDS_v2()
220 #undef  x
221
222         /* XXX: signal if there were more fields than expected? */
223         return 0;
224 }
225
226 static int bch2_inode_unpack_v3(struct bkey_s_c k,
227                                 struct bch_inode_unpacked *unpacked)
228 {
229         struct bkey_s_c_inode_v3 inode = bkey_s_c_to_inode_v3(k);
230         const u8 *in = inode.v->fields;
231         const u8 *end = bkey_val_end(inode);
232         unsigned nr_fields = INODEv3_NR_FIELDS(inode.v);
233         unsigned fieldnr = 0;
234         int ret;
235         u64 v[2];
236
237         unpacked->bi_inum       = inode.k->p.offset;
238         unpacked->bi_journal_seq= le64_to_cpu(inode.v->bi_journal_seq);
239         unpacked->bi_hash_seed  = inode.v->bi_hash_seed;
240         unpacked->bi_flags      = le64_to_cpu(inode.v->bi_flags);
241         unpacked->bi_sectors    = le64_to_cpu(inode.v->bi_sectors);
242         unpacked->bi_size       = le64_to_cpu(inode.v->bi_size);
243         unpacked->bi_version    = le64_to_cpu(inode.v->bi_version);
244         unpacked->bi_mode       = INODEv3_MODE(inode.v);
245
246 #define x(_name, _bits)                                                 \
247         if (fieldnr < nr_fields) {                                      \
248                 ret = bch2_varint_decode_fast(in, end, &v[0]);          \
249                 if (ret < 0)                                            \
250                         return ret;                                     \
251                 in += ret;                                              \
252                                                                         \
253                 if (_bits > 64) {                                       \
254                         ret = bch2_varint_decode_fast(in, end, &v[1]);  \
255                         if (ret < 0)                                    \
256                                 return ret;                             \
257                         in += ret;                                      \
258                 } else {                                                \
259                         v[1] = 0;                                       \
260                 }                                                       \
261         } else {                                                        \
262                 v[0] = v[1] = 0;                                        \
263         }                                                               \
264                                                                         \
265         unpacked->_name = v[0];                                         \
266         if (v[1] || v[0] != unpacked->_name)                            \
267                 return -1;                                              \
268         fieldnr++;
269
270         BCH_INODE_FIELDS_v3()
271 #undef  x
272
273         /* XXX: signal if there were more fields than expected? */
274         return 0;
275 }
276
277 static noinline int bch2_inode_unpack_slowpath(struct bkey_s_c k,
278                                                struct bch_inode_unpacked *unpacked)
279 {
280         memset(unpacked, 0, sizeof(*unpacked));
281
282         switch (k.k->type) {
283         case KEY_TYPE_inode: {
284                 struct bkey_s_c_inode inode = bkey_s_c_to_inode(k);
285
286                 unpacked->bi_inum       = inode.k->p.offset;
287                 unpacked->bi_journal_seq= 0;
288                 unpacked->bi_hash_seed  = inode.v->bi_hash_seed;
289                 unpacked->bi_flags      = le32_to_cpu(inode.v->bi_flags);
290                 unpacked->bi_mode       = le16_to_cpu(inode.v->bi_mode);
291
292                 if (INODE_NEW_VARINT(inode.v)) {
293                         return bch2_inode_unpack_v2(unpacked, inode.v->fields,
294                                                     bkey_val_end(inode),
295                                                     INODE_NR_FIELDS(inode.v));
296                 } else {
297                         return bch2_inode_unpack_v1(inode, unpacked);
298                 }
299                 break;
300         }
301         case KEY_TYPE_inode_v2: {
302                 struct bkey_s_c_inode_v2 inode = bkey_s_c_to_inode_v2(k);
303
304                 unpacked->bi_inum       = inode.k->p.offset;
305                 unpacked->bi_journal_seq= le64_to_cpu(inode.v->bi_journal_seq);
306                 unpacked->bi_hash_seed  = inode.v->bi_hash_seed;
307                 unpacked->bi_flags      = le64_to_cpu(inode.v->bi_flags);
308                 unpacked->bi_mode       = le16_to_cpu(inode.v->bi_mode);
309
310                 return bch2_inode_unpack_v2(unpacked, inode.v->fields,
311                                             bkey_val_end(inode),
312                                             INODEv2_NR_FIELDS(inode.v));
313         }
314         default:
315                 BUG();
316         }
317 }
318
319 int bch2_inode_unpack(struct bkey_s_c k,
320                       struct bch_inode_unpacked *unpacked)
321 {
322         if (likely(k.k->type == KEY_TYPE_inode_v3))
323                 return bch2_inode_unpack_v3(k, unpacked);
324         return bch2_inode_unpack_slowpath(k, unpacked);
325 }
326
327 static int bch2_inode_peek_nowarn(struct btree_trans *trans,
328                     struct btree_iter *iter,
329                     struct bch_inode_unpacked *inode,
330                     subvol_inum inum, unsigned flags)
331 {
332         struct bkey_s_c k;
333         u32 snapshot;
334         int ret;
335
336         ret = bch2_subvolume_get_snapshot(trans, inum.subvol, &snapshot);
337         if (ret)
338                 return ret;
339
340         k = bch2_bkey_get_iter(trans, iter, BTREE_ID_inodes,
341                                SPOS(0, inum.inum, snapshot),
342                                flags|BTREE_ITER_CACHED);
343         ret = bkey_err(k);
344         if (ret)
345                 return ret;
346
347         ret = bkey_is_inode(k.k) ? 0 : -BCH_ERR_ENOENT_inode;
348         if (ret)
349                 goto err;
350
351         ret = bch2_inode_unpack(k, inode);
352         if (ret)
353                 goto err;
354
355         return 0;
356 err:
357         bch2_trans_iter_exit(trans, iter);
358         return ret;
359 }
360
361 int bch2_inode_peek(struct btree_trans *trans,
362                     struct btree_iter *iter,
363                     struct bch_inode_unpacked *inode,
364                     subvol_inum inum, unsigned flags)
365 {
366         int ret = bch2_inode_peek_nowarn(trans, iter, inode, inum, flags);
367         bch_err_msg(trans->c, ret, "looking up inum %u:%llu:", inum.subvol, inum.inum);
368         return ret;
369 }
370
371 int bch2_inode_write_flags(struct btree_trans *trans,
372                      struct btree_iter *iter,
373                      struct bch_inode_unpacked *inode,
374                      enum btree_update_flags flags)
375 {
376         struct bkey_inode_buf *inode_p;
377
378         inode_p = bch2_trans_kmalloc(trans, sizeof(*inode_p));
379         if (IS_ERR(inode_p))
380                 return PTR_ERR(inode_p);
381
382         bch2_inode_pack_inlined(inode_p, inode);
383         inode_p->inode.k.p.snapshot = iter->snapshot;
384         return bch2_trans_update(trans, iter, &inode_p->inode.k_i, flags);
385 }
386
387 struct bkey_i *bch2_inode_to_v3(struct btree_trans *trans, struct bkey_i *k)
388 {
389         struct bch_inode_unpacked u;
390         struct bkey_inode_buf *inode_p;
391         int ret;
392
393         if (!bkey_is_inode(&k->k))
394                 return ERR_PTR(-ENOENT);
395
396         inode_p = bch2_trans_kmalloc(trans, sizeof(*inode_p));
397         if (IS_ERR(inode_p))
398                 return ERR_CAST(inode_p);
399
400         ret = bch2_inode_unpack(bkey_i_to_s_c(k), &u);
401         if (ret)
402                 return ERR_PTR(ret);
403
404         bch2_inode_pack(inode_p, &u);
405         return &inode_p->inode.k_i;
406 }
407
408 static int __bch2_inode_invalid(struct bch_fs *c, struct bkey_s_c k, struct printbuf *err)
409 {
410         struct bch_inode_unpacked unpacked;
411         int ret = 0;
412
413         bkey_fsck_err_on(k.k->p.inode, c, err,
414                          inode_pos_inode_nonzero,
415                          "nonzero k.p.inode");
416
417         bkey_fsck_err_on(k.k->p.offset < BLOCKDEV_INODE_MAX, c, err,
418                          inode_pos_blockdev_range,
419                          "fs inode in blockdev range");
420
421         bkey_fsck_err_on(bch2_inode_unpack(k, &unpacked), c, err,
422                          inode_unpack_error,
423                          "invalid variable length fields");
424
425         bkey_fsck_err_on(unpacked.bi_data_checksum >= BCH_CSUM_OPT_NR + 1, c, err,
426                          inode_checksum_type_invalid,
427                          "invalid data checksum type (%u >= %u",
428                          unpacked.bi_data_checksum, BCH_CSUM_OPT_NR + 1);
429
430         bkey_fsck_err_on(unpacked.bi_compression &&
431                          !bch2_compression_opt_valid(unpacked.bi_compression - 1), c, err,
432                          inode_compression_type_invalid,
433                          "invalid compression opt %u", unpacked.bi_compression - 1);
434
435         bkey_fsck_err_on((unpacked.bi_flags & BCH_INODE_unlinked) &&
436                          unpacked.bi_nlink != 0, c, err,
437                          inode_unlinked_but_nlink_nonzero,
438                          "flagged as unlinked but bi_nlink != 0");
439
440         bkey_fsck_err_on(unpacked.bi_subvol && !S_ISDIR(unpacked.bi_mode), c, err,
441                          inode_subvol_root_but_not_dir,
442                          "subvolume root but not a directory");
443 fsck_err:
444         return ret;
445 }
446
447 int bch2_inode_invalid(struct bch_fs *c, struct bkey_s_c k,
448                        enum bkey_invalid_flags flags,
449                        struct printbuf *err)
450 {
451         struct bkey_s_c_inode inode = bkey_s_c_to_inode(k);
452         int ret = 0;
453
454         bkey_fsck_err_on(INODE_STR_HASH(inode.v) >= BCH_STR_HASH_NR, c, err,
455                          inode_str_hash_invalid,
456                          "invalid str hash type (%llu >= %u)",
457                          INODE_STR_HASH(inode.v), BCH_STR_HASH_NR);
458
459         ret = __bch2_inode_invalid(c, k, err);
460 fsck_err:
461         return ret;
462 }
463
464 int bch2_inode_v2_invalid(struct bch_fs *c, struct bkey_s_c k,
465                           enum bkey_invalid_flags flags,
466                           struct printbuf *err)
467 {
468         struct bkey_s_c_inode_v2 inode = bkey_s_c_to_inode_v2(k);
469         int ret = 0;
470
471         bkey_fsck_err_on(INODEv2_STR_HASH(inode.v) >= BCH_STR_HASH_NR, c, err,
472                          inode_str_hash_invalid,
473                          "invalid str hash type (%llu >= %u)",
474                          INODEv2_STR_HASH(inode.v), BCH_STR_HASH_NR);
475
476         ret = __bch2_inode_invalid(c, k, err);
477 fsck_err:
478         return ret;
479 }
480
481 int bch2_inode_v3_invalid(struct bch_fs *c, struct bkey_s_c k,
482                           enum bkey_invalid_flags flags,
483                           struct printbuf *err)
484 {
485         struct bkey_s_c_inode_v3 inode = bkey_s_c_to_inode_v3(k);
486         int ret = 0;
487
488         bkey_fsck_err_on(INODEv3_FIELDS_START(inode.v) < INODEv3_FIELDS_START_INITIAL ||
489                          INODEv3_FIELDS_START(inode.v) > bkey_val_u64s(inode.k), c, err,
490                          inode_v3_fields_start_bad,
491                          "invalid fields_start (got %llu, min %u max %zu)",
492                          INODEv3_FIELDS_START(inode.v),
493                          INODEv3_FIELDS_START_INITIAL,
494                          bkey_val_u64s(inode.k));
495
496         bkey_fsck_err_on(INODEv3_STR_HASH(inode.v) >= BCH_STR_HASH_NR, c, err,
497                          inode_str_hash_invalid,
498                          "invalid str hash type (%llu >= %u)",
499                          INODEv3_STR_HASH(inode.v), BCH_STR_HASH_NR);
500
501         ret = __bch2_inode_invalid(c, k, err);
502 fsck_err:
503         return ret;
504 }
505
506 static void __bch2_inode_unpacked_to_text(struct printbuf *out,
507                                           struct bch_inode_unpacked *inode)
508 {
509         prt_printf(out, "mode=%o ", inode->bi_mode);
510
511         prt_str(out, "flags=");
512         prt_bitflags(out, bch2_inode_flag_strs, inode->bi_flags & ((1U << 20) - 1));
513         prt_printf(out, " (%x)", inode->bi_flags);
514
515         prt_printf(out, " journal_seq=%llu bi_size=%llu bi_sectors=%llu bi_version=%llu",
516                inode->bi_journal_seq,
517                inode->bi_size,
518                inode->bi_sectors,
519                inode->bi_version);
520
521 #define x(_name, _bits)                                         \
522         prt_printf(out, " "#_name "=%llu", (u64) inode->_name);
523         BCH_INODE_FIELDS_v3()
524 #undef  x
525 }
526
527 void bch2_inode_unpacked_to_text(struct printbuf *out, struct bch_inode_unpacked *inode)
528 {
529         prt_printf(out, "inum: %llu ", inode->bi_inum);
530         __bch2_inode_unpacked_to_text(out, inode);
531 }
532
533 void bch2_inode_to_text(struct printbuf *out, struct bch_fs *c, struct bkey_s_c k)
534 {
535         struct bch_inode_unpacked inode;
536
537         if (bch2_inode_unpack(k, &inode)) {
538                 prt_printf(out, "(unpack error)");
539                 return;
540         }
541
542         __bch2_inode_unpacked_to_text(out, &inode);
543 }
544
545 static inline u64 bkey_inode_flags(struct bkey_s_c k)
546 {
547         switch (k.k->type) {
548         case KEY_TYPE_inode:
549                 return le32_to_cpu(bkey_s_c_to_inode(k).v->bi_flags);
550         case KEY_TYPE_inode_v2:
551                 return le64_to_cpu(bkey_s_c_to_inode_v2(k).v->bi_flags);
552         case KEY_TYPE_inode_v3:
553                 return le64_to_cpu(bkey_s_c_to_inode_v3(k).v->bi_flags);
554         default:
555                 return 0;
556         }
557 }
558
559 static inline bool bkey_is_deleted_inode(struct bkey_s_c k)
560 {
561         return bkey_inode_flags(k) & BCH_INODE_unlinked;
562 }
563
564 int bch2_trigger_inode(struct btree_trans *trans,
565                        enum btree_id btree_id, unsigned level,
566                        struct bkey_s_c old,
567                        struct bkey_s new,
568                        unsigned flags)
569 {
570         s64 nr = bkey_is_inode(new.k) - bkey_is_inode(old.k);
571
572         if (flags & BTREE_TRIGGER_TRANSACTIONAL) {
573                 if (nr) {
574                         int ret = bch2_replicas_deltas_realloc(trans, 0);
575                         if (ret)
576                                 return ret;
577
578                         trans->fs_usage_deltas->nr_inodes += nr;
579                 }
580
581                 bool old_deleted = bkey_is_deleted_inode(old);
582                 bool new_deleted = bkey_is_deleted_inode(new.s_c);
583                 if (old_deleted != new_deleted) {
584                         int ret = bch2_btree_bit_mod(trans, BTREE_ID_deleted_inodes, new.k->p, new_deleted);
585                         if (ret)
586                                 return ret;
587                 }
588         }
589
590         if (!(flags & BTREE_TRIGGER_TRANSACTIONAL) && (flags & BTREE_TRIGGER_INSERT)) {
591                 BUG_ON(!trans->journal_res.seq);
592
593                 bkey_s_to_inode_v3(new).v->bi_journal_seq = cpu_to_le64(trans->journal_res.seq);
594         }
595
596         if (flags & BTREE_TRIGGER_GC) {
597                 struct bch_fs *c = trans->c;
598
599                 percpu_down_read(&c->mark_lock);
600                 this_cpu_add(c->usage_gc->nr_inodes, nr);
601                 percpu_up_read(&c->mark_lock);
602         }
603
604         return 0;
605 }
606
607 int bch2_inode_generation_invalid(struct bch_fs *c, struct bkey_s_c k,
608                                   enum bkey_invalid_flags flags,
609                                   struct printbuf *err)
610 {
611         int ret = 0;
612
613         bkey_fsck_err_on(k.k->p.inode, c, err,
614                          inode_pos_inode_nonzero,
615                          "nonzero k.p.inode");
616 fsck_err:
617         return ret;
618 }
619
620 void bch2_inode_generation_to_text(struct printbuf *out, struct bch_fs *c,
621                                    struct bkey_s_c k)
622 {
623         struct bkey_s_c_inode_generation gen = bkey_s_c_to_inode_generation(k);
624
625         prt_printf(out, "generation: %u", le32_to_cpu(gen.v->bi_generation));
626 }
627
628 void bch2_inode_init_early(struct bch_fs *c,
629                            struct bch_inode_unpacked *inode_u)
630 {
631         enum bch_str_hash_type str_hash =
632                 bch2_str_hash_opt_to_type(c, c->opts.str_hash);
633
634         memset(inode_u, 0, sizeof(*inode_u));
635
636         /* ick */
637         inode_u->bi_flags |= str_hash << INODE_STR_HASH_OFFSET;
638         get_random_bytes(&inode_u->bi_hash_seed,
639                          sizeof(inode_u->bi_hash_seed));
640 }
641
642 void bch2_inode_init_late(struct bch_inode_unpacked *inode_u, u64 now,
643                           uid_t uid, gid_t gid, umode_t mode, dev_t rdev,
644                           struct bch_inode_unpacked *parent)
645 {
646         inode_u->bi_mode        = mode;
647         inode_u->bi_uid         = uid;
648         inode_u->bi_gid         = gid;
649         inode_u->bi_dev         = rdev;
650         inode_u->bi_atime       = now;
651         inode_u->bi_mtime       = now;
652         inode_u->bi_ctime       = now;
653         inode_u->bi_otime       = now;
654
655         if (parent && parent->bi_mode & S_ISGID) {
656                 inode_u->bi_gid = parent->bi_gid;
657                 if (S_ISDIR(mode))
658                         inode_u->bi_mode |= S_ISGID;
659         }
660
661         if (parent) {
662 #define x(_name, ...)   inode_u->bi_##_name = parent->bi_##_name;
663                 BCH_INODE_OPTS()
664 #undef x
665         }
666 }
667
668 void bch2_inode_init(struct bch_fs *c, struct bch_inode_unpacked *inode_u,
669                      uid_t uid, gid_t gid, umode_t mode, dev_t rdev,
670                      struct bch_inode_unpacked *parent)
671 {
672         bch2_inode_init_early(c, inode_u);
673         bch2_inode_init_late(inode_u, bch2_current_time(c),
674                              uid, gid, mode, rdev, parent);
675 }
676
677 static inline u32 bkey_generation(struct bkey_s_c k)
678 {
679         switch (k.k->type) {
680         case KEY_TYPE_inode:
681         case KEY_TYPE_inode_v2:
682                 BUG();
683         case KEY_TYPE_inode_generation:
684                 return le32_to_cpu(bkey_s_c_to_inode_generation(k).v->bi_generation);
685         default:
686                 return 0;
687         }
688 }
689
690 /*
691  * This just finds an empty slot:
692  */
693 int bch2_inode_create(struct btree_trans *trans,
694                       struct btree_iter *iter,
695                       struct bch_inode_unpacked *inode_u,
696                       u32 snapshot, u64 cpu)
697 {
698         struct bch_fs *c = trans->c;
699         struct bkey_s_c k;
700         u64 min, max, start, pos, *hint;
701         int ret = 0;
702         unsigned bits = (c->opts.inodes_32bit ? 31 : 63);
703
704         if (c->opts.shard_inode_numbers) {
705                 bits -= c->inode_shard_bits;
706
707                 min = (cpu << bits);
708                 max = (cpu << bits) | ~(ULLONG_MAX << bits);
709
710                 min = max_t(u64, min, BLOCKDEV_INODE_MAX);
711                 hint = c->unused_inode_hints + cpu;
712         } else {
713                 min = BLOCKDEV_INODE_MAX;
714                 max = ~(ULLONG_MAX << bits);
715                 hint = c->unused_inode_hints;
716         }
717
718         start = READ_ONCE(*hint);
719
720         if (start >= max || start < min)
721                 start = min;
722
723         pos = start;
724         bch2_trans_iter_init(trans, iter, BTREE_ID_inodes, POS(0, pos),
725                              BTREE_ITER_ALL_SNAPSHOTS|
726                              BTREE_ITER_INTENT);
727 again:
728         while ((k = bch2_btree_iter_peek(iter)).k &&
729                !(ret = bkey_err(k)) &&
730                bkey_lt(k.k->p, POS(0, max))) {
731                 if (pos < iter->pos.offset)
732                         goto found_slot;
733
734                 /*
735                  * We don't need to iterate over keys in every snapshot once
736                  * we've found just one:
737                  */
738                 pos = iter->pos.offset + 1;
739                 bch2_btree_iter_set_pos(iter, POS(0, pos));
740         }
741
742         if (!ret && pos < max)
743                 goto found_slot;
744
745         if (!ret && start == min)
746                 ret = -BCH_ERR_ENOSPC_inode_create;
747
748         if (ret) {
749                 bch2_trans_iter_exit(trans, iter);
750                 return ret;
751         }
752
753         /* Retry from start */
754         pos = start = min;
755         bch2_btree_iter_set_pos(iter, POS(0, pos));
756         goto again;
757 found_slot:
758         bch2_btree_iter_set_pos(iter, SPOS(0, pos, snapshot));
759         k = bch2_btree_iter_peek_slot(iter);
760         ret = bkey_err(k);
761         if (ret) {
762                 bch2_trans_iter_exit(trans, iter);
763                 return ret;
764         }
765
766         *hint                   = k.k->p.offset;
767         inode_u->bi_inum        = k.k->p.offset;
768         inode_u->bi_generation  = bkey_generation(k);
769         return 0;
770 }
771
772 static int bch2_inode_delete_keys(struct btree_trans *trans,
773                                   subvol_inum inum, enum btree_id id)
774 {
775         struct btree_iter iter;
776         struct bkey_s_c k;
777         struct bkey_i delete;
778         struct bpos end = POS(inum.inum, U64_MAX);
779         u32 snapshot;
780         int ret = 0;
781
782         /*
783          * We're never going to be deleting partial extents, no need to use an
784          * extent iterator:
785          */
786         bch2_trans_iter_init(trans, &iter, id, POS(inum.inum, 0),
787                              BTREE_ITER_INTENT);
788
789         while (1) {
790                 bch2_trans_begin(trans);
791
792                 ret = bch2_subvolume_get_snapshot(trans, inum.subvol, &snapshot);
793                 if (ret)
794                         goto err;
795
796                 bch2_btree_iter_set_snapshot(&iter, snapshot);
797
798                 k = bch2_btree_iter_peek_upto(&iter, end);
799                 ret = bkey_err(k);
800                 if (ret)
801                         goto err;
802
803                 if (!k.k)
804                         break;
805
806                 bkey_init(&delete.k);
807                 delete.k.p = iter.pos;
808
809                 if (iter.flags & BTREE_ITER_IS_EXTENTS)
810                         bch2_key_resize(&delete.k,
811                                         bpos_min(end, k.k->p).offset -
812                                         iter.pos.offset);
813
814                 ret = bch2_trans_update(trans, &iter, &delete, 0) ?:
815                       bch2_trans_commit(trans, NULL, NULL,
816                                         BCH_TRANS_COMMIT_no_enospc);
817 err:
818                 if (ret && !bch2_err_matches(ret, BCH_ERR_transaction_restart))
819                         break;
820         }
821
822         bch2_trans_iter_exit(trans, &iter);
823         return ret;
824 }
825
826 int bch2_inode_rm(struct bch_fs *c, subvol_inum inum)
827 {
828         struct btree_trans *trans = bch2_trans_get(c);
829         struct btree_iter iter = { NULL };
830         struct bkey_i_inode_generation delete;
831         struct bch_inode_unpacked inode_u;
832         struct bkey_s_c k;
833         u32 snapshot;
834         int ret;
835
836         /*
837          * If this was a directory, there shouldn't be any real dirents left -
838          * but there could be whiteouts (from hash collisions) that we should
839          * delete:
840          *
841          * XXX: the dirent could ideally would delete whiteouts when they're no
842          * longer needed
843          */
844         ret   = bch2_inode_delete_keys(trans, inum, BTREE_ID_extents) ?:
845                 bch2_inode_delete_keys(trans, inum, BTREE_ID_xattrs) ?:
846                 bch2_inode_delete_keys(trans, inum, BTREE_ID_dirents);
847         if (ret)
848                 goto err;
849 retry:
850         bch2_trans_begin(trans);
851
852         ret = bch2_subvolume_get_snapshot(trans, inum.subvol, &snapshot);
853         if (ret)
854                 goto err;
855
856         k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_inodes,
857                                SPOS(0, inum.inum, snapshot),
858                                BTREE_ITER_INTENT|BTREE_ITER_CACHED);
859         ret = bkey_err(k);
860         if (ret)
861                 goto err;
862
863         if (!bkey_is_inode(k.k)) {
864                 bch2_fs_inconsistent(c,
865                                      "inode %llu:%u not found when deleting",
866                                      inum.inum, snapshot);
867                 ret = -EIO;
868                 goto err;
869         }
870
871         bch2_inode_unpack(k, &inode_u);
872
873         bkey_inode_generation_init(&delete.k_i);
874         delete.k.p = iter.pos;
875         delete.v.bi_generation = cpu_to_le32(inode_u.bi_generation + 1);
876
877         ret   = bch2_trans_update(trans, &iter, &delete.k_i, 0) ?:
878                 bch2_trans_commit(trans, NULL, NULL,
879                                 BCH_TRANS_COMMIT_no_enospc);
880 err:
881         bch2_trans_iter_exit(trans, &iter);
882         if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
883                 goto retry;
884
885         bch2_trans_put(trans);
886         return ret;
887 }
888
889 int bch2_inode_find_by_inum_nowarn_trans(struct btree_trans *trans,
890                                   subvol_inum inum,
891                                   struct bch_inode_unpacked *inode)
892 {
893         struct btree_iter iter;
894         int ret;
895
896         ret = bch2_inode_peek_nowarn(trans, &iter, inode, inum, 0);
897         if (!ret)
898                 bch2_trans_iter_exit(trans, &iter);
899         return ret;
900 }
901
902 int bch2_inode_find_by_inum_trans(struct btree_trans *trans,
903                                   subvol_inum inum,
904                                   struct bch_inode_unpacked *inode)
905 {
906         struct btree_iter iter;
907         int ret;
908
909         ret = bch2_inode_peek(trans, &iter, inode, inum, 0);
910         if (!ret)
911                 bch2_trans_iter_exit(trans, &iter);
912         return ret;
913 }
914
915 int bch2_inode_find_by_inum(struct bch_fs *c, subvol_inum inum,
916                             struct bch_inode_unpacked *inode)
917 {
918         return bch2_trans_do(c, NULL, NULL, 0,
919                 bch2_inode_find_by_inum_trans(trans, inum, inode));
920 }
921
922 int bch2_inode_nlink_inc(struct bch_inode_unpacked *bi)
923 {
924         if (bi->bi_flags & BCH_INODE_unlinked)
925                 bi->bi_flags &= ~BCH_INODE_unlinked;
926         else {
927                 if (bi->bi_nlink == U32_MAX)
928                         return -EINVAL;
929
930                 bi->bi_nlink++;
931         }
932
933         return 0;
934 }
935
936 void bch2_inode_nlink_dec(struct btree_trans *trans, struct bch_inode_unpacked *bi)
937 {
938         if (bi->bi_nlink && (bi->bi_flags & BCH_INODE_unlinked)) {
939                 bch2_trans_inconsistent(trans, "inode %llu unlinked but link count nonzero",
940                                         bi->bi_inum);
941                 return;
942         }
943
944         if (bi->bi_flags & BCH_INODE_unlinked) {
945                 bch2_trans_inconsistent(trans, "inode %llu link count underflow", bi->bi_inum);
946                 return;
947         }
948
949         if (bi->bi_nlink)
950                 bi->bi_nlink--;
951         else
952                 bi->bi_flags |= BCH_INODE_unlinked;
953 }
954
955 struct bch_opts bch2_inode_opts_to_opts(struct bch_inode_unpacked *inode)
956 {
957         struct bch_opts ret = { 0 };
958 #define x(_name, _bits)                                                 \
959         if (inode->bi_##_name)                                          \
960                 opt_set(ret, _name, inode->bi_##_name - 1);
961         BCH_INODE_OPTS()
962 #undef x
963         return ret;
964 }
965
966 void bch2_inode_opts_get(struct bch_io_opts *opts, struct bch_fs *c,
967                          struct bch_inode_unpacked *inode)
968 {
969 #define x(_name, _bits)         opts->_name = inode_opt_get(c, inode, _name);
970         BCH_INODE_OPTS()
971 #undef x
972
973         if (opts->nocow)
974                 opts->compression = opts->background_compression = opts->data_checksum = opts->erasure_code = 0;
975 }
976
977 int bch2_inum_opts_get(struct btree_trans *trans, subvol_inum inum, struct bch_io_opts *opts)
978 {
979         struct bch_inode_unpacked inode;
980         int ret = lockrestart_do(trans, bch2_inode_find_by_inum_trans(trans, inum, &inode));
981
982         if (ret)
983                 return ret;
984
985         bch2_inode_opts_get(opts, trans->c, &inode);
986         return 0;
987 }
988
989 int bch2_inode_rm_snapshot(struct btree_trans *trans, u64 inum, u32 snapshot)
990 {
991         struct bch_fs *c = trans->c;
992         struct btree_iter iter = { NULL };
993         struct bkey_i_inode_generation delete;
994         struct bch_inode_unpacked inode_u;
995         struct bkey_s_c k;
996         int ret;
997
998         do {
999                 ret   = bch2_btree_delete_range_trans(trans, BTREE_ID_extents,
1000                                                       SPOS(inum, 0, snapshot),
1001                                                       SPOS(inum, U64_MAX, snapshot),
1002                                                       0, NULL) ?:
1003                         bch2_btree_delete_range_trans(trans, BTREE_ID_dirents,
1004                                                       SPOS(inum, 0, snapshot),
1005                                                       SPOS(inum, U64_MAX, snapshot),
1006                                                       0, NULL) ?:
1007                         bch2_btree_delete_range_trans(trans, BTREE_ID_xattrs,
1008                                                       SPOS(inum, 0, snapshot),
1009                                                       SPOS(inum, U64_MAX, snapshot),
1010                                                       0, NULL);
1011         } while (ret == -BCH_ERR_transaction_restart_nested);
1012         if (ret)
1013                 goto err;
1014 retry:
1015         bch2_trans_begin(trans);
1016
1017         k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_inodes,
1018                                SPOS(0, inum, snapshot), BTREE_ITER_INTENT);
1019         ret = bkey_err(k);
1020         if (ret)
1021                 goto err;
1022
1023         if (!bkey_is_inode(k.k)) {
1024                 bch2_fs_inconsistent(c,
1025                                      "inode %llu:%u not found when deleting",
1026                                      inum, snapshot);
1027                 ret = -EIO;
1028                 goto err;
1029         }
1030
1031         bch2_inode_unpack(k, &inode_u);
1032
1033         /* Subvolume root? */
1034         if (inode_u.bi_subvol)
1035                 bch_warn(c, "deleting inode %llu marked as unlinked, but also a subvolume root!?", inode_u.bi_inum);
1036
1037         bkey_inode_generation_init(&delete.k_i);
1038         delete.k.p = iter.pos;
1039         delete.v.bi_generation = cpu_to_le32(inode_u.bi_generation + 1);
1040
1041         ret   = bch2_trans_update(trans, &iter, &delete.k_i, 0) ?:
1042                 bch2_trans_commit(trans, NULL, NULL,
1043                                 BCH_TRANS_COMMIT_no_enospc);
1044 err:
1045         bch2_trans_iter_exit(trans, &iter);
1046         if (bch2_err_matches(ret, BCH_ERR_transaction_restart))
1047                 goto retry;
1048
1049         return ret ?: -BCH_ERR_transaction_restart_nested;
1050 }
1051
1052 static int may_delete_deleted_inode(struct btree_trans *trans,
1053                                     struct btree_iter *iter,
1054                                     struct bpos pos,
1055                                     bool *need_another_pass)
1056 {
1057         struct bch_fs *c = trans->c;
1058         struct btree_iter inode_iter;
1059         struct bkey_s_c k;
1060         struct bch_inode_unpacked inode;
1061         int ret;
1062
1063         k = bch2_bkey_get_iter(trans, &inode_iter, BTREE_ID_inodes, pos, BTREE_ITER_CACHED);
1064         ret = bkey_err(k);
1065         if (ret)
1066                 return ret;
1067
1068         ret = bkey_is_inode(k.k) ? 0 : -BCH_ERR_ENOENT_inode;
1069         if (fsck_err_on(!bkey_is_inode(k.k), c,
1070                         deleted_inode_missing,
1071                         "nonexistent inode %llu:%u in deleted_inodes btree",
1072                         pos.offset, pos.snapshot))
1073                 goto delete;
1074
1075         ret = bch2_inode_unpack(k, &inode);
1076         if (ret)
1077                 goto out;
1078
1079         if (S_ISDIR(inode.bi_mode)) {
1080                 ret = bch2_empty_dir_snapshot(trans, pos.offset, pos.snapshot);
1081                 if (fsck_err_on(ret == -ENOTEMPTY, c, deleted_inode_is_dir,
1082                                 "non empty directory %llu:%u in deleted_inodes btree",
1083                                 pos.offset, pos.snapshot))
1084                         goto delete;
1085                 if (ret)
1086                         goto out;
1087         }
1088
1089         if (fsck_err_on(!(inode.bi_flags & BCH_INODE_unlinked), c,
1090                         deleted_inode_not_unlinked,
1091                         "non-deleted inode %llu:%u in deleted_inodes btree",
1092                         pos.offset, pos.snapshot))
1093                 goto delete;
1094
1095         if (c->sb.clean &&
1096             !fsck_err(c,
1097                       deleted_inode_but_clean,
1098                       "filesystem marked as clean but have deleted inode %llu:%u",
1099                       pos.offset, pos.snapshot)) {
1100                 ret = 0;
1101                 goto out;
1102         }
1103
1104         if (bch2_snapshot_is_internal_node(c, pos.snapshot)) {
1105                 struct bpos new_min_pos;
1106
1107                 ret = bch2_propagate_key_to_snapshot_leaves(trans, inode_iter.btree_id, k, &new_min_pos);
1108                 if (ret)
1109                         goto out;
1110
1111                 inode.bi_flags &= ~BCH_INODE_unlinked;
1112
1113                 ret = bch2_inode_write_flags(trans, &inode_iter, &inode,
1114                                              BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1115                 bch_err_msg(c, ret, "clearing inode unlinked flag");
1116                 if (ret)
1117                         goto out;
1118
1119                 /*
1120                  * We'll need another write buffer flush to pick up the new
1121                  * unlinked inodes in the snapshot leaves:
1122                  */
1123                 *need_another_pass = true;
1124                 goto out;
1125         }
1126
1127         ret = 1;
1128 out:
1129 fsck_err:
1130         bch2_trans_iter_exit(trans, &inode_iter);
1131         return ret;
1132 delete:
1133         ret = bch2_btree_bit_mod(trans, BTREE_ID_deleted_inodes, pos, false);
1134         goto out;
1135 }
1136
1137 int bch2_delete_dead_inodes(struct bch_fs *c)
1138 {
1139         struct btree_trans *trans = bch2_trans_get(c);
1140         bool need_another_pass;
1141         int ret;
1142 again:
1143         need_another_pass = false;
1144
1145         /*
1146          * Weird transaction restart handling here because on successful delete,
1147          * bch2_inode_rm_snapshot() will return a nested transaction restart,
1148          * but we can't retry because the btree write buffer won't have been
1149          * flushed and we'd spin:
1150          */
1151         ret = for_each_btree_key_commit(trans, iter, BTREE_ID_deleted_inodes, POS_MIN,
1152                                         BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
1153                                         NULL, NULL, BCH_TRANS_COMMIT_no_enospc, ({
1154                 ret = may_delete_deleted_inode(trans, &iter, k.k->p, &need_another_pass);
1155                 if (ret > 0) {
1156                         bch_verbose(c, "deleting unlinked inode %llu:%u", k.k->p.offset, k.k->p.snapshot);
1157
1158                         ret = bch2_inode_rm_snapshot(trans, k.k->p.offset, k.k->p.snapshot);
1159                         /*
1160                          * We don't want to loop here: a transaction restart
1161                          * error here means we handled a transaction restart and
1162                          * we're actually done, but if we loop we'll retry the
1163                          * same key because the write buffer hasn't been flushed
1164                          * yet
1165                          */
1166                         if (bch2_err_matches(ret, BCH_ERR_transaction_restart)) {
1167                                 ret = 0;
1168                                 continue;
1169                         }
1170                 }
1171
1172                 ret;
1173         }));
1174
1175         if (!ret && need_another_pass) {
1176                 ret = bch2_btree_write_buffer_flush_sync(trans);
1177                 if (ret)
1178                         goto err;
1179                 goto again;
1180         }
1181 err:
1182         bch2_trans_put(trans);
1183         return ret;
1184 }