]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/super.c
Update bcachefs sources to 72740a707b64 bcachefs: Split brain detection
[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_handle *fs,
1070                           struct bch_sb_handle *sb)
1071 {
1072         if (fs == sb)
1073                 return 0;
1074
1075         if (!uuid_equal(&fs->sb->uuid, &sb->sb->uuid))
1076                 return -BCH_ERR_device_not_a_member_of_filesystem;
1077
1078         if (!bch2_dev_exists(fs->sb, sb->sb->dev_idx))
1079                 return -BCH_ERR_device_has_been_removed;
1080
1081         if (fs->sb->block_size != sb->sb->block_size)
1082                 return -BCH_ERR_mismatched_block_size;
1083
1084         if (le16_to_cpu(fs->sb->version) < bcachefs_metadata_version_member_seq ||
1085             le16_to_cpu(sb->sb->version) < bcachefs_metadata_version_member_seq)
1086                 return 0;
1087
1088         if (fs->sb->seq == sb->sb->seq &&
1089             fs->sb->write_time != sb->sb->write_time) {
1090                 struct printbuf buf = PRINTBUF;
1091
1092                 prt_printf(&buf, "Split brain detected between %pg and %pg:",
1093                            sb->bdev, fs->bdev);
1094                 prt_newline(&buf);
1095                 prt_printf(&buf, "seq=%llu but write_time different, got", le64_to_cpu(sb->sb->seq));
1096                 prt_newline(&buf);
1097
1098                 prt_printf(&buf, "%pg ", fs->bdev);
1099                 bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));;
1100                 prt_newline(&buf);
1101
1102                 prt_printf(&buf, "%pg ", sb->bdev);
1103                 bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));;
1104                 prt_newline(&buf);
1105
1106                 prt_printf(&buf, "Not using older sb");
1107
1108                 pr_err("%s", buf.buf);
1109                 printbuf_exit(&buf);
1110                 return -BCH_ERR_device_splitbrain;
1111         }
1112
1113         struct bch_member m = bch2_sb_member_get(fs->sb, sb->sb->dev_idx);
1114         u64 seq_from_fs         = le64_to_cpu(m.seq);
1115         u64 seq_from_member     = le64_to_cpu(sb->sb->seq);
1116
1117         if (seq_from_fs && seq_from_fs < seq_from_member) {
1118                 pr_err("Split brain detected between %pg and %pg:\n"
1119                        "%pg believes seq of %pg to be %llu, but %pg has %llu\n"
1120                        "Not using %pg",
1121                        sb->bdev, fs->bdev,
1122                        fs->bdev, sb->bdev, seq_from_fs,
1123                        sb->bdev, seq_from_member,
1124                        sb->bdev);
1125                 return -BCH_ERR_device_splitbrain;
1126         }
1127
1128         return 0;
1129 }
1130
1131 /* Device startup/shutdown: */
1132
1133 static void bch2_dev_release(struct kobject *kobj)
1134 {
1135         struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
1136
1137         kfree(ca);
1138 }
1139
1140 static void bch2_dev_free(struct bch_dev *ca)
1141 {
1142         cancel_work_sync(&ca->io_error_work);
1143
1144         if (ca->kobj.state_in_sysfs &&
1145             ca->disk_sb.bdev)
1146                 sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
1147
1148         if (ca->kobj.state_in_sysfs)
1149                 kobject_del(&ca->kobj);
1150
1151         bch2_free_super(&ca->disk_sb);
1152         bch2_dev_journal_exit(ca);
1153
1154         free_percpu(ca->io_done);
1155         bioset_exit(&ca->replica_set);
1156         bch2_dev_buckets_free(ca);
1157         free_page((unsigned long) ca->sb_read_scratch);
1158
1159         bch2_time_stats_exit(&ca->io_latency[WRITE]);
1160         bch2_time_stats_exit(&ca->io_latency[READ]);
1161
1162         percpu_ref_exit(&ca->io_ref);
1163         percpu_ref_exit(&ca->ref);
1164         kobject_put(&ca->kobj);
1165 }
1166
1167 static void __bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca)
1168 {
1169
1170         lockdep_assert_held(&c->state_lock);
1171
1172         if (percpu_ref_is_zero(&ca->io_ref))
1173                 return;
1174
1175         __bch2_dev_read_only(c, ca);
1176
1177         reinit_completion(&ca->io_ref_completion);
1178         percpu_ref_kill(&ca->io_ref);
1179         wait_for_completion(&ca->io_ref_completion);
1180
1181         if (ca->kobj.state_in_sysfs) {
1182                 sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
1183                 sysfs_remove_link(&ca->kobj, "block");
1184         }
1185
1186         bch2_free_super(&ca->disk_sb);
1187         bch2_dev_journal_exit(ca);
1188 }
1189
1190 static void bch2_dev_ref_complete(struct percpu_ref *ref)
1191 {
1192         struct bch_dev *ca = container_of(ref, struct bch_dev, ref);
1193
1194         complete(&ca->ref_completion);
1195 }
1196
1197 static void bch2_dev_io_ref_complete(struct percpu_ref *ref)
1198 {
1199         struct bch_dev *ca = container_of(ref, struct bch_dev, io_ref);
1200
1201         complete(&ca->io_ref_completion);
1202 }
1203
1204 static int bch2_dev_sysfs_online(struct bch_fs *c, struct bch_dev *ca)
1205 {
1206         int ret;
1207
1208         if (!c->kobj.state_in_sysfs)
1209                 return 0;
1210
1211         if (!ca->kobj.state_in_sysfs) {
1212                 ret = kobject_add(&ca->kobj, &c->kobj,
1213                                   "dev-%u", ca->dev_idx);
1214                 if (ret)
1215                         return ret;
1216         }
1217
1218         if (ca->disk_sb.bdev) {
1219                 struct kobject *block = bdev_kobj(ca->disk_sb.bdev);
1220
1221                 ret = sysfs_create_link(block, &ca->kobj, "bcachefs");
1222                 if (ret)
1223                         return ret;
1224
1225                 ret = sysfs_create_link(&ca->kobj, block, "block");
1226                 if (ret)
1227                         return ret;
1228         }
1229
1230         return 0;
1231 }
1232
1233 static struct bch_dev *__bch2_dev_alloc(struct bch_fs *c,
1234                                         struct bch_member *member)
1235 {
1236         struct bch_dev *ca;
1237         unsigned i;
1238
1239         ca = kzalloc(sizeof(*ca), GFP_KERNEL);
1240         if (!ca)
1241                 return NULL;
1242
1243         kobject_init(&ca->kobj, &bch2_dev_ktype);
1244         init_completion(&ca->ref_completion);
1245         init_completion(&ca->io_ref_completion);
1246
1247         init_rwsem(&ca->bucket_lock);
1248
1249         INIT_WORK(&ca->io_error_work, bch2_io_error_work);
1250
1251         bch2_time_stats_init(&ca->io_latency[READ]);
1252         bch2_time_stats_init(&ca->io_latency[WRITE]);
1253
1254         ca->mi = bch2_mi_to_cpu(member);
1255
1256         for (i = 0; i < ARRAY_SIZE(member->errors); i++)
1257                 atomic64_set(&ca->errors[i], le64_to_cpu(member->errors[i]));
1258
1259         ca->uuid = member->uuid;
1260
1261         ca->nr_btree_reserve = DIV_ROUND_UP(BTREE_NODE_RESERVE,
1262                              ca->mi.bucket_size / btree_sectors(c));
1263
1264         if (percpu_ref_init(&ca->ref, bch2_dev_ref_complete,
1265                             0, GFP_KERNEL) ||
1266             percpu_ref_init(&ca->io_ref, bch2_dev_io_ref_complete,
1267                             PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
1268             !(ca->sb_read_scratch = (void *) __get_free_page(GFP_KERNEL)) ||
1269             bch2_dev_buckets_alloc(c, ca) ||
1270             bioset_init(&ca->replica_set, 4,
1271                         offsetof(struct bch_write_bio, bio), 0) ||
1272             !(ca->io_done       = alloc_percpu(*ca->io_done)))
1273                 goto err;
1274
1275         return ca;
1276 err:
1277         bch2_dev_free(ca);
1278         return NULL;
1279 }
1280
1281 static void bch2_dev_attach(struct bch_fs *c, struct bch_dev *ca,
1282                             unsigned dev_idx)
1283 {
1284         ca->dev_idx = dev_idx;
1285         __set_bit(ca->dev_idx, ca->self.d);
1286         scnprintf(ca->name, sizeof(ca->name), "dev-%u", dev_idx);
1287
1288         ca->fs = c;
1289         rcu_assign_pointer(c->devs[ca->dev_idx], ca);
1290
1291         if (bch2_dev_sysfs_online(c, ca))
1292                 pr_warn("error creating sysfs objects");
1293 }
1294
1295 static int bch2_dev_alloc(struct bch_fs *c, unsigned dev_idx)
1296 {
1297         struct bch_member member = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
1298         struct bch_dev *ca = NULL;
1299         int ret = 0;
1300
1301         if (bch2_fs_init_fault("dev_alloc"))
1302                 goto err;
1303
1304         ca = __bch2_dev_alloc(c, &member);
1305         if (!ca)
1306                 goto err;
1307
1308         ca->fs = c;
1309
1310         bch2_dev_attach(c, ca, dev_idx);
1311         return ret;
1312 err:
1313         if (ca)
1314                 bch2_dev_free(ca);
1315         return -BCH_ERR_ENOMEM_dev_alloc;
1316 }
1317
1318 static int __bch2_dev_attach_bdev(struct bch_dev *ca, struct bch_sb_handle *sb)
1319 {
1320         unsigned ret;
1321
1322         if (bch2_dev_is_online(ca)) {
1323                 bch_err(ca, "already have device online in slot %u",
1324                         sb->sb->dev_idx);
1325                 return -BCH_ERR_device_already_online;
1326         }
1327
1328         if (get_capacity(sb->bdev->bd_disk) <
1329             ca->mi.bucket_size * ca->mi.nbuckets) {
1330                 bch_err(ca, "cannot online: device too small");
1331                 return -BCH_ERR_device_size_too_small;
1332         }
1333
1334         BUG_ON(!percpu_ref_is_zero(&ca->io_ref));
1335
1336         ret = bch2_dev_journal_init(ca, sb->sb);
1337         if (ret)
1338                 return ret;
1339
1340         /* Commit: */
1341         ca->disk_sb = *sb;
1342         memset(sb, 0, sizeof(*sb));
1343
1344         ca->dev = ca->disk_sb.bdev->bd_dev;
1345
1346         percpu_ref_reinit(&ca->io_ref);
1347
1348         return 0;
1349 }
1350
1351 static int bch2_dev_attach_bdev(struct bch_fs *c, struct bch_sb_handle *sb)
1352 {
1353         struct bch_dev *ca;
1354         int ret;
1355
1356         lockdep_assert_held(&c->state_lock);
1357
1358         if (le64_to_cpu(sb->sb->seq) >
1359             le64_to_cpu(c->disk_sb.sb->seq))
1360                 bch2_sb_to_fs(c, sb->sb);
1361
1362         BUG_ON(sb->sb->dev_idx >= c->sb.nr_devices ||
1363                !c->devs[sb->sb->dev_idx]);
1364
1365         ca = bch_dev_locked(c, sb->sb->dev_idx);
1366
1367         ret = __bch2_dev_attach_bdev(ca, sb);
1368         if (ret)
1369                 return ret;
1370
1371         bch2_dev_sysfs_online(c, ca);
1372
1373         if (c->sb.nr_devices == 1)
1374                 snprintf(c->name, sizeof(c->name), "%pg", ca->disk_sb.bdev);
1375         snprintf(ca->name, sizeof(ca->name), "%pg", ca->disk_sb.bdev);
1376
1377         rebalance_wakeup(c);
1378         return 0;
1379 }
1380
1381 /* Device management: */
1382
1383 /*
1384  * Note: this function is also used by the error paths - when a particular
1385  * device sees an error, we call it to determine whether we can just set the
1386  * device RO, or - if this function returns false - we'll set the whole
1387  * filesystem RO:
1388  *
1389  * XXX: maybe we should be more explicit about whether we're changing state
1390  * because we got an error or what have you?
1391  */
1392 bool bch2_dev_state_allowed(struct bch_fs *c, struct bch_dev *ca,
1393                             enum bch_member_state new_state, int flags)
1394 {
1395         struct bch_devs_mask new_online_devs;
1396         int nr_rw = 0, required;
1397
1398         lockdep_assert_held(&c->state_lock);
1399
1400         switch (new_state) {
1401         case BCH_MEMBER_STATE_rw:
1402                 return true;
1403         case BCH_MEMBER_STATE_ro:
1404                 if (ca->mi.state != BCH_MEMBER_STATE_rw)
1405                         return true;
1406
1407                 /* do we have enough devices to write to?  */
1408                 for_each_member_device(c, ca2)
1409                         if (ca2 != ca)
1410                                 nr_rw += ca2->mi.state == BCH_MEMBER_STATE_rw;
1411
1412                 required = max(!(flags & BCH_FORCE_IF_METADATA_DEGRADED)
1413                                ? c->opts.metadata_replicas
1414                                : c->opts.metadata_replicas_required,
1415                                !(flags & BCH_FORCE_IF_DATA_DEGRADED)
1416                                ? c->opts.data_replicas
1417                                : c->opts.data_replicas_required);
1418
1419                 return nr_rw >= required;
1420         case BCH_MEMBER_STATE_failed:
1421         case BCH_MEMBER_STATE_spare:
1422                 if (ca->mi.state != BCH_MEMBER_STATE_rw &&
1423                     ca->mi.state != BCH_MEMBER_STATE_ro)
1424                         return true;
1425
1426                 /* do we have enough devices to read from?  */
1427                 new_online_devs = bch2_online_devs(c);
1428                 __clear_bit(ca->dev_idx, new_online_devs.d);
1429
1430                 return bch2_have_enough_devs(c, new_online_devs, flags, false);
1431         default:
1432                 BUG();
1433         }
1434 }
1435
1436 static bool bch2_fs_may_start(struct bch_fs *c)
1437 {
1438         struct bch_dev *ca;
1439         unsigned i, flags = 0;
1440
1441         if (c->opts.very_degraded)
1442                 flags |= BCH_FORCE_IF_DEGRADED|BCH_FORCE_IF_LOST;
1443
1444         if (c->opts.degraded)
1445                 flags |= BCH_FORCE_IF_DEGRADED;
1446
1447         if (!c->opts.degraded &&
1448             !c->opts.very_degraded) {
1449                 mutex_lock(&c->sb_lock);
1450
1451                 for (i = 0; i < c->disk_sb.sb->nr_devices; i++) {
1452                         if (!bch2_dev_exists(c->disk_sb.sb, i))
1453                                 continue;
1454
1455                         ca = bch_dev_locked(c, i);
1456
1457                         if (!bch2_dev_is_online(ca) &&
1458                             (ca->mi.state == BCH_MEMBER_STATE_rw ||
1459                              ca->mi.state == BCH_MEMBER_STATE_ro)) {
1460                                 mutex_unlock(&c->sb_lock);
1461                                 return false;
1462                         }
1463                 }
1464                 mutex_unlock(&c->sb_lock);
1465         }
1466
1467         return bch2_have_enough_devs(c, bch2_online_devs(c), flags, true);
1468 }
1469
1470 static void __bch2_dev_read_only(struct bch_fs *c, struct bch_dev *ca)
1471 {
1472         /*
1473          * The allocator thread itself allocates btree nodes, so stop it first:
1474          */
1475         bch2_dev_allocator_remove(c, ca);
1476         bch2_dev_journal_stop(&c->journal, ca);
1477 }
1478
1479 static void __bch2_dev_read_write(struct bch_fs *c, struct bch_dev *ca)
1480 {
1481         lockdep_assert_held(&c->state_lock);
1482
1483         BUG_ON(ca->mi.state != BCH_MEMBER_STATE_rw);
1484
1485         bch2_dev_allocator_add(c, ca);
1486         bch2_recalc_capacity(c);
1487 }
1488
1489 int __bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
1490                          enum bch_member_state new_state, int flags)
1491 {
1492         struct bch_member *m;
1493         int ret = 0;
1494
1495         if (ca->mi.state == new_state)
1496                 return 0;
1497
1498         if (!bch2_dev_state_allowed(c, ca, new_state, flags))
1499                 return -BCH_ERR_device_state_not_allowed;
1500
1501         if (new_state != BCH_MEMBER_STATE_rw)
1502                 __bch2_dev_read_only(c, ca);
1503
1504         bch_notice(ca, "%s", bch2_member_states[new_state]);
1505
1506         mutex_lock(&c->sb_lock);
1507         m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
1508         SET_BCH_MEMBER_STATE(m, new_state);
1509         bch2_write_super(c);
1510         mutex_unlock(&c->sb_lock);
1511
1512         if (new_state == BCH_MEMBER_STATE_rw)
1513                 __bch2_dev_read_write(c, ca);
1514
1515         rebalance_wakeup(c);
1516
1517         return ret;
1518 }
1519
1520 int bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
1521                        enum bch_member_state new_state, int flags)
1522 {
1523         int ret;
1524
1525         down_write(&c->state_lock);
1526         ret = __bch2_dev_set_state(c, ca, new_state, flags);
1527         up_write(&c->state_lock);
1528
1529         return ret;
1530 }
1531
1532 /* Device add/removal: */
1533
1534 static int bch2_dev_remove_alloc(struct bch_fs *c, struct bch_dev *ca)
1535 {
1536         struct bpos start       = POS(ca->dev_idx, 0);
1537         struct bpos end         = POS(ca->dev_idx, U64_MAX);
1538         int ret;
1539
1540         /*
1541          * We clear the LRU and need_discard btrees first so that we don't race
1542          * with bch2_do_invalidates() and bch2_do_discards()
1543          */
1544         ret =   bch2_btree_delete_range(c, BTREE_ID_lru, start, end,
1545                                         BTREE_TRIGGER_NORUN, NULL) ?:
1546                 bch2_btree_delete_range(c, BTREE_ID_need_discard, start, end,
1547                                         BTREE_TRIGGER_NORUN, NULL) ?:
1548                 bch2_btree_delete_range(c, BTREE_ID_freespace, start, end,
1549                                         BTREE_TRIGGER_NORUN, NULL) ?:
1550                 bch2_btree_delete_range(c, BTREE_ID_backpointers, start, end,
1551                                         BTREE_TRIGGER_NORUN, NULL) ?:
1552                 bch2_btree_delete_range(c, BTREE_ID_alloc, start, end,
1553                                         BTREE_TRIGGER_NORUN, NULL) ?:
1554                 bch2_btree_delete_range(c, BTREE_ID_bucket_gens, start, end,
1555                                         BTREE_TRIGGER_NORUN, NULL);
1556         bch_err_msg(c, ret, "removing dev alloc info");
1557         return ret;
1558 }
1559
1560 int bch2_dev_remove(struct bch_fs *c, struct bch_dev *ca, int flags)
1561 {
1562         struct bch_member *m;
1563         unsigned dev_idx = ca->dev_idx, data;
1564         int ret;
1565
1566         down_write(&c->state_lock);
1567
1568         /*
1569          * We consume a reference to ca->ref, regardless of whether we succeed
1570          * or fail:
1571          */
1572         percpu_ref_put(&ca->ref);
1573
1574         if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
1575                 bch_err(ca, "Cannot remove without losing data");
1576                 ret = -BCH_ERR_device_state_not_allowed;
1577                 goto err;
1578         }
1579
1580         __bch2_dev_read_only(c, ca);
1581
1582         ret = bch2_dev_data_drop(c, ca->dev_idx, flags);
1583         bch_err_msg(ca, ret, "dropping data");
1584         if (ret)
1585                 goto err;
1586
1587         ret = bch2_dev_remove_alloc(c, ca);
1588         bch_err_msg(ca, ret, "deleting alloc info");
1589         if (ret)
1590                 goto err;
1591
1592         ret = bch2_journal_flush_device_pins(&c->journal, ca->dev_idx);
1593         bch_err_msg(ca, ret, "flushing journal");
1594         if (ret)
1595                 goto err;
1596
1597         ret = bch2_journal_flush(&c->journal);
1598         bch_err(ca, "journal error");
1599         if (ret)
1600                 goto err;
1601
1602         ret = bch2_replicas_gc2(c);
1603         bch_err_msg(ca, ret, "in replicas_gc2()");
1604         if (ret)
1605                 goto err;
1606
1607         data = bch2_dev_has_data(c, ca);
1608         if (data) {
1609                 struct printbuf data_has = PRINTBUF;
1610
1611                 prt_bitflags(&data_has, bch2_data_types, data);
1612                 bch_err(ca, "Remove failed, still has data (%s)", data_has.buf);
1613                 printbuf_exit(&data_has);
1614                 ret = -EBUSY;
1615                 goto err;
1616         }
1617
1618         __bch2_dev_offline(c, ca);
1619
1620         mutex_lock(&c->sb_lock);
1621         rcu_assign_pointer(c->devs[ca->dev_idx], NULL);
1622         mutex_unlock(&c->sb_lock);
1623
1624         percpu_ref_kill(&ca->ref);
1625         wait_for_completion(&ca->ref_completion);
1626
1627         bch2_dev_free(ca);
1628
1629         /*
1630          * At this point the device object has been removed in-core, but the
1631          * on-disk journal might still refer to the device index via sb device
1632          * usage entries. Recovery fails if it sees usage information for an
1633          * invalid device. Flush journal pins to push the back of the journal
1634          * past now invalid device index references before we update the
1635          * superblock, but after the device object has been removed so any
1636          * further journal writes elide usage info for the device.
1637          */
1638         bch2_journal_flush_all_pins(&c->journal);
1639
1640         /*
1641          * Free this device's slot in the bch_member array - all pointers to
1642          * this device must be gone:
1643          */
1644         mutex_lock(&c->sb_lock);
1645         m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
1646         memset(&m->uuid, 0, sizeof(m->uuid));
1647
1648         bch2_write_super(c);
1649
1650         mutex_unlock(&c->sb_lock);
1651         up_write(&c->state_lock);
1652
1653         bch2_dev_usage_journal_reserve(c);
1654         return 0;
1655 err:
1656         if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1657             !percpu_ref_is_zero(&ca->io_ref))
1658                 __bch2_dev_read_write(c, ca);
1659         up_write(&c->state_lock);
1660         return ret;
1661 }
1662
1663 /* Add new device to running filesystem: */
1664 int bch2_dev_add(struct bch_fs *c, const char *path)
1665 {
1666         struct bch_opts opts = bch2_opts_empty();
1667         struct bch_sb_handle sb;
1668         struct bch_dev *ca = NULL;
1669         struct bch_sb_field_members_v2 *mi;
1670         struct bch_member dev_mi;
1671         unsigned dev_idx, nr_devices, u64s;
1672         struct printbuf errbuf = PRINTBUF;
1673         struct printbuf label = PRINTBUF;
1674         int ret;
1675
1676         ret = bch2_read_super(path, &opts, &sb);
1677         bch_err_msg(c, ret, "reading super");
1678         if (ret)
1679                 goto err;
1680
1681         dev_mi = bch2_sb_member_get(sb.sb, sb.sb->dev_idx);
1682
1683         if (BCH_MEMBER_GROUP(&dev_mi)) {
1684                 bch2_disk_path_to_text_sb(&label, sb.sb, BCH_MEMBER_GROUP(&dev_mi) - 1);
1685                 if (label.allocation_failure) {
1686                         ret = -ENOMEM;
1687                         goto err;
1688                 }
1689         }
1690
1691         ret = bch2_dev_may_add(sb.sb, c);
1692         if (ret)
1693                 goto err;
1694
1695         ca = __bch2_dev_alloc(c, &dev_mi);
1696         if (!ca) {
1697                 ret = -ENOMEM;
1698                 goto err;
1699         }
1700
1701         bch2_dev_usage_init(ca);
1702
1703         ret = __bch2_dev_attach_bdev(ca, &sb);
1704         if (ret)
1705                 goto err;
1706
1707         ret = bch2_dev_journal_alloc(ca);
1708         bch_err_msg(c, ret, "allocating journal");
1709         if (ret)
1710                 goto err;
1711
1712         down_write(&c->state_lock);
1713         mutex_lock(&c->sb_lock);
1714
1715         ret = bch2_sb_from_fs(c, ca);
1716         bch_err_msg(c, ret, "setting up new superblock");
1717         if (ret)
1718                 goto err_unlock;
1719
1720         if (dynamic_fault("bcachefs:add:no_slot"))
1721                 goto no_slot;
1722
1723         for (dev_idx = 0; dev_idx < BCH_SB_MEMBERS_MAX; dev_idx++)
1724                 if (!bch2_dev_exists(c->disk_sb.sb, dev_idx))
1725                         goto have_slot;
1726 no_slot:
1727         ret = -BCH_ERR_ENOSPC_sb_members;
1728         bch_err_msg(c, ret, "setting up new superblock");
1729         goto err_unlock;
1730
1731 have_slot:
1732         nr_devices = max_t(unsigned, dev_idx + 1, c->sb.nr_devices);
1733
1734         mi = bch2_sb_field_get(c->disk_sb.sb, members_v2);
1735         u64s = DIV_ROUND_UP(sizeof(struct bch_sb_field_members_v2) +
1736                             le16_to_cpu(mi->member_bytes) * nr_devices, sizeof(u64));
1737
1738         mi = bch2_sb_field_resize(&c->disk_sb, members_v2, u64s);
1739         if (!mi) {
1740                 ret = -BCH_ERR_ENOSPC_sb_members;
1741                 bch_err_msg(c, ret, "setting up new superblock");
1742                 goto err_unlock;
1743         }
1744         struct bch_member *m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
1745
1746         /* success: */
1747
1748         *m = dev_mi;
1749         m->last_mount = cpu_to_le64(ktime_get_real_seconds());
1750         c->disk_sb.sb->nr_devices       = nr_devices;
1751
1752         ca->disk_sb.sb->dev_idx = dev_idx;
1753         bch2_dev_attach(c, ca, dev_idx);
1754
1755         if (BCH_MEMBER_GROUP(&dev_mi)) {
1756                 ret = __bch2_dev_group_set(c, ca, label.buf);
1757                 bch_err_msg(c, ret, "creating new label");
1758                 if (ret)
1759                         goto err_unlock;
1760         }
1761
1762         bch2_write_super(c);
1763         mutex_unlock(&c->sb_lock);
1764
1765         bch2_dev_usage_journal_reserve(c);
1766
1767         ret = bch2_trans_mark_dev_sb(c, ca);
1768         bch_err_msg(ca, ret, "marking new superblock");
1769         if (ret)
1770                 goto err_late;
1771
1772         ret = bch2_fs_freespace_init(c);
1773         bch_err_msg(ca, ret, "initializing free space");
1774         if (ret)
1775                 goto err_late;
1776
1777         ca->new_fs_bucket_idx = 0;
1778
1779         if (ca->mi.state == BCH_MEMBER_STATE_rw)
1780                 __bch2_dev_read_write(c, ca);
1781
1782         up_write(&c->state_lock);
1783         return 0;
1784
1785 err_unlock:
1786         mutex_unlock(&c->sb_lock);
1787         up_write(&c->state_lock);
1788 err:
1789         if (ca)
1790                 bch2_dev_free(ca);
1791         bch2_free_super(&sb);
1792         printbuf_exit(&label);
1793         printbuf_exit(&errbuf);
1794         bch_err_fn(c, ret);
1795         return ret;
1796 err_late:
1797         up_write(&c->state_lock);
1798         ca = NULL;
1799         goto err;
1800 }
1801
1802 /* Hot add existing device to running filesystem: */
1803 int bch2_dev_online(struct bch_fs *c, const char *path)
1804 {
1805         struct bch_opts opts = bch2_opts_empty();
1806         struct bch_sb_handle sb = { NULL };
1807         struct bch_dev *ca;
1808         unsigned dev_idx;
1809         int ret;
1810
1811         down_write(&c->state_lock);
1812
1813         ret = bch2_read_super(path, &opts, &sb);
1814         if (ret) {
1815                 up_write(&c->state_lock);
1816                 return ret;
1817         }
1818
1819         dev_idx = sb.sb->dev_idx;
1820
1821         ret = bch2_dev_in_fs(&c->disk_sb, &sb);
1822         bch_err_msg(c, ret, "bringing %s online", path);
1823         if (ret)
1824                 goto err;
1825
1826         ret = bch2_dev_attach_bdev(c, &sb);
1827         if (ret)
1828                 goto err;
1829
1830         ca = bch_dev_locked(c, dev_idx);
1831
1832         ret = bch2_trans_mark_dev_sb(c, ca);
1833         bch_err_msg(c, ret, "bringing %s online: error from bch2_trans_mark_dev_sb", path);
1834         if (ret)
1835                 goto err;
1836
1837         if (ca->mi.state == BCH_MEMBER_STATE_rw)
1838                 __bch2_dev_read_write(c, ca);
1839
1840         if (!ca->mi.freespace_initialized) {
1841                 ret = bch2_dev_freespace_init(c, ca, 0, ca->mi.nbuckets);
1842                 bch_err_msg(ca, ret, "initializing free space");
1843                 if (ret)
1844                         goto err;
1845         }
1846
1847         if (!ca->journal.nr) {
1848                 ret = bch2_dev_journal_alloc(ca);
1849                 bch_err_msg(ca, ret, "allocating journal");
1850                 if (ret)
1851                         goto err;
1852         }
1853
1854         mutex_lock(&c->sb_lock);
1855         bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount =
1856                 cpu_to_le64(ktime_get_real_seconds());
1857         bch2_write_super(c);
1858         mutex_unlock(&c->sb_lock);
1859
1860         up_write(&c->state_lock);
1861         return 0;
1862 err:
1863         up_write(&c->state_lock);
1864         bch2_free_super(&sb);
1865         return ret;
1866 }
1867
1868 int bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca, int flags)
1869 {
1870         down_write(&c->state_lock);
1871
1872         if (!bch2_dev_is_online(ca)) {
1873                 bch_err(ca, "Already offline");
1874                 up_write(&c->state_lock);
1875                 return 0;
1876         }
1877
1878         if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
1879                 bch_err(ca, "Cannot offline required disk");
1880                 up_write(&c->state_lock);
1881                 return -BCH_ERR_device_state_not_allowed;
1882         }
1883
1884         __bch2_dev_offline(c, ca);
1885
1886         up_write(&c->state_lock);
1887         return 0;
1888 }
1889
1890 int bch2_dev_resize(struct bch_fs *c, struct bch_dev *ca, u64 nbuckets)
1891 {
1892         struct bch_member *m;
1893         u64 old_nbuckets;
1894         int ret = 0;
1895
1896         down_write(&c->state_lock);
1897         old_nbuckets = ca->mi.nbuckets;
1898
1899         if (nbuckets < ca->mi.nbuckets) {
1900                 bch_err(ca, "Cannot shrink yet");
1901                 ret = -EINVAL;
1902                 goto err;
1903         }
1904
1905         if (bch2_dev_is_online(ca) &&
1906             get_capacity(ca->disk_sb.bdev->bd_disk) <
1907             ca->mi.bucket_size * nbuckets) {
1908                 bch_err(ca, "New size larger than device");
1909                 ret = -BCH_ERR_device_size_too_small;
1910                 goto err;
1911         }
1912
1913         ret = bch2_dev_buckets_resize(c, ca, nbuckets);
1914         bch_err_msg(ca, ret, "resizing buckets");
1915         if (ret)
1916                 goto err;
1917
1918         ret = bch2_trans_mark_dev_sb(c, ca);
1919         if (ret)
1920                 goto err;
1921
1922         mutex_lock(&c->sb_lock);
1923         m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
1924         m->nbuckets = cpu_to_le64(nbuckets);
1925
1926         bch2_write_super(c);
1927         mutex_unlock(&c->sb_lock);
1928
1929         if (ca->mi.freespace_initialized) {
1930                 ret = bch2_dev_freespace_init(c, ca, old_nbuckets, nbuckets);
1931                 if (ret)
1932                         goto err;
1933
1934                 /*
1935                  * XXX: this is all wrong transactionally - we'll be able to do
1936                  * this correctly after the disk space accounting rewrite
1937                  */
1938                 ca->usage_base->d[BCH_DATA_free].buckets += nbuckets - old_nbuckets;
1939         }
1940
1941         bch2_recalc_capacity(c);
1942 err:
1943         up_write(&c->state_lock);
1944         return ret;
1945 }
1946
1947 /* return with ref on ca->ref: */
1948 struct bch_dev *bch2_dev_lookup(struct bch_fs *c, const char *name)
1949 {
1950         rcu_read_lock();
1951         for_each_member_device_rcu(c, ca, NULL)
1952                 if (!strcmp(name, ca->name)) {
1953                         rcu_read_unlock();
1954                         return ca;
1955                 }
1956         rcu_read_unlock();
1957         return ERR_PTR(-BCH_ERR_ENOENT_dev_not_found);
1958 }
1959
1960 /* Filesystem open: */
1961
1962 static inline int sb_cmp(struct bch_sb *l, struct bch_sb *r)
1963 {
1964         return  cmp_int(le64_to_cpu(l->seq), le64_to_cpu(r->seq)) ?:
1965                 cmp_int(le64_to_cpu(l->write_time), le64_to_cpu(r->write_time));
1966 }
1967
1968 struct bch_fs *bch2_fs_open(char * const *devices, unsigned nr_devices,
1969                             struct bch_opts opts)
1970 {
1971         DARRAY(struct bch_sb_handle) sbs = { 0 };
1972         struct bch_fs *c = NULL;
1973         struct bch_sb_handle *best = NULL;
1974         struct printbuf errbuf = PRINTBUF;
1975         int ret = 0;
1976
1977         if (!try_module_get(THIS_MODULE))
1978                 return ERR_PTR(-ENODEV);
1979
1980         if (!nr_devices) {
1981                 ret = -EINVAL;
1982                 goto err;
1983         }
1984
1985         ret = darray_make_room(&sbs, nr_devices);
1986         if (ret)
1987                 goto err;
1988
1989         for (unsigned i = 0; i < nr_devices; i++) {
1990                 struct bch_sb_handle sb = { NULL };
1991
1992                 ret = bch2_read_super(devices[i], &opts, &sb);
1993                 if (ret)
1994                         goto err;
1995
1996                 BUG_ON(darray_push(&sbs, sb));
1997         }
1998
1999         darray_for_each(sbs, sb)
2000                 if (!best || sb_cmp(sb->sb, best->sb) > 0)
2001                         best = sb;
2002
2003         darray_for_each_reverse(sbs, sb) {
2004                 ret = bch2_dev_in_fs(best, sb);
2005
2006                 if (ret == -BCH_ERR_device_has_been_removed ||
2007                     ret == -BCH_ERR_device_splitbrain) {
2008                         bch2_free_super(sb);
2009                         darray_remove_item(&sbs, sb);
2010                         best -= best > sb;
2011                         ret = 0;
2012                         continue;
2013                 }
2014
2015                 if (ret)
2016                         goto err_print;
2017         }
2018
2019         c = bch2_fs_alloc(best->sb, opts);
2020         ret = PTR_ERR_OR_ZERO(c);
2021         if (ret)
2022                 goto err;
2023
2024         down_write(&c->state_lock);
2025         darray_for_each(sbs, sb) {
2026                 ret = bch2_dev_attach_bdev(c, sb);
2027                 if (ret) {
2028                         up_write(&c->state_lock);
2029                         goto err;
2030                 }
2031         }
2032         up_write(&c->state_lock);
2033
2034         if (!bch2_fs_may_start(c)) {
2035                 ret = -BCH_ERR_insufficient_devices_to_start;
2036                 goto err_print;
2037         }
2038
2039         if (!c->opts.nostart) {
2040                 ret = bch2_fs_start(c);
2041                 if (ret)
2042                         goto err;
2043         }
2044 out:
2045         darray_for_each(sbs, sb)
2046                 bch2_free_super(sb);
2047         darray_exit(&sbs);
2048         printbuf_exit(&errbuf);
2049         module_put(THIS_MODULE);
2050         return c;
2051 err_print:
2052         pr_err("bch_fs_open err opening %s: %s",
2053                devices[0], bch2_err_str(ret));
2054 err:
2055         if (!IS_ERR_OR_NULL(c))
2056                 bch2_fs_stop(c);
2057         c = ERR_PTR(ret);
2058         goto out;
2059 }
2060
2061 /* Global interfaces/init */
2062
2063 static void bcachefs_exit(void)
2064 {
2065         bch2_debug_exit();
2066         bch2_vfs_exit();
2067         bch2_chardev_exit();
2068         bch2_btree_key_cache_exit();
2069         if (bcachefs_kset)
2070                 kset_unregister(bcachefs_kset);
2071 }
2072
2073 static int __init bcachefs_init(void)
2074 {
2075         bch2_bkey_pack_test();
2076
2077         if (!(bcachefs_kset = kset_create_and_add("bcachefs", NULL, fs_kobj)) ||
2078             bch2_btree_key_cache_init() ||
2079             bch2_chardev_init() ||
2080             bch2_vfs_init() ||
2081             bch2_debug_init())
2082                 goto err;
2083
2084         return 0;
2085 err:
2086         bcachefs_exit();
2087         return -ENOMEM;
2088 }
2089
2090 #define BCH_DEBUG_PARAM(name, description)                      \
2091         bool bch2_##name;                                       \
2092         module_param_named(name, bch2_##name, bool, 0644);      \
2093         MODULE_PARM_DESC(name, description);
2094 BCH_DEBUG_PARAMS()
2095 #undef BCH_DEBUG_PARAM
2096
2097 __maybe_unused
2098 static unsigned bch2_metadata_version = bcachefs_metadata_version_current;
2099 module_param_named(version, bch2_metadata_version, uint, 0400);
2100
2101 module_exit(bcachefs_exit);
2102 module_init(bcachefs_init);