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