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