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