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