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