]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/super.c
Update bcachefs sources to 783085c3cc44 kbuild: Allow gcov to be enabled on the comma...
[bcachefs-tools-debian] / libbcachefs / super.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * bcachefs setup/teardown code, and some metadata io - read a superblock and
4  * figure out what to do with it.
5  *
6  * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
7  * Copyright 2012 Google, Inc.
8  */
9
10 #include "bcachefs.h"
11 #include "alloc_background.h"
12 #include "alloc_foreground.h"
13 #include "bkey_sort.h"
14 #include "btree_cache.h"
15 #include "btree_gc.h"
16 #include "btree_journal_iter.h"
17 #include "btree_key_cache.h"
18 #include "btree_update_interior.h"
19 #include "btree_io.h"
20 #include "btree_write_buffer.h"
21 #include "buckets_waiting_for_journal.h"
22 #include "chardev.h"
23 #include "checksum.h"
24 #include "clock.h"
25 #include "compress.h"
26 #include "counters.h"
27 #include "debug.h"
28 #include "disk_groups.h"
29 #include "ec.h"
30 #include "errcode.h"
31 #include "error.h"
32 #include "fs.h"
33 #include "fs-io.h"
34 #include "fs-io-buffered.h"
35 #include "fs-io-direct.h"
36 #include "fsck.h"
37 #include "inode.h"
38 #include "io_read.h"
39 #include "io_write.h"
40 #include "journal.h"
41 #include "journal_reclaim.h"
42 #include "journal_seq_blacklist.h"
43 #include "move.h"
44 #include "migrate.h"
45 #include "movinggc.h"
46 #include "nocow_locking.h"
47 #include "quota.h"
48 #include "rebalance.h"
49 #include "recovery.h"
50 #include "replicas.h"
51 #include "sb-clean.h"
52 #include "sb-errors.h"
53 #include "sb-members.h"
54 #include "snapshot.h"
55 #include "subvolume.h"
56 #include "super.h"
57 #include "super-io.h"
58 #include "sysfs.h"
59 #include "trace.h"
60
61 #include <linux/backing-dev.h>
62 #include <linux/blkdev.h>
63 #include <linux/debugfs.h>
64 #include <linux/device.h>
65 #include <linux/idr.h>
66 #include <linux/module.h>
67 #include <linux/percpu.h>
68 #include <linux/random.h>
69 #include <linux/sysfs.h>
70 #include <crypto/hash.h>
71
72 MODULE_LICENSE("GPL");
73 MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
74 MODULE_DESCRIPTION("bcachefs filesystem");
75
76 #define KTYPE(type)                                                     \
77 static const struct attribute_group type ## _group = {                  \
78         .attrs = type ## _files                                         \
79 };                                                                      \
80                                                                         \
81 static const struct attribute_group *type ## _groups[] = {              \
82         &type ## _group,                                                \
83         NULL                                                            \
84 };                                                                      \
85                                                                         \
86 static const struct kobj_type type ## _ktype = {                        \
87         .release        = type ## _release,                             \
88         .sysfs_ops      = &type ## _sysfs_ops,                          \
89         .default_groups = type ## _groups                               \
90 }
91
92 static void bch2_fs_release(struct kobject *);
93 static void bch2_dev_release(struct kobject *);
94 static void bch2_fs_counters_release(struct kobject *k)
95 {
96 }
97
98 static void bch2_fs_internal_release(struct kobject *k)
99 {
100 }
101
102 static void bch2_fs_opts_dir_release(struct kobject *k)
103 {
104 }
105
106 static void bch2_fs_time_stats_release(struct kobject *k)
107 {
108 }
109
110 KTYPE(bch2_fs);
111 KTYPE(bch2_fs_counters);
112 KTYPE(bch2_fs_internal);
113 KTYPE(bch2_fs_opts_dir);
114 KTYPE(bch2_fs_time_stats);
115 KTYPE(bch2_dev);
116
117 static struct kset *bcachefs_kset;
118 static LIST_HEAD(bch_fs_list);
119 static DEFINE_MUTEX(bch_fs_list_lock);
120
121 DECLARE_WAIT_QUEUE_HEAD(bch2_read_only_wait);
122
123 static void bch2_dev_free(struct bch_dev *);
124 static int bch2_dev_alloc(struct bch_fs *, unsigned);
125 static int bch2_dev_sysfs_online(struct bch_fs *, struct bch_dev *);
126 static void __bch2_dev_read_only(struct bch_fs *, struct bch_dev *);
127
128 struct bch_fs *bch2_dev_to_fs(dev_t dev)
129 {
130         struct bch_fs *c;
131         struct bch_dev *ca;
132         unsigned i;
133
134         mutex_lock(&bch_fs_list_lock);
135         rcu_read_lock();
136
137         list_for_each_entry(c, &bch_fs_list, list)
138                 for_each_member_device_rcu(ca, c, i, NULL)
139                         if (ca->disk_sb.bdev && ca->disk_sb.bdev->bd_dev == dev) {
140                                 closure_get(&c->cl);
141                                 goto found;
142                         }
143         c = NULL;
144 found:
145         rcu_read_unlock();
146         mutex_unlock(&bch_fs_list_lock);
147
148         return c;
149 }
150
151 static struct bch_fs *__bch2_uuid_to_fs(__uuid_t uuid)
152 {
153         struct bch_fs *c;
154
155         lockdep_assert_held(&bch_fs_list_lock);
156
157         list_for_each_entry(c, &bch_fs_list, list)
158                 if (!memcmp(&c->disk_sb.sb->uuid, &uuid, sizeof(uuid)))
159                         return c;
160
161         return NULL;
162 }
163
164 struct bch_fs *bch2_uuid_to_fs(__uuid_t uuid)
165 {
166         struct bch_fs *c;
167
168         mutex_lock(&bch_fs_list_lock);
169         c = __bch2_uuid_to_fs(uuid);
170         if (c)
171                 closure_get(&c->cl);
172         mutex_unlock(&bch_fs_list_lock);
173
174         return c;
175 }
176
177 static void bch2_dev_usage_journal_reserve(struct bch_fs *c)
178 {
179         struct bch_dev *ca;
180         unsigned i, nr = 0, u64s =
181                 ((sizeof(struct jset_entry_dev_usage) +
182                   sizeof(struct jset_entry_dev_usage_type) * BCH_DATA_NR)) /
183                 sizeof(u64);
184
185         rcu_read_lock();
186         for_each_member_device_rcu(ca, c, i, NULL)
187                 nr++;
188         rcu_read_unlock();
189
190         bch2_journal_entry_res_resize(&c->journal,
191                         &c->dev_usage_journal_res, u64s * nr);
192 }
193
194 /* Filesystem RO/RW: */
195
196 /*
197  * For startup/shutdown of RW stuff, the dependencies are:
198  *
199  * - foreground writes depend on copygc and rebalance (to free up space)
200  *
201  * - copygc and rebalance depend on mark and sweep gc (they actually probably
202  *   don't because they either reserve ahead of time or don't block if
203  *   allocations fail, but allocations can require mark and sweep gc to run
204  *   because of generation number wraparound)
205  *
206  * - all of the above depends on the allocator threads
207  *
208  * - allocator depends on the journal (when it rewrites prios and gens)
209  */
210
211 static void __bch2_fs_read_only(struct bch_fs *c)
212 {
213         struct bch_dev *ca;
214         unsigned i, clean_passes = 0;
215         u64 seq = 0;
216
217         bch2_fs_ec_stop(c);
218         bch2_open_buckets_stop(c, NULL, true);
219         bch2_rebalance_stop(c);
220         bch2_copygc_stop(c);
221         bch2_gc_thread_stop(c);
222         bch2_fs_ec_flush(c);
223
224         bch_verbose(c, "flushing journal and stopping allocators, journal seq %llu",
225                     journal_cur_seq(&c->journal));
226
227         do {
228                 clean_passes++;
229
230                 if (bch2_btree_interior_updates_flush(c) ||
231                     bch2_journal_flush_all_pins(&c->journal) ||
232                     bch2_btree_flush_all_writes(c) ||
233                     seq != atomic64_read(&c->journal.seq)) {
234                         seq = atomic64_read(&c->journal.seq);
235                         clean_passes = 0;
236                 }
237         } while (clean_passes < 2);
238
239         bch_verbose(c, "flushing journal and stopping allocators complete, journal seq %llu",
240                     journal_cur_seq(&c->journal));
241
242         if (test_bit(JOURNAL_REPLAY_DONE, &c->journal.flags) &&
243             !test_bit(BCH_FS_EMERGENCY_RO, &c->flags))
244                 set_bit(BCH_FS_CLEAN_SHUTDOWN, &c->flags);
245         bch2_fs_journal_stop(&c->journal);
246
247         /*
248          * After stopping journal:
249          */
250         for_each_member_device(ca, c, i)
251                 bch2_dev_allocator_remove(c, ca);
252 }
253
254 #ifndef BCH_WRITE_REF_DEBUG
255 static void bch2_writes_disabled(struct percpu_ref *writes)
256 {
257         struct bch_fs *c = container_of(writes, struct bch_fs, writes);
258
259         set_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags);
260         wake_up(&bch2_read_only_wait);
261 }
262 #endif
263
264 void bch2_fs_read_only(struct bch_fs *c)
265 {
266         if (!test_bit(BCH_FS_RW, &c->flags)) {
267                 bch2_journal_reclaim_stop(&c->journal);
268                 return;
269         }
270
271         BUG_ON(test_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags));
272
273         /*
274          * Block new foreground-end write operations from starting - any new
275          * writes will return -EROFS:
276          */
277         set_bit(BCH_FS_GOING_RO, &c->flags);
278 #ifndef BCH_WRITE_REF_DEBUG
279         percpu_ref_kill(&c->writes);
280 #else
281         for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++)
282                 bch2_write_ref_put(c, i);
283 #endif
284
285         /*
286          * If we're not doing an emergency shutdown, we want to wait on
287          * outstanding writes to complete so they don't see spurious errors due
288          * to shutting down the allocator:
289          *
290          * If we are doing an emergency shutdown outstanding writes may
291          * hang until we shutdown the allocator so we don't want to wait
292          * on outstanding writes before shutting everything down - but
293          * we do need to wait on them before returning and signalling
294          * that going RO is complete:
295          */
296         wait_event(bch2_read_only_wait,
297                    test_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags) ||
298                    test_bit(BCH_FS_EMERGENCY_RO, &c->flags));
299
300         __bch2_fs_read_only(c);
301
302         wait_event(bch2_read_only_wait,
303                    test_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags));
304
305         clear_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags);
306         clear_bit(BCH_FS_GOING_RO, &c->flags);
307
308         if (!bch2_journal_error(&c->journal) &&
309             !test_bit(BCH_FS_ERROR, &c->flags) &&
310             !test_bit(BCH_FS_EMERGENCY_RO, &c->flags) &&
311             test_bit(BCH_FS_STARTED, &c->flags) &&
312             test_bit(BCH_FS_CLEAN_SHUTDOWN, &c->flags) &&
313             !c->opts.norecovery) {
314                 BUG_ON(c->journal.last_empty_seq != journal_cur_seq(&c->journal));
315                 BUG_ON(atomic_read(&c->btree_cache.dirty));
316                 BUG_ON(atomic_long_read(&c->btree_key_cache.nr_dirty));
317                 BUG_ON(c->btree_write_buffer.inc.keys.nr);
318                 BUG_ON(c->btree_write_buffer.flushing.keys.nr);
319
320                 bch_verbose(c, "marking filesystem clean");
321                 bch2_fs_mark_clean(c);
322         }
323
324         clear_bit(BCH_FS_RW, &c->flags);
325 }
326
327 static void bch2_fs_read_only_work(struct work_struct *work)
328 {
329         struct bch_fs *c =
330                 container_of(work, struct bch_fs, read_only_work);
331
332         down_write(&c->state_lock);
333         bch2_fs_read_only(c);
334         up_write(&c->state_lock);
335 }
336
337 static void bch2_fs_read_only_async(struct bch_fs *c)
338 {
339         queue_work(system_long_wq, &c->read_only_work);
340 }
341
342 bool bch2_fs_emergency_read_only(struct bch_fs *c)
343 {
344         bool ret = !test_and_set_bit(BCH_FS_EMERGENCY_RO, &c->flags);
345
346         bch2_journal_halt(&c->journal);
347         bch2_fs_read_only_async(c);
348
349         wake_up(&bch2_read_only_wait);
350         return ret;
351 }
352
353 static int bch2_fs_read_write_late(struct bch_fs *c)
354 {
355         int ret;
356
357         /*
358          * Data move operations can't run until after check_snapshots has
359          * completed, and bch2_snapshot_is_ancestor() is available.
360          *
361          * Ideally we'd start copygc/rebalance earlier instead of waiting for
362          * all of recovery/fsck to complete:
363          */
364         ret = bch2_copygc_start(c);
365         if (ret) {
366                 bch_err(c, "error starting copygc thread");
367                 return ret;
368         }
369
370         ret = bch2_rebalance_start(c);
371         if (ret) {
372                 bch_err(c, "error starting rebalance thread");
373                 return ret;
374         }
375
376         return 0;
377 }
378
379 static int __bch2_fs_read_write(struct bch_fs *c, bool early)
380 {
381         struct bch_dev *ca;
382         unsigned i;
383         int ret;
384
385         if (test_bit(BCH_FS_INITIAL_GC_UNFIXED, &c->flags)) {
386                 bch_err(c, "cannot go rw, unfixed btree errors");
387                 return -BCH_ERR_erofs_unfixed_errors;
388         }
389
390         if (test_bit(BCH_FS_RW, &c->flags))
391                 return 0;
392
393         if (c->opts.norecovery)
394                 return -BCH_ERR_erofs_norecovery;
395
396         /*
397          * nochanges is used for fsck -n mode - we have to allow going rw
398          * during recovery for that to work:
399          */
400         if (c->opts.nochanges && (!early || c->opts.read_only))
401                 return -BCH_ERR_erofs_nochanges;
402
403         bch_info(c, "going read-write");
404
405         ret = bch2_sb_members_v2_init(c);
406         if (ret)
407                 goto err;
408
409         ret = bch2_fs_mark_dirty(c);
410         if (ret)
411                 goto err;
412
413         clear_bit(BCH_FS_CLEAN_SHUTDOWN, &c->flags);
414
415         /*
416          * First journal write must be a flush write: after a clean shutdown we
417          * don't read the journal, so the first journal write may end up
418          * overwriting whatever was there previously, and there must always be
419          * at least one non-flush write in the journal or recovery will fail:
420          */
421         set_bit(JOURNAL_NEED_FLUSH_WRITE, &c->journal.flags);
422
423         for_each_rw_member(ca, c, i)
424                 bch2_dev_allocator_add(c, ca);
425         bch2_recalc_capacity(c);
426
427         ret = bch2_gc_thread_start(c);
428         if (ret) {
429                 bch_err(c, "error starting gc thread");
430                 return ret;
431         }
432
433         ret = bch2_journal_reclaim_start(&c->journal);
434         if (ret)
435                 goto err;
436
437         if (!early) {
438                 ret = bch2_fs_read_write_late(c);
439                 if (ret)
440                         goto err;
441         }
442
443 #ifndef BCH_WRITE_REF_DEBUG
444         percpu_ref_reinit(&c->writes);
445 #else
446         for (i = 0; i < BCH_WRITE_REF_NR; i++) {
447                 BUG_ON(atomic_long_read(&c->writes[i]));
448                 atomic_long_inc(&c->writes[i]);
449         }
450 #endif
451         set_bit(BCH_FS_RW, &c->flags);
452         set_bit(BCH_FS_WAS_RW, &c->flags);
453
454         bch2_do_discards(c);
455         bch2_do_invalidates(c);
456         bch2_do_stripe_deletes(c);
457         bch2_do_pending_node_rewrites(c);
458         return 0;
459 err:
460         __bch2_fs_read_only(c);
461         return ret;
462 }
463
464 int bch2_fs_read_write(struct bch_fs *c)
465 {
466         return __bch2_fs_read_write(c, false);
467 }
468
469 int bch2_fs_read_write_early(struct bch_fs *c)
470 {
471         lockdep_assert_held(&c->state_lock);
472
473         return __bch2_fs_read_write(c, true);
474 }
475
476 /* Filesystem startup/shutdown: */
477
478 static void __bch2_fs_free(struct bch_fs *c)
479 {
480         unsigned i;
481
482         for (i = 0; i < BCH_TIME_STAT_NR; i++)
483                 bch2_time_stats_exit(&c->times[i]);
484
485         bch2_free_pending_node_rewrites(c);
486         bch2_fs_sb_errors_exit(c);
487         bch2_fs_counters_exit(c);
488         bch2_fs_snapshots_exit(c);
489         bch2_fs_quota_exit(c);
490         bch2_fs_fs_io_direct_exit(c);
491         bch2_fs_fs_io_buffered_exit(c);
492         bch2_fs_fsio_exit(c);
493         bch2_fs_ec_exit(c);
494         bch2_fs_encryption_exit(c);
495         bch2_fs_nocow_locking_exit(c);
496         bch2_fs_io_write_exit(c);
497         bch2_fs_io_read_exit(c);
498         bch2_fs_buckets_waiting_for_journal_exit(c);
499         bch2_fs_btree_interior_update_exit(c);
500         bch2_fs_btree_iter_exit(c);
501         bch2_fs_btree_key_cache_exit(&c->btree_key_cache);
502         bch2_fs_btree_cache_exit(c);
503         bch2_fs_replicas_exit(c);
504         bch2_fs_journal_exit(&c->journal);
505         bch2_io_clock_exit(&c->io_clock[WRITE]);
506         bch2_io_clock_exit(&c->io_clock[READ]);
507         bch2_fs_compress_exit(c);
508         bch2_journal_keys_put_initial(c);
509         BUG_ON(atomic_read(&c->journal_keys.ref));
510         bch2_fs_btree_write_buffer_exit(c);
511         percpu_free_rwsem(&c->mark_lock);
512         free_percpu(c->online_reserved);
513
514         darray_exit(&c->btree_roots_extra);
515         free_percpu(c->pcpu);
516         mempool_exit(&c->large_bkey_pool);
517         mempool_exit(&c->btree_bounce_pool);
518         bioset_exit(&c->btree_bio);
519         mempool_exit(&c->fill_iter);
520 #ifndef BCH_WRITE_REF_DEBUG
521         percpu_ref_exit(&c->writes);
522 #endif
523         kfree(rcu_dereference_protected(c->disk_groups, 1));
524         kfree(c->journal_seq_blacklist_table);
525         kfree(c->unused_inode_hints);
526
527         if (c->write_ref_wq)
528                 destroy_workqueue(c->write_ref_wq);
529         if (c->io_complete_wq)
530                 destroy_workqueue(c->io_complete_wq);
531         if (c->copygc_wq)
532                 destroy_workqueue(c->copygc_wq);
533         if (c->btree_io_complete_wq)
534                 destroy_workqueue(c->btree_io_complete_wq);
535         if (c->btree_update_wq)
536                 destroy_workqueue(c->btree_update_wq);
537
538         bch2_free_super(&c->disk_sb);
539         kvpfree(c, sizeof(*c));
540         module_put(THIS_MODULE);
541 }
542
543 static void bch2_fs_release(struct kobject *kobj)
544 {
545         struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
546
547         __bch2_fs_free(c);
548 }
549
550 void __bch2_fs_stop(struct bch_fs *c)
551 {
552         struct bch_dev *ca;
553         unsigned i;
554
555         bch_verbose(c, "shutting down");
556
557         set_bit(BCH_FS_STOPPING, &c->flags);
558
559         cancel_work_sync(&c->journal_seq_blacklist_gc_work);
560
561         down_write(&c->state_lock);
562         bch2_fs_read_only(c);
563         up_write(&c->state_lock);
564
565         for_each_member_device(ca, c, i)
566                 if (ca->kobj.state_in_sysfs &&
567                     ca->disk_sb.bdev)
568                         sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
569
570         if (c->kobj.state_in_sysfs)
571                 kobject_del(&c->kobj);
572
573         bch2_fs_debug_exit(c);
574         bch2_fs_chardev_exit(c);
575
576         kobject_put(&c->counters_kobj);
577         kobject_put(&c->time_stats);
578         kobject_put(&c->opts_dir);
579         kobject_put(&c->internal);
580
581         /* btree prefetch might have kicked off reads in the background: */
582         bch2_btree_flush_all_reads(c);
583
584         for_each_member_device(ca, c, i)
585                 cancel_work_sync(&ca->io_error_work);
586
587         cancel_work_sync(&c->read_only_work);
588 }
589
590 void bch2_fs_free(struct bch_fs *c)
591 {
592         unsigned i;
593
594         mutex_lock(&bch_fs_list_lock);
595         list_del(&c->list);
596         mutex_unlock(&bch_fs_list_lock);
597
598         closure_sync(&c->cl);
599         closure_debug_destroy(&c->cl);
600
601         for (i = 0; i < c->sb.nr_devices; i++) {
602                 struct bch_dev *ca = rcu_dereference_protected(c->devs[i], true);
603
604                 if (ca) {
605                         bch2_free_super(&ca->disk_sb);
606                         bch2_dev_free(ca);
607                 }
608         }
609
610         bch_verbose(c, "shutdown complete");
611
612         kobject_put(&c->kobj);
613 }
614
615 void bch2_fs_stop(struct bch_fs *c)
616 {
617         __bch2_fs_stop(c);
618         bch2_fs_free(c);
619 }
620
621 static int bch2_fs_online(struct bch_fs *c)
622 {
623         struct bch_dev *ca;
624         unsigned i;
625         int ret = 0;
626
627         lockdep_assert_held(&bch_fs_list_lock);
628
629         if (__bch2_uuid_to_fs(c->sb.uuid)) {
630                 bch_err(c, "filesystem UUID already open");
631                 return -EINVAL;
632         }
633
634         ret = bch2_fs_chardev_init(c);
635         if (ret) {
636                 bch_err(c, "error creating character device");
637                 return ret;
638         }
639
640         bch2_fs_debug_init(c);
641
642         ret = kobject_add(&c->kobj, NULL, "%pU", c->sb.user_uuid.b) ?:
643             kobject_add(&c->internal, &c->kobj, "internal") ?:
644             kobject_add(&c->opts_dir, &c->kobj, "options") ?:
645 #ifndef CONFIG_BCACHEFS_NO_LATENCY_ACCT
646             kobject_add(&c->time_stats, &c->kobj, "time_stats") ?:
647 #endif
648             kobject_add(&c->counters_kobj, &c->kobj, "counters") ?:
649             bch2_opts_create_sysfs_files(&c->opts_dir);
650         if (ret) {
651                 bch_err(c, "error creating sysfs objects");
652                 return ret;
653         }
654
655         down_write(&c->state_lock);
656
657         for_each_member_device(ca, c, i) {
658                 ret = bch2_dev_sysfs_online(c, ca);
659                 if (ret) {
660                         bch_err(c, "error creating sysfs objects");
661                         percpu_ref_put(&ca->ref);
662                         goto err;
663                 }
664         }
665
666         BUG_ON(!list_empty(&c->list));
667         list_add(&c->list, &bch_fs_list);
668 err:
669         up_write(&c->state_lock);
670         return ret;
671 }
672
673 static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
674 {
675         struct bch_fs *c;
676         struct printbuf name = PRINTBUF;
677         unsigned i, iter_size;
678         int ret = 0;
679
680         c = kvpmalloc(sizeof(struct bch_fs), GFP_KERNEL|__GFP_ZERO);
681         if (!c) {
682                 c = ERR_PTR(-BCH_ERR_ENOMEM_fs_alloc);
683                 goto out;
684         }
685
686         __module_get(THIS_MODULE);
687
688         closure_init(&c->cl, NULL);
689
690         c->kobj.kset = bcachefs_kset;
691         kobject_init(&c->kobj, &bch2_fs_ktype);
692         kobject_init(&c->internal, &bch2_fs_internal_ktype);
693         kobject_init(&c->opts_dir, &bch2_fs_opts_dir_ktype);
694         kobject_init(&c->time_stats, &bch2_fs_time_stats_ktype);
695         kobject_init(&c->counters_kobj, &bch2_fs_counters_ktype);
696
697         c->minor                = -1;
698         c->disk_sb.fs_sb        = true;
699
700         init_rwsem(&c->state_lock);
701         mutex_init(&c->sb_lock);
702         mutex_init(&c->replicas_gc_lock);
703         mutex_init(&c->btree_root_lock);
704         INIT_WORK(&c->read_only_work, bch2_fs_read_only_work);
705
706         init_rwsem(&c->gc_lock);
707         mutex_init(&c->gc_gens_lock);
708         atomic_set(&c->journal_keys.ref, 1);
709         c->journal_keys.initial_ref_held = true;
710
711         for (i = 0; i < BCH_TIME_STAT_NR; i++)
712                 bch2_time_stats_init(&c->times[i]);
713
714         bch2_fs_copygc_init(c);
715         bch2_fs_btree_key_cache_init_early(&c->btree_key_cache);
716         bch2_fs_btree_interior_update_init_early(c);
717         bch2_fs_allocator_background_init(c);
718         bch2_fs_allocator_foreground_init(c);
719         bch2_fs_rebalance_init(c);
720         bch2_fs_quota_init(c);
721         bch2_fs_ec_init_early(c);
722         bch2_fs_move_init(c);
723         bch2_fs_sb_errors_init_early(c);
724
725         INIT_LIST_HEAD(&c->list);
726
727         mutex_init(&c->usage_scratch_lock);
728
729         mutex_init(&c->bio_bounce_pages_lock);
730         mutex_init(&c->snapshot_table_lock);
731         init_rwsem(&c->snapshot_create_lock);
732
733         spin_lock_init(&c->btree_write_error_lock);
734
735         INIT_WORK(&c->journal_seq_blacklist_gc_work,
736                   bch2_blacklist_entries_gc);
737
738         INIT_LIST_HEAD(&c->journal_iters);
739
740         INIT_LIST_HEAD(&c->fsck_error_msgs);
741         mutex_init(&c->fsck_error_msgs_lock);
742
743         seqcount_init(&c->gc_pos_lock);
744
745         seqcount_init(&c->usage_lock);
746
747         sema_init(&c->io_in_flight, 128);
748
749         INIT_LIST_HEAD(&c->vfs_inodes_list);
750         mutex_init(&c->vfs_inodes_lock);
751
752         c->copy_gc_enabled              = 1;
753         c->rebalance.enabled            = 1;
754         c->promote_whole_extents        = true;
755
756         c->journal.flush_write_time     = &c->times[BCH_TIME_journal_flush_write];
757         c->journal.noflush_write_time   = &c->times[BCH_TIME_journal_noflush_write];
758         c->journal.flush_seq_time       = &c->times[BCH_TIME_journal_flush_seq];
759
760         bch2_fs_btree_cache_init_early(&c->btree_cache);
761
762         mutex_init(&c->sectors_available_lock);
763
764         ret = percpu_init_rwsem(&c->mark_lock);
765         if (ret)
766                 goto err;
767
768         mutex_lock(&c->sb_lock);
769         ret = bch2_sb_to_fs(c, sb);
770         mutex_unlock(&c->sb_lock);
771
772         if (ret)
773                 goto err;
774
775         pr_uuid(&name, c->sb.user_uuid.b);
776         strscpy(c->name, name.buf, sizeof(c->name));
777         printbuf_exit(&name);
778
779         ret = name.allocation_failure ? -BCH_ERR_ENOMEM_fs_name_alloc : 0;
780         if (ret)
781                 goto err;
782
783         /* Compat: */
784         if (le16_to_cpu(sb->version) <= bcachefs_metadata_version_inode_v2 &&
785             !BCH_SB_JOURNAL_FLUSH_DELAY(sb))
786                 SET_BCH_SB_JOURNAL_FLUSH_DELAY(sb, 1000);
787
788         if (le16_to_cpu(sb->version) <= bcachefs_metadata_version_inode_v2 &&
789             !BCH_SB_JOURNAL_RECLAIM_DELAY(sb))
790                 SET_BCH_SB_JOURNAL_RECLAIM_DELAY(sb, 100);
791
792         c->opts = bch2_opts_default;
793         ret = bch2_opts_from_sb(&c->opts, sb);
794         if (ret)
795                 goto err;
796
797         bch2_opts_apply(&c->opts, opts);
798
799         c->btree_key_cache_btrees |= 1U << BTREE_ID_alloc;
800         if (c->opts.inodes_use_key_cache)
801                 c->btree_key_cache_btrees |= 1U << BTREE_ID_inodes;
802         c->btree_key_cache_btrees |= 1U << BTREE_ID_logged_ops;
803
804         c->block_bits           = ilog2(block_sectors(c));
805         c->btree_foreground_merge_threshold = BTREE_FOREGROUND_MERGE_THRESHOLD(c);
806
807         if (bch2_fs_init_fault("fs_alloc")) {
808                 bch_err(c, "fs_alloc fault injected");
809                 ret = -EFAULT;
810                 goto err;
811         }
812
813         iter_size = sizeof(struct sort_iter) +
814                 (btree_blocks(c) + 1) * 2 *
815                 sizeof(struct sort_iter_set);
816
817         c->inode_shard_bits = ilog2(roundup_pow_of_two(num_possible_cpus()));
818
819         if (!(c->btree_update_wq = alloc_workqueue("bcachefs",
820                                 WQ_FREEZABLE|WQ_UNBOUND|WQ_MEM_RECLAIM, 512)) ||
821             !(c->btree_io_complete_wq = alloc_workqueue("bcachefs_btree_io",
822                                 WQ_FREEZABLE|WQ_MEM_RECLAIM, 1)) ||
823             !(c->copygc_wq = alloc_workqueue("bcachefs_copygc",
824                                 WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 1)) ||
825             !(c->io_complete_wq = alloc_workqueue("bcachefs_io",
826                                 WQ_FREEZABLE|WQ_HIGHPRI|WQ_MEM_RECLAIM, 1)) ||
827             !(c->write_ref_wq = alloc_workqueue("bcachefs_write_ref",
828                                 WQ_FREEZABLE, 0)) ||
829 #ifndef BCH_WRITE_REF_DEBUG
830             percpu_ref_init(&c->writes, bch2_writes_disabled,
831                             PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
832 #endif
833             mempool_init_kmalloc_pool(&c->fill_iter, 1, iter_size) ||
834             bioset_init(&c->btree_bio, 1,
835                         max(offsetof(struct btree_read_bio, bio),
836                             offsetof(struct btree_write_bio, wbio.bio)),
837                         BIOSET_NEED_BVECS) ||
838             !(c->pcpu = alloc_percpu(struct bch_fs_pcpu)) ||
839             !(c->online_reserved = alloc_percpu(u64)) ||
840             mempool_init_kvpmalloc_pool(&c->btree_bounce_pool, 1,
841                                         btree_bytes(c)) ||
842             mempool_init_kmalloc_pool(&c->large_bkey_pool, 1, 2048) ||
843             !(c->unused_inode_hints = kcalloc(1U << c->inode_shard_bits,
844                                               sizeof(u64), GFP_KERNEL))) {
845                 ret = -BCH_ERR_ENOMEM_fs_other_alloc;
846                 goto err;
847         }
848
849         ret = bch2_fs_counters_init(c) ?:
850             bch2_fs_sb_errors_init(c) ?:
851             bch2_io_clock_init(&c->io_clock[READ]) ?:
852             bch2_io_clock_init(&c->io_clock[WRITE]) ?:
853             bch2_fs_journal_init(&c->journal) ?:
854             bch2_fs_replicas_init(c) ?:
855             bch2_fs_btree_cache_init(c) ?:
856             bch2_fs_btree_key_cache_init(&c->btree_key_cache) ?:
857             bch2_fs_btree_iter_init(c) ?:
858             bch2_fs_btree_interior_update_init(c) ?:
859             bch2_fs_buckets_waiting_for_journal_init(c) ?:
860             bch2_fs_btree_write_buffer_init(c) ?:
861             bch2_fs_subvolumes_init(c) ?:
862             bch2_fs_io_read_init(c) ?:
863             bch2_fs_io_write_init(c) ?:
864             bch2_fs_nocow_locking_init(c) ?:
865             bch2_fs_encryption_init(c) ?:
866             bch2_fs_compress_init(c) ?:
867             bch2_fs_ec_init(c) ?:
868             bch2_fs_fsio_init(c) ?:
869             bch2_fs_fs_io_buffered_init(c) ?:
870             bch2_fs_fs_io_direct_init(c);
871         if (ret)
872                 goto err;
873
874         for (i = 0; i < c->sb.nr_devices; i++)
875                 if (bch2_dev_exists(c->disk_sb.sb, i) &&
876                     bch2_dev_alloc(c, i)) {
877                         ret = -EEXIST;
878                         goto err;
879                 }
880
881         bch2_journal_entry_res_resize(&c->journal,
882                         &c->btree_root_journal_res,
883                         BTREE_ID_NR * (JSET_KEYS_U64s + BKEY_BTREE_PTR_U64s_MAX));
884         bch2_dev_usage_journal_reserve(c);
885         bch2_journal_entry_res_resize(&c->journal,
886                         &c->clock_journal_res,
887                         (sizeof(struct jset_entry_clock) / sizeof(u64)) * 2);
888
889         mutex_lock(&bch_fs_list_lock);
890         ret = bch2_fs_online(c);
891         mutex_unlock(&bch_fs_list_lock);
892
893         if (ret)
894                 goto err;
895 out:
896         return c;
897 err:
898         bch2_fs_free(c);
899         c = ERR_PTR(ret);
900         goto out;
901 }
902
903 noinline_for_stack
904 static void print_mount_opts(struct bch_fs *c)
905 {
906         enum bch_opt_id i;
907         struct printbuf p = PRINTBUF;
908         bool first = true;
909
910         prt_str(&p, "mounting version ");
911         bch2_version_to_text(&p, c->sb.version);
912
913         if (c->opts.read_only) {
914                 prt_str(&p, " opts=");
915                 first = false;
916                 prt_printf(&p, "ro");
917         }
918
919         for (i = 0; i < bch2_opts_nr; i++) {
920                 const struct bch_option *opt = &bch2_opt_table[i];
921                 u64 v = bch2_opt_get_by_id(&c->opts, i);
922
923                 if (!(opt->flags & OPT_MOUNT))
924                         continue;
925
926                 if (v == bch2_opt_get_by_id(&bch2_opts_default, i))
927                         continue;
928
929                 prt_str(&p, first ? " opts=" : ",");
930                 first = false;
931                 bch2_opt_to_text(&p, c, c->disk_sb.sb, opt, v, OPT_SHOW_MOUNT_STYLE);
932         }
933
934         bch_info(c, "%s", p.buf);
935         printbuf_exit(&p);
936 }
937
938 int bch2_fs_start(struct bch_fs *c)
939 {
940         struct bch_dev *ca;
941         time64_t now = ktime_get_real_seconds();
942         unsigned i;
943         int ret;
944
945         print_mount_opts(c);
946
947         down_write(&c->state_lock);
948
949         BUG_ON(test_bit(BCH_FS_STARTED, &c->flags));
950
951         mutex_lock(&c->sb_lock);
952
953         ret = bch2_sb_members_v2_init(c);
954         if (ret) {
955                 mutex_unlock(&c->sb_lock);
956                 goto err;
957         }
958
959         for_each_online_member(ca, c, i)
960                 bch2_members_v2_get_mut(c->disk_sb.sb, i)->last_mount = cpu_to_le64(now);
961
962         mutex_unlock(&c->sb_lock);
963
964         for_each_rw_member(ca, c, i)
965                 bch2_dev_allocator_add(c, ca);
966         bch2_recalc_capacity(c);
967
968         ret = BCH_SB_INITIALIZED(c->disk_sb.sb)
969                 ? bch2_fs_recovery(c)
970                 : bch2_fs_initialize(c);
971         if (ret)
972                 goto err;
973
974         ret = bch2_opts_check_may_set(c);
975         if (ret)
976                 goto err;
977
978         if (bch2_fs_init_fault("fs_start")) {
979                 bch_err(c, "fs_start fault injected");
980                 ret = -EINVAL;
981                 goto err;
982         }
983
984         set_bit(BCH_FS_STARTED, &c->flags);
985
986         if (c->opts.read_only || c->opts.nochanges) {
987                 bch2_fs_read_only(c);
988         } else {
989                 ret = !test_bit(BCH_FS_RW, &c->flags)
990                         ? bch2_fs_read_write(c)
991                         : bch2_fs_read_write_late(c);
992                 if (ret)
993                         goto err;
994         }
995
996         ret = 0;
997 out:
998         up_write(&c->state_lock);
999         return ret;
1000 err:
1001         bch_err_msg(c, ret, "starting filesystem");
1002         goto out;
1003 }
1004
1005 static int bch2_dev_may_add(struct bch_sb *sb, struct bch_fs *c)
1006 {
1007         struct bch_member m = bch2_sb_member_get(sb, sb->dev_idx);
1008
1009         if (le16_to_cpu(sb->block_size) != block_sectors(c))
1010                 return -BCH_ERR_mismatched_block_size;
1011
1012         if (le16_to_cpu(m.bucket_size) <
1013             BCH_SB_BTREE_NODE_SIZE(c->disk_sb.sb))
1014                 return -BCH_ERR_bucket_size_too_small;
1015
1016         return 0;
1017 }
1018
1019 static int bch2_dev_in_fs(struct bch_sb *fs, struct bch_sb *sb)
1020 {
1021         struct bch_sb *newest =
1022                 le64_to_cpu(fs->seq) > le64_to_cpu(sb->seq) ? fs : sb;
1023
1024         if (!uuid_equal(&fs->uuid, &sb->uuid))
1025                 return -BCH_ERR_device_not_a_member_of_filesystem;
1026
1027         if (!bch2_dev_exists(newest, sb->dev_idx))
1028                 return -BCH_ERR_device_has_been_removed;
1029
1030         if (fs->block_size != sb->block_size)
1031                 return -BCH_ERR_mismatched_block_size;
1032
1033         return 0;
1034 }
1035
1036 /* Device startup/shutdown: */
1037
1038 static void bch2_dev_release(struct kobject *kobj)
1039 {
1040         struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
1041
1042         kfree(ca);
1043 }
1044
1045 static void bch2_dev_free(struct bch_dev *ca)
1046 {
1047         cancel_work_sync(&ca->io_error_work);
1048
1049         if (ca->kobj.state_in_sysfs &&
1050             ca->disk_sb.bdev)
1051                 sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
1052
1053         if (ca->kobj.state_in_sysfs)
1054                 kobject_del(&ca->kobj);
1055
1056         bch2_free_super(&ca->disk_sb);
1057         bch2_dev_journal_exit(ca);
1058
1059         free_percpu(ca->io_done);
1060         bioset_exit(&ca->replica_set);
1061         bch2_dev_buckets_free(ca);
1062         free_page((unsigned long) ca->sb_read_scratch);
1063
1064         bch2_time_stats_exit(&ca->io_latency[WRITE]);
1065         bch2_time_stats_exit(&ca->io_latency[READ]);
1066
1067         percpu_ref_exit(&ca->io_ref);
1068         percpu_ref_exit(&ca->ref);
1069         kobject_put(&ca->kobj);
1070 }
1071
1072 static void __bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca)
1073 {
1074
1075         lockdep_assert_held(&c->state_lock);
1076
1077         if (percpu_ref_is_zero(&ca->io_ref))
1078                 return;
1079
1080         __bch2_dev_read_only(c, ca);
1081
1082         reinit_completion(&ca->io_ref_completion);
1083         percpu_ref_kill(&ca->io_ref);
1084         wait_for_completion(&ca->io_ref_completion);
1085
1086         if (ca->kobj.state_in_sysfs) {
1087                 sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
1088                 sysfs_remove_link(&ca->kobj, "block");
1089         }
1090
1091         bch2_free_super(&ca->disk_sb);
1092         bch2_dev_journal_exit(ca);
1093 }
1094
1095 static void bch2_dev_ref_complete(struct percpu_ref *ref)
1096 {
1097         struct bch_dev *ca = container_of(ref, struct bch_dev, ref);
1098
1099         complete(&ca->ref_completion);
1100 }
1101
1102 static void bch2_dev_io_ref_complete(struct percpu_ref *ref)
1103 {
1104         struct bch_dev *ca = container_of(ref, struct bch_dev, io_ref);
1105
1106         complete(&ca->io_ref_completion);
1107 }
1108
1109 static int bch2_dev_sysfs_online(struct bch_fs *c, struct bch_dev *ca)
1110 {
1111         int ret;
1112
1113         if (!c->kobj.state_in_sysfs)
1114                 return 0;
1115
1116         if (!ca->kobj.state_in_sysfs) {
1117                 ret = kobject_add(&ca->kobj, &c->kobj,
1118                                   "dev-%u", ca->dev_idx);
1119                 if (ret)
1120                         return ret;
1121         }
1122
1123         if (ca->disk_sb.bdev) {
1124                 struct kobject *block = bdev_kobj(ca->disk_sb.bdev);
1125
1126                 ret = sysfs_create_link(block, &ca->kobj, "bcachefs");
1127                 if (ret)
1128                         return ret;
1129
1130                 ret = sysfs_create_link(&ca->kobj, block, "block");
1131                 if (ret)
1132                         return ret;
1133         }
1134
1135         return 0;
1136 }
1137
1138 static struct bch_dev *__bch2_dev_alloc(struct bch_fs *c,
1139                                         struct bch_member *member)
1140 {
1141         struct bch_dev *ca;
1142         unsigned i;
1143
1144         ca = kzalloc(sizeof(*ca), GFP_KERNEL);
1145         if (!ca)
1146                 return NULL;
1147
1148         kobject_init(&ca->kobj, &bch2_dev_ktype);
1149         init_completion(&ca->ref_completion);
1150         init_completion(&ca->io_ref_completion);
1151
1152         init_rwsem(&ca->bucket_lock);
1153
1154         INIT_WORK(&ca->io_error_work, bch2_io_error_work);
1155
1156         bch2_time_stats_init(&ca->io_latency[READ]);
1157         bch2_time_stats_init(&ca->io_latency[WRITE]);
1158
1159         ca->mi = bch2_mi_to_cpu(member);
1160
1161         for (i = 0; i < ARRAY_SIZE(member->errors); i++)
1162                 atomic64_set(&ca->errors[i], le64_to_cpu(member->errors[i]));
1163
1164         ca->uuid = member->uuid;
1165
1166         ca->nr_btree_reserve = DIV_ROUND_UP(BTREE_NODE_RESERVE,
1167                              ca->mi.bucket_size / btree_sectors(c));
1168
1169         if (percpu_ref_init(&ca->ref, bch2_dev_ref_complete,
1170                             0, GFP_KERNEL) ||
1171             percpu_ref_init(&ca->io_ref, bch2_dev_io_ref_complete,
1172                             PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
1173             !(ca->sb_read_scratch = (void *) __get_free_page(GFP_KERNEL)) ||
1174             bch2_dev_buckets_alloc(c, ca) ||
1175             bioset_init(&ca->replica_set, 4,
1176                         offsetof(struct bch_write_bio, bio), 0) ||
1177             !(ca->io_done       = alloc_percpu(*ca->io_done)))
1178                 goto err;
1179
1180         return ca;
1181 err:
1182         bch2_dev_free(ca);
1183         return NULL;
1184 }
1185
1186 static void bch2_dev_attach(struct bch_fs *c, struct bch_dev *ca,
1187                             unsigned dev_idx)
1188 {
1189         ca->dev_idx = dev_idx;
1190         __set_bit(ca->dev_idx, ca->self.d);
1191         scnprintf(ca->name, sizeof(ca->name), "dev-%u", dev_idx);
1192
1193         ca->fs = c;
1194         rcu_assign_pointer(c->devs[ca->dev_idx], ca);
1195
1196         if (bch2_dev_sysfs_online(c, ca))
1197                 pr_warn("error creating sysfs objects");
1198 }
1199
1200 static int bch2_dev_alloc(struct bch_fs *c, unsigned dev_idx)
1201 {
1202         struct bch_member member = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
1203         struct bch_dev *ca = NULL;
1204         int ret = 0;
1205
1206         if (bch2_fs_init_fault("dev_alloc"))
1207                 goto err;
1208
1209         ca = __bch2_dev_alloc(c, &member);
1210         if (!ca)
1211                 goto err;
1212
1213         ca->fs = c;
1214
1215         bch2_dev_attach(c, ca, dev_idx);
1216         return ret;
1217 err:
1218         if (ca)
1219                 bch2_dev_free(ca);
1220         return -BCH_ERR_ENOMEM_dev_alloc;
1221 }
1222
1223 static int __bch2_dev_attach_bdev(struct bch_dev *ca, struct bch_sb_handle *sb)
1224 {
1225         unsigned ret;
1226
1227         if (bch2_dev_is_online(ca)) {
1228                 bch_err(ca, "already have device online in slot %u",
1229                         sb->sb->dev_idx);
1230                 return -BCH_ERR_device_already_online;
1231         }
1232
1233         if (get_capacity(sb->bdev->bd_disk) <
1234             ca->mi.bucket_size * ca->mi.nbuckets) {
1235                 bch_err(ca, "cannot online: device too small");
1236                 return -BCH_ERR_device_size_too_small;
1237         }
1238
1239         BUG_ON(!percpu_ref_is_zero(&ca->io_ref));
1240
1241         ret = bch2_dev_journal_init(ca, sb->sb);
1242         if (ret)
1243                 return ret;
1244
1245         /* Commit: */
1246         ca->disk_sb = *sb;
1247         memset(sb, 0, sizeof(*sb));
1248
1249         ca->dev = ca->disk_sb.bdev->bd_dev;
1250
1251         percpu_ref_reinit(&ca->io_ref);
1252
1253         return 0;
1254 }
1255
1256 static int bch2_dev_attach_bdev(struct bch_fs *c, struct bch_sb_handle *sb)
1257 {
1258         struct bch_dev *ca;
1259         int ret;
1260
1261         lockdep_assert_held(&c->state_lock);
1262
1263         if (le64_to_cpu(sb->sb->seq) >
1264             le64_to_cpu(c->disk_sb.sb->seq))
1265                 bch2_sb_to_fs(c, sb->sb);
1266
1267         BUG_ON(sb->sb->dev_idx >= c->sb.nr_devices ||
1268                !c->devs[sb->sb->dev_idx]);
1269
1270         ca = bch_dev_locked(c, sb->sb->dev_idx);
1271
1272         ret = __bch2_dev_attach_bdev(ca, sb);
1273         if (ret)
1274                 return ret;
1275
1276         bch2_dev_sysfs_online(c, ca);
1277
1278         if (c->sb.nr_devices == 1)
1279                 snprintf(c->name, sizeof(c->name), "%pg", ca->disk_sb.bdev);
1280         snprintf(ca->name, sizeof(ca->name), "%pg", ca->disk_sb.bdev);
1281
1282         rebalance_wakeup(c);
1283         return 0;
1284 }
1285
1286 /* Device management: */
1287
1288 /*
1289  * Note: this function is also used by the error paths - when a particular
1290  * device sees an error, we call it to determine whether we can just set the
1291  * device RO, or - if this function returns false - we'll set the whole
1292  * filesystem RO:
1293  *
1294  * XXX: maybe we should be more explicit about whether we're changing state
1295  * because we got an error or what have you?
1296  */
1297 bool bch2_dev_state_allowed(struct bch_fs *c, struct bch_dev *ca,
1298                             enum bch_member_state new_state, int flags)
1299 {
1300         struct bch_devs_mask new_online_devs;
1301         struct bch_dev *ca2;
1302         int i, nr_rw = 0, required;
1303
1304         lockdep_assert_held(&c->state_lock);
1305
1306         switch (new_state) {
1307         case BCH_MEMBER_STATE_rw:
1308                 return true;
1309         case BCH_MEMBER_STATE_ro:
1310                 if (ca->mi.state != BCH_MEMBER_STATE_rw)
1311                         return true;
1312
1313                 /* do we have enough devices to write to?  */
1314                 for_each_member_device(ca2, c, i)
1315                         if (ca2 != ca)
1316                                 nr_rw += ca2->mi.state == BCH_MEMBER_STATE_rw;
1317
1318                 required = max(!(flags & BCH_FORCE_IF_METADATA_DEGRADED)
1319                                ? c->opts.metadata_replicas
1320                                : c->opts.metadata_replicas_required,
1321                                !(flags & BCH_FORCE_IF_DATA_DEGRADED)
1322                                ? c->opts.data_replicas
1323                                : c->opts.data_replicas_required);
1324
1325                 return nr_rw >= required;
1326         case BCH_MEMBER_STATE_failed:
1327         case BCH_MEMBER_STATE_spare:
1328                 if (ca->mi.state != BCH_MEMBER_STATE_rw &&
1329                     ca->mi.state != BCH_MEMBER_STATE_ro)
1330                         return true;
1331
1332                 /* do we have enough devices to read from?  */
1333                 new_online_devs = bch2_online_devs(c);
1334                 __clear_bit(ca->dev_idx, new_online_devs.d);
1335
1336                 return bch2_have_enough_devs(c, new_online_devs, flags, false);
1337         default:
1338                 BUG();
1339         }
1340 }
1341
1342 static bool bch2_fs_may_start(struct bch_fs *c)
1343 {
1344         struct bch_dev *ca;
1345         unsigned i, flags = 0;
1346
1347         if (c->opts.very_degraded)
1348                 flags |= BCH_FORCE_IF_DEGRADED|BCH_FORCE_IF_LOST;
1349
1350         if (c->opts.degraded)
1351                 flags |= BCH_FORCE_IF_DEGRADED;
1352
1353         if (!c->opts.degraded &&
1354             !c->opts.very_degraded) {
1355                 mutex_lock(&c->sb_lock);
1356
1357                 for (i = 0; i < c->disk_sb.sb->nr_devices; i++) {
1358                         if (!bch2_dev_exists(c->disk_sb.sb, i))
1359                                 continue;
1360
1361                         ca = bch_dev_locked(c, i);
1362
1363                         if (!bch2_dev_is_online(ca) &&
1364                             (ca->mi.state == BCH_MEMBER_STATE_rw ||
1365                              ca->mi.state == BCH_MEMBER_STATE_ro)) {
1366                                 mutex_unlock(&c->sb_lock);
1367                                 return false;
1368                         }
1369                 }
1370                 mutex_unlock(&c->sb_lock);
1371         }
1372
1373         return bch2_have_enough_devs(c, bch2_online_devs(c), flags, true);
1374 }
1375
1376 static void __bch2_dev_read_only(struct bch_fs *c, struct bch_dev *ca)
1377 {
1378         /*
1379          * The allocator thread itself allocates btree nodes, so stop it first:
1380          */
1381         bch2_dev_allocator_remove(c, ca);
1382         bch2_dev_journal_stop(&c->journal, ca);
1383 }
1384
1385 static void __bch2_dev_read_write(struct bch_fs *c, struct bch_dev *ca)
1386 {
1387         lockdep_assert_held(&c->state_lock);
1388
1389         BUG_ON(ca->mi.state != BCH_MEMBER_STATE_rw);
1390
1391         bch2_dev_allocator_add(c, ca);
1392         bch2_recalc_capacity(c);
1393 }
1394
1395 int __bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
1396                          enum bch_member_state new_state, int flags)
1397 {
1398         struct bch_member *m;
1399         int ret = 0;
1400
1401         if (ca->mi.state == new_state)
1402                 return 0;
1403
1404         if (!bch2_dev_state_allowed(c, ca, new_state, flags))
1405                 return -BCH_ERR_device_state_not_allowed;
1406
1407         if (new_state != BCH_MEMBER_STATE_rw)
1408                 __bch2_dev_read_only(c, ca);
1409
1410         bch_notice(ca, "%s", bch2_member_states[new_state]);
1411
1412         mutex_lock(&c->sb_lock);
1413         m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
1414         SET_BCH_MEMBER_STATE(m, new_state);
1415         bch2_write_super(c);
1416         mutex_unlock(&c->sb_lock);
1417
1418         if (new_state == BCH_MEMBER_STATE_rw)
1419                 __bch2_dev_read_write(c, ca);
1420
1421         rebalance_wakeup(c);
1422
1423         return ret;
1424 }
1425
1426 int bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
1427                        enum bch_member_state new_state, int flags)
1428 {
1429         int ret;
1430
1431         down_write(&c->state_lock);
1432         ret = __bch2_dev_set_state(c, ca, new_state, flags);
1433         up_write(&c->state_lock);
1434
1435         return ret;
1436 }
1437
1438 /* Device add/removal: */
1439
1440 static int bch2_dev_remove_alloc(struct bch_fs *c, struct bch_dev *ca)
1441 {
1442         struct bpos start       = POS(ca->dev_idx, 0);
1443         struct bpos end         = POS(ca->dev_idx, U64_MAX);
1444         int ret;
1445
1446         /*
1447          * We clear the LRU and need_discard btrees first so that we don't race
1448          * with bch2_do_invalidates() and bch2_do_discards()
1449          */
1450         ret =   bch2_btree_delete_range(c, BTREE_ID_lru, start, end,
1451                                         BTREE_TRIGGER_NORUN, NULL) ?:
1452                 bch2_btree_delete_range(c, BTREE_ID_need_discard, start, end,
1453                                         BTREE_TRIGGER_NORUN, NULL) ?:
1454                 bch2_btree_delete_range(c, BTREE_ID_freespace, start, end,
1455                                         BTREE_TRIGGER_NORUN, NULL) ?:
1456                 bch2_btree_delete_range(c, BTREE_ID_backpointers, start, end,
1457                                         BTREE_TRIGGER_NORUN, NULL) ?:
1458                 bch2_btree_delete_range(c, BTREE_ID_alloc, start, end,
1459                                         BTREE_TRIGGER_NORUN, NULL) ?:
1460                 bch2_btree_delete_range(c, BTREE_ID_bucket_gens, start, end,
1461                                         BTREE_TRIGGER_NORUN, NULL);
1462         if (ret)
1463                 bch_err_msg(c, ret, "removing dev alloc info");
1464
1465         return ret;
1466 }
1467
1468 int bch2_dev_remove(struct bch_fs *c, struct bch_dev *ca, int flags)
1469 {
1470         struct bch_member *m;
1471         unsigned dev_idx = ca->dev_idx, data;
1472         int ret;
1473
1474         down_write(&c->state_lock);
1475
1476         /*
1477          * We consume a reference to ca->ref, regardless of whether we succeed
1478          * or fail:
1479          */
1480         percpu_ref_put(&ca->ref);
1481
1482         if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
1483                 bch_err(ca, "Cannot remove without losing data");
1484                 ret = -BCH_ERR_device_state_not_allowed;
1485                 goto err;
1486         }
1487
1488         __bch2_dev_read_only(c, ca);
1489
1490         ret = bch2_dev_data_drop(c, ca->dev_idx, flags);
1491         if (ret) {
1492                 bch_err_msg(ca, ret, "dropping data");
1493                 goto err;
1494         }
1495
1496         ret = bch2_dev_remove_alloc(c, ca);
1497         if (ret) {
1498                 bch_err_msg(ca, ret, "deleting alloc info");
1499                 goto err;
1500         }
1501
1502         ret = bch2_journal_flush_device_pins(&c->journal, ca->dev_idx);
1503         if (ret) {
1504                 bch_err_msg(ca, ret, "flushing journal");
1505                 goto err;
1506         }
1507
1508         ret = bch2_journal_flush(&c->journal);
1509         if (ret) {
1510                 bch_err(ca, "journal error");
1511                 goto err;
1512         }
1513
1514         ret = bch2_replicas_gc2(c);
1515         if (ret) {
1516                 bch_err_msg(ca, ret, "in replicas_gc2()");
1517                 goto err;
1518         }
1519
1520         data = bch2_dev_has_data(c, ca);
1521         if (data) {
1522                 struct printbuf data_has = PRINTBUF;
1523
1524                 prt_bitflags(&data_has, bch2_data_types, data);
1525                 bch_err(ca, "Remove failed, still has data (%s)", data_has.buf);
1526                 printbuf_exit(&data_has);
1527                 ret = -EBUSY;
1528                 goto err;
1529         }
1530
1531         __bch2_dev_offline(c, ca);
1532
1533         mutex_lock(&c->sb_lock);
1534         rcu_assign_pointer(c->devs[ca->dev_idx], NULL);
1535         mutex_unlock(&c->sb_lock);
1536
1537         percpu_ref_kill(&ca->ref);
1538         wait_for_completion(&ca->ref_completion);
1539
1540         bch2_dev_free(ca);
1541
1542         /*
1543          * At this point the device object has been removed in-core, but the
1544          * on-disk journal might still refer to the device index via sb device
1545          * usage entries. Recovery fails if it sees usage information for an
1546          * invalid device. Flush journal pins to push the back of the journal
1547          * past now invalid device index references before we update the
1548          * superblock, but after the device object has been removed so any
1549          * further journal writes elide usage info for the device.
1550          */
1551         bch2_journal_flush_all_pins(&c->journal);
1552
1553         /*
1554          * Free this device's slot in the bch_member array - all pointers to
1555          * this device must be gone:
1556          */
1557         mutex_lock(&c->sb_lock);
1558         m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
1559         memset(&m->uuid, 0, sizeof(m->uuid));
1560
1561         bch2_write_super(c);
1562
1563         mutex_unlock(&c->sb_lock);
1564         up_write(&c->state_lock);
1565
1566         bch2_dev_usage_journal_reserve(c);
1567         return 0;
1568 err:
1569         if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1570             !percpu_ref_is_zero(&ca->io_ref))
1571                 __bch2_dev_read_write(c, ca);
1572         up_write(&c->state_lock);
1573         return ret;
1574 }
1575
1576 /* Add new device to running filesystem: */
1577 int bch2_dev_add(struct bch_fs *c, const char *path)
1578 {
1579         struct bch_opts opts = bch2_opts_empty();
1580         struct bch_sb_handle sb;
1581         struct bch_dev *ca = NULL;
1582         struct bch_sb_field_members_v2 *mi;
1583         struct bch_member dev_mi;
1584         unsigned dev_idx, nr_devices, u64s;
1585         struct printbuf errbuf = PRINTBUF;
1586         struct printbuf label = PRINTBUF;
1587         int ret;
1588
1589         ret = bch2_read_super(path, &opts, &sb);
1590         if (ret) {
1591                 bch_err_msg(c, ret, "reading super");
1592                 goto err;
1593         }
1594
1595         dev_mi = bch2_sb_member_get(sb.sb, sb.sb->dev_idx);
1596
1597         if (BCH_MEMBER_GROUP(&dev_mi)) {
1598                 bch2_disk_path_to_text_sb(&label, sb.sb, BCH_MEMBER_GROUP(&dev_mi) - 1);
1599                 if (label.allocation_failure) {
1600                         ret = -ENOMEM;
1601                         goto err;
1602                 }
1603         }
1604
1605         ret = bch2_dev_may_add(sb.sb, c);
1606         if (ret) {
1607                 bch_err_fn(c, ret);
1608                 goto err;
1609         }
1610
1611         ca = __bch2_dev_alloc(c, &dev_mi);
1612         if (!ca) {
1613                 ret = -ENOMEM;
1614                 goto err;
1615         }
1616
1617         bch2_dev_usage_init(ca);
1618
1619         ret = __bch2_dev_attach_bdev(ca, &sb);
1620         if (ret)
1621                 goto err;
1622
1623         ret = bch2_dev_journal_alloc(ca);
1624         if (ret) {
1625                 bch_err_msg(c, ret, "allocating journal");
1626                 goto err;
1627         }
1628
1629         down_write(&c->state_lock);
1630         mutex_lock(&c->sb_lock);
1631
1632         ret = bch2_sb_from_fs(c, ca);
1633         if (ret) {
1634                 bch_err_msg(c, ret, "setting up new superblock");
1635                 goto err_unlock;
1636         }
1637
1638         if (dynamic_fault("bcachefs:add:no_slot"))
1639                 goto no_slot;
1640
1641         for (dev_idx = 0; dev_idx < BCH_SB_MEMBERS_MAX; dev_idx++)
1642                 if (!bch2_dev_exists(c->disk_sb.sb, dev_idx))
1643                         goto have_slot;
1644 no_slot:
1645         ret = -BCH_ERR_ENOSPC_sb_members;
1646         bch_err_msg(c, ret, "setting up new superblock");
1647         goto err_unlock;
1648
1649 have_slot:
1650         nr_devices = max_t(unsigned, dev_idx + 1, c->sb.nr_devices);
1651
1652         mi = bch2_sb_field_get(c->disk_sb.sb, members_v2);
1653         u64s = DIV_ROUND_UP(sizeof(struct bch_sb_field_members_v2) +
1654                             le16_to_cpu(mi->member_bytes) * nr_devices, sizeof(u64));
1655
1656         mi = bch2_sb_field_resize(&c->disk_sb, members_v2, u64s);
1657         if (!mi) {
1658                 ret = -BCH_ERR_ENOSPC_sb_members;
1659                 bch_err_msg(c, ret, "setting up new superblock");
1660                 goto err_unlock;
1661         }
1662         struct bch_member *m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
1663
1664         /* success: */
1665
1666         *m = dev_mi;
1667         m->last_mount = cpu_to_le64(ktime_get_real_seconds());
1668         c->disk_sb.sb->nr_devices       = nr_devices;
1669
1670         ca->disk_sb.sb->dev_idx = dev_idx;
1671         bch2_dev_attach(c, ca, dev_idx);
1672
1673         if (BCH_MEMBER_GROUP(&dev_mi)) {
1674                 ret = __bch2_dev_group_set(c, ca, label.buf);
1675                 if (ret) {
1676                         bch_err_msg(c, ret, "creating new label");
1677                         goto err_unlock;
1678                 }
1679         }
1680
1681         bch2_write_super(c);
1682         mutex_unlock(&c->sb_lock);
1683
1684         bch2_dev_usage_journal_reserve(c);
1685
1686         ret = bch2_trans_mark_dev_sb(c, ca);
1687         if (ret) {
1688                 bch_err_msg(ca, ret, "marking new superblock");
1689                 goto err_late;
1690         }
1691
1692         ret = bch2_fs_freespace_init(c);
1693         if (ret) {
1694                 bch_err_msg(ca, ret, "initializing free space");
1695                 goto err_late;
1696         }
1697
1698         ca->new_fs_bucket_idx = 0;
1699
1700         if (ca->mi.state == BCH_MEMBER_STATE_rw)
1701                 __bch2_dev_read_write(c, ca);
1702
1703         up_write(&c->state_lock);
1704         return 0;
1705
1706 err_unlock:
1707         mutex_unlock(&c->sb_lock);
1708         up_write(&c->state_lock);
1709 err:
1710         if (ca)
1711                 bch2_dev_free(ca);
1712         bch2_free_super(&sb);
1713         printbuf_exit(&label);
1714         printbuf_exit(&errbuf);
1715         return ret;
1716 err_late:
1717         up_write(&c->state_lock);
1718         ca = NULL;
1719         goto err;
1720 }
1721
1722 /* Hot add existing device to running filesystem: */
1723 int bch2_dev_online(struct bch_fs *c, const char *path)
1724 {
1725         struct bch_opts opts = bch2_opts_empty();
1726         struct bch_sb_handle sb = { NULL };
1727         struct bch_dev *ca;
1728         unsigned dev_idx;
1729         int ret;
1730
1731         down_write(&c->state_lock);
1732
1733         ret = bch2_read_super(path, &opts, &sb);
1734         if (ret) {
1735                 up_write(&c->state_lock);
1736                 return ret;
1737         }
1738
1739         dev_idx = sb.sb->dev_idx;
1740
1741         ret = bch2_dev_in_fs(c->disk_sb.sb, sb.sb);
1742         if (ret) {
1743                 bch_err_msg(c, ret, "bringing %s online", path);
1744                 goto err;
1745         }
1746
1747         ret = bch2_dev_attach_bdev(c, &sb);
1748         if (ret)
1749                 goto err;
1750
1751         ca = bch_dev_locked(c, dev_idx);
1752
1753         ret = bch2_trans_mark_dev_sb(c, ca);
1754         if (ret) {
1755                 bch_err_msg(c, ret, "bringing %s online: error from bch2_trans_mark_dev_sb", path);
1756                 goto err;
1757         }
1758
1759         if (ca->mi.state == BCH_MEMBER_STATE_rw)
1760                 __bch2_dev_read_write(c, ca);
1761
1762         if (!ca->mi.freespace_initialized) {
1763                 ret = bch2_dev_freespace_init(c, ca, 0, ca->mi.nbuckets);
1764                 bch_err_msg(ca, ret, "initializing free space");
1765                 if (ret)
1766                         goto err;
1767         }
1768
1769         if (!ca->journal.nr) {
1770                 ret = bch2_dev_journal_alloc(ca);
1771                 bch_err_msg(ca, ret, "allocating journal");
1772                 if (ret)
1773                         goto err;
1774         }
1775
1776         mutex_lock(&c->sb_lock);
1777         bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount =
1778                 cpu_to_le64(ktime_get_real_seconds());
1779         bch2_write_super(c);
1780         mutex_unlock(&c->sb_lock);
1781
1782         up_write(&c->state_lock);
1783         return 0;
1784 err:
1785         up_write(&c->state_lock);
1786         bch2_free_super(&sb);
1787         return ret;
1788 }
1789
1790 int bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca, int flags)
1791 {
1792         down_write(&c->state_lock);
1793
1794         if (!bch2_dev_is_online(ca)) {
1795                 bch_err(ca, "Already offline");
1796                 up_write(&c->state_lock);
1797                 return 0;
1798         }
1799
1800         if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
1801                 bch_err(ca, "Cannot offline required disk");
1802                 up_write(&c->state_lock);
1803                 return -BCH_ERR_device_state_not_allowed;
1804         }
1805
1806         __bch2_dev_offline(c, ca);
1807
1808         up_write(&c->state_lock);
1809         return 0;
1810 }
1811
1812 int bch2_dev_resize(struct bch_fs *c, struct bch_dev *ca, u64 nbuckets)
1813 {
1814         struct bch_member *m;
1815         u64 old_nbuckets;
1816         int ret = 0;
1817
1818         down_write(&c->state_lock);
1819         old_nbuckets = ca->mi.nbuckets;
1820
1821         if (nbuckets < ca->mi.nbuckets) {
1822                 bch_err(ca, "Cannot shrink yet");
1823                 ret = -EINVAL;
1824                 goto err;
1825         }
1826
1827         if (bch2_dev_is_online(ca) &&
1828             get_capacity(ca->disk_sb.bdev->bd_disk) <
1829             ca->mi.bucket_size * nbuckets) {
1830                 bch_err(ca, "New size larger than device");
1831                 ret = -BCH_ERR_device_size_too_small;
1832                 goto err;
1833         }
1834
1835         ret = bch2_dev_buckets_resize(c, ca, nbuckets);
1836         if (ret) {
1837                 bch_err_msg(ca, ret, "resizing buckets");
1838                 goto err;
1839         }
1840
1841         ret = bch2_trans_mark_dev_sb(c, ca);
1842         if (ret)
1843                 goto err;
1844
1845         mutex_lock(&c->sb_lock);
1846         m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
1847         m->nbuckets = cpu_to_le64(nbuckets);
1848
1849         bch2_write_super(c);
1850         mutex_unlock(&c->sb_lock);
1851
1852         if (ca->mi.freespace_initialized) {
1853                 ret = bch2_dev_freespace_init(c, ca, old_nbuckets, nbuckets);
1854                 if (ret)
1855                         goto err;
1856
1857                 /*
1858                  * XXX: this is all wrong transactionally - we'll be able to do
1859                  * this correctly after the disk space accounting rewrite
1860                  */
1861                 ca->usage_base->d[BCH_DATA_free].buckets += nbuckets - old_nbuckets;
1862         }
1863
1864         bch2_recalc_capacity(c);
1865 err:
1866         up_write(&c->state_lock);
1867         return ret;
1868 }
1869
1870 /* return with ref on ca->ref: */
1871 struct bch_dev *bch2_dev_lookup(struct bch_fs *c, const char *name)
1872 {
1873         struct bch_dev *ca;
1874         unsigned i;
1875
1876         rcu_read_lock();
1877         for_each_member_device_rcu(ca, c, i, NULL)
1878                 if (!strcmp(name, ca->name))
1879                         goto found;
1880         ca = ERR_PTR(-BCH_ERR_ENOENT_dev_not_found);
1881 found:
1882         rcu_read_unlock();
1883
1884         return ca;
1885 }
1886
1887 /* Filesystem open: */
1888
1889 struct bch_fs *bch2_fs_open(char * const *devices, unsigned nr_devices,
1890                             struct bch_opts opts)
1891 {
1892         DARRAY(struct bch_sb_handle) sbs = { 0 };
1893         struct bch_fs *c = NULL;
1894         struct bch_sb_handle *sb, *best = NULL;
1895         struct printbuf errbuf = PRINTBUF;
1896         int ret = 0;
1897
1898         if (!try_module_get(THIS_MODULE))
1899                 return ERR_PTR(-ENODEV);
1900
1901         if (!nr_devices) {
1902                 ret = -EINVAL;
1903                 goto err;
1904         }
1905
1906         ret = darray_make_room(&sbs, nr_devices);
1907         if (ret)
1908                 goto err;
1909
1910         for (unsigned i = 0; i < nr_devices; i++) {
1911                 struct bch_sb_handle sb = { NULL };
1912
1913                 ret = bch2_read_super(devices[i], &opts, &sb);
1914                 if (ret)
1915                         goto err;
1916
1917                 BUG_ON(darray_push(&sbs, sb));
1918         }
1919
1920         darray_for_each(sbs, sb)
1921                 if (!best || le64_to_cpu(sb->sb->seq) > le64_to_cpu(best->sb->seq))
1922                         best = sb;
1923
1924         darray_for_each_reverse(sbs, sb) {
1925                 if (sb != best && !bch2_dev_exists(best->sb, sb->sb->dev_idx)) {
1926                         pr_info("%pg has been removed, skipping", sb->bdev);
1927                         bch2_free_super(sb);
1928                         darray_remove_item(&sbs, sb);
1929                         best -= best > sb;
1930                         continue;
1931                 }
1932
1933                 ret = bch2_dev_in_fs(best->sb, sb->sb);
1934                 if (ret)
1935                         goto err_print;
1936         }
1937
1938         c = bch2_fs_alloc(best->sb, opts);
1939         ret = PTR_ERR_OR_ZERO(c);
1940         if (ret)
1941                 goto err;
1942
1943         down_write(&c->state_lock);
1944         darray_for_each(sbs, sb) {
1945                 ret = bch2_dev_attach_bdev(c, sb);
1946                 if (ret) {
1947                         up_write(&c->state_lock);
1948                         goto err;
1949                 }
1950         }
1951         up_write(&c->state_lock);
1952
1953         if (!bch2_fs_may_start(c)) {
1954                 ret = -BCH_ERR_insufficient_devices_to_start;
1955                 goto err_print;
1956         }
1957
1958         if (!c->opts.nostart) {
1959                 ret = bch2_fs_start(c);
1960                 if (ret)
1961                         goto err;
1962         }
1963 out:
1964         darray_for_each(sbs, sb)
1965                 bch2_free_super(sb);
1966         darray_exit(&sbs);
1967         printbuf_exit(&errbuf);
1968         module_put(THIS_MODULE);
1969         return c;
1970 err_print:
1971         pr_err("bch_fs_open err opening %s: %s",
1972                devices[0], bch2_err_str(ret));
1973 err:
1974         if (!IS_ERR_OR_NULL(c))
1975                 bch2_fs_stop(c);
1976         c = ERR_PTR(ret);
1977         goto out;
1978 }
1979
1980 /* Global interfaces/init */
1981
1982 static void bcachefs_exit(void)
1983 {
1984         bch2_debug_exit();
1985         bch2_vfs_exit();
1986         bch2_chardev_exit();
1987         bch2_btree_key_cache_exit();
1988         if (bcachefs_kset)
1989                 kset_unregister(bcachefs_kset);
1990 }
1991
1992 static int __init bcachefs_init(void)
1993 {
1994         bch2_bkey_pack_test();
1995
1996         if (!(bcachefs_kset = kset_create_and_add("bcachefs", NULL, fs_kobj)) ||
1997             bch2_btree_key_cache_init() ||
1998             bch2_chardev_init() ||
1999             bch2_vfs_init() ||
2000             bch2_debug_init())
2001                 goto err;
2002
2003         return 0;
2004 err:
2005         bcachefs_exit();
2006         return -ENOMEM;
2007 }
2008
2009 #define BCH_DEBUG_PARAM(name, description)                      \
2010         bool bch2_##name;                                       \
2011         module_param_named(name, bch2_##name, bool, 0644);      \
2012         MODULE_PARM_DESC(name, description);
2013 BCH_DEBUG_PARAMS()
2014 #undef BCH_DEBUG_PARAM
2015
2016 __maybe_unused
2017 static unsigned bch2_metadata_version = bcachefs_metadata_version_current;
2018 module_param_named(version, bch2_metadata_version, uint, 0400);
2019
2020 module_exit(bcachefs_exit);
2021 module_init(bcachefs_init);