xref: /linux/fs/bcachefs/super.c (revision f770a6e9a3d7a90f77863b51325614f37a57fef5)
11c6fdbd8SKent Overstreet // SPDX-License-Identifier: GPL-2.0
21c6fdbd8SKent Overstreet /*
31c6fdbd8SKent Overstreet  * bcachefs setup/teardown code, and some metadata io - read a superblock and
41c6fdbd8SKent Overstreet  * figure out what to do with it.
51c6fdbd8SKent Overstreet  *
61c6fdbd8SKent Overstreet  * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
71c6fdbd8SKent Overstreet  * Copyright 2012 Google, Inc.
81c6fdbd8SKent Overstreet  */
91c6fdbd8SKent Overstreet 
101c6fdbd8SKent Overstreet #include "bcachefs.h"
117b3f84eaSKent Overstreet #include "alloc_background.h"
127b3f84eaSKent Overstreet #include "alloc_foreground.h"
135b8a9227SKent Overstreet #include "bkey_sort.h"
141c6fdbd8SKent Overstreet #include "btree_cache.h"
151c6fdbd8SKent Overstreet #include "btree_gc.h"
16401585feSKent Overstreet #include "btree_journal_iter.h"
172ca88e5aSKent Overstreet #include "btree_key_cache.h"
184409b808SKent Overstreet #include "btree_node_scan.h"
191c6fdbd8SKent Overstreet #include "btree_update_interior.h"
201c6fdbd8SKent Overstreet #include "btree_io.h"
21920e69bcSKent Overstreet #include "btree_write_buffer.h"
2221aec962SKent Overstreet #include "buckets_waiting_for_journal.h"
231c6fdbd8SKent Overstreet #include "chardev.h"
241c6fdbd8SKent Overstreet #include "checksum.h"
251c6fdbd8SKent Overstreet #include "clock.h"
261c6fdbd8SKent Overstreet #include "compress.h"
271c6fdbd8SKent Overstreet #include "debug.h"
281c6fdbd8SKent Overstreet #include "disk_groups.h"
29cd575ddfSKent Overstreet #include "ec.h"
30d4bf5eecSKent Overstreet #include "errcode.h"
311c6fdbd8SKent Overstreet #include "error.h"
321c6fdbd8SKent Overstreet #include "fs.h"
331c6fdbd8SKent Overstreet #include "fs-io.h"
34dbbfca9fSKent Overstreet #include "fs-io-buffered.h"
35dbbfca9fSKent Overstreet #include "fs-io-direct.h"
361c6fdbd8SKent Overstreet #include "fsck.h"
371c6fdbd8SKent Overstreet #include "inode.h"
381809b8cbSKent Overstreet #include "io_read.h"
391809b8cbSKent Overstreet #include "io_write.h"
401c6fdbd8SKent Overstreet #include "journal.h"
411c6fdbd8SKent Overstreet #include "journal_reclaim.h"
421dd7f9d9SKent Overstreet #include "journal_seq_blacklist.h"
431c6fdbd8SKent Overstreet #include "move.h"
441c6fdbd8SKent Overstreet #include "migrate.h"
451c6fdbd8SKent Overstreet #include "movinggc.h"
46350175bfSKent Overstreet #include "nocow_locking.h"
471c6fdbd8SKent Overstreet #include "quota.h"
481c6fdbd8SKent Overstreet #include "rebalance.h"
491c6fdbd8SKent Overstreet #include "recovery.h"
501c6fdbd8SKent Overstreet #include "replicas.h"
51a37ad1a3SKent Overstreet #include "sb-clean.h"
523a58dfbcSKent Overstreet #include "sb-counters.h"
53f5d26fa3SKent Overstreet #include "sb-errors.h"
541241df58SHunter Shaffer #include "sb-members.h"
558e877caaSKent Overstreet #include "snapshot.h"
5614b393eeSKent Overstreet #include "subvolume.h"
571c6fdbd8SKent Overstreet #include "super.h"
581c6fdbd8SKent Overstreet #include "super-io.h"
591c6fdbd8SKent Overstreet #include "sysfs.h"
6060e1baa8SKent Overstreet #include "thread_with_file.h"
611c6fdbd8SKent Overstreet #include "trace.h"
621c6fdbd8SKent Overstreet 
631c6fdbd8SKent Overstreet #include <linux/backing-dev.h>
641c6fdbd8SKent Overstreet #include <linux/blkdev.h>
651c6fdbd8SKent Overstreet #include <linux/debugfs.h>
661c6fdbd8SKent Overstreet #include <linux/device.h>
671c6fdbd8SKent Overstreet #include <linux/idr.h>
681c6fdbd8SKent Overstreet #include <linux/module.h>
691c6fdbd8SKent Overstreet #include <linux/percpu.h>
701c6fdbd8SKent Overstreet #include <linux/random.h>
711c6fdbd8SKent Overstreet #include <linux/sysfs.h>
721c6fdbd8SKent Overstreet #include <crypto/hash.h>
731c6fdbd8SKent Overstreet 
741c6fdbd8SKent Overstreet MODULE_LICENSE("GPL");
751c6fdbd8SKent Overstreet MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
76a9737e0bSBrian Foster MODULE_DESCRIPTION("bcachefs filesystem");
7785c6db98SDaniel Hill MODULE_SOFTDEP("pre: crc32c");
7885c6db98SDaniel Hill MODULE_SOFTDEP("pre: crc64");
7985c6db98SDaniel Hill MODULE_SOFTDEP("pre: sha256");
8085c6db98SDaniel Hill MODULE_SOFTDEP("pre: chacha20");
8185c6db98SDaniel Hill MODULE_SOFTDEP("pre: poly1305");
8285c6db98SDaniel Hill MODULE_SOFTDEP("pre: xxhash");
831c6fdbd8SKent Overstreet 
843c471b65SKent Overstreet const char * const bch2_fs_flag_strs[] = {
853c471b65SKent Overstreet #define x(n)		#n,
863c471b65SKent Overstreet 	BCH_FS_FLAGS()
873c471b65SKent Overstreet #undef x
883c471b65SKent Overstreet 	NULL
893c471b65SKent Overstreet };
903c471b65SKent Overstreet 
913ed94062SKent Overstreet __printf(2, 0)
92f3589bfaSKent Overstreet static void bch2_print_maybe_redirect(struct stdio_redirect *stdio, const char *fmt, va_list args)
93f3589bfaSKent Overstreet {
94f3589bfaSKent Overstreet #ifdef __KERNEL__
95f3589bfaSKent Overstreet 	if (unlikely(stdio)) {
96f3589bfaSKent Overstreet 		if (fmt[0] == KERN_SOH[0])
97f3589bfaSKent Overstreet 			fmt += 2;
98f3589bfaSKent Overstreet 
99f3589bfaSKent Overstreet 		bch2_stdio_redirect_vprintf(stdio, true, fmt, args);
100f3589bfaSKent Overstreet 		return;
101f3589bfaSKent Overstreet 	}
102f3589bfaSKent Overstreet #endif
103f3589bfaSKent Overstreet 	vprintk(fmt, args);
104f3589bfaSKent Overstreet }
105f3589bfaSKent Overstreet 
106b63570f7SKent Overstreet void bch2_print_opts(struct bch_opts *opts, const char *fmt, ...)
107b63570f7SKent Overstreet {
108b63570f7SKent Overstreet 	struct stdio_redirect *stdio = (void *)(unsigned long)opts->stdio;
109b63570f7SKent Overstreet 
110b63570f7SKent Overstreet 	va_list args;
111b63570f7SKent Overstreet 	va_start(args, fmt);
112f3589bfaSKent Overstreet 	bch2_print_maybe_redirect(stdio, fmt, args);
113b63570f7SKent Overstreet 	va_end(args);
114b63570f7SKent Overstreet }
115b63570f7SKent Overstreet 
1162b41226dSKent Overstreet void __bch2_print(struct bch_fs *c, const char *fmt, ...)
1172b41226dSKent Overstreet {
11896f37eabSKent Overstreet 	struct stdio_redirect *stdio = bch2_fs_stdio_redirect(c);
11996f37eabSKent Overstreet 
1202b41226dSKent Overstreet 	va_list args;
1212b41226dSKent Overstreet 	va_start(args, fmt);
122f3589bfaSKent Overstreet 	bch2_print_maybe_redirect(stdio, fmt, args);
1232b41226dSKent Overstreet 	va_end(args);
1242b41226dSKent Overstreet }
1252b41226dSKent Overstreet 
1261c6fdbd8SKent Overstreet #define KTYPE(type)							\
1271c6fdbd8SKent Overstreet static const struct attribute_group type ## _group = {			\
1281c6fdbd8SKent Overstreet 	.attrs = type ## _files						\
1291c6fdbd8SKent Overstreet };									\
1301c6fdbd8SKent Overstreet 									\
1311c6fdbd8SKent Overstreet static const struct attribute_group *type ## _groups[] = {		\
1321c6fdbd8SKent Overstreet 	&type ## _group,						\
1331c6fdbd8SKent Overstreet 	NULL								\
1341c6fdbd8SKent Overstreet };									\
1351c6fdbd8SKent Overstreet 									\
1361c6fdbd8SKent Overstreet static const struct kobj_type type ## _ktype = {			\
1371c6fdbd8SKent Overstreet 	.release	= type ## _release,				\
1381c6fdbd8SKent Overstreet 	.sysfs_ops	= &type ## _sysfs_ops,				\
1391c6fdbd8SKent Overstreet 	.default_groups = type ## _groups				\
1401c6fdbd8SKent Overstreet }
1411c6fdbd8SKent Overstreet 
1421c6fdbd8SKent Overstreet static void bch2_fs_release(struct kobject *);
1431c6fdbd8SKent Overstreet static void bch2_dev_release(struct kobject *);
144104c6974SDaniel Hill static void bch2_fs_counters_release(struct kobject *k)
145104c6974SDaniel Hill {
146104c6974SDaniel Hill }
1471c6fdbd8SKent Overstreet 
1481c6fdbd8SKent Overstreet static void bch2_fs_internal_release(struct kobject *k)
1491c6fdbd8SKent Overstreet {
1501c6fdbd8SKent Overstreet }
1511c6fdbd8SKent Overstreet 
1521c6fdbd8SKent Overstreet static void bch2_fs_opts_dir_release(struct kobject *k)
1531c6fdbd8SKent Overstreet {
1541c6fdbd8SKent Overstreet }
1551c6fdbd8SKent Overstreet 
1561c6fdbd8SKent Overstreet static void bch2_fs_time_stats_release(struct kobject *k)
1571c6fdbd8SKent Overstreet {
1581c6fdbd8SKent Overstreet }
1591c6fdbd8SKent Overstreet 
1601c6fdbd8SKent Overstreet KTYPE(bch2_fs);
161104c6974SDaniel Hill KTYPE(bch2_fs_counters);
1621c6fdbd8SKent Overstreet KTYPE(bch2_fs_internal);
1631c6fdbd8SKent Overstreet KTYPE(bch2_fs_opts_dir);
1641c6fdbd8SKent Overstreet KTYPE(bch2_fs_time_stats);
1651c6fdbd8SKent Overstreet KTYPE(bch2_dev);
1661c6fdbd8SKent Overstreet 
1671c6fdbd8SKent Overstreet static struct kset *bcachefs_kset;
1681c6fdbd8SKent Overstreet static LIST_HEAD(bch_fs_list);
1691c6fdbd8SKent Overstreet static DEFINE_MUTEX(bch_fs_list_lock);
1701c6fdbd8SKent Overstreet 
171d94189adSKent Overstreet DECLARE_WAIT_QUEUE_HEAD(bch2_read_only_wait);
1721c6fdbd8SKent Overstreet 
1731c6fdbd8SKent Overstreet static void bch2_dev_free(struct bch_dev *);
1741c6fdbd8SKent Overstreet static int bch2_dev_alloc(struct bch_fs *, unsigned);
1751c6fdbd8SKent Overstreet static int bch2_dev_sysfs_online(struct bch_fs *, struct bch_dev *);
1761c6fdbd8SKent Overstreet static void __bch2_dev_read_only(struct bch_fs *, struct bch_dev *);
1771c6fdbd8SKent Overstreet 
1781c6fdbd8SKent Overstreet struct bch_fs *bch2_dev_to_fs(dev_t dev)
1791c6fdbd8SKent Overstreet {
1801c6fdbd8SKent Overstreet 	struct bch_fs *c;
1811c6fdbd8SKent Overstreet 
1821c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
1831c6fdbd8SKent Overstreet 	rcu_read_lock();
1841c6fdbd8SKent Overstreet 
1851c6fdbd8SKent Overstreet 	list_for_each_entry(c, &bch_fs_list, list)
18641b84fb4SKent Overstreet 		for_each_member_device_rcu(c, ca, NULL)
187ec4ab9d2SDan Robertson 			if (ca->disk_sb.bdev && ca->disk_sb.bdev->bd_dev == dev) {
1881c6fdbd8SKent Overstreet 				closure_get(&c->cl);
1891c6fdbd8SKent Overstreet 				goto found;
1901c6fdbd8SKent Overstreet 			}
1911c6fdbd8SKent Overstreet 	c = NULL;
1921c6fdbd8SKent Overstreet found:
1931c6fdbd8SKent Overstreet 	rcu_read_unlock();
1941c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
1951c6fdbd8SKent Overstreet 
1961c6fdbd8SKent Overstreet 	return c;
1971c6fdbd8SKent Overstreet }
1981c6fdbd8SKent Overstreet 
1991c6fdbd8SKent Overstreet static struct bch_fs *__bch2_uuid_to_fs(__uuid_t uuid)
2001c6fdbd8SKent Overstreet {
2011c6fdbd8SKent Overstreet 	struct bch_fs *c;
2021c6fdbd8SKent Overstreet 
2031c6fdbd8SKent Overstreet 	lockdep_assert_held(&bch_fs_list_lock);
2041c6fdbd8SKent Overstreet 
2051c6fdbd8SKent Overstreet 	list_for_each_entry(c, &bch_fs_list, list)
2061c6fdbd8SKent Overstreet 		if (!memcmp(&c->disk_sb.sb->uuid, &uuid, sizeof(uuid)))
2071c6fdbd8SKent Overstreet 			return c;
2081c6fdbd8SKent Overstreet 
2091c6fdbd8SKent Overstreet 	return NULL;
2101c6fdbd8SKent Overstreet }
2111c6fdbd8SKent Overstreet 
2121c6fdbd8SKent Overstreet struct bch_fs *bch2_uuid_to_fs(__uuid_t uuid)
2131c6fdbd8SKent Overstreet {
2141c6fdbd8SKent Overstreet 	struct bch_fs *c;
2151c6fdbd8SKent Overstreet 
2161c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
2171c6fdbd8SKent Overstreet 	c = __bch2_uuid_to_fs(uuid);
2181c6fdbd8SKent Overstreet 	if (c)
2191c6fdbd8SKent Overstreet 		closure_get(&c->cl);
2201c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
2211c6fdbd8SKent Overstreet 
2221c6fdbd8SKent Overstreet 	return c;
2231c6fdbd8SKent Overstreet }
2241c6fdbd8SKent Overstreet 
225180fb49dSKent Overstreet static void bch2_dev_usage_journal_reserve(struct bch_fs *c)
226180fb49dSKent Overstreet {
22741b84fb4SKent Overstreet 	unsigned nr = 0, u64s =
2284b8f89afSKent Overstreet 		((sizeof(struct jset_entry_dev_usage) +
2294b8f89afSKent Overstreet 		  sizeof(struct jset_entry_dev_usage_type) * BCH_DATA_NR)) /
2304b8f89afSKent Overstreet 		sizeof(u64);
231180fb49dSKent Overstreet 
232180fb49dSKent Overstreet 	rcu_read_lock();
23341b84fb4SKent Overstreet 	for_each_member_device_rcu(c, ca, NULL)
234180fb49dSKent Overstreet 		nr++;
235180fb49dSKent Overstreet 	rcu_read_unlock();
236180fb49dSKent Overstreet 
237180fb49dSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
238180fb49dSKent Overstreet 			&c->dev_usage_journal_res, u64s * nr);
239180fb49dSKent Overstreet }
240180fb49dSKent Overstreet 
2411c6fdbd8SKent Overstreet /* Filesystem RO/RW: */
2421c6fdbd8SKent Overstreet 
2431c6fdbd8SKent Overstreet /*
2441c6fdbd8SKent Overstreet  * For startup/shutdown of RW stuff, the dependencies are:
2451c6fdbd8SKent Overstreet  *
2461c6fdbd8SKent Overstreet  * - foreground writes depend on copygc and rebalance (to free up space)
2471c6fdbd8SKent Overstreet  *
2481c6fdbd8SKent Overstreet  * - copygc and rebalance depend on mark and sweep gc (they actually probably
2491c6fdbd8SKent Overstreet  *   don't because they either reserve ahead of time or don't block if
2501c6fdbd8SKent Overstreet  *   allocations fail, but allocations can require mark and sweep gc to run
2511c6fdbd8SKent Overstreet  *   because of generation number wraparound)
2521c6fdbd8SKent Overstreet  *
2531c6fdbd8SKent Overstreet  * - all of the above depends on the allocator threads
2541c6fdbd8SKent Overstreet  *
2551c6fdbd8SKent Overstreet  * - allocator depends on the journal (when it rewrites prios and gens)
2561c6fdbd8SKent Overstreet  */
2571c6fdbd8SKent Overstreet 
2581c6fdbd8SKent Overstreet static void __bch2_fs_read_only(struct bch_fs *c)
2591c6fdbd8SKent Overstreet {
2609fea2274SKent Overstreet 	unsigned clean_passes = 0;
261c0960603SKent Overstreet 	u64 seq = 0;
2621c6fdbd8SKent Overstreet 
263b40901b0SKent Overstreet 	bch2_fs_ec_stop(c);
264b40901b0SKent Overstreet 	bch2_open_buckets_stop(c, NULL, true);
2651c6fdbd8SKent Overstreet 	bch2_rebalance_stop(c);
266e6d11615SKent Overstreet 	bch2_copygc_stop(c);
267b40901b0SKent Overstreet 	bch2_fs_ec_flush(c);
2681c6fdbd8SKent Overstreet 
26983ec519aSKent Overstreet 	bch_verbose(c, "flushing journal and stopping allocators, journal seq %llu",
27083ec519aSKent Overstreet 		    journal_cur_seq(&c->journal));
2711c6fdbd8SKent Overstreet 
272039fc4c5SKent Overstreet 	do {
273039fc4c5SKent Overstreet 		clean_passes++;
274039fc4c5SKent Overstreet 
275c0960603SKent Overstreet 		if (bch2_btree_interior_updates_flush(c) ||
276c0960603SKent Overstreet 		    bch2_journal_flush_all_pins(&c->journal) ||
277c0960603SKent Overstreet 		    bch2_btree_flush_all_writes(c) ||
278c0960603SKent Overstreet 		    seq != atomic64_read(&c->journal.seq)) {
279c0960603SKent Overstreet 			seq = atomic64_read(&c->journal.seq);
280039fc4c5SKent Overstreet 			clean_passes = 0;
281039fc4c5SKent Overstreet 		}
282d5f70c1fSKent Overstreet 	} while (clean_passes < 2);
283c0960603SKent Overstreet 
28483ec519aSKent Overstreet 	bch_verbose(c, "flushing journal and stopping allocators complete, journal seq %llu",
28583ec519aSKent Overstreet 		    journal_cur_seq(&c->journal));
2862340fd9dSKent Overstreet 
287b895c703SKent Overstreet 	if (test_bit(JOURNAL_replay_done, &c->journal.flags) &&
2883c471b65SKent Overstreet 	    !test_bit(BCH_FS_emergency_ro, &c->flags))
2893c471b65SKent Overstreet 		set_bit(BCH_FS_clean_shutdown, &c->flags);
2909802ff48SKent Overstreet 
2911c6fdbd8SKent Overstreet 	bch2_fs_journal_stop(&c->journal);
2921c6fdbd8SKent Overstreet 
2939802ff48SKent Overstreet 	bch_info(c, "%sshutdown complete, journal seq %llu",
2949802ff48SKent Overstreet 		 test_bit(BCH_FS_clean_shutdown, &c->flags) ? "" : "un",
2959802ff48SKent Overstreet 		 c->journal.seq_ondisk);
2969802ff48SKent Overstreet 
2971c6fdbd8SKent Overstreet 	/*
2981c6fdbd8SKent Overstreet 	 * After stopping journal:
2991c6fdbd8SKent Overstreet 	 */
3009fea2274SKent Overstreet 	for_each_member_device(c, ca)
3011c6fdbd8SKent Overstreet 		bch2_dev_allocator_remove(c, ca);
3021c6fdbd8SKent Overstreet }
3031c6fdbd8SKent Overstreet 
304d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
3051c6fdbd8SKent Overstreet static void bch2_writes_disabled(struct percpu_ref *writes)
3061c6fdbd8SKent Overstreet {
3071c6fdbd8SKent Overstreet 	struct bch_fs *c = container_of(writes, struct bch_fs, writes);
3081c6fdbd8SKent Overstreet 
3093c471b65SKent Overstreet 	set_bit(BCH_FS_write_disable_complete, &c->flags);
310d94189adSKent Overstreet 	wake_up(&bch2_read_only_wait);
3111c6fdbd8SKent Overstreet }
312d94189adSKent Overstreet #endif
3131c6fdbd8SKent Overstreet 
3141c6fdbd8SKent Overstreet void bch2_fs_read_only(struct bch_fs *c)
3151c6fdbd8SKent Overstreet {
3163c471b65SKent Overstreet 	if (!test_bit(BCH_FS_rw, &c->flags)) {
3179ae28f82SKent Overstreet 		bch2_journal_reclaim_stop(&c->journal);
3181c6fdbd8SKent Overstreet 		return;
319134915f3SKent Overstreet 	}
3201c6fdbd8SKent Overstreet 
3213c471b65SKent Overstreet 	BUG_ON(test_bit(BCH_FS_write_disable_complete, &c->flags));
3221c6fdbd8SKent Overstreet 
323e7f7ddedSKent Overstreet 	bch_verbose(c, "going read-only");
324e7f7ddedSKent Overstreet 
3251c6fdbd8SKent Overstreet 	/*
3261c6fdbd8SKent Overstreet 	 * Block new foreground-end write operations from starting - any new
3271c6fdbd8SKent Overstreet 	 * writes will return -EROFS:
3281c6fdbd8SKent Overstreet 	 */
3293c471b65SKent Overstreet 	set_bit(BCH_FS_going_ro, &c->flags);
330d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
3311c6fdbd8SKent Overstreet 	percpu_ref_kill(&c->writes);
332d94189adSKent Overstreet #else
333d94189adSKent Overstreet 	for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++)
334d94189adSKent Overstreet 		bch2_write_ref_put(c, i);
335d94189adSKent Overstreet #endif
3361c6fdbd8SKent Overstreet 
3371c6fdbd8SKent Overstreet 	/*
3381c6fdbd8SKent Overstreet 	 * If we're not doing an emergency shutdown, we want to wait on
3391c6fdbd8SKent Overstreet 	 * outstanding writes to complete so they don't see spurious errors due
3401c6fdbd8SKent Overstreet 	 * to shutting down the allocator:
3411c6fdbd8SKent Overstreet 	 *
3421c6fdbd8SKent Overstreet 	 * If we are doing an emergency shutdown outstanding writes may
3431c6fdbd8SKent Overstreet 	 * hang until we shutdown the allocator so we don't want to wait
3441c6fdbd8SKent Overstreet 	 * on outstanding writes before shutting everything down - but
3451c6fdbd8SKent Overstreet 	 * we do need to wait on them before returning and signalling
3461c6fdbd8SKent Overstreet 	 * that going RO is complete:
3471c6fdbd8SKent Overstreet 	 */
348d94189adSKent Overstreet 	wait_event(bch2_read_only_wait,
3493c471b65SKent Overstreet 		   test_bit(BCH_FS_write_disable_complete, &c->flags) ||
3503c471b65SKent Overstreet 		   test_bit(BCH_FS_emergency_ro, &c->flags));
3511c6fdbd8SKent Overstreet 
3523c471b65SKent Overstreet 	bool writes_disabled = test_bit(BCH_FS_write_disable_complete, &c->flags);
353e7f7ddedSKent Overstreet 	if (writes_disabled)
354e7f7ddedSKent Overstreet 		bch_verbose(c, "finished waiting for writes to stop");
355e7f7ddedSKent Overstreet 
3561c6fdbd8SKent Overstreet 	__bch2_fs_read_only(c);
3571c6fdbd8SKent Overstreet 
358d94189adSKent Overstreet 	wait_event(bch2_read_only_wait,
3593c471b65SKent Overstreet 		   test_bit(BCH_FS_write_disable_complete, &c->flags));
3601c6fdbd8SKent Overstreet 
361e7f7ddedSKent Overstreet 	if (!writes_disabled)
362e7f7ddedSKent Overstreet 		bch_verbose(c, "finished waiting for writes to stop");
363e7f7ddedSKent Overstreet 
3643c471b65SKent Overstreet 	clear_bit(BCH_FS_write_disable_complete, &c->flags);
3653c471b65SKent Overstreet 	clear_bit(BCH_FS_going_ro, &c->flags);
3663c471b65SKent Overstreet 	clear_bit(BCH_FS_rw, &c->flags);
3671c6fdbd8SKent Overstreet 
3681c6fdbd8SKent Overstreet 	if (!bch2_journal_error(&c->journal) &&
3693c471b65SKent Overstreet 	    !test_bit(BCH_FS_error, &c->flags) &&
3703c471b65SKent Overstreet 	    !test_bit(BCH_FS_emergency_ro, &c->flags) &&
3713c471b65SKent Overstreet 	    test_bit(BCH_FS_started, &c->flags) &&
3723c471b65SKent Overstreet 	    test_bit(BCH_FS_clean_shutdown, &c->flags) &&
37313c1e583SKent Overstreet 	    c->recovery_pass_done >= BCH_RECOVERY_PASS_journal_replay) {
3747724664fSKent Overstreet 		BUG_ON(c->journal.last_empty_seq != journal_cur_seq(&c->journal));
3757724664fSKent Overstreet 		BUG_ON(atomic_read(&c->btree_cache.dirty));
3767724664fSKent Overstreet 		BUG_ON(atomic_long_read(&c->btree_key_cache.nr_dirty));
37709caeabeSKent Overstreet 		BUG_ON(c->btree_write_buffer.inc.keys.nr);
37809caeabeSKent Overstreet 		BUG_ON(c->btree_write_buffer.flushing.keys.nr);
3797724664fSKent Overstreet 
380b2930396SKent Overstreet 		bch_verbose(c, "marking filesystem clean");
381134915f3SKent Overstreet 		bch2_fs_mark_clean(c);
382e7f7ddedSKent Overstreet 	} else {
383e7f7ddedSKent Overstreet 		bch_verbose(c, "done going read-only, filesystem not clean");
384b2930396SKent Overstreet 	}
3851c6fdbd8SKent Overstreet }
3861c6fdbd8SKent Overstreet 
3871c6fdbd8SKent Overstreet static void bch2_fs_read_only_work(struct work_struct *work)
3881c6fdbd8SKent Overstreet {
3891c6fdbd8SKent Overstreet 	struct bch_fs *c =
3901c6fdbd8SKent Overstreet 		container_of(work, struct bch_fs, read_only_work);
3911c6fdbd8SKent Overstreet 
3921ada1606SKent Overstreet 	down_write(&c->state_lock);
3931c6fdbd8SKent Overstreet 	bch2_fs_read_only(c);
3941ada1606SKent Overstreet 	up_write(&c->state_lock);
3951c6fdbd8SKent Overstreet }
3961c6fdbd8SKent Overstreet 
3971c6fdbd8SKent Overstreet static void bch2_fs_read_only_async(struct bch_fs *c)
3981c6fdbd8SKent Overstreet {
3991c6fdbd8SKent Overstreet 	queue_work(system_long_wq, &c->read_only_work);
4001c6fdbd8SKent Overstreet }
4011c6fdbd8SKent Overstreet 
4021c6fdbd8SKent Overstreet bool bch2_fs_emergency_read_only(struct bch_fs *c)
4031c6fdbd8SKent Overstreet {
4043c471b65SKent Overstreet 	bool ret = !test_and_set_bit(BCH_FS_emergency_ro, &c->flags);
4051c6fdbd8SKent Overstreet 
4061c6fdbd8SKent Overstreet 	bch2_journal_halt(&c->journal);
4079f115ce9SKent Overstreet 	bch2_fs_read_only_async(c);
4081c6fdbd8SKent Overstreet 
409d94189adSKent Overstreet 	wake_up(&bch2_read_only_wait);
4101c6fdbd8SKent Overstreet 	return ret;
4111c6fdbd8SKent Overstreet }
4121c6fdbd8SKent Overstreet 
413134915f3SKent Overstreet static int bch2_fs_read_write_late(struct bch_fs *c)
4141c6fdbd8SKent Overstreet {
415134915f3SKent Overstreet 	int ret;
4161c6fdbd8SKent Overstreet 
417ea28c867SKent Overstreet 	/*
418ea28c867SKent Overstreet 	 * Data move operations can't run until after check_snapshots has
419ea28c867SKent Overstreet 	 * completed, and bch2_snapshot_is_ancestor() is available.
420ea28c867SKent Overstreet 	 *
421ea28c867SKent Overstreet 	 * Ideally we'd start copygc/rebalance earlier instead of waiting for
422ea28c867SKent Overstreet 	 * all of recovery/fsck to complete:
423ea28c867SKent Overstreet 	 */
424ea28c867SKent Overstreet 	ret = bch2_copygc_start(c);
425ea28c867SKent Overstreet 	if (ret) {
426ea28c867SKent Overstreet 		bch_err(c, "error starting copygc thread");
427ea28c867SKent Overstreet 		return ret;
428ea28c867SKent Overstreet 	}
429ea28c867SKent Overstreet 
430134915f3SKent Overstreet 	ret = bch2_rebalance_start(c);
431134915f3SKent Overstreet 	if (ret) {
432134915f3SKent Overstreet 		bch_err(c, "error starting rebalance thread");
433134915f3SKent Overstreet 		return ret;
434134915f3SKent Overstreet 	}
435134915f3SKent Overstreet 
436134915f3SKent Overstreet 	return 0;
437134915f3SKent Overstreet }
438134915f3SKent Overstreet 
439e731d466SKent Overstreet static int __bch2_fs_read_write(struct bch_fs *c, bool early)
440134915f3SKent Overstreet {
441134915f3SKent Overstreet 	int ret;
442134915f3SKent Overstreet 
4433c471b65SKent Overstreet 	if (test_bit(BCH_FS_initial_gc_unfixed, &c->flags)) {
444aae15aafSKent Overstreet 		bch_err(c, "cannot go rw, unfixed btree errors");
4457c50140fSKent Overstreet 		return -BCH_ERR_erofs_unfixed_errors;
446aae15aafSKent Overstreet 	}
447aae15aafSKent Overstreet 
4483c471b65SKent Overstreet 	if (test_bit(BCH_FS_rw, &c->flags))
449134915f3SKent Overstreet 		return 0;
450134915f3SKent Overstreet 
4512c944fa1SKent Overstreet 	bch_info(c, "going read-write");
4522c944fa1SKent Overstreet 
453f5d26fa3SKent Overstreet 	ret = bch2_sb_members_v2_init(c);
4543f7b9713SHunter Shaffer 	if (ret)
4553f7b9713SHunter Shaffer 		goto err;
4563f7b9713SHunter Shaffer 
457134915f3SKent Overstreet 	ret = bch2_fs_mark_dirty(c);
458134915f3SKent Overstreet 	if (ret)
459134915f3SKent Overstreet 		goto err;
4601c6fdbd8SKent Overstreet 
4613c471b65SKent Overstreet 	clear_bit(BCH_FS_clean_shutdown, &c->flags);
4622340fd9dSKent Overstreet 
463b9004e85SKent Overstreet 	/*
464b9004e85SKent Overstreet 	 * First journal write must be a flush write: after a clean shutdown we
465b9004e85SKent Overstreet 	 * don't read the journal, so the first journal write may end up
466b9004e85SKent Overstreet 	 * overwriting whatever was there previously, and there must always be
467b9004e85SKent Overstreet 	 * at least one non-flush write in the journal or recovery will fail:
468b9004e85SKent Overstreet 	 */
469b895c703SKent Overstreet 	set_bit(JOURNAL_need_flush_write, &c->journal.flags);
470b895c703SKent Overstreet 	set_bit(JOURNAL_running, &c->journal.flags);
471b9004e85SKent Overstreet 
4729fea2274SKent Overstreet 	for_each_rw_member(c, ca)
4731c6fdbd8SKent Overstreet 		bch2_dev_allocator_add(c, ca);
4741c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
4751c6fdbd8SKent Overstreet 
4763c471b65SKent Overstreet 	set_bit(BCH_FS_rw, &c->flags);
4773c471b65SKent Overstreet 	set_bit(BCH_FS_was_rw, &c->flags);
478468035caSKent Overstreet 
479468035caSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
480468035caSKent Overstreet 	percpu_ref_reinit(&c->writes);
481468035caSKent Overstreet #else
4829fea2274SKent Overstreet 	for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++) {
483468035caSKent Overstreet 		BUG_ON(atomic_long_read(&c->writes[i]));
484468035caSKent Overstreet 		atomic_long_inc(&c->writes[i]);
485468035caSKent Overstreet 	}
486468035caSKent Overstreet #endif
487468035caSKent Overstreet 
488197763a7SBrian Foster 	ret = bch2_journal_reclaim_start(&c->journal);
489197763a7SBrian Foster 	if (ret)
490197763a7SBrian Foster 		goto err;
491197763a7SBrian Foster 
492134915f3SKent Overstreet 	if (!early) {
493134915f3SKent Overstreet 		ret = bch2_fs_read_write_late(c);
494134915f3SKent Overstreet 		if (ret)
4951c6fdbd8SKent Overstreet 			goto err;
4961c6fdbd8SKent Overstreet 	}
4971c6fdbd8SKent Overstreet 
498dd81a060SKent Overstreet 	bch2_do_discards(c);
499dd81a060SKent Overstreet 	bch2_do_invalidates(c);
500dd81a060SKent Overstreet 	bch2_do_stripe_deletes(c);
501a1f26d70SKent Overstreet 	bch2_do_pending_node_rewrites(c);
502134915f3SKent Overstreet 	return 0;
5031c6fdbd8SKent Overstreet err:
5043c471b65SKent Overstreet 	if (test_bit(BCH_FS_rw, &c->flags))
505468035caSKent Overstreet 		bch2_fs_read_only(c);
506468035caSKent Overstreet 	else
5071c6fdbd8SKent Overstreet 		__bch2_fs_read_only(c);
508134915f3SKent Overstreet 	return ret;
509134915f3SKent Overstreet }
510134915f3SKent Overstreet 
511134915f3SKent Overstreet int bch2_fs_read_write(struct bch_fs *c)
512134915f3SKent Overstreet {
51313c1e583SKent Overstreet 	if (c->opts.recovery_pass_last &&
51413c1e583SKent Overstreet 	    c->opts.recovery_pass_last < BCH_RECOVERY_PASS_journal_replay)
51562719cf3SKent Overstreet 		return -BCH_ERR_erofs_norecovery;
51662719cf3SKent Overstreet 
51762719cf3SKent Overstreet 	if (c->opts.nochanges)
51862719cf3SKent Overstreet 		return -BCH_ERR_erofs_nochanges;
51962719cf3SKent Overstreet 
520134915f3SKent Overstreet 	return __bch2_fs_read_write(c, false);
521134915f3SKent Overstreet }
522134915f3SKent Overstreet 
523134915f3SKent Overstreet int bch2_fs_read_write_early(struct bch_fs *c)
524134915f3SKent Overstreet {
525134915f3SKent Overstreet 	lockdep_assert_held(&c->state_lock);
526134915f3SKent Overstreet 
527134915f3SKent Overstreet 	return __bch2_fs_read_write(c, true);
5281c6fdbd8SKent Overstreet }
5291c6fdbd8SKent Overstreet 
5301c6fdbd8SKent Overstreet /* Filesystem startup/shutdown: */
5311c6fdbd8SKent Overstreet 
532d5e4dcc2SKent Overstreet static void __bch2_fs_free(struct bch_fs *c)
5331c6fdbd8SKent Overstreet {
534ffcbec60SKent Overstreet 	for (unsigned i = 0; i < BCH_TIME_STAT_NR; i++)
5351c6fdbd8SKent Overstreet 		bch2_time_stats_exit(&c->times[i]);
5361c6fdbd8SKent Overstreet 
5374409b808SKent Overstreet 	bch2_find_btree_nodes_exit(&c->found_btree_nodes);
538a1f26d70SKent Overstreet 	bch2_free_pending_node_rewrites(c);
539ec438ac5SKent Overstreet 	bch2_fs_allocator_background_exit(c);
540f5d26fa3SKent Overstreet 	bch2_fs_sb_errors_exit(c);
541104c6974SDaniel Hill 	bch2_fs_counters_exit(c);
54214b393eeSKent Overstreet 	bch2_fs_snapshots_exit(c);
5431c6fdbd8SKent Overstreet 	bch2_fs_quota_exit(c);
544dbbfca9fSKent Overstreet 	bch2_fs_fs_io_direct_exit(c);
545dbbfca9fSKent Overstreet 	bch2_fs_fs_io_buffered_exit(c);
5461c6fdbd8SKent Overstreet 	bch2_fs_fsio_exit(c);
547cd575ddfSKent Overstreet 	bch2_fs_ec_exit(c);
5481c6fdbd8SKent Overstreet 	bch2_fs_encryption_exit(c);
5491e3b4098SKent Overstreet 	bch2_fs_nocow_locking_exit(c);
5501809b8cbSKent Overstreet 	bch2_fs_io_write_exit(c);
5511809b8cbSKent Overstreet 	bch2_fs_io_read_exit(c);
55221aec962SKent Overstreet 	bch2_fs_buckets_waiting_for_journal_exit(c);
553c823c339SKent Overstreet 	bch2_fs_btree_interior_update_exit(c);
5542ca88e5aSKent Overstreet 	bch2_fs_btree_key_cache_exit(&c->btree_key_cache);
5551c6fdbd8SKent Overstreet 	bch2_fs_btree_cache_exit(c);
556d293ece1SKent Overstreet 	bch2_fs_btree_iter_exit(c);
5579620c3ecSKent Overstreet 	bch2_fs_replicas_exit(c);
5581c6fdbd8SKent Overstreet 	bch2_fs_journal_exit(&c->journal);
5591c6fdbd8SKent Overstreet 	bch2_io_clock_exit(&c->io_clock[WRITE]);
5601c6fdbd8SKent Overstreet 	bch2_io_clock_exit(&c->io_clock[READ]);
5611c6fdbd8SKent Overstreet 	bch2_fs_compress_exit(c);
5628a443d3eSKent Overstreet 	bch2_journal_keys_put_initial(c);
5634409b808SKent Overstreet 	bch2_find_btree_nodes_exit(&c->found_btree_nodes);
5648a443d3eSKent Overstreet 	BUG_ON(atomic_read(&c->journal_keys.ref));
565920e69bcSKent Overstreet 	bch2_fs_btree_write_buffer_exit(c);
5669166b41dSKent Overstreet 	percpu_free_rwsem(&c->mark_lock);
567d509cadcSKent Overstreet 	EBUG_ON(c->online_reserved && percpu_u64_get(c->online_reserved));
5685e82a9a1SKent Overstreet 	free_percpu(c->online_reserved);
5691a21bf98SKent Overstreet 
570faa6cb6cSKent Overstreet 	darray_exit(&c->btree_roots_extra);
5715663a415SKent Overstreet 	free_percpu(c->pcpu);
57235189e09SKent Overstreet 	mempool_exit(&c->large_bkey_pool);
5731c6fdbd8SKent Overstreet 	mempool_exit(&c->btree_bounce_pool);
5741c6fdbd8SKent Overstreet 	bioset_exit(&c->btree_bio);
5751c6fdbd8SKent Overstreet 	mempool_exit(&c->fill_iter);
576d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
5771c6fdbd8SKent Overstreet 	percpu_ref_exit(&c->writes);
578d94189adSKent Overstreet #endif
5791c6fdbd8SKent Overstreet 	kfree(rcu_dereference_protected(c->disk_groups, 1));
5801dd7f9d9SKent Overstreet 	kfree(c->journal_seq_blacklist_table);
581b5e8a699SKent Overstreet 	kfree(c->unused_inode_hints);
5821c6fdbd8SKent Overstreet 
5838bff9875SBrian Foster 	if (c->write_ref_wq)
5848bff9875SBrian Foster 		destroy_workqueue(c->write_ref_wq);
585161f73c2SKent Overstreet 	if (c->btree_write_submit_wq)
586161f73c2SKent Overstreet 		destroy_workqueue(c->btree_write_submit_wq);
587161f73c2SKent Overstreet 	if (c->btree_read_complete_wq)
588161f73c2SKent Overstreet 		destroy_workqueue(c->btree_read_complete_wq);
5891c6fdbd8SKent Overstreet 	if (c->copygc_wq)
5901c6fdbd8SKent Overstreet 		destroy_workqueue(c->copygc_wq);
5919f1833caSKent Overstreet 	if (c->btree_io_complete_wq)
5929f1833caSKent Overstreet 		destroy_workqueue(c->btree_io_complete_wq);
593731bdd2eSKent Overstreet 	if (c->btree_update_wq)
594731bdd2eSKent Overstreet 		destroy_workqueue(c->btree_update_wq);
5951c6fdbd8SKent Overstreet 
5969d8022dbSKent Overstreet 	bch2_free_super(&c->disk_sb);
597cb6fc943SKent Overstreet 	kvfree(c);
5981c6fdbd8SKent Overstreet 	module_put(THIS_MODULE);
5991c6fdbd8SKent Overstreet }
6001c6fdbd8SKent Overstreet 
6011c6fdbd8SKent Overstreet static void bch2_fs_release(struct kobject *kobj)
6021c6fdbd8SKent Overstreet {
6031c6fdbd8SKent Overstreet 	struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
6041c6fdbd8SKent Overstreet 
605d5e4dcc2SKent Overstreet 	__bch2_fs_free(c);
6061c6fdbd8SKent Overstreet }
6071c6fdbd8SKent Overstreet 
608d5e4dcc2SKent Overstreet void __bch2_fs_stop(struct bch_fs *c)
6091c6fdbd8SKent Overstreet {
610af1c6871SKent Overstreet 	bch_verbose(c, "shutting down");
611af1c6871SKent Overstreet 
6123c471b65SKent Overstreet 	set_bit(BCH_FS_stopping, &c->flags);
6131dd7f9d9SKent Overstreet 
6141ada1606SKent Overstreet 	down_write(&c->state_lock);
615883f1a7cSKent Overstreet 	bch2_fs_read_only(c);
6161ada1606SKent Overstreet 	up_write(&c->state_lock);
617883f1a7cSKent Overstreet 
6189fea2274SKent Overstreet 	for_each_member_device(c, ca)
6191c6fdbd8SKent Overstreet 		if (ca->kobj.state_in_sysfs &&
6201c6fdbd8SKent Overstreet 		    ca->disk_sb.bdev)
6211c6fdbd8SKent Overstreet 			sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
6221c6fdbd8SKent Overstreet 
6231c6fdbd8SKent Overstreet 	if (c->kobj.state_in_sysfs)
6241c6fdbd8SKent Overstreet 		kobject_del(&c->kobj);
6251c6fdbd8SKent Overstreet 
6261c6fdbd8SKent Overstreet 	bch2_fs_debug_exit(c);
6271c6fdbd8SKent Overstreet 	bch2_fs_chardev_exit(c);
6281c6fdbd8SKent Overstreet 
62963508b75SKent Overstreet 	bch2_ro_ref_put(c);
63063508b75SKent Overstreet 	wait_event(c->ro_ref_wait, !refcount_read(&c->ro_ref));
63163508b75SKent Overstreet 
632104c6974SDaniel Hill 	kobject_put(&c->counters_kobj);
6331c6fdbd8SKent Overstreet 	kobject_put(&c->time_stats);
6341c6fdbd8SKent Overstreet 	kobject_put(&c->opts_dir);
6351c6fdbd8SKent Overstreet 	kobject_put(&c->internal);
6361c6fdbd8SKent Overstreet 
6371c6fdbd8SKent Overstreet 	/* btree prefetch might have kicked off reads in the background: */
6381c6fdbd8SKent Overstreet 	bch2_btree_flush_all_reads(c);
6391c6fdbd8SKent Overstreet 
6409fea2274SKent Overstreet 	for_each_member_device(c, ca)
6411c6fdbd8SKent Overstreet 		cancel_work_sync(&ca->io_error_work);
6421c6fdbd8SKent Overstreet 
6431c6fdbd8SKent Overstreet 	cancel_work_sync(&c->read_only_work);
644d5e4dcc2SKent Overstreet }
6451c6fdbd8SKent Overstreet 
646d5e4dcc2SKent Overstreet void bch2_fs_free(struct bch_fs *c)
647d5e4dcc2SKent Overstreet {
648d5e4dcc2SKent Overstreet 	unsigned i;
649d5e4dcc2SKent Overstreet 
650d5e4dcc2SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
651d5e4dcc2SKent Overstreet 	list_del(&c->list);
652d5e4dcc2SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
653d5e4dcc2SKent Overstreet 
654d5e4dcc2SKent Overstreet 	closure_sync(&c->cl);
655d5e4dcc2SKent Overstreet 	closure_debug_destroy(&c->cl);
656d5e4dcc2SKent Overstreet 
657d5e4dcc2SKent Overstreet 	for (i = 0; i < c->sb.nr_devices; i++) {
658d5e4dcc2SKent Overstreet 		struct bch_dev *ca = rcu_dereference_protected(c->devs[i], true);
659d5e4dcc2SKent Overstreet 
660d5e4dcc2SKent Overstreet 		if (ca) {
661552aa548SKent Overstreet 			EBUG_ON(atomic_long_read(&ca->ref) != 1);
662d5e4dcc2SKent Overstreet 			bch2_free_super(&ca->disk_sb);
663d5e4dcc2SKent Overstreet 			bch2_dev_free(ca);
664d5e4dcc2SKent Overstreet 		}
665d5e4dcc2SKent Overstreet 	}
6661c6fdbd8SKent Overstreet 
667af1c6871SKent Overstreet 	bch_verbose(c, "shutdown complete");
668af1c6871SKent Overstreet 
6691c6fdbd8SKent Overstreet 	kobject_put(&c->kobj);
6701c6fdbd8SKent Overstreet }
6711c6fdbd8SKent Overstreet 
672d5e4dcc2SKent Overstreet void bch2_fs_stop(struct bch_fs *c)
673d5e4dcc2SKent Overstreet {
674d5e4dcc2SKent Overstreet 	__bch2_fs_stop(c);
675d5e4dcc2SKent Overstreet 	bch2_fs_free(c);
676d5e4dcc2SKent Overstreet }
677d5e4dcc2SKent Overstreet 
678e2b60560SKent Overstreet static int bch2_fs_online(struct bch_fs *c)
6791c6fdbd8SKent Overstreet {
680e2b60560SKent Overstreet 	int ret = 0;
6811c6fdbd8SKent Overstreet 
6821c6fdbd8SKent Overstreet 	lockdep_assert_held(&bch_fs_list_lock);
6831c6fdbd8SKent Overstreet 
684e2b60560SKent Overstreet 	if (__bch2_uuid_to_fs(c->sb.uuid)) {
685e2b60560SKent Overstreet 		bch_err(c, "filesystem UUID already open");
686e2b60560SKent Overstreet 		return -EINVAL;
687e2b60560SKent Overstreet 	}
6881c6fdbd8SKent Overstreet 
6891c6fdbd8SKent Overstreet 	ret = bch2_fs_chardev_init(c);
690e2b60560SKent Overstreet 	if (ret) {
691e2b60560SKent Overstreet 		bch_err(c, "error creating character device");
692e2b60560SKent Overstreet 		return ret;
693e2b60560SKent Overstreet 	}
6941c6fdbd8SKent Overstreet 
6951c6fdbd8SKent Overstreet 	bch2_fs_debug_init(c);
6961c6fdbd8SKent Overstreet 
697e2b60560SKent Overstreet 	ret = kobject_add(&c->kobj, NULL, "%pU", c->sb.user_uuid.b) ?:
698e2b60560SKent Overstreet 	    kobject_add(&c->internal, &c->kobj, "internal") ?:
699e2b60560SKent Overstreet 	    kobject_add(&c->opts_dir, &c->kobj, "options") ?:
700066a2646SKent Overstreet #ifndef CONFIG_BCACHEFS_NO_LATENCY_ACCT
701e2b60560SKent Overstreet 	    kobject_add(&c->time_stats, &c->kobj, "time_stats") ?:
702066a2646SKent Overstreet #endif
703104c6974SDaniel Hill 	    kobject_add(&c->counters_kobj, &c->kobj, "counters") ?:
704e2b60560SKent Overstreet 	    bch2_opts_create_sysfs_files(&c->opts_dir);
705e2b60560SKent Overstreet 	if (ret) {
706e2b60560SKent Overstreet 		bch_err(c, "error creating sysfs objects");
707e2b60560SKent Overstreet 		return ret;
708e2b60560SKent Overstreet 	}
7091c6fdbd8SKent Overstreet 
7101ada1606SKent Overstreet 	down_write(&c->state_lock);
7111c6fdbd8SKent Overstreet 
7129fea2274SKent Overstreet 	for_each_member_device(c, ca) {
713e2b60560SKent Overstreet 		ret = bch2_dev_sysfs_online(c, ca);
714e2b60560SKent Overstreet 		if (ret) {
715e2b60560SKent Overstreet 			bch_err(c, "error creating sysfs objects");
716f295298bSKent Overstreet 			bch2_dev_put(ca);
7171c6fdbd8SKent Overstreet 			goto err;
7183a402c8dSKent Overstreet 		}
719e2b60560SKent Overstreet 	}
7201c6fdbd8SKent Overstreet 
721e2b60560SKent Overstreet 	BUG_ON(!list_empty(&c->list));
7221c6fdbd8SKent Overstreet 	list_add(&c->list, &bch_fs_list);
7231c6fdbd8SKent Overstreet err:
7241ada1606SKent Overstreet 	up_write(&c->state_lock);
725e2b60560SKent Overstreet 	return ret;
7261c6fdbd8SKent Overstreet }
7271c6fdbd8SKent Overstreet 
7281c6fdbd8SKent Overstreet static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
7291c6fdbd8SKent Overstreet {
7301c6fdbd8SKent Overstreet 	struct bch_fs *c;
731401ec4dbSKent Overstreet 	struct printbuf name = PRINTBUF;
732ecf37a4aSKent Overstreet 	unsigned i, iter_size;
7337be9ab63SChris Webb 	int ret = 0;
7341c6fdbd8SKent Overstreet 
735cb6fc943SKent Overstreet 	c = kvmalloc(sizeof(struct bch_fs), GFP_KERNEL|__GFP_ZERO);
7367be9ab63SChris Webb 	if (!c) {
73765d48e35SKent Overstreet 		c = ERR_PTR(-BCH_ERR_ENOMEM_fs_alloc);
7381c6fdbd8SKent Overstreet 		goto out;
7397be9ab63SChris Webb 	}
7401c6fdbd8SKent Overstreet 
74196f37eabSKent Overstreet 	c->stdio = (void *)(unsigned long) opts.stdio;
7422b41226dSKent Overstreet 
7431c6fdbd8SKent Overstreet 	__module_get(THIS_MODULE);
7441c6fdbd8SKent Overstreet 
745505b7a4cSKent Overstreet 	closure_init(&c->cl, NULL);
746505b7a4cSKent Overstreet 
747505b7a4cSKent Overstreet 	c->kobj.kset = bcachefs_kset;
748505b7a4cSKent Overstreet 	kobject_init(&c->kobj, &bch2_fs_ktype);
749505b7a4cSKent Overstreet 	kobject_init(&c->internal, &bch2_fs_internal_ktype);
750505b7a4cSKent Overstreet 	kobject_init(&c->opts_dir, &bch2_fs_opts_dir_ktype);
751505b7a4cSKent Overstreet 	kobject_init(&c->time_stats, &bch2_fs_time_stats_ktype);
752104c6974SDaniel Hill 	kobject_init(&c->counters_kobj, &bch2_fs_counters_ktype);
753505b7a4cSKent Overstreet 
7541c6fdbd8SKent Overstreet 	c->minor		= -1;
7551c6fdbd8SKent Overstreet 	c->disk_sb.fs_sb	= true;
7561c6fdbd8SKent Overstreet 
7571ada1606SKent Overstreet 	init_rwsem(&c->state_lock);
7581c6fdbd8SKent Overstreet 	mutex_init(&c->sb_lock);
7591c6fdbd8SKent Overstreet 	mutex_init(&c->replicas_gc_lock);
7601c6fdbd8SKent Overstreet 	mutex_init(&c->btree_root_lock);
7611c6fdbd8SKent Overstreet 	INIT_WORK(&c->read_only_work, bch2_fs_read_only_work);
7621c6fdbd8SKent Overstreet 
76363508b75SKent Overstreet 	refcount_set(&c->ro_ref, 1);
76463508b75SKent Overstreet 	init_waitqueue_head(&c->ro_ref_wait);
765267b801fSKent Overstreet 	sema_init(&c->online_fsck_mutex, 1);
76663508b75SKent Overstreet 
7671c6fdbd8SKent Overstreet 	init_rwsem(&c->gc_lock);
768c45c8667SKent Overstreet 	mutex_init(&c->gc_gens_lock);
7698a443d3eSKent Overstreet 	atomic_set(&c->journal_keys.ref, 1);
7708a443d3eSKent Overstreet 	c->journal_keys.initial_ref_held = true;
7711c6fdbd8SKent Overstreet 
7721c6fdbd8SKent Overstreet 	for (i = 0; i < BCH_TIME_STAT_NR; i++)
7731c6fdbd8SKent Overstreet 		bch2_time_stats_init(&c->times[i]);
7741c6fdbd8SKent Overstreet 
77510330402SKent Overstreet 	bch2_fs_gc_init(c);
776e6d11615SKent Overstreet 	bch2_fs_copygc_init(c);
7772ca88e5aSKent Overstreet 	bch2_fs_btree_key_cache_init_early(&c->btree_key_cache);
77850a8a732SThomas Bertschinger 	bch2_fs_btree_iter_init_early(c);
77965db6049SKent Overstreet 	bch2_fs_btree_interior_update_init_early(c);
780b092daddSKent Overstreet 	bch2_fs_allocator_background_init(c);
781b092daddSKent Overstreet 	bch2_fs_allocator_foreground_init(c);
7821c6fdbd8SKent Overstreet 	bch2_fs_rebalance_init(c);
7831c6fdbd8SKent Overstreet 	bch2_fs_quota_init(c);
78484c72755SKent Overstreet 	bch2_fs_ec_init_early(c);
785b9fa375bSKent Overstreet 	bch2_fs_move_init(c);
786f5d26fa3SKent Overstreet 	bch2_fs_sb_errors_init_early(c);
7871c6fdbd8SKent Overstreet 
7881c6fdbd8SKent Overstreet 	INIT_LIST_HEAD(&c->list);
7891c6fdbd8SKent Overstreet 
7904d8100daSKent Overstreet 	mutex_init(&c->usage_scratch_lock);
7914d8100daSKent Overstreet 
7921c6fdbd8SKent Overstreet 	mutex_init(&c->bio_bounce_pages_lock);
79314b393eeSKent Overstreet 	mutex_init(&c->snapshot_table_lock);
79437fad949SKent Overstreet 	init_rwsem(&c->snapshot_create_lock);
7951c6fdbd8SKent Overstreet 
7961c6fdbd8SKent Overstreet 	spin_lock_init(&c->btree_write_error_lock);
7971c6fdbd8SKent Overstreet 
7985b593ee1SKent Overstreet 	INIT_LIST_HEAD(&c->journal_iters);
799f1d786a0SKent Overstreet 
800f5d26fa3SKent Overstreet 	INIT_LIST_HEAD(&c->fsck_error_msgs);
801f5d26fa3SKent Overstreet 	mutex_init(&c->fsck_error_msgs_lock);
8021c6fdbd8SKent Overstreet 
8035e82a9a1SKent Overstreet 	seqcount_init(&c->usage_lock);
8045e82a9a1SKent Overstreet 
805ef1b2092SKent Overstreet 	sema_init(&c->io_in_flight, 128);
806ef1b2092SKent Overstreet 
8079edbcc72SKent Overstreet 	INIT_LIST_HEAD(&c->vfs_inodes_list);
8089edbcc72SKent Overstreet 	mutex_init(&c->vfs_inodes_lock);
8099edbcc72SKent Overstreet 
8101c6fdbd8SKent Overstreet 	c->copy_gc_enabled		= 1;
8111c6fdbd8SKent Overstreet 	c->rebalance.enabled		= 1;
8121c6fdbd8SKent Overstreet 	c->promote_whole_extents	= true;
8131c6fdbd8SKent Overstreet 
814991ba021SKent Overstreet 	c->journal.flush_write_time	= &c->times[BCH_TIME_journal_flush_write];
815991ba021SKent Overstreet 	c->journal.noflush_write_time	= &c->times[BCH_TIME_journal_noflush_write];
8161c6fdbd8SKent Overstreet 	c->journal.flush_seq_time	= &c->times[BCH_TIME_journal_flush_seq];
8171c6fdbd8SKent Overstreet 
8181c6fdbd8SKent Overstreet 	bch2_fs_btree_cache_init_early(&c->btree_cache);
8191c6fdbd8SKent Overstreet 
820fca1223cSKent Overstreet 	mutex_init(&c->sectors_available_lock);
821fca1223cSKent Overstreet 
822e2b60560SKent Overstreet 	ret = percpu_init_rwsem(&c->mark_lock);
823e2b60560SKent Overstreet 	if (ret)
82473e6ab95SKent Overstreet 		goto err;
82573e6ab95SKent Overstreet 
8261c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
827e2b60560SKent Overstreet 	ret = bch2_sb_to_fs(c, sb);
8281c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
829e2b60560SKent Overstreet 
830e2b60560SKent Overstreet 	if (ret)
8311c6fdbd8SKent Overstreet 		goto err;
8321c6fdbd8SKent Overstreet 
833401ec4dbSKent Overstreet 	pr_uuid(&name, c->sb.user_uuid.b);
83465d48e35SKent Overstreet 	ret = name.allocation_failure ? -BCH_ERR_ENOMEM_fs_name_alloc : 0;
835401ec4dbSKent Overstreet 	if (ret)
836401ec4dbSKent Overstreet 		goto err;
8371c6fdbd8SKent Overstreet 
838f8cdf65bSLi Zetao 	strscpy(c->name, name.buf, sizeof(c->name));
839f8cdf65bSLi Zetao 	printbuf_exit(&name);
840f8cdf65bSLi Zetao 
8412430e72fSKent Overstreet 	/* Compat: */
84273bd774dSKent Overstreet 	if (le16_to_cpu(sb->version) <= bcachefs_metadata_version_inode_v2 &&
8432430e72fSKent Overstreet 	    !BCH_SB_JOURNAL_FLUSH_DELAY(sb))
8442430e72fSKent Overstreet 		SET_BCH_SB_JOURNAL_FLUSH_DELAY(sb, 1000);
8452430e72fSKent Overstreet 
84673bd774dSKent Overstreet 	if (le16_to_cpu(sb->version) <= bcachefs_metadata_version_inode_v2 &&
8472430e72fSKent Overstreet 	    !BCH_SB_JOURNAL_RECLAIM_DELAY(sb))
8482430e72fSKent Overstreet 		SET_BCH_SB_JOURNAL_RECLAIM_DELAY(sb, 100);
8492430e72fSKent Overstreet 
8501c6fdbd8SKent Overstreet 	c->opts = bch2_opts_default;
8518244f320SKent Overstreet 	ret = bch2_opts_from_sb(&c->opts, sb);
8528244f320SKent Overstreet 	if (ret)
8538244f320SKent Overstreet 		goto err;
8548244f320SKent Overstreet 
8551c6fdbd8SKent Overstreet 	bch2_opts_apply(&c->opts, opts);
8561c6fdbd8SKent Overstreet 
8577c8f6f98SKent Overstreet 	c->btree_key_cache_btrees |= 1U << BTREE_ID_alloc;
8587c8f6f98SKent Overstreet 	if (c->opts.inodes_use_key_cache)
8597c8f6f98SKent Overstreet 		c->btree_key_cache_btrees |= 1U << BTREE_ID_inodes;
860aaad530aSKent Overstreet 	c->btree_key_cache_btrees |= 1U << BTREE_ID_logged_ops;
8617c8f6f98SKent Overstreet 
8628244f320SKent Overstreet 	c->block_bits		= ilog2(block_sectors(c));
8631c6fdbd8SKent Overstreet 	c->btree_foreground_merge_threshold = BTREE_FOREGROUND_MERGE_THRESHOLD(c);
8641c6fdbd8SKent Overstreet 
8657be9ab63SChris Webb 	if (bch2_fs_init_fault("fs_alloc")) {
866e2b60560SKent Overstreet 		bch_err(c, "fs_alloc fault injected");
867e2b60560SKent Overstreet 		ret = -EFAULT;
8681c6fdbd8SKent Overstreet 		goto err;
8697be9ab63SChris Webb 	}
8701c6fdbd8SKent Overstreet 
871ae2f17d5SKent Overstreet 	iter_size = sizeof(struct sort_iter) +
8721c6fdbd8SKent Overstreet 		(btree_blocks(c) + 1) * 2 *
873ae2f17d5SKent Overstreet 		sizeof(struct sort_iter_set);
8741c6fdbd8SKent Overstreet 
875b5e8a699SKent Overstreet 	c->inode_shard_bits = ilog2(roundup_pow_of_two(num_possible_cpus()));
876b5e8a699SKent Overstreet 
877731bdd2eSKent Overstreet 	if (!(c->btree_update_wq = alloc_workqueue("bcachefs",
8786b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_UNBOUND, 512)) ||
8799f1833caSKent Overstreet 	    !(c->btree_io_complete_wq = alloc_workqueue("bcachefs_btree_io",
8806b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 1)) ||
8812f33ece9SKent Overstreet 	    !(c->copygc_wq = alloc_workqueue("bcachefs_copygc",
8826b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 1)) ||
883161f73c2SKent Overstreet 	    !(c->btree_read_complete_wq = alloc_workqueue("bcachefs_btree_read_complete",
8846b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 512)) ||
885161f73c2SKent Overstreet 	    !(c->btree_write_submit_wq = alloc_workqueue("bcachefs_btree_write_sumit",
886161f73c2SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 1)) ||
8878bff9875SBrian Foster 	    !(c->write_ref_wq = alloc_workqueue("bcachefs_write_ref",
8888bff9875SBrian Foster 				WQ_FREEZABLE, 0)) ||
889d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
890134915f3SKent Overstreet 	    percpu_ref_init(&c->writes, bch2_writes_disabled,
891134915f3SKent Overstreet 			    PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
892d94189adSKent Overstreet #endif
8931c6fdbd8SKent Overstreet 	    mempool_init_kmalloc_pool(&c->fill_iter, 1, iter_size) ||
8941c6fdbd8SKent Overstreet 	    bioset_init(&c->btree_bio, 1,
8951c6fdbd8SKent Overstreet 			max(offsetof(struct btree_read_bio, bio),
8961c6fdbd8SKent Overstreet 			    offsetof(struct btree_write_bio, wbio.bio)),
8971c6fdbd8SKent Overstreet 			BIOSET_NEED_BVECS) ||
8985663a415SKent Overstreet 	    !(c->pcpu = alloc_percpu(struct bch_fs_pcpu)) ||
8995e82a9a1SKent Overstreet 	    !(c->online_reserved = alloc_percpu(u64)) ||
900cb6fc943SKent Overstreet 	    mempool_init_kvmalloc_pool(&c->btree_bounce_pool, 1,
901ec4edd7bSKent Overstreet 				       c->opts.btree_node_size) ||
90235189e09SKent Overstreet 	    mempool_init_kmalloc_pool(&c->large_bkey_pool, 1, 2048) ||
903b5e8a699SKent Overstreet 	    !(c->unused_inode_hints = kcalloc(1U << c->inode_shard_bits,
904e2b60560SKent Overstreet 					      sizeof(u64), GFP_KERNEL))) {
90565d48e35SKent Overstreet 		ret = -BCH_ERR_ENOMEM_fs_other_alloc;
9067be9ab63SChris Webb 		goto err;
9077be9ab63SChris Webb 	}
9087be9ab63SChris Webb 
909f3b8403eSKent Overstreet 	ret = bch2_fs_counters_init(c) ?:
910f5d26fa3SKent Overstreet 	    bch2_fs_sb_errors_init(c) ?:
911f3b8403eSKent Overstreet 	    bch2_io_clock_init(&c->io_clock[READ]) ?:
912e2b60560SKent Overstreet 	    bch2_io_clock_init(&c->io_clock[WRITE]) ?:
913e2b60560SKent Overstreet 	    bch2_fs_journal_init(&c->journal) ?:
914e2b60560SKent Overstreet 	    bch2_fs_replicas_init(c) ?:
915*f770a6e9SKent Overstreet 	    bch2_fs_btree_iter_init(c) ?:
916e2b60560SKent Overstreet 	    bch2_fs_btree_cache_init(c) ?:
917e2b60560SKent Overstreet 	    bch2_fs_btree_key_cache_init(&c->btree_key_cache) ?:
918e2b60560SKent Overstreet 	    bch2_fs_btree_interior_update_init(c) ?:
9199b688da3SKent Overstreet 	    bch2_fs_buckets_waiting_for_journal_init(c) ?:
920920e69bcSKent Overstreet 	    bch2_fs_btree_write_buffer_init(c) ?:
921e2b60560SKent Overstreet 	    bch2_fs_subvolumes_init(c) ?:
9221809b8cbSKent Overstreet 	    bch2_fs_io_read_init(c) ?:
9231809b8cbSKent Overstreet 	    bch2_fs_io_write_init(c) ?:
924350175bfSKent Overstreet 	    bch2_fs_nocow_locking_init(c) ?:
925e2b60560SKent Overstreet 	    bch2_fs_encryption_init(c) ?:
926e2b60560SKent Overstreet 	    bch2_fs_compress_init(c) ?:
927e2b60560SKent Overstreet 	    bch2_fs_ec_init(c) ?:
928dbbfca9fSKent Overstreet 	    bch2_fs_fsio_init(c) ?:
929867c1fe0SDan Carpenter 	    bch2_fs_fs_io_buffered_init(c) ?:
930dbbfca9fSKent Overstreet 	    bch2_fs_fs_io_direct_init(c);
9317be9ab63SChris Webb 	if (ret)
9321c6fdbd8SKent Overstreet 		goto err;
9331c6fdbd8SKent Overstreet 
9341c6fdbd8SKent Overstreet 	for (i = 0; i < c->sb.nr_devices; i++)
9352f724563SKent Overstreet 		if (bch2_member_exists(c->disk_sb.sb, i) &&
9367be9ab63SChris Webb 		    bch2_dev_alloc(c, i)) {
937e2b60560SKent Overstreet 			ret = -EEXIST;
9381c6fdbd8SKent Overstreet 			goto err;
9397be9ab63SChris Webb 		}
9401c6fdbd8SKent Overstreet 
9414b8f89afSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
9424b8f89afSKent Overstreet 			&c->btree_root_journal_res,
9434b8f89afSKent Overstreet 			BTREE_ID_NR * (JSET_KEYS_U64s + BKEY_BTREE_PTR_U64s_MAX));
9444b8f89afSKent Overstreet 	bch2_dev_usage_journal_reserve(c);
9454b8f89afSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
9464b8f89afSKent Overstreet 			&c->clock_journal_res,
9474b8f89afSKent Overstreet 			(sizeof(struct jset_entry_clock) / sizeof(u64)) * 2);
9484b8f89afSKent Overstreet 
9491c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
950e2b60560SKent Overstreet 	ret = bch2_fs_online(c);
9511c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
952e2b60560SKent Overstreet 
953e2b60560SKent Overstreet 	if (ret)
9541c6fdbd8SKent Overstreet 		goto err;
9551c6fdbd8SKent Overstreet out:
9561c6fdbd8SKent Overstreet 	return c;
9571c6fdbd8SKent Overstreet err:
9581c6fdbd8SKent Overstreet 	bch2_fs_free(c);
9597be9ab63SChris Webb 	c = ERR_PTR(ret);
9601c6fdbd8SKent Overstreet 	goto out;
9611c6fdbd8SKent Overstreet }
9621c6fdbd8SKent Overstreet 
963619f5beeSKent Overstreet noinline_for_stack
964619f5beeSKent Overstreet static void print_mount_opts(struct bch_fs *c)
965619f5beeSKent Overstreet {
966619f5beeSKent Overstreet 	enum bch_opt_id i;
967fa8e94faSKent Overstreet 	struct printbuf p = PRINTBUF;
968619f5beeSKent Overstreet 	bool first = true;
969619f5beeSKent Overstreet 
970ef1634f0SKent Overstreet 	prt_str(&p, "mounting version ");
971e3804b55SKent Overstreet 	bch2_version_to_text(&p, c->sb.version);
97260573ff5SKent Overstreet 
973619f5beeSKent Overstreet 	if (c->opts.read_only) {
97460573ff5SKent Overstreet 		prt_str(&p, " opts=");
975619f5beeSKent Overstreet 		first = false;
97660573ff5SKent Overstreet 		prt_printf(&p, "ro");
977619f5beeSKent Overstreet 	}
978619f5beeSKent Overstreet 
979619f5beeSKent Overstreet 	for (i = 0; i < bch2_opts_nr; i++) {
980619f5beeSKent Overstreet 		const struct bch_option *opt = &bch2_opt_table[i];
981619f5beeSKent Overstreet 		u64 v = bch2_opt_get_by_id(&c->opts, i);
982619f5beeSKent Overstreet 
9838244f320SKent Overstreet 		if (!(opt->flags & OPT_MOUNT))
984619f5beeSKent Overstreet 			continue;
985619f5beeSKent Overstreet 
986619f5beeSKent Overstreet 		if (v == bch2_opt_get_by_id(&bch2_opts_default, i))
987619f5beeSKent Overstreet 			continue;
988619f5beeSKent Overstreet 
98960573ff5SKent Overstreet 		prt_str(&p, first ? " opts=" : ",");
990619f5beeSKent Overstreet 		first = false;
9915521b1dfSKent Overstreet 		bch2_opt_to_text(&p, c, c->disk_sb.sb, opt, v, OPT_SHOW_MOUNT_STYLE);
992619f5beeSKent Overstreet 	}
993619f5beeSKent Overstreet 
99460573ff5SKent Overstreet 	bch_info(c, "%s", p.buf);
995fa8e94faSKent Overstreet 	printbuf_exit(&p);
996619f5beeSKent Overstreet }
997619f5beeSKent Overstreet 
998619f5beeSKent Overstreet int bch2_fs_start(struct bch_fs *c)
9991c6fdbd8SKent Overstreet {
1000a420eea6STim Schlueter 	time64_t now = ktime_get_real_seconds();
100178c0b75cSKent Overstreet 	int ret;
10021c6fdbd8SKent Overstreet 
1003ef1634f0SKent Overstreet 	print_mount_opts(c);
1004ef1634f0SKent Overstreet 
10051ada1606SKent Overstreet 	down_write(&c->state_lock);
10061c6fdbd8SKent Overstreet 
10073c471b65SKent Overstreet 	BUG_ON(test_bit(BCH_FS_started, &c->flags));
10081c6fdbd8SKent Overstreet 
10091c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
10101c6fdbd8SKent Overstreet 
1011f5d26fa3SKent Overstreet 	ret = bch2_sb_members_v2_init(c);
10123f7b9713SHunter Shaffer 	if (ret) {
10133f7b9713SHunter Shaffer 		mutex_unlock(&c->sb_lock);
10143f7b9713SHunter Shaffer 		goto err;
10153f7b9713SHunter Shaffer 	}
10163f7b9713SHunter Shaffer 
10179fea2274SKent Overstreet 	for_each_online_member(c, ca)
10189fea2274SKent Overstreet 		bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount = cpu_to_le64(now);
10191c6fdbd8SKent Overstreet 
10200a34c058SKent Overstreet 	struct bch_sb_field_ext *ext =
10210a34c058SKent Overstreet 		bch2_sb_field_get_minsize(&c->disk_sb, ext, sizeof(*ext) / sizeof(u64));
10221c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
10231c6fdbd8SKent Overstreet 
10240a34c058SKent Overstreet 	if (!ext) {
10250a34c058SKent Overstreet 		bch_err(c, "insufficient space in superblock for sb_field_ext");
10260a34c058SKent Overstreet 		ret = -BCH_ERR_ENOSPC_sb;
10270a34c058SKent Overstreet 		goto err;
10280a34c058SKent Overstreet 	}
10290a34c058SKent Overstreet 
10309fea2274SKent Overstreet 	for_each_rw_member(c, ca)
10311c6fdbd8SKent Overstreet 		bch2_dev_allocator_add(c, ca);
10321c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
10331c6fdbd8SKent Overstreet 
10341c6fdbd8SKent Overstreet 	ret = BCH_SB_INITIALIZED(c->disk_sb.sb)
10351c6fdbd8SKent Overstreet 		? bch2_fs_recovery(c)
10361c6fdbd8SKent Overstreet 		: bch2_fs_initialize(c);
10371c6fdbd8SKent Overstreet 	if (ret)
10381c6fdbd8SKent Overstreet 		goto err;
10391c6fdbd8SKent Overstreet 
1040cd575ddfSKent Overstreet 	ret = bch2_opts_check_may_set(c);
1041cd575ddfSKent Overstreet 	if (ret)
1042cd575ddfSKent Overstreet 		goto err;
1043cd575ddfSKent Overstreet 
1044e2b60560SKent Overstreet 	if (bch2_fs_init_fault("fs_start")) {
1045e2b60560SKent Overstreet 		bch_err(c, "fs_start fault injected");
104678c0b75cSKent Overstreet 		ret = -EINVAL;
10471c6fdbd8SKent Overstreet 		goto err;
1048e2b60560SKent Overstreet 	}
10491c6fdbd8SKent Overstreet 
10503c471b65SKent Overstreet 	set_bit(BCH_FS_started, &c->flags);
1051a9310ab0SKent Overstreet 
105262719cf3SKent Overstreet 	if (c->opts.read_only) {
10531c6fdbd8SKent Overstreet 		bch2_fs_read_only(c);
10541c6fdbd8SKent Overstreet 	} else {
10553c471b65SKent Overstreet 		ret = !test_bit(BCH_FS_rw, &c->flags)
1056619f5beeSKent Overstreet 			? bch2_fs_read_write(c)
1057619f5beeSKent Overstreet 			: bch2_fs_read_write_late(c);
1058619f5beeSKent Overstreet 		if (ret)
10591c6fdbd8SKent Overstreet 			goto err;
10601c6fdbd8SKent Overstreet 	}
10611c6fdbd8SKent Overstreet 
1062619f5beeSKent Overstreet 	ret = 0;
1063e34ec13aSKent Overstreet err:
1064e34ec13aSKent Overstreet 	if (ret)
1065e34ec13aSKent Overstreet 		bch_err_msg(c, ret, "starting filesystem");
1066e34ec13aSKent Overstreet 	else
1067e34ec13aSKent Overstreet 		bch_verbose(c, "done starting filesystem");
10681ada1606SKent Overstreet 	up_write(&c->state_lock);
1069619f5beeSKent Overstreet 	return ret;
10701c6fdbd8SKent Overstreet }
10711c6fdbd8SKent Overstreet 
107278c0b75cSKent Overstreet static int bch2_dev_may_add(struct bch_sb *sb, struct bch_fs *c)
10731c6fdbd8SKent Overstreet {
10741241df58SHunter Shaffer 	struct bch_member m = bch2_sb_member_get(sb, sb->dev_idx);
10751c6fdbd8SKent Overstreet 
10768244f320SKent Overstreet 	if (le16_to_cpu(sb->block_size) != block_sectors(c))
107778c0b75cSKent Overstreet 		return -BCH_ERR_mismatched_block_size;
10781c6fdbd8SKent Overstreet 
10791241df58SHunter Shaffer 	if (le16_to_cpu(m.bucket_size) <
10801c6fdbd8SKent Overstreet 	    BCH_SB_BTREE_NODE_SIZE(c->disk_sb.sb))
108178c0b75cSKent Overstreet 		return -BCH_ERR_bucket_size_too_small;
10821c6fdbd8SKent Overstreet 
108378c0b75cSKent Overstreet 	return 0;
10841c6fdbd8SKent Overstreet }
10851c6fdbd8SKent Overstreet 
10860d529663SKent Overstreet static int bch2_dev_in_fs(struct bch_sb_handle *fs,
10872f300f09SKent Overstreet 			  struct bch_sb_handle *sb,
10882f300f09SKent Overstreet 			  struct bch_opts *opts)
10891c6fdbd8SKent Overstreet {
10900d529663SKent Overstreet 	if (fs == sb)
10910d529663SKent Overstreet 		return 0;
10921c6fdbd8SKent Overstreet 
10930d529663SKent Overstreet 	if (!uuid_equal(&fs->sb->uuid, &sb->sb->uuid))
109478c0b75cSKent Overstreet 		return -BCH_ERR_device_not_a_member_of_filesystem;
10951c6fdbd8SKent Overstreet 
10962f724563SKent Overstreet 	if (!bch2_member_exists(fs->sb, sb->sb->dev_idx))
109778c0b75cSKent Overstreet 		return -BCH_ERR_device_has_been_removed;
10981c6fdbd8SKent Overstreet 
10990d529663SKent Overstreet 	if (fs->sb->block_size != sb->sb->block_size)
110078c0b75cSKent Overstreet 		return -BCH_ERR_mismatched_block_size;
11011c6fdbd8SKent Overstreet 
11020d529663SKent Overstreet 	if (le16_to_cpu(fs->sb->version) < bcachefs_metadata_version_member_seq ||
11030d529663SKent Overstreet 	    le16_to_cpu(sb->sb->version) < bcachefs_metadata_version_member_seq)
11040d529663SKent Overstreet 		return 0;
11050d529663SKent Overstreet 
11060d529663SKent Overstreet 	if (fs->sb->seq == sb->sb->seq &&
11070d529663SKent Overstreet 	    fs->sb->write_time != sb->sb->write_time) {
11080d529663SKent Overstreet 		struct printbuf buf = PRINTBUF;
11090d529663SKent Overstreet 
11101f5af5fcSKent Overstreet 		prt_str(&buf, "Split brain detected between ");
11111f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11121f5af5fcSKent Overstreet 		prt_str(&buf, " and ");
11131f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11141f5af5fcSKent Overstreet 		prt_char(&buf, ':');
11150d529663SKent Overstreet 		prt_newline(&buf);
11160d529663SKent Overstreet 		prt_printf(&buf, "seq=%llu but write_time different, got", le64_to_cpu(sb->sb->seq));
11170d529663SKent Overstreet 		prt_newline(&buf);
11180d529663SKent Overstreet 
11191f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11201f5af5fcSKent Overstreet 		prt_char(&buf, ' ');
11210d529663SKent Overstreet 		bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));;
11220d529663SKent Overstreet 		prt_newline(&buf);
11230d529663SKent Overstreet 
11241f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11251f5af5fcSKent Overstreet 		prt_char(&buf, ' ');
11260d529663SKent Overstreet 		bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));;
11270d529663SKent Overstreet 		prt_newline(&buf);
11280d529663SKent Overstreet 
11292f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11300d529663SKent Overstreet 			prt_printf(&buf, "Not using older sb");
11310d529663SKent Overstreet 
11320d529663SKent Overstreet 		pr_err("%s", buf.buf);
11330d529663SKent Overstreet 		printbuf_exit(&buf);
11342f300f09SKent Overstreet 
11352f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11360d529663SKent Overstreet 			return -BCH_ERR_device_splitbrain;
11370d529663SKent Overstreet 	}
11380d529663SKent Overstreet 
11390d529663SKent Overstreet 	struct bch_member m = bch2_sb_member_get(fs->sb, sb->sb->dev_idx);
11400d529663SKent Overstreet 	u64 seq_from_fs		= le64_to_cpu(m.seq);
11410d529663SKent Overstreet 	u64 seq_from_member	= le64_to_cpu(sb->sb->seq);
11420d529663SKent Overstreet 
11430d529663SKent Overstreet 	if (seq_from_fs && seq_from_fs < seq_from_member) {
11441f5af5fcSKent Overstreet 		struct printbuf buf = PRINTBUF;
11451f5af5fcSKent Overstreet 
11461f5af5fcSKent Overstreet 		prt_str(&buf, "Split brain detected between ");
11471f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11481f5af5fcSKent Overstreet 		prt_str(&buf, " and ");
11491f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11501f5af5fcSKent Overstreet 		prt_char(&buf, ':');
11511f5af5fcSKent Overstreet 		prt_newline(&buf);
11521f5af5fcSKent Overstreet 
11531f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11541f5af5fcSKent Overstreet 		prt_str(&buf, " believes seq of ");
11551f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11561f5af5fcSKent Overstreet 		prt_printf(&buf, " to be %llu, but ", seq_from_fs);
11571f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11581f5af5fcSKent Overstreet 		prt_printf(&buf, " has %llu\n", seq_from_member);
11592f300f09SKent Overstreet 
11602f300f09SKent Overstreet 		if (!opts->no_splitbrain_check) {
11611f5af5fcSKent Overstreet 			prt_str(&buf, "Not using ");
11621f5af5fcSKent Overstreet 			prt_bdevname(&buf, sb->bdev);
11632f300f09SKent Overstreet 		}
11641f5af5fcSKent Overstreet 
11651f5af5fcSKent Overstreet 		pr_err("%s", buf.buf);
11661f5af5fcSKent Overstreet 		printbuf_exit(&buf);
11672f300f09SKent Overstreet 
11682f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11690d529663SKent Overstreet 			return -BCH_ERR_device_splitbrain;
11700d529663SKent Overstreet 	}
11710d529663SKent Overstreet 
117278c0b75cSKent Overstreet 	return 0;
11731c6fdbd8SKent Overstreet }
11741c6fdbd8SKent Overstreet 
11751c6fdbd8SKent Overstreet /* Device startup/shutdown: */
11761c6fdbd8SKent Overstreet 
11771c6fdbd8SKent Overstreet static void bch2_dev_release(struct kobject *kobj)
11781c6fdbd8SKent Overstreet {
11791c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
11801c6fdbd8SKent Overstreet 
11811c6fdbd8SKent Overstreet 	kfree(ca);
11821c6fdbd8SKent Overstreet }
11831c6fdbd8SKent Overstreet 
11841c6fdbd8SKent Overstreet static void bch2_dev_free(struct bch_dev *ca)
11851c6fdbd8SKent Overstreet {
11861c6fdbd8SKent Overstreet 	cancel_work_sync(&ca->io_error_work);
11871c6fdbd8SKent Overstreet 
11881c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs &&
11891c6fdbd8SKent Overstreet 	    ca->disk_sb.bdev)
11901c6fdbd8SKent Overstreet 		sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
11911c6fdbd8SKent Overstreet 
11921c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs)
11931c6fdbd8SKent Overstreet 		kobject_del(&ca->kobj);
11941c6fdbd8SKent Overstreet 
1195ffcbec60SKent Overstreet 	kfree(ca->buckets_nouse);
11961c6fdbd8SKent Overstreet 	bch2_free_super(&ca->disk_sb);
11971c6fdbd8SKent Overstreet 	bch2_dev_journal_exit(ca);
11981c6fdbd8SKent Overstreet 
11991c6fdbd8SKent Overstreet 	free_percpu(ca->io_done);
12001c6fdbd8SKent Overstreet 	bch2_dev_buckets_free(ca);
1201d1170ce5SKent Overstreet 	free_page((unsigned long) ca->sb_read_scratch);
12021c6fdbd8SKent Overstreet 
1203273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_exit(&ca->io_latency[WRITE]);
1204273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_exit(&ca->io_latency[READ]);
12051c6fdbd8SKent Overstreet 
12061c6fdbd8SKent Overstreet 	percpu_ref_exit(&ca->io_ref);
1207552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
12081c6fdbd8SKent Overstreet 	percpu_ref_exit(&ca->ref);
1209552aa548SKent Overstreet #endif
12101c6fdbd8SKent Overstreet 	kobject_put(&ca->kobj);
12111c6fdbd8SKent Overstreet }
12121c6fdbd8SKent Overstreet 
12131c6fdbd8SKent Overstreet static void __bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca)
12141c6fdbd8SKent Overstreet {
12151c6fdbd8SKent Overstreet 
12161c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
12171c6fdbd8SKent Overstreet 
12181c6fdbd8SKent Overstreet 	if (percpu_ref_is_zero(&ca->io_ref))
12191c6fdbd8SKent Overstreet 		return;
12201c6fdbd8SKent Overstreet 
12211c6fdbd8SKent Overstreet 	__bch2_dev_read_only(c, ca);
12221c6fdbd8SKent Overstreet 
12231c6fdbd8SKent Overstreet 	reinit_completion(&ca->io_ref_completion);
12241c6fdbd8SKent Overstreet 	percpu_ref_kill(&ca->io_ref);
12251c6fdbd8SKent Overstreet 	wait_for_completion(&ca->io_ref_completion);
12261c6fdbd8SKent Overstreet 
12271c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs) {
12281c6fdbd8SKent Overstreet 		sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
12291c6fdbd8SKent Overstreet 		sysfs_remove_link(&ca->kobj, "block");
12301c6fdbd8SKent Overstreet 	}
12311c6fdbd8SKent Overstreet 
12321c6fdbd8SKent Overstreet 	bch2_free_super(&ca->disk_sb);
12331c6fdbd8SKent Overstreet 	bch2_dev_journal_exit(ca);
12341c6fdbd8SKent Overstreet }
12351c6fdbd8SKent Overstreet 
1236552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
12371c6fdbd8SKent Overstreet static void bch2_dev_ref_complete(struct percpu_ref *ref)
12381c6fdbd8SKent Overstreet {
12391c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(ref, struct bch_dev, ref);
12401c6fdbd8SKent Overstreet 
12411c6fdbd8SKent Overstreet 	complete(&ca->ref_completion);
12421c6fdbd8SKent Overstreet }
1243552aa548SKent Overstreet #endif
12441c6fdbd8SKent Overstreet 
12451c6fdbd8SKent Overstreet static void bch2_dev_io_ref_complete(struct percpu_ref *ref)
12461c6fdbd8SKent Overstreet {
12471c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(ref, struct bch_dev, io_ref);
12481c6fdbd8SKent Overstreet 
12491c6fdbd8SKent Overstreet 	complete(&ca->io_ref_completion);
12501c6fdbd8SKent Overstreet }
12511c6fdbd8SKent Overstreet 
12521c6fdbd8SKent Overstreet static int bch2_dev_sysfs_online(struct bch_fs *c, struct bch_dev *ca)
12531c6fdbd8SKent Overstreet {
12541c6fdbd8SKent Overstreet 	int ret;
12551c6fdbd8SKent Overstreet 
12561c6fdbd8SKent Overstreet 	if (!c->kobj.state_in_sysfs)
12571c6fdbd8SKent Overstreet 		return 0;
12581c6fdbd8SKent Overstreet 
12591c6fdbd8SKent Overstreet 	if (!ca->kobj.state_in_sysfs) {
12601c6fdbd8SKent Overstreet 		ret = kobject_add(&ca->kobj, &c->kobj,
12611c6fdbd8SKent Overstreet 				  "dev-%u", ca->dev_idx);
12621c6fdbd8SKent Overstreet 		if (ret)
12631c6fdbd8SKent Overstreet 			return ret;
12641c6fdbd8SKent Overstreet 	}
12651c6fdbd8SKent Overstreet 
12661c6fdbd8SKent Overstreet 	if (ca->disk_sb.bdev) {
12671c6fdbd8SKent Overstreet 		struct kobject *block = bdev_kobj(ca->disk_sb.bdev);
12681c6fdbd8SKent Overstreet 
12691c6fdbd8SKent Overstreet 		ret = sysfs_create_link(block, &ca->kobj, "bcachefs");
12701c6fdbd8SKent Overstreet 		if (ret)
12711c6fdbd8SKent Overstreet 			return ret;
12721c6fdbd8SKent Overstreet 
12731c6fdbd8SKent Overstreet 		ret = sysfs_create_link(&ca->kobj, block, "block");
12741c6fdbd8SKent Overstreet 		if (ret)
12751c6fdbd8SKent Overstreet 			return ret;
12761c6fdbd8SKent Overstreet 	}
12771c6fdbd8SKent Overstreet 
12781c6fdbd8SKent Overstreet 	return 0;
12791c6fdbd8SKent Overstreet }
12801c6fdbd8SKent Overstreet 
12811c6fdbd8SKent Overstreet static struct bch_dev *__bch2_dev_alloc(struct bch_fs *c,
12821c6fdbd8SKent Overstreet 					struct bch_member *member)
12831c6fdbd8SKent Overstreet {
12841c6fdbd8SKent Overstreet 	struct bch_dev *ca;
128594119eebSKent Overstreet 	unsigned i;
12861c6fdbd8SKent Overstreet 
12871c6fdbd8SKent Overstreet 	ca = kzalloc(sizeof(*ca), GFP_KERNEL);
12881c6fdbd8SKent Overstreet 	if (!ca)
12891c6fdbd8SKent Overstreet 		return NULL;
12901c6fdbd8SKent Overstreet 
12911c6fdbd8SKent Overstreet 	kobject_init(&ca->kobj, &bch2_dev_ktype);
12921c6fdbd8SKent Overstreet 	init_completion(&ca->ref_completion);
12931c6fdbd8SKent Overstreet 	init_completion(&ca->io_ref_completion);
12941c6fdbd8SKent Overstreet 
12951c6fdbd8SKent Overstreet 	init_rwsem(&ca->bucket_lock);
12961c6fdbd8SKent Overstreet 
12971c6fdbd8SKent Overstreet 	INIT_WORK(&ca->io_error_work, bch2_io_error_work);
12981c6fdbd8SKent Overstreet 
1299273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_init(&ca->io_latency[READ]);
1300273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_init(&ca->io_latency[WRITE]);
13011c6fdbd8SKent Overstreet 
13021c6fdbd8SKent Overstreet 	ca->mi = bch2_mi_to_cpu(member);
130394119eebSKent Overstreet 
130494119eebSKent Overstreet 	for (i = 0; i < ARRAY_SIZE(member->errors); i++)
130594119eebSKent Overstreet 		atomic64_set(&ca->errors[i], le64_to_cpu(member->errors[i]));
130694119eebSKent Overstreet 
13071c6fdbd8SKent Overstreet 	ca->uuid = member->uuid;
13081c6fdbd8SKent Overstreet 
1309f25d8215SKent Overstreet 	ca->nr_btree_reserve = DIV_ROUND_UP(BTREE_NODE_RESERVE,
1310f25d8215SKent Overstreet 			     ca->mi.bucket_size / btree_sectors(c));
1311f25d8215SKent Overstreet 
1312552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
1313552aa548SKent Overstreet 	if (percpu_ref_init(&ca->ref, bch2_dev_ref_complete, 0, GFP_KERNEL))
1314552aa548SKent Overstreet 		goto err;
1315552aa548SKent Overstreet #else
1316552aa548SKent Overstreet 	atomic_long_set(&ca->ref, 1);
1317552aa548SKent Overstreet #endif
1318552aa548SKent Overstreet 
1319552aa548SKent Overstreet 	if (percpu_ref_init(&ca->io_ref, bch2_dev_io_ref_complete,
13201c6fdbd8SKent Overstreet 			    PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
1321d1170ce5SKent Overstreet 	    !(ca->sb_read_scratch = (void *) __get_free_page(GFP_KERNEL)) ||
13221c6fdbd8SKent Overstreet 	    bch2_dev_buckets_alloc(c, ca) ||
13231c6fdbd8SKent Overstreet 	    !(ca->io_done	= alloc_percpu(*ca->io_done)))
13241c6fdbd8SKent Overstreet 		goto err;
13251c6fdbd8SKent Overstreet 
13261c6fdbd8SKent Overstreet 	return ca;
13271c6fdbd8SKent Overstreet err:
13281c6fdbd8SKent Overstreet 	bch2_dev_free(ca);
13291c6fdbd8SKent Overstreet 	return NULL;
13301c6fdbd8SKent Overstreet }
13311c6fdbd8SKent Overstreet 
13321c6fdbd8SKent Overstreet static void bch2_dev_attach(struct bch_fs *c, struct bch_dev *ca,
13331c6fdbd8SKent Overstreet 			    unsigned dev_idx)
13341c6fdbd8SKent Overstreet {
13351c6fdbd8SKent Overstreet 	ca->dev_idx = dev_idx;
13361c6fdbd8SKent Overstreet 	__set_bit(ca->dev_idx, ca->self.d);
13371c6fdbd8SKent Overstreet 	scnprintf(ca->name, sizeof(ca->name), "dev-%u", dev_idx);
13381c6fdbd8SKent Overstreet 
13391c6fdbd8SKent Overstreet 	ca->fs = c;
13401c6fdbd8SKent Overstreet 	rcu_assign_pointer(c->devs[ca->dev_idx], ca);
13411c6fdbd8SKent Overstreet 
13421c6fdbd8SKent Overstreet 	if (bch2_dev_sysfs_online(c, ca))
13431c6fdbd8SKent Overstreet 		pr_warn("error creating sysfs objects");
13441c6fdbd8SKent Overstreet }
13451c6fdbd8SKent Overstreet 
13461c6fdbd8SKent Overstreet static int bch2_dev_alloc(struct bch_fs *c, unsigned dev_idx)
13471c6fdbd8SKent Overstreet {
13481241df58SHunter Shaffer 	struct bch_member member = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
13491c6fdbd8SKent Overstreet 	struct bch_dev *ca = NULL;
13501c6fdbd8SKent Overstreet 	int ret = 0;
13511c6fdbd8SKent Overstreet 
13521c6fdbd8SKent Overstreet 	if (bch2_fs_init_fault("dev_alloc"))
13531c6fdbd8SKent Overstreet 		goto err;
13541c6fdbd8SKent Overstreet 
13551241df58SHunter Shaffer 	ca = __bch2_dev_alloc(c, &member);
13561c6fdbd8SKent Overstreet 	if (!ca)
13571c6fdbd8SKent Overstreet 		goto err;
13581c6fdbd8SKent Overstreet 
1359220d2062SKent Overstreet 	ca->fs = c;
1360220d2062SKent Overstreet 
13611c6fdbd8SKent Overstreet 	bch2_dev_attach(c, ca, dev_idx);
13621c6fdbd8SKent Overstreet 	return ret;
13631c6fdbd8SKent Overstreet err:
13641c6fdbd8SKent Overstreet 	if (ca)
13651c6fdbd8SKent Overstreet 		bch2_dev_free(ca);
1366c8b4534dSKent Overstreet 	return -BCH_ERR_ENOMEM_dev_alloc;
13671c6fdbd8SKent Overstreet }
13681c6fdbd8SKent Overstreet 
13691c6fdbd8SKent Overstreet static int __bch2_dev_attach_bdev(struct bch_dev *ca, struct bch_sb_handle *sb)
13701c6fdbd8SKent Overstreet {
13711c6fdbd8SKent Overstreet 	unsigned ret;
13721c6fdbd8SKent Overstreet 
13731c6fdbd8SKent Overstreet 	if (bch2_dev_is_online(ca)) {
13741c6fdbd8SKent Overstreet 		bch_err(ca, "already have device online in slot %u",
13751c6fdbd8SKent Overstreet 			sb->sb->dev_idx);
137678c0b75cSKent Overstreet 		return -BCH_ERR_device_already_online;
13771c6fdbd8SKent Overstreet 	}
13781c6fdbd8SKent Overstreet 
13791c6fdbd8SKent Overstreet 	if (get_capacity(sb->bdev->bd_disk) <
13801c6fdbd8SKent Overstreet 	    ca->mi.bucket_size * ca->mi.nbuckets) {
13811c6fdbd8SKent Overstreet 		bch_err(ca, "cannot online: device too small");
138278c0b75cSKent Overstreet 		return -BCH_ERR_device_size_too_small;
13831c6fdbd8SKent Overstreet 	}
13841c6fdbd8SKent Overstreet 
13851c6fdbd8SKent Overstreet 	BUG_ON(!percpu_ref_is_zero(&ca->io_ref));
13861c6fdbd8SKent Overstreet 
13871c6fdbd8SKent Overstreet 	ret = bch2_dev_journal_init(ca, sb->sb);
13881c6fdbd8SKent Overstreet 	if (ret)
13891c6fdbd8SKent Overstreet 		return ret;
13901c6fdbd8SKent Overstreet 
13911c6fdbd8SKent Overstreet 	/* Commit: */
13921c6fdbd8SKent Overstreet 	ca->disk_sb = *sb;
13931c6fdbd8SKent Overstreet 	memset(sb, 0, sizeof(*sb));
13941c6fdbd8SKent Overstreet 
1395eacb2574SKent Overstreet 	ca->dev = ca->disk_sb.bdev->bd_dev;
1396eacb2574SKent Overstreet 
13971c6fdbd8SKent Overstreet 	percpu_ref_reinit(&ca->io_ref);
13981c6fdbd8SKent Overstreet 
13991c6fdbd8SKent Overstreet 	return 0;
14001c6fdbd8SKent Overstreet }
14011c6fdbd8SKent Overstreet 
14021c6fdbd8SKent Overstreet static int bch2_dev_attach_bdev(struct bch_fs *c, struct bch_sb_handle *sb)
14031c6fdbd8SKent Overstreet {
14041c6fdbd8SKent Overstreet 	struct bch_dev *ca;
14051c6fdbd8SKent Overstreet 	int ret;
14061c6fdbd8SKent Overstreet 
14071c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
14081c6fdbd8SKent Overstreet 
14091c6fdbd8SKent Overstreet 	if (le64_to_cpu(sb->sb->seq) >
14101c6fdbd8SKent Overstreet 	    le64_to_cpu(c->disk_sb.sb->seq))
14111c6fdbd8SKent Overstreet 		bch2_sb_to_fs(c, sb->sb);
14121c6fdbd8SKent Overstreet 
14132f724563SKent Overstreet 	BUG_ON(!bch2_dev_exists(c, sb->sb->dev_idx));
14141c6fdbd8SKent Overstreet 
14152f724563SKent Overstreet 	ca = bch2_dev_locked(c, sb->sb->dev_idx);
14161c6fdbd8SKent Overstreet 
14171c6fdbd8SKent Overstreet 	ret = __bch2_dev_attach_bdev(ca, sb);
14181c6fdbd8SKent Overstreet 	if (ret)
14191c6fdbd8SKent Overstreet 		return ret;
14201c6fdbd8SKent Overstreet 
14211c6fdbd8SKent Overstreet 	bch2_dev_sysfs_online(c, ca);
14221c6fdbd8SKent Overstreet 
14231f5af5fcSKent Overstreet 	struct printbuf name = PRINTBUF;
14241f5af5fcSKent Overstreet 	prt_bdevname(&name, ca->disk_sb.bdev);
14251f5af5fcSKent Overstreet 
14261c6fdbd8SKent Overstreet 	if (c->sb.nr_devices == 1)
1427e28b0359SKees Cook 		strscpy(c->name, name.buf, sizeof(c->name));
1428e28b0359SKees Cook 	strscpy(ca->name, name.buf, sizeof(ca->name));
14291f5af5fcSKent Overstreet 
14301f5af5fcSKent Overstreet 	printbuf_exit(&name);
14311c6fdbd8SKent Overstreet 
14321c6fdbd8SKent Overstreet 	rebalance_wakeup(c);
14331c6fdbd8SKent Overstreet 	return 0;
14341c6fdbd8SKent Overstreet }
14351c6fdbd8SKent Overstreet 
14361c6fdbd8SKent Overstreet /* Device management: */
14371c6fdbd8SKent Overstreet 
14381c6fdbd8SKent Overstreet /*
14391c6fdbd8SKent Overstreet  * Note: this function is also used by the error paths - when a particular
14401c6fdbd8SKent Overstreet  * device sees an error, we call it to determine whether we can just set the
14411c6fdbd8SKent Overstreet  * device RO, or - if this function returns false - we'll set the whole
14421c6fdbd8SKent Overstreet  * filesystem RO:
14431c6fdbd8SKent Overstreet  *
14441c6fdbd8SKent Overstreet  * XXX: maybe we should be more explicit about whether we're changing state
14451c6fdbd8SKent Overstreet  * because we got an error or what have you?
14461c6fdbd8SKent Overstreet  */
14471c6fdbd8SKent Overstreet bool bch2_dev_state_allowed(struct bch_fs *c, struct bch_dev *ca,
14481c6fdbd8SKent Overstreet 			    enum bch_member_state new_state, int flags)
14491c6fdbd8SKent Overstreet {
14501c6fdbd8SKent Overstreet 	struct bch_devs_mask new_online_devs;
14519fea2274SKent Overstreet 	int nr_rw = 0, required;
14521c6fdbd8SKent Overstreet 
14531c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
14541c6fdbd8SKent Overstreet 
14551c6fdbd8SKent Overstreet 	switch (new_state) {
14562436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_rw:
14571c6fdbd8SKent Overstreet 		return true;
14582436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_ro:
14592436cb9fSKent Overstreet 		if (ca->mi.state != BCH_MEMBER_STATE_rw)
14601c6fdbd8SKent Overstreet 			return true;
14611c6fdbd8SKent Overstreet 
14621c6fdbd8SKent Overstreet 		/* do we have enough devices to write to?  */
14639fea2274SKent Overstreet 		for_each_member_device(c, ca2)
14641c6fdbd8SKent Overstreet 			if (ca2 != ca)
14652436cb9fSKent Overstreet 				nr_rw += ca2->mi.state == BCH_MEMBER_STATE_rw;
14661c6fdbd8SKent Overstreet 
14671c6fdbd8SKent Overstreet 		required = max(!(flags & BCH_FORCE_IF_METADATA_DEGRADED)
14681c6fdbd8SKent Overstreet 			       ? c->opts.metadata_replicas
14694e074475SKent Overstreet 			       : metadata_replicas_required(c),
14701c6fdbd8SKent Overstreet 			       !(flags & BCH_FORCE_IF_DATA_DEGRADED)
14711c6fdbd8SKent Overstreet 			       ? c->opts.data_replicas
14724e074475SKent Overstreet 			       : data_replicas_required(c));
14731c6fdbd8SKent Overstreet 
14741c6fdbd8SKent Overstreet 		return nr_rw >= required;
14752436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_failed:
14762436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_spare:
14772436cb9fSKent Overstreet 		if (ca->mi.state != BCH_MEMBER_STATE_rw &&
14782436cb9fSKent Overstreet 		    ca->mi.state != BCH_MEMBER_STATE_ro)
14791c6fdbd8SKent Overstreet 			return true;
14801c6fdbd8SKent Overstreet 
14811c6fdbd8SKent Overstreet 		/* do we have enough devices to read from?  */
14821c6fdbd8SKent Overstreet 		new_online_devs = bch2_online_devs(c);
14831c6fdbd8SKent Overstreet 		__clear_bit(ca->dev_idx, new_online_devs.d);
14841c6fdbd8SKent Overstreet 
1485fcb3431bSKent Overstreet 		return bch2_have_enough_devs(c, new_online_devs, flags, false);
14861c6fdbd8SKent Overstreet 	default:
14871c6fdbd8SKent Overstreet 		BUG();
14881c6fdbd8SKent Overstreet 	}
14891c6fdbd8SKent Overstreet }
14901c6fdbd8SKent Overstreet 
14911c6fdbd8SKent Overstreet static bool bch2_fs_may_start(struct bch_fs *c)
14921c6fdbd8SKent Overstreet {
14931c6fdbd8SKent Overstreet 	struct bch_dev *ca;
1494fcb3431bSKent Overstreet 	unsigned i, flags = 0;
14951c6fdbd8SKent Overstreet 
1496fcb3431bSKent Overstreet 	if (c->opts.very_degraded)
1497fcb3431bSKent Overstreet 		flags |= BCH_FORCE_IF_DEGRADED|BCH_FORCE_IF_LOST;
1498fcb3431bSKent Overstreet 
1499fcb3431bSKent Overstreet 	if (c->opts.degraded)
1500fcb3431bSKent Overstreet 		flags |= BCH_FORCE_IF_DEGRADED;
1501fcb3431bSKent Overstreet 
1502fcb3431bSKent Overstreet 	if (!c->opts.degraded &&
1503fcb3431bSKent Overstreet 	    !c->opts.very_degraded) {
15041c6fdbd8SKent Overstreet 		mutex_lock(&c->sb_lock);
15051c6fdbd8SKent Overstreet 
15061c6fdbd8SKent Overstreet 		for (i = 0; i < c->disk_sb.sb->nr_devices; i++) {
15072f724563SKent Overstreet 			if (!bch2_member_exists(c->disk_sb.sb, i))
15081c6fdbd8SKent Overstreet 				continue;
15091c6fdbd8SKent Overstreet 
15102f724563SKent Overstreet 			ca = bch2_dev_locked(c, i);
15111c6fdbd8SKent Overstreet 
15121c6fdbd8SKent Overstreet 			if (!bch2_dev_is_online(ca) &&
15132436cb9fSKent Overstreet 			    (ca->mi.state == BCH_MEMBER_STATE_rw ||
15142436cb9fSKent Overstreet 			     ca->mi.state == BCH_MEMBER_STATE_ro)) {
15151c6fdbd8SKent Overstreet 				mutex_unlock(&c->sb_lock);
15161c6fdbd8SKent Overstreet 				return false;
15171c6fdbd8SKent Overstreet 			}
15181c6fdbd8SKent Overstreet 		}
15191c6fdbd8SKent Overstreet 		mutex_unlock(&c->sb_lock);
15201c6fdbd8SKent Overstreet 	}
15211c6fdbd8SKent Overstreet 
1522fcb3431bSKent Overstreet 	return bch2_have_enough_devs(c, bch2_online_devs(c), flags, true);
15231c6fdbd8SKent Overstreet }
15241c6fdbd8SKent Overstreet 
15251c6fdbd8SKent Overstreet static void __bch2_dev_read_only(struct bch_fs *c, struct bch_dev *ca)
15261c6fdbd8SKent Overstreet {
15271c6fdbd8SKent Overstreet 	/*
15281c6fdbd8SKent Overstreet 	 * The allocator thread itself allocates btree nodes, so stop it first:
15291c6fdbd8SKent Overstreet 	 */
15301c6fdbd8SKent Overstreet 	bch2_dev_allocator_remove(c, ca);
15311c6fdbd8SKent Overstreet 	bch2_dev_journal_stop(&c->journal, ca);
15321c6fdbd8SKent Overstreet }
15331c6fdbd8SKent Overstreet 
1534f25d8215SKent Overstreet static void __bch2_dev_read_write(struct bch_fs *c, struct bch_dev *ca)
15351c6fdbd8SKent Overstreet {
15361c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
15371c6fdbd8SKent Overstreet 
15382436cb9fSKent Overstreet 	BUG_ON(ca->mi.state != BCH_MEMBER_STATE_rw);
15391c6fdbd8SKent Overstreet 
15401c6fdbd8SKent Overstreet 	bch2_dev_allocator_add(c, ca);
15411c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
15421c6fdbd8SKent Overstreet }
15431c6fdbd8SKent Overstreet 
15441c6fdbd8SKent Overstreet int __bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
15451c6fdbd8SKent Overstreet 			 enum bch_member_state new_state, int flags)
15461c6fdbd8SKent Overstreet {
15473f7b9713SHunter Shaffer 	struct bch_member *m;
15481c6fdbd8SKent Overstreet 	int ret = 0;
15491c6fdbd8SKent Overstreet 
15501c6fdbd8SKent Overstreet 	if (ca->mi.state == new_state)
15511c6fdbd8SKent Overstreet 		return 0;
15521c6fdbd8SKent Overstreet 
15531c6fdbd8SKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, new_state, flags))
155478c0b75cSKent Overstreet 		return -BCH_ERR_device_state_not_allowed;
15551c6fdbd8SKent Overstreet 
15562436cb9fSKent Overstreet 	if (new_state != BCH_MEMBER_STATE_rw)
15571c6fdbd8SKent Overstreet 		__bch2_dev_read_only(c, ca);
15581c6fdbd8SKent Overstreet 
15592436cb9fSKent Overstreet 	bch_notice(ca, "%s", bch2_member_states[new_state]);
15601c6fdbd8SKent Overstreet 
15611c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
15623f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
15633f7b9713SHunter Shaffer 	SET_BCH_MEMBER_STATE(m, new_state);
15641c6fdbd8SKent Overstreet 	bch2_write_super(c);
15651c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
15661c6fdbd8SKent Overstreet 
1567e2b60560SKent Overstreet 	if (new_state == BCH_MEMBER_STATE_rw)
1568f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
15691c6fdbd8SKent Overstreet 
15701c6fdbd8SKent Overstreet 	rebalance_wakeup(c);
15711c6fdbd8SKent Overstreet 
15721c6fdbd8SKent Overstreet 	return ret;
15731c6fdbd8SKent Overstreet }
15741c6fdbd8SKent Overstreet 
15751c6fdbd8SKent Overstreet int bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
15761c6fdbd8SKent Overstreet 		       enum bch_member_state new_state, int flags)
15771c6fdbd8SKent Overstreet {
15781c6fdbd8SKent Overstreet 	int ret;
15791c6fdbd8SKent Overstreet 
15801ada1606SKent Overstreet 	down_write(&c->state_lock);
15811c6fdbd8SKent Overstreet 	ret = __bch2_dev_set_state(c, ca, new_state, flags);
15821ada1606SKent Overstreet 	up_write(&c->state_lock);
15831c6fdbd8SKent Overstreet 
15841c6fdbd8SKent Overstreet 	return ret;
15851c6fdbd8SKent Overstreet }
15861c6fdbd8SKent Overstreet 
15871c6fdbd8SKent Overstreet /* Device add/removal: */
15881c6fdbd8SKent Overstreet 
1589c0ebe3e4SKent Overstreet static int bch2_dev_remove_alloc(struct bch_fs *c, struct bch_dev *ca)
15905d20ba48SKent Overstreet {
1591c6b2826cSKent Overstreet 	struct bpos start	= POS(ca->dev_idx, 0);
1592c6b2826cSKent Overstreet 	struct bpos end		= POS(ca->dev_idx, U64_MAX);
15935d20ba48SKent Overstreet 	int ret;
15945d20ba48SKent Overstreet 
1595a9c0a4cbSKent Overstreet 	/*
1596a9c0a4cbSKent Overstreet 	 * We clear the LRU and need_discard btrees first so that we don't race
1597a9c0a4cbSKent Overstreet 	 * with bch2_do_invalidates() and bch2_do_discards()
1598a9c0a4cbSKent Overstreet 	 */
1599a9c0a4cbSKent Overstreet 	ret =   bch2_btree_delete_range(c, BTREE_ID_lru, start, end,
16005dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1601a9c0a4cbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_need_discard, start, end,
16025dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1603c6b2826cSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_freespace, start, end,
16045dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1605a8c752bbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_backpointers, start, end,
16065dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1607a9c0a4cbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_alloc, start, end,
16085dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
160902d51bb9SBrian Foster 		bch2_btree_delete_range(c, BTREE_ID_bucket_gens, start, end,
16105dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL);
1611e46c181aSKent Overstreet 	bch_err_msg(c, ret, "removing dev alloc info");
1612c6b2826cSKent Overstreet 	return ret;
16135d20ba48SKent Overstreet }
16145d20ba48SKent Overstreet 
16151c6fdbd8SKent Overstreet int bch2_dev_remove(struct bch_fs *c, struct bch_dev *ca, int flags)
16161c6fdbd8SKent Overstreet {
16173f7b9713SHunter Shaffer 	struct bch_member *m;
16181c6fdbd8SKent Overstreet 	unsigned dev_idx = ca->dev_idx, data;
161978c0b75cSKent Overstreet 	int ret;
16201c6fdbd8SKent Overstreet 
16211ada1606SKent Overstreet 	down_write(&c->state_lock);
16221c6fdbd8SKent Overstreet 
162331ba2cd3SKent Overstreet 	/*
162431ba2cd3SKent Overstreet 	 * We consume a reference to ca->ref, regardless of whether we succeed
162531ba2cd3SKent Overstreet 	 * or fail:
162631ba2cd3SKent Overstreet 	 */
1627f295298bSKent Overstreet 	bch2_dev_put(ca);
16281c6fdbd8SKent Overstreet 
16292436cb9fSKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
16301c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot remove without losing data");
163178c0b75cSKent Overstreet 		ret = -BCH_ERR_device_state_not_allowed;
16321c6fdbd8SKent Overstreet 		goto err;
16331c6fdbd8SKent Overstreet 	}
16341c6fdbd8SKent Overstreet 
16351c6fdbd8SKent Overstreet 	__bch2_dev_read_only(c, ca);
16361c6fdbd8SKent Overstreet 
16371c6fdbd8SKent Overstreet 	ret = bch2_dev_data_drop(c, ca->dev_idx, flags);
1638130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_dev_data_drop()");
1639cf904c8dSKent Overstreet 	if (ret)
16401c6fdbd8SKent Overstreet 		goto err;
16411c6fdbd8SKent Overstreet 
16425d20ba48SKent Overstreet 	ret = bch2_dev_remove_alloc(c, ca);
1643130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_dev_remove_alloc()");
1644cf904c8dSKent Overstreet 	if (ret)
16451c6fdbd8SKent Overstreet 		goto err;
16461c6fdbd8SKent Overstreet 
1647a9c0a4cbSKent Overstreet 	ret = bch2_journal_flush_device_pins(&c->journal, ca->dev_idx);
1648130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_journal_flush_device_pins()");
1649cf904c8dSKent Overstreet 	if (ret)
1650a9c0a4cbSKent Overstreet 		goto err;
1651a9c0a4cbSKent Overstreet 
1652a9c0a4cbSKent Overstreet 	ret = bch2_journal_flush(&c->journal);
1653130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_journal_flush()");
1654cf904c8dSKent Overstreet 	if (ret)
16551c6fdbd8SKent Overstreet 		goto err;
16561c6fdbd8SKent Overstreet 
165731ba2cd3SKent Overstreet 	ret = bch2_replicas_gc2(c);
1658130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_replicas_gc2()");
1659cf904c8dSKent Overstreet 	if (ret)
166031ba2cd3SKent Overstreet 		goto err;
166131ba2cd3SKent Overstreet 
166231ba2cd3SKent Overstreet 	data = bch2_dev_has_data(c, ca);
166331ba2cd3SKent Overstreet 	if (data) {
1664fa8e94faSKent Overstreet 		struct printbuf data_has = PRINTBUF;
166531ba2cd3SKent Overstreet 
1666e58f963cSKent Overstreet 		prt_bitflags(&data_has, __bch2_data_types, data);
1667fa8e94faSKent Overstreet 		bch_err(ca, "Remove failed, still has data (%s)", data_has.buf);
1668fa8e94faSKent Overstreet 		printbuf_exit(&data_has);
166931ba2cd3SKent Overstreet 		ret = -EBUSY;
167031ba2cd3SKent Overstreet 		goto err;
167131ba2cd3SKent Overstreet 	}
167231ba2cd3SKent Overstreet 
16731c6fdbd8SKent Overstreet 	__bch2_dev_offline(c, ca);
16741c6fdbd8SKent Overstreet 
16751c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
16761c6fdbd8SKent Overstreet 	rcu_assign_pointer(c->devs[ca->dev_idx], NULL);
16771c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
16781c6fdbd8SKent Overstreet 
1679552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
16801c6fdbd8SKent Overstreet 	percpu_ref_kill(&ca->ref);
1681552aa548SKent Overstreet #else
1682552aa548SKent Overstreet 	ca->dying = true;
1683552aa548SKent Overstreet 	bch2_dev_put(ca);
1684552aa548SKent Overstreet #endif
16851c6fdbd8SKent Overstreet 	wait_for_completion(&ca->ref_completion);
16861c6fdbd8SKent Overstreet 
16871c6fdbd8SKent Overstreet 	bch2_dev_free(ca);
16881c6fdbd8SKent Overstreet 
16891c6fdbd8SKent Overstreet 	/*
1690bc652905SBrian Foster 	 * At this point the device object has been removed in-core, but the
1691bc652905SBrian Foster 	 * on-disk journal might still refer to the device index via sb device
1692bc652905SBrian Foster 	 * usage entries. Recovery fails if it sees usage information for an
1693bc652905SBrian Foster 	 * invalid device. Flush journal pins to push the back of the journal
1694bc652905SBrian Foster 	 * past now invalid device index references before we update the
1695bc652905SBrian Foster 	 * superblock, but after the device object has been removed so any
1696bc652905SBrian Foster 	 * further journal writes elide usage info for the device.
1697bc652905SBrian Foster 	 */
1698bc652905SBrian Foster 	bch2_journal_flush_all_pins(&c->journal);
1699bc652905SBrian Foster 
1700bc652905SBrian Foster 	/*
17011c6fdbd8SKent Overstreet 	 * Free this device's slot in the bch_member array - all pointers to
17021c6fdbd8SKent Overstreet 	 * this device must be gone:
17031c6fdbd8SKent Overstreet 	 */
17041c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
17053f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
17063f7b9713SHunter Shaffer 	memset(&m->uuid, 0, sizeof(m->uuid));
17071c6fdbd8SKent Overstreet 
17081c6fdbd8SKent Overstreet 	bch2_write_super(c);
17091c6fdbd8SKent Overstreet 
17101c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
17111ada1606SKent Overstreet 	up_write(&c->state_lock);
1712180fb49dSKent Overstreet 
1713180fb49dSKent Overstreet 	bch2_dev_usage_journal_reserve(c);
17141c6fdbd8SKent Overstreet 	return 0;
17151c6fdbd8SKent Overstreet err:
17162436cb9fSKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1717d3bb629dSKent Overstreet 	    !percpu_ref_is_zero(&ca->io_ref))
17181c6fdbd8SKent Overstreet 		__bch2_dev_read_write(c, ca);
17191ada1606SKent Overstreet 	up_write(&c->state_lock);
17201c6fdbd8SKent Overstreet 	return ret;
17211c6fdbd8SKent Overstreet }
17221c6fdbd8SKent Overstreet 
17231c6fdbd8SKent Overstreet /* Add new device to running filesystem: */
17241c6fdbd8SKent Overstreet int bch2_dev_add(struct bch_fs *c, const char *path)
17251c6fdbd8SKent Overstreet {
17261c6fdbd8SKent Overstreet 	struct bch_opts opts = bch2_opts_empty();
17271c6fdbd8SKent Overstreet 	struct bch_sb_handle sb;
17281c6fdbd8SKent Overstreet 	struct bch_dev *ca = NULL;
17293f7b9713SHunter Shaffer 	struct bch_sb_field_members_v2 *mi;
17301c6fdbd8SKent Overstreet 	struct bch_member dev_mi;
17311c6fdbd8SKent Overstreet 	unsigned dev_idx, nr_devices, u64s;
1732fa8e94faSKent Overstreet 	struct printbuf errbuf = PRINTBUF;
173302afcb8cSKent Overstreet 	struct printbuf label = PRINTBUF;
17341c6fdbd8SKent Overstreet 	int ret;
17351c6fdbd8SKent Overstreet 
17361c6fdbd8SKent Overstreet 	ret = bch2_read_super(path, &opts, &sb);
1737e46c181aSKent Overstreet 	bch_err_msg(c, ret, "reading super");
1738cf904c8dSKent Overstreet 	if (ret)
1739efe68e1dSKent Overstreet 		goto err;
17401c6fdbd8SKent Overstreet 
17411241df58SHunter Shaffer 	dev_mi = bch2_sb_member_get(sb.sb, sb.sb->dev_idx);
17421c6fdbd8SKent Overstreet 
174302afcb8cSKent Overstreet 	if (BCH_MEMBER_GROUP(&dev_mi)) {
1744e677179bSKent Overstreet 		bch2_disk_path_to_text_sb(&label, sb.sb, BCH_MEMBER_GROUP(&dev_mi) - 1);
174502afcb8cSKent Overstreet 		if (label.allocation_failure) {
174602afcb8cSKent Overstreet 			ret = -ENOMEM;
174702afcb8cSKent Overstreet 			goto err;
174802afcb8cSKent Overstreet 		}
174902afcb8cSKent Overstreet 	}
175002afcb8cSKent Overstreet 
175178c0b75cSKent Overstreet 	ret = bch2_dev_may_add(sb.sb, c);
1752cf904c8dSKent Overstreet 	if (ret)
1753efe68e1dSKent Overstreet 		goto err;
17541c6fdbd8SKent Overstreet 
17551c6fdbd8SKent Overstreet 	ca = __bch2_dev_alloc(c, &dev_mi);
17561c6fdbd8SKent Overstreet 	if (!ca) {
1757efe68e1dSKent Overstreet 		ret = -ENOMEM;
1758efe68e1dSKent Overstreet 		goto err;
17591c6fdbd8SKent Overstreet 	}
17601c6fdbd8SKent Overstreet 
1761822835ffSKent Overstreet 	bch2_dev_usage_init(ca);
1762822835ffSKent Overstreet 
17631c6fdbd8SKent Overstreet 	ret = __bch2_dev_attach_bdev(ca, &sb);
176471933fb6SChristophe JAILLET 	if (ret)
1765efe68e1dSKent Overstreet 		goto err;
17661c6fdbd8SKent Overstreet 
17671c6fdbd8SKent Overstreet 	ret = bch2_dev_journal_alloc(ca);
1768e46c181aSKent Overstreet 	bch_err_msg(c, ret, "allocating journal");
1769cf904c8dSKent Overstreet 	if (ret)
17701c6fdbd8SKent Overstreet 		goto err;
17711c6fdbd8SKent Overstreet 
17721ada1606SKent Overstreet 	down_write(&c->state_lock);
17731c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
17741c6fdbd8SKent Overstreet 
17751c6fdbd8SKent Overstreet 	ret = bch2_sb_from_fs(c, ca);
1776e46c181aSKent Overstreet 	bch_err_msg(c, ret, "setting up new superblock");
1777cf904c8dSKent Overstreet 	if (ret)
17781c6fdbd8SKent Overstreet 		goto err_unlock;
17791c6fdbd8SKent Overstreet 
17801c6fdbd8SKent Overstreet 	if (dynamic_fault("bcachefs:add:no_slot"))
17811c6fdbd8SKent Overstreet 		goto no_slot;
17821c6fdbd8SKent Overstreet 
17833a718c06SKent Overstreet 	if (c->sb.nr_devices < BCH_SB_MEMBERS_MAX) {
17843a718c06SKent Overstreet 		dev_idx = c->sb.nr_devices;
17851c6fdbd8SKent Overstreet 		goto have_slot;
17863a718c06SKent Overstreet 	}
17873a718c06SKent Overstreet 
17883a718c06SKent Overstreet 	int best = -1;
17893a718c06SKent Overstreet 	u64 best_last_mount = 0;
17903a718c06SKent Overstreet 	for (dev_idx = 0; dev_idx < BCH_SB_MEMBERS_MAX; dev_idx++) {
17913a718c06SKent Overstreet 		struct bch_member m = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
17923a718c06SKent Overstreet 		if (bch2_member_alive(&m))
17933a718c06SKent Overstreet 			continue;
17943a718c06SKent Overstreet 
17953a718c06SKent Overstreet 		u64 last_mount = le64_to_cpu(m.last_mount);
17963a718c06SKent Overstreet 		if (best < 0 || last_mount < best_last_mount) {
17973a718c06SKent Overstreet 			best = dev_idx;
17983a718c06SKent Overstreet 			best_last_mount = last_mount;
17993a718c06SKent Overstreet 		}
18003a718c06SKent Overstreet 	}
18013a718c06SKent Overstreet 	if (best >= 0) {
18023a718c06SKent Overstreet 		dev_idx = best;
18033a718c06SKent Overstreet 		goto have_slot;
18043a718c06SKent Overstreet 	}
18051c6fdbd8SKent Overstreet no_slot:
1806098ef98dSKent Overstreet 	ret = -BCH_ERR_ENOSPC_sb_members;
1807e46c181aSKent Overstreet 	bch_err_msg(c, ret, "setting up new superblock");
18081c6fdbd8SKent Overstreet 	goto err_unlock;
18091c6fdbd8SKent Overstreet 
18101c6fdbd8SKent Overstreet have_slot:
18111c6fdbd8SKent Overstreet 	nr_devices = max_t(unsigned, dev_idx + 1, c->sb.nr_devices);
1812e8484348SKent Overstreet 
1813e8484348SKent Overstreet 	mi = bch2_sb_field_get(c->disk_sb.sb, members_v2);
18143f7b9713SHunter Shaffer 	u64s = DIV_ROUND_UP(sizeof(struct bch_sb_field_members_v2) +
18153f7b9713SHunter Shaffer 			    le16_to_cpu(mi->member_bytes) * nr_devices, sizeof(u64));
18161c6fdbd8SKent Overstreet 
18174637429eSKent Overstreet 	mi = bch2_sb_field_resize(&c->disk_sb, members_v2, u64s);
1818e8536925SKent Overstreet 	if (!mi) {
1819098ef98dSKent Overstreet 		ret = -BCH_ERR_ENOSPC_sb_members;
1820e46c181aSKent Overstreet 		bch_err_msg(c, ret, "setting up new superblock");
18211c6fdbd8SKent Overstreet 		goto err_unlock;
1822e8536925SKent Overstreet 	}
18233f7b9713SHunter Shaffer 	struct bch_member *m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
18241c6fdbd8SKent Overstreet 
18251c6fdbd8SKent Overstreet 	/* success: */
18261c6fdbd8SKent Overstreet 
18273f7b9713SHunter Shaffer 	*m = dev_mi;
18283f7b9713SHunter Shaffer 	m->last_mount = cpu_to_le64(ktime_get_real_seconds());
18291c6fdbd8SKent Overstreet 	c->disk_sb.sb->nr_devices	= nr_devices;
18301c6fdbd8SKent Overstreet 
18311c6fdbd8SKent Overstreet 	ca->disk_sb.sb->dev_idx	= dev_idx;
18321c6fdbd8SKent Overstreet 	bch2_dev_attach(c, ca, dev_idx);
18331c6fdbd8SKent Overstreet 
183402afcb8cSKent Overstreet 	if (BCH_MEMBER_GROUP(&dev_mi)) {
183502afcb8cSKent Overstreet 		ret = __bch2_dev_group_set(c, ca, label.buf);
1836e46c181aSKent Overstreet 		bch_err_msg(c, ret, "creating new label");
1837cf904c8dSKent Overstreet 		if (ret)
183802afcb8cSKent Overstreet 			goto err_unlock;
183902afcb8cSKent Overstreet 	}
184002afcb8cSKent Overstreet 
18411c6fdbd8SKent Overstreet 	bch2_write_super(c);
18421c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
18431c6fdbd8SKent Overstreet 
1844180fb49dSKent Overstreet 	bch2_dev_usage_journal_reserve(c);
1845180fb49dSKent Overstreet 
18465dd8c60eSKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca, BTREE_TRIGGER_transactional);
1847bbe682c7SKent Overstreet 	bch_err_msg(ca, ret, "marking new superblock");
1848cf904c8dSKent Overstreet 	if (ret)
1849bfcf840dSKent Overstreet 		goto err_late;
18508d6b6222SKent Overstreet 
1851c6b2826cSKent Overstreet 	ret = bch2_fs_freespace_init(c);
1852bbe682c7SKent Overstreet 	bch_err_msg(ca, ret, "initializing free space");
1853cf904c8dSKent Overstreet 	if (ret)
1854c6b2826cSKent Overstreet 		goto err_late;
1855c6b2826cSKent Overstreet 
185609943313SKent Overstreet 	ca->new_fs_bucket_idx = 0;
185709943313SKent Overstreet 
1858f25d8215SKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw)
1859f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
18601c6fdbd8SKent Overstreet 
18611ada1606SKent Overstreet 	up_write(&c->state_lock);
18621c6fdbd8SKent Overstreet 	return 0;
18631c6fdbd8SKent Overstreet 
18641c6fdbd8SKent Overstreet err_unlock:
18651c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
18661ada1606SKent Overstreet 	up_write(&c->state_lock);
18671c6fdbd8SKent Overstreet err:
18681c6fdbd8SKent Overstreet 	if (ca)
18691c6fdbd8SKent Overstreet 		bch2_dev_free(ca);
18701c6fdbd8SKent Overstreet 	bch2_free_super(&sb);
187102afcb8cSKent Overstreet 	printbuf_exit(&label);
1872fa8e94faSKent Overstreet 	printbuf_exit(&errbuf);
1873cf904c8dSKent Overstreet 	bch_err_fn(c, ret);
18741c6fdbd8SKent Overstreet 	return ret;
18751c6fdbd8SKent Overstreet err_late:
1876bfcf840dSKent Overstreet 	up_write(&c->state_lock);
1877efe68e1dSKent Overstreet 	ca = NULL;
1878efe68e1dSKent Overstreet 	goto err;
18791c6fdbd8SKent Overstreet }
18801c6fdbd8SKent Overstreet 
18811c6fdbd8SKent Overstreet /* Hot add existing device to running filesystem: */
18821c6fdbd8SKent Overstreet int bch2_dev_online(struct bch_fs *c, const char *path)
18831c6fdbd8SKent Overstreet {
18841c6fdbd8SKent Overstreet 	struct bch_opts opts = bch2_opts_empty();
18851c6fdbd8SKent Overstreet 	struct bch_sb_handle sb = { NULL };
18861c6fdbd8SKent Overstreet 	struct bch_dev *ca;
18871c6fdbd8SKent Overstreet 	unsigned dev_idx;
18881c6fdbd8SKent Overstreet 	int ret;
18891c6fdbd8SKent Overstreet 
18901ada1606SKent Overstreet 	down_write(&c->state_lock);
18911c6fdbd8SKent Overstreet 
18921c6fdbd8SKent Overstreet 	ret = bch2_read_super(path, &opts, &sb);
18931c6fdbd8SKent Overstreet 	if (ret) {
18941ada1606SKent Overstreet 		up_write(&c->state_lock);
18951c6fdbd8SKent Overstreet 		return ret;
18961c6fdbd8SKent Overstreet 	}
18971c6fdbd8SKent Overstreet 
18981c6fdbd8SKent Overstreet 	dev_idx = sb.sb->dev_idx;
18991c6fdbd8SKent Overstreet 
19002f300f09SKent Overstreet 	ret = bch2_dev_in_fs(&c->disk_sb, &sb, &c->opts);
1901e46c181aSKent Overstreet 	bch_err_msg(c, ret, "bringing %s online", path);
1902cf904c8dSKent Overstreet 	if (ret)
19031c6fdbd8SKent Overstreet 		goto err;
19041c6fdbd8SKent Overstreet 
1905e2b60560SKent Overstreet 	ret = bch2_dev_attach_bdev(c, &sb);
1906e2b60560SKent Overstreet 	if (ret)
1907e2b60560SKent Overstreet 		goto err;
1908e2b60560SKent Overstreet 
19092f724563SKent Overstreet 	ca = bch2_dev_locked(c, dev_idx);
1910bfcf840dSKent Overstreet 
19115dd8c60eSKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca, BTREE_TRIGGER_transactional);
1912e46c181aSKent Overstreet 	bch_err_msg(c, ret, "bringing %s online: error from bch2_trans_mark_dev_sb", path);
1913cf904c8dSKent Overstreet 	if (ret)
1914bfcf840dSKent Overstreet 		goto err;
1915bfcf840dSKent Overstreet 
1916f25d8215SKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw)
1917f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
19181c6fdbd8SKent Overstreet 
1919bbe682c7SKent Overstreet 	if (!ca->mi.freespace_initialized) {
1920bbe682c7SKent Overstreet 		ret = bch2_dev_freespace_init(c, ca, 0, ca->mi.nbuckets);
1921bbe682c7SKent Overstreet 		bch_err_msg(ca, ret, "initializing free space");
1922bbe682c7SKent Overstreet 		if (ret)
1923bbe682c7SKent Overstreet 			goto err;
1924bbe682c7SKent Overstreet 	}
1925bbe682c7SKent Overstreet 
1926bbe682c7SKent Overstreet 	if (!ca->journal.nr) {
1927bbe682c7SKent Overstreet 		ret = bch2_dev_journal_alloc(ca);
1928bbe682c7SKent Overstreet 		bch_err_msg(ca, ret, "allocating journal");
1929bbe682c7SKent Overstreet 		if (ret)
1930bbe682c7SKent Overstreet 			goto err;
1931bbe682c7SKent Overstreet 	}
1932bbe682c7SKent Overstreet 
19331c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
1934bbe682c7SKent Overstreet 	bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount =
1935a420eea6STim Schlueter 		cpu_to_le64(ktime_get_real_seconds());
19361c6fdbd8SKent Overstreet 	bch2_write_super(c);
19371c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
19381c6fdbd8SKent Overstreet 
19391ada1606SKent Overstreet 	up_write(&c->state_lock);
19401c6fdbd8SKent Overstreet 	return 0;
19411c6fdbd8SKent Overstreet err:
19421ada1606SKent Overstreet 	up_write(&c->state_lock);
19431c6fdbd8SKent Overstreet 	bch2_free_super(&sb);
194478c0b75cSKent Overstreet 	return ret;
19451c6fdbd8SKent Overstreet }
19461c6fdbd8SKent Overstreet 
19471c6fdbd8SKent Overstreet int bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca, int flags)
19481c6fdbd8SKent Overstreet {
19491ada1606SKent Overstreet 	down_write(&c->state_lock);
19501c6fdbd8SKent Overstreet 
19511c6fdbd8SKent Overstreet 	if (!bch2_dev_is_online(ca)) {
19521c6fdbd8SKent Overstreet 		bch_err(ca, "Already offline");
19531ada1606SKent Overstreet 		up_write(&c->state_lock);
19541c6fdbd8SKent Overstreet 		return 0;
19551c6fdbd8SKent Overstreet 	}
19561c6fdbd8SKent Overstreet 
19572436cb9fSKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
19581c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot offline required disk");
19591ada1606SKent Overstreet 		up_write(&c->state_lock);
196078c0b75cSKent Overstreet 		return -BCH_ERR_device_state_not_allowed;
19611c6fdbd8SKent Overstreet 	}
19621c6fdbd8SKent Overstreet 
19631c6fdbd8SKent Overstreet 	__bch2_dev_offline(c, ca);
19641c6fdbd8SKent Overstreet 
19651ada1606SKent Overstreet 	up_write(&c->state_lock);
19661c6fdbd8SKent Overstreet 	return 0;
19671c6fdbd8SKent Overstreet }
19681c6fdbd8SKent Overstreet 
19691c6fdbd8SKent Overstreet int bch2_dev_resize(struct bch_fs *c, struct bch_dev *ca, u64 nbuckets)
19701c6fdbd8SKent Overstreet {
19713f7b9713SHunter Shaffer 	struct bch_member *m;
197269d1f052SKent Overstreet 	u64 old_nbuckets;
19731c6fdbd8SKent Overstreet 	int ret = 0;
19741c6fdbd8SKent Overstreet 
19751ada1606SKent Overstreet 	down_write(&c->state_lock);
197669d1f052SKent Overstreet 	old_nbuckets = ca->mi.nbuckets;
19771c6fdbd8SKent Overstreet 
19781c6fdbd8SKent Overstreet 	if (nbuckets < ca->mi.nbuckets) {
19791c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot shrink yet");
19801c6fdbd8SKent Overstreet 		ret = -EINVAL;
19811c6fdbd8SKent Overstreet 		goto err;
19821c6fdbd8SKent Overstreet 	}
19831c6fdbd8SKent Overstreet 
1984db42549dSKent Overstreet 	if (nbuckets > BCH_MEMBER_NBUCKETS_MAX) {
1985db42549dSKent Overstreet 		bch_err(ca, "New device size too big (%llu greater than max %u)",
1986db42549dSKent Overstreet 			nbuckets, BCH_MEMBER_NBUCKETS_MAX);
1987db42549dSKent Overstreet 		ret = -BCH_ERR_device_size_too_big;
1988db42549dSKent Overstreet 		goto err;
1989db42549dSKent Overstreet 	}
1990db42549dSKent Overstreet 
19911c6fdbd8SKent Overstreet 	if (bch2_dev_is_online(ca) &&
19921c6fdbd8SKent Overstreet 	    get_capacity(ca->disk_sb.bdev->bd_disk) <
19931c6fdbd8SKent Overstreet 	    ca->mi.bucket_size * nbuckets) {
19941c6fdbd8SKent Overstreet 		bch_err(ca, "New size larger than device");
199578c0b75cSKent Overstreet 		ret = -BCH_ERR_device_size_too_small;
19961c6fdbd8SKent Overstreet 		goto err;
19971c6fdbd8SKent Overstreet 	}
19981c6fdbd8SKent Overstreet 
19991c6fdbd8SKent Overstreet 	ret = bch2_dev_buckets_resize(c, ca, nbuckets);
2000e46c181aSKent Overstreet 	bch_err_msg(ca, ret, "resizing buckets");
2001cf904c8dSKent Overstreet 	if (ret)
20021c6fdbd8SKent Overstreet 		goto err;
20031c6fdbd8SKent Overstreet 
20045dd8c60eSKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca, BTREE_TRIGGER_transactional);
20053e3e02e6SKent Overstreet 	if (ret)
2006224ec3e6SKent Overstreet 		goto err;
2007224ec3e6SKent Overstreet 
20081c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
20093f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
20103f7b9713SHunter Shaffer 	m->nbuckets = cpu_to_le64(nbuckets);
20111c6fdbd8SKent Overstreet 
20121c6fdbd8SKent Overstreet 	bch2_write_super(c);
20131c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
20141c6fdbd8SKent Overstreet 
201569d1f052SKent Overstreet 	if (ca->mi.freespace_initialized) {
201669d1f052SKent Overstreet 		ret = bch2_dev_freespace_init(c, ca, old_nbuckets, nbuckets);
201769d1f052SKent Overstreet 		if (ret)
201869d1f052SKent Overstreet 			goto err;
201969d1f052SKent Overstreet 
202069d1f052SKent Overstreet 		/*
202169d1f052SKent Overstreet 		 * XXX: this is all wrong transactionally - we'll be able to do
202269d1f052SKent Overstreet 		 * this correctly after the disk space accounting rewrite
202369d1f052SKent Overstreet 		 */
202469d1f052SKent Overstreet 		ca->usage_base->d[BCH_DATA_free].buckets += nbuckets - old_nbuckets;
202569d1f052SKent Overstreet 	}
202669d1f052SKent Overstreet 
20271c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
20281c6fdbd8SKent Overstreet err:
20291ada1606SKent Overstreet 	up_write(&c->state_lock);
20301c6fdbd8SKent Overstreet 	return ret;
20311c6fdbd8SKent Overstreet }
20321c6fdbd8SKent Overstreet 
20331c6fdbd8SKent Overstreet /* return with ref on ca->ref: */
2034bf7e49a4SKent Overstreet struct bch_dev *bch2_dev_lookup(struct bch_fs *c, const char *name)
20351c6fdbd8SKent Overstreet {
20363a2d0259SKent Overstreet 	for_each_member_device(c, ca)
20373a2d0259SKent Overstreet 		if (!strcmp(name, ca->name))
20381c6fdbd8SKent Overstreet 			return ca;
203941b84fb4SKent Overstreet 	return ERR_PTR(-BCH_ERR_ENOENT_dev_not_found);
204041b84fb4SKent Overstreet }
20411c6fdbd8SKent Overstreet 
20421c6fdbd8SKent Overstreet /* Filesystem open: */
20431c6fdbd8SKent Overstreet 
20440d529663SKent Overstreet static inline int sb_cmp(struct bch_sb *l, struct bch_sb *r)
20450d529663SKent Overstreet {
20460d529663SKent Overstreet 	return  cmp_int(le64_to_cpu(l->seq), le64_to_cpu(r->seq)) ?:
20470d529663SKent Overstreet 		cmp_int(le64_to_cpu(l->write_time), le64_to_cpu(r->write_time));
20480d529663SKent Overstreet }
20490d529663SKent Overstreet 
20501c6fdbd8SKent Overstreet struct bch_fs *bch2_fs_open(char * const *devices, unsigned nr_devices,
20511c6fdbd8SKent Overstreet 			    struct bch_opts opts)
20521c6fdbd8SKent Overstreet {
2053d4c8bb69SKent Overstreet 	DARRAY(struct bch_sb_handle) sbs = { 0 };
20541c6fdbd8SKent Overstreet 	struct bch_fs *c = NULL;
2055defd9e39SKent Overstreet 	struct bch_sb_handle *best = NULL;
2056fa8e94faSKent Overstreet 	struct printbuf errbuf = PRINTBUF;
2057e2b60560SKent Overstreet 	int ret = 0;
20581c6fdbd8SKent Overstreet 
2059efe68e1dSKent Overstreet 	if (!try_module_get(THIS_MODULE))
2060efe68e1dSKent Overstreet 		return ERR_PTR(-ENODEV);
2061efe68e1dSKent Overstreet 
20621c6fdbd8SKent Overstreet 	if (!nr_devices) {
2063efe68e1dSKent Overstreet 		ret = -EINVAL;
2064efe68e1dSKent Overstreet 		goto err;
20651c6fdbd8SKent Overstreet 	}
20661c6fdbd8SKent Overstreet 
2067d4c8bb69SKent Overstreet 	ret = darray_make_room(&sbs, nr_devices);
20681c6fdbd8SKent Overstreet 	if (ret)
20691c6fdbd8SKent Overstreet 		goto err;
20701c6fdbd8SKent Overstreet 
2071d4c8bb69SKent Overstreet 	for (unsigned i = 0; i < nr_devices; i++) {
2072d4c8bb69SKent Overstreet 		struct bch_sb_handle sb = { NULL };
2073d4c8bb69SKent Overstreet 
2074d4c8bb69SKent Overstreet 		ret = bch2_read_super(devices[i], &opts, &sb);
2075d4c8bb69SKent Overstreet 		if (ret)
2076d4c8bb69SKent Overstreet 			goto err;
2077d4c8bb69SKent Overstreet 
2078d4c8bb69SKent Overstreet 		BUG_ON(darray_push(&sbs, sb));
20791c6fdbd8SKent Overstreet 	}
20801c6fdbd8SKent Overstreet 
208162719cf3SKent Overstreet 	if (opts.nochanges && !opts.read_only) {
208262719cf3SKent Overstreet 		ret = -BCH_ERR_erofs_nochanges;
208362719cf3SKent Overstreet 		goto err_print;
208462719cf3SKent Overstreet 	}
208562719cf3SKent Overstreet 
2086d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb)
20870d529663SKent Overstreet 		if (!best || sb_cmp(sb->sb, best->sb) > 0)
2088d4c8bb69SKent Overstreet 			best = sb;
20891c6fdbd8SKent Overstreet 
2090d4c8bb69SKent Overstreet 	darray_for_each_reverse(sbs, sb) {
20912f300f09SKent Overstreet 		ret = bch2_dev_in_fs(best, sb, &opts);
20920d529663SKent Overstreet 
20930d529663SKent Overstreet 		if (ret == -BCH_ERR_device_has_been_removed ||
20940d529663SKent Overstreet 		    ret == -BCH_ERR_device_splitbrain) {
2095d4c8bb69SKent Overstreet 			bch2_free_super(sb);
2096d4c8bb69SKent Overstreet 			darray_remove_item(&sbs, sb);
2097d4c8bb69SKent Overstreet 			best -= best > sb;
20980d529663SKent Overstreet 			ret = 0;
2099625104eaSKent Overstreet 			continue;
2100625104eaSKent Overstreet 		}
2101625104eaSKent Overstreet 
210278c0b75cSKent Overstreet 		if (ret)
21031c6fdbd8SKent Overstreet 			goto err_print;
21041c6fdbd8SKent Overstreet 	}
21051c6fdbd8SKent Overstreet 
2106d4c8bb69SKent Overstreet 	c = bch2_fs_alloc(best->sb, opts);
2107d4c8bb69SKent Overstreet 	ret = PTR_ERR_OR_ZERO(c);
2108d4c8bb69SKent Overstreet 	if (ret)
21091c6fdbd8SKent Overstreet 		goto err;
21101c6fdbd8SKent Overstreet 
21111ada1606SKent Overstreet 	down_write(&c->state_lock);
2112d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb) {
2113d4c8bb69SKent Overstreet 		ret = bch2_dev_attach_bdev(c, sb);
2114e2b60560SKent Overstreet 		if (ret) {
21151ada1606SKent Overstreet 			up_write(&c->state_lock);
2116e2b60560SKent Overstreet 			goto err;
2117e2b60560SKent Overstreet 		}
21181c6fdbd8SKent Overstreet 	}
21191ada1606SKent Overstreet 	up_write(&c->state_lock);
21201c6fdbd8SKent Overstreet 
212178c0b75cSKent Overstreet 	if (!bch2_fs_may_start(c)) {
212278c0b75cSKent Overstreet 		ret = -BCH_ERR_insufficient_devices_to_start;
21231c6fdbd8SKent Overstreet 		goto err_print;
212478c0b75cSKent Overstreet 	}
21251c6fdbd8SKent Overstreet 
21261c6fdbd8SKent Overstreet 	if (!c->opts.nostart) {
2127619f5beeSKent Overstreet 		ret = bch2_fs_start(c);
2128619f5beeSKent Overstreet 		if (ret)
2129619f5beeSKent Overstreet 			goto err;
21301c6fdbd8SKent Overstreet 	}
21311c6fdbd8SKent Overstreet out:
2132d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb)
2133d4c8bb69SKent Overstreet 		bch2_free_super(sb);
2134d4c8bb69SKent Overstreet 	darray_exit(&sbs);
2135fa8e94faSKent Overstreet 	printbuf_exit(&errbuf);
21361c6fdbd8SKent Overstreet 	module_put(THIS_MODULE);
21371c6fdbd8SKent Overstreet 	return c;
21381c6fdbd8SKent Overstreet err_print:
21391c6fdbd8SKent Overstreet 	pr_err("bch_fs_open err opening %s: %s",
214078c0b75cSKent Overstreet 	       devices[0], bch2_err_str(ret));
21411c6fdbd8SKent Overstreet err:
21427be9ab63SChris Webb 	if (!IS_ERR_OR_NULL(c))
21431c6fdbd8SKent Overstreet 		bch2_fs_stop(c);
21441c6fdbd8SKent Overstreet 	c = ERR_PTR(ret);
21451c6fdbd8SKent Overstreet 	goto out;
21461c6fdbd8SKent Overstreet }
21471c6fdbd8SKent Overstreet 
21481c6fdbd8SKent Overstreet /* Global interfaces/init */
21491c6fdbd8SKent Overstreet 
21501c6fdbd8SKent Overstreet static void bcachefs_exit(void)
21511c6fdbd8SKent Overstreet {
21521c6fdbd8SKent Overstreet 	bch2_debug_exit();
21531c6fdbd8SKent Overstreet 	bch2_vfs_exit();
21541c6fdbd8SKent Overstreet 	bch2_chardev_exit();
215514ba3706SKent Overstreet 	bch2_btree_key_cache_exit();
21561c6fdbd8SKent Overstreet 	if (bcachefs_kset)
21571c6fdbd8SKent Overstreet 		kset_unregister(bcachefs_kset);
21581c6fdbd8SKent Overstreet }
21591c6fdbd8SKent Overstreet 
21601c6fdbd8SKent Overstreet static int __init bcachefs_init(void)
21611c6fdbd8SKent Overstreet {
21621c6fdbd8SKent Overstreet 	bch2_bkey_pack_test();
21631c6fdbd8SKent Overstreet 
21641c6fdbd8SKent Overstreet 	if (!(bcachefs_kset = kset_create_and_add("bcachefs", NULL, fs_kobj)) ||
216514ba3706SKent Overstreet 	    bch2_btree_key_cache_init() ||
21661c6fdbd8SKent Overstreet 	    bch2_chardev_init() ||
21671c6fdbd8SKent Overstreet 	    bch2_vfs_init() ||
21681c6fdbd8SKent Overstreet 	    bch2_debug_init())
21691c6fdbd8SKent Overstreet 		goto err;
21701c6fdbd8SKent Overstreet 
21711c6fdbd8SKent Overstreet 	return 0;
21721c6fdbd8SKent Overstreet err:
21731c6fdbd8SKent Overstreet 	bcachefs_exit();
21741c6fdbd8SKent Overstreet 	return -ENOMEM;
21751c6fdbd8SKent Overstreet }
21761c6fdbd8SKent Overstreet 
21771c6fdbd8SKent Overstreet #define BCH_DEBUG_PARAM(name, description)			\
21781c6fdbd8SKent Overstreet 	bool bch2_##name;					\
21791c6fdbd8SKent Overstreet 	module_param_named(name, bch2_##name, bool, 0644);	\
21801c6fdbd8SKent Overstreet 	MODULE_PARM_DESC(name, description);
21811c6fdbd8SKent Overstreet BCH_DEBUG_PARAMS()
21821c6fdbd8SKent Overstreet #undef BCH_DEBUG_PARAM
21831c6fdbd8SKent Overstreet 
2184e08e63e4SKent Overstreet __maybe_unused
218573bd774dSKent Overstreet static unsigned bch2_metadata_version = bcachefs_metadata_version_current;
21861c6fdbd8SKent Overstreet module_param_named(version, bch2_metadata_version, uint, 0400);
21871c6fdbd8SKent Overstreet 
21881c6fdbd8SKent Overstreet module_exit(bcachefs_exit);
21891c6fdbd8SKent Overstreet module_init(bcachefs_init);
2190