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