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