xref: /linux/fs/bcachefs/super.c (revision 13c1e583f9179ad7953dc71ebb2f12e613b9d052)
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"
181c6fdbd8SKent Overstreet #include "btree_update_interior.h"
191c6fdbd8SKent Overstreet #include "btree_io.h"
20920e69bcSKent Overstreet #include "btree_write_buffer.h"
2121aec962SKent Overstreet #include "buckets_waiting_for_journal.h"
221c6fdbd8SKent Overstreet #include "chardev.h"
231c6fdbd8SKent Overstreet #include "checksum.h"
241c6fdbd8SKent Overstreet #include "clock.h"
251c6fdbd8SKent Overstreet #include "compress.h"
261c6fdbd8SKent Overstreet #include "debug.h"
271c6fdbd8SKent Overstreet #include "disk_groups.h"
28cd575ddfSKent Overstreet #include "ec.h"
29d4bf5eecSKent Overstreet #include "errcode.h"
301c6fdbd8SKent Overstreet #include "error.h"
311c6fdbd8SKent Overstreet #include "fs.h"
321c6fdbd8SKent Overstreet #include "fs-io.h"
33dbbfca9fSKent Overstreet #include "fs-io-buffered.h"
34dbbfca9fSKent Overstreet #include "fs-io-direct.h"
351c6fdbd8SKent Overstreet #include "fsck.h"
361c6fdbd8SKent Overstreet #include "inode.h"
371809b8cbSKent Overstreet #include "io_read.h"
381809b8cbSKent Overstreet #include "io_write.h"
391c6fdbd8SKent Overstreet #include "journal.h"
401c6fdbd8SKent Overstreet #include "journal_reclaim.h"
411dd7f9d9SKent Overstreet #include "journal_seq_blacklist.h"
421c6fdbd8SKent Overstreet #include "move.h"
431c6fdbd8SKent Overstreet #include "migrate.h"
441c6fdbd8SKent Overstreet #include "movinggc.h"
45350175bfSKent Overstreet #include "nocow_locking.h"
461c6fdbd8SKent Overstreet #include "quota.h"
471c6fdbd8SKent Overstreet #include "rebalance.h"
481c6fdbd8SKent Overstreet #include "recovery.h"
491c6fdbd8SKent Overstreet #include "replicas.h"
50a37ad1a3SKent Overstreet #include "sb-clean.h"
513a58dfbcSKent Overstreet #include "sb-counters.h"
52f5d26fa3SKent Overstreet #include "sb-errors.h"
531241df58SHunter Shaffer #include "sb-members.h"
548e877caaSKent Overstreet #include "snapshot.h"
5514b393eeSKent Overstreet #include "subvolume.h"
561c6fdbd8SKent Overstreet #include "super.h"
571c6fdbd8SKent Overstreet #include "super-io.h"
581c6fdbd8SKent Overstreet #include "sysfs.h"
5960e1baa8SKent Overstreet #include "thread_with_file.h"
601c6fdbd8SKent Overstreet #include "trace.h"
611c6fdbd8SKent Overstreet 
621c6fdbd8SKent Overstreet #include <linux/backing-dev.h>
631c6fdbd8SKent Overstreet #include <linux/blkdev.h>
641c6fdbd8SKent Overstreet #include <linux/debugfs.h>
651c6fdbd8SKent Overstreet #include <linux/device.h>
661c6fdbd8SKent Overstreet #include <linux/idr.h>
671c6fdbd8SKent Overstreet #include <linux/module.h>
681c6fdbd8SKent Overstreet #include <linux/percpu.h>
691c6fdbd8SKent Overstreet #include <linux/random.h>
701c6fdbd8SKent Overstreet #include <linux/sysfs.h>
711c6fdbd8SKent Overstreet #include <crypto/hash.h>
721c6fdbd8SKent Overstreet 
731c6fdbd8SKent Overstreet MODULE_LICENSE("GPL");
741c6fdbd8SKent Overstreet MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
75a9737e0bSBrian Foster MODULE_DESCRIPTION("bcachefs filesystem");
7685c6db98SDaniel Hill MODULE_SOFTDEP("pre: crc32c");
7785c6db98SDaniel Hill MODULE_SOFTDEP("pre: crc64");
7885c6db98SDaniel Hill MODULE_SOFTDEP("pre: sha256");
7985c6db98SDaniel Hill MODULE_SOFTDEP("pre: chacha20");
8085c6db98SDaniel Hill MODULE_SOFTDEP("pre: poly1305");
8185c6db98SDaniel Hill MODULE_SOFTDEP("pre: xxhash");
821c6fdbd8SKent Overstreet 
833c471b65SKent Overstreet const char * const bch2_fs_flag_strs[] = {
843c471b65SKent Overstreet #define x(n)		#n,
853c471b65SKent Overstreet 	BCH_FS_FLAGS()
863c471b65SKent Overstreet #undef x
873c471b65SKent Overstreet 	NULL
883c471b65SKent Overstreet };
893c471b65SKent Overstreet 
903ed94062SKent Overstreet __printf(2, 0)
91f3589bfaSKent Overstreet static void bch2_print_maybe_redirect(struct stdio_redirect *stdio, const char *fmt, va_list args)
92f3589bfaSKent Overstreet {
93f3589bfaSKent Overstreet #ifdef __KERNEL__
94f3589bfaSKent Overstreet 	if (unlikely(stdio)) {
95f3589bfaSKent Overstreet 		if (fmt[0] == KERN_SOH[0])
96f3589bfaSKent Overstreet 			fmt += 2;
97f3589bfaSKent Overstreet 
98f3589bfaSKent Overstreet 		bch2_stdio_redirect_vprintf(stdio, true, fmt, args);
99f3589bfaSKent Overstreet 		return;
100f3589bfaSKent Overstreet 	}
101f3589bfaSKent Overstreet #endif
102f3589bfaSKent Overstreet 	vprintk(fmt, args);
103f3589bfaSKent Overstreet }
104f3589bfaSKent Overstreet 
105b63570f7SKent Overstreet void bch2_print_opts(struct bch_opts *opts, const char *fmt, ...)
106b63570f7SKent Overstreet {
107b63570f7SKent Overstreet 	struct stdio_redirect *stdio = (void *)(unsigned long)opts->stdio;
108b63570f7SKent Overstreet 
109b63570f7SKent Overstreet 	va_list args;
110b63570f7SKent Overstreet 	va_start(args, fmt);
111f3589bfaSKent Overstreet 	bch2_print_maybe_redirect(stdio, fmt, args);
112b63570f7SKent Overstreet 	va_end(args);
113b63570f7SKent Overstreet }
114b63570f7SKent Overstreet 
1152b41226dSKent Overstreet void __bch2_print(struct bch_fs *c, const char *fmt, ...)
1162b41226dSKent Overstreet {
11796f37eabSKent Overstreet 	struct stdio_redirect *stdio = bch2_fs_stdio_redirect(c);
11896f37eabSKent Overstreet 
1192b41226dSKent Overstreet 	va_list args;
1202b41226dSKent Overstreet 	va_start(args, fmt);
121f3589bfaSKent Overstreet 	bch2_print_maybe_redirect(stdio, fmt, args);
1222b41226dSKent Overstreet 	va_end(args);
1232b41226dSKent Overstreet }
1242b41226dSKent Overstreet 
1251c6fdbd8SKent Overstreet #define KTYPE(type)							\
1261c6fdbd8SKent Overstreet static const struct attribute_group type ## _group = {			\
1271c6fdbd8SKent Overstreet 	.attrs = type ## _files						\
1281c6fdbd8SKent Overstreet };									\
1291c6fdbd8SKent Overstreet 									\
1301c6fdbd8SKent Overstreet static const struct attribute_group *type ## _groups[] = {		\
1311c6fdbd8SKent Overstreet 	&type ## _group,						\
1321c6fdbd8SKent Overstreet 	NULL								\
1331c6fdbd8SKent Overstreet };									\
1341c6fdbd8SKent Overstreet 									\
1351c6fdbd8SKent Overstreet static const struct kobj_type type ## _ktype = {			\
1361c6fdbd8SKent Overstreet 	.release	= type ## _release,				\
1371c6fdbd8SKent Overstreet 	.sysfs_ops	= &type ## _sysfs_ops,				\
1381c6fdbd8SKent Overstreet 	.default_groups = type ## _groups				\
1391c6fdbd8SKent Overstreet }
1401c6fdbd8SKent Overstreet 
1411c6fdbd8SKent Overstreet static void bch2_fs_release(struct kobject *);
1421c6fdbd8SKent Overstreet static void bch2_dev_release(struct kobject *);
143104c6974SDaniel Hill static void bch2_fs_counters_release(struct kobject *k)
144104c6974SDaniel Hill {
145104c6974SDaniel Hill }
1461c6fdbd8SKent Overstreet 
1471c6fdbd8SKent Overstreet static void bch2_fs_internal_release(struct kobject *k)
1481c6fdbd8SKent Overstreet {
1491c6fdbd8SKent Overstreet }
1501c6fdbd8SKent Overstreet 
1511c6fdbd8SKent Overstreet static void bch2_fs_opts_dir_release(struct kobject *k)
1521c6fdbd8SKent Overstreet {
1531c6fdbd8SKent Overstreet }
1541c6fdbd8SKent Overstreet 
1551c6fdbd8SKent Overstreet static void bch2_fs_time_stats_release(struct kobject *k)
1561c6fdbd8SKent Overstreet {
1571c6fdbd8SKent Overstreet }
1581c6fdbd8SKent Overstreet 
1591c6fdbd8SKent Overstreet KTYPE(bch2_fs);
160104c6974SDaniel Hill KTYPE(bch2_fs_counters);
1611c6fdbd8SKent Overstreet KTYPE(bch2_fs_internal);
1621c6fdbd8SKent Overstreet KTYPE(bch2_fs_opts_dir);
1631c6fdbd8SKent Overstreet KTYPE(bch2_fs_time_stats);
1641c6fdbd8SKent Overstreet KTYPE(bch2_dev);
1651c6fdbd8SKent Overstreet 
1661c6fdbd8SKent Overstreet static struct kset *bcachefs_kset;
1671c6fdbd8SKent Overstreet static LIST_HEAD(bch_fs_list);
1681c6fdbd8SKent Overstreet static DEFINE_MUTEX(bch_fs_list_lock);
1691c6fdbd8SKent Overstreet 
170d94189adSKent Overstreet DECLARE_WAIT_QUEUE_HEAD(bch2_read_only_wait);
1711c6fdbd8SKent Overstreet 
1721c6fdbd8SKent Overstreet static void bch2_dev_free(struct bch_dev *);
1731c6fdbd8SKent Overstreet static int bch2_dev_alloc(struct bch_fs *, unsigned);
1741c6fdbd8SKent Overstreet static int bch2_dev_sysfs_online(struct bch_fs *, struct bch_dev *);
1751c6fdbd8SKent Overstreet static void __bch2_dev_read_only(struct bch_fs *, struct bch_dev *);
1761c6fdbd8SKent Overstreet 
1771c6fdbd8SKent Overstreet struct bch_fs *bch2_dev_to_fs(dev_t dev)
1781c6fdbd8SKent Overstreet {
1791c6fdbd8SKent Overstreet 	struct bch_fs *c;
1801c6fdbd8SKent Overstreet 
1811c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
1821c6fdbd8SKent Overstreet 	rcu_read_lock();
1831c6fdbd8SKent Overstreet 
1841c6fdbd8SKent Overstreet 	list_for_each_entry(c, &bch_fs_list, list)
18541b84fb4SKent Overstreet 		for_each_member_device_rcu(c, ca, NULL)
186ec4ab9d2SDan Robertson 			if (ca->disk_sb.bdev && ca->disk_sb.bdev->bd_dev == dev) {
1871c6fdbd8SKent Overstreet 				closure_get(&c->cl);
1881c6fdbd8SKent Overstreet 				goto found;
1891c6fdbd8SKent Overstreet 			}
1901c6fdbd8SKent Overstreet 	c = NULL;
1911c6fdbd8SKent Overstreet found:
1921c6fdbd8SKent Overstreet 	rcu_read_unlock();
1931c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
1941c6fdbd8SKent Overstreet 
1951c6fdbd8SKent Overstreet 	return c;
1961c6fdbd8SKent Overstreet }
1971c6fdbd8SKent Overstreet 
1981c6fdbd8SKent Overstreet static struct bch_fs *__bch2_uuid_to_fs(__uuid_t uuid)
1991c6fdbd8SKent Overstreet {
2001c6fdbd8SKent Overstreet 	struct bch_fs *c;
2011c6fdbd8SKent Overstreet 
2021c6fdbd8SKent Overstreet 	lockdep_assert_held(&bch_fs_list_lock);
2031c6fdbd8SKent Overstreet 
2041c6fdbd8SKent Overstreet 	list_for_each_entry(c, &bch_fs_list, list)
2051c6fdbd8SKent Overstreet 		if (!memcmp(&c->disk_sb.sb->uuid, &uuid, sizeof(uuid)))
2061c6fdbd8SKent Overstreet 			return c;
2071c6fdbd8SKent Overstreet 
2081c6fdbd8SKent Overstreet 	return NULL;
2091c6fdbd8SKent Overstreet }
2101c6fdbd8SKent Overstreet 
2111c6fdbd8SKent Overstreet struct bch_fs *bch2_uuid_to_fs(__uuid_t uuid)
2121c6fdbd8SKent Overstreet {
2131c6fdbd8SKent Overstreet 	struct bch_fs *c;
2141c6fdbd8SKent Overstreet 
2151c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
2161c6fdbd8SKent Overstreet 	c = __bch2_uuid_to_fs(uuid);
2171c6fdbd8SKent Overstreet 	if (c)
2181c6fdbd8SKent Overstreet 		closure_get(&c->cl);
2191c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
2201c6fdbd8SKent Overstreet 
2211c6fdbd8SKent Overstreet 	return c;
2221c6fdbd8SKent Overstreet }
2231c6fdbd8SKent Overstreet 
224180fb49dSKent Overstreet static void bch2_dev_usage_journal_reserve(struct bch_fs *c)
225180fb49dSKent Overstreet {
22641b84fb4SKent Overstreet 	unsigned nr = 0, u64s =
2274b8f89afSKent Overstreet 		((sizeof(struct jset_entry_dev_usage) +
2284b8f89afSKent Overstreet 		  sizeof(struct jset_entry_dev_usage_type) * BCH_DATA_NR)) /
2294b8f89afSKent Overstreet 		sizeof(u64);
230180fb49dSKent Overstreet 
231180fb49dSKent Overstreet 	rcu_read_lock();
23241b84fb4SKent Overstreet 	for_each_member_device_rcu(c, ca, NULL)
233180fb49dSKent Overstreet 		nr++;
234180fb49dSKent Overstreet 	rcu_read_unlock();
235180fb49dSKent Overstreet 
236180fb49dSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
237180fb49dSKent Overstreet 			&c->dev_usage_journal_res, u64s * nr);
238180fb49dSKent Overstreet }
239180fb49dSKent Overstreet 
2401c6fdbd8SKent Overstreet /* Filesystem RO/RW: */
2411c6fdbd8SKent Overstreet 
2421c6fdbd8SKent Overstreet /*
2431c6fdbd8SKent Overstreet  * For startup/shutdown of RW stuff, the dependencies are:
2441c6fdbd8SKent Overstreet  *
2451c6fdbd8SKent Overstreet  * - foreground writes depend on copygc and rebalance (to free up space)
2461c6fdbd8SKent Overstreet  *
2471c6fdbd8SKent Overstreet  * - copygc and rebalance depend on mark and sweep gc (they actually probably
2481c6fdbd8SKent Overstreet  *   don't because they either reserve ahead of time or don't block if
2491c6fdbd8SKent Overstreet  *   allocations fail, but allocations can require mark and sweep gc to run
2501c6fdbd8SKent Overstreet  *   because of generation number wraparound)
2511c6fdbd8SKent Overstreet  *
2521c6fdbd8SKent Overstreet  * - all of the above depends on the allocator threads
2531c6fdbd8SKent Overstreet  *
2541c6fdbd8SKent Overstreet  * - allocator depends on the journal (when it rewrites prios and gens)
2551c6fdbd8SKent Overstreet  */
2561c6fdbd8SKent Overstreet 
2571c6fdbd8SKent Overstreet static void __bch2_fs_read_only(struct bch_fs *c)
2581c6fdbd8SKent Overstreet {
2599fea2274SKent Overstreet 	unsigned clean_passes = 0;
260c0960603SKent Overstreet 	u64 seq = 0;
2611c6fdbd8SKent Overstreet 
262b40901b0SKent Overstreet 	bch2_fs_ec_stop(c);
263b40901b0SKent Overstreet 	bch2_open_buckets_stop(c, NULL, true);
2641c6fdbd8SKent Overstreet 	bch2_rebalance_stop(c);
265e6d11615SKent Overstreet 	bch2_copygc_stop(c);
2661c6fdbd8SKent Overstreet 	bch2_gc_thread_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 
287c0960603SKent 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);
2901c6fdbd8SKent Overstreet 	bch2_fs_journal_stop(&c->journal);
2911c6fdbd8SKent Overstreet 
2921c6fdbd8SKent Overstreet 	/*
2931c6fdbd8SKent Overstreet 	 * After stopping journal:
2941c6fdbd8SKent Overstreet 	 */
2959fea2274SKent Overstreet 	for_each_member_device(c, ca)
2961c6fdbd8SKent Overstreet 		bch2_dev_allocator_remove(c, ca);
2971c6fdbd8SKent Overstreet }
2981c6fdbd8SKent Overstreet 
299d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
3001c6fdbd8SKent Overstreet static void bch2_writes_disabled(struct percpu_ref *writes)
3011c6fdbd8SKent Overstreet {
3021c6fdbd8SKent Overstreet 	struct bch_fs *c = container_of(writes, struct bch_fs, writes);
3031c6fdbd8SKent Overstreet 
3043c471b65SKent Overstreet 	set_bit(BCH_FS_write_disable_complete, &c->flags);
305d94189adSKent Overstreet 	wake_up(&bch2_read_only_wait);
3061c6fdbd8SKent Overstreet }
307d94189adSKent Overstreet #endif
3081c6fdbd8SKent Overstreet 
3091c6fdbd8SKent Overstreet void bch2_fs_read_only(struct bch_fs *c)
3101c6fdbd8SKent Overstreet {
3113c471b65SKent Overstreet 	if (!test_bit(BCH_FS_rw, &c->flags)) {
3129ae28f82SKent Overstreet 		bch2_journal_reclaim_stop(&c->journal);
3131c6fdbd8SKent Overstreet 		return;
314134915f3SKent Overstreet 	}
3151c6fdbd8SKent Overstreet 
3163c471b65SKent Overstreet 	BUG_ON(test_bit(BCH_FS_write_disable_complete, &c->flags));
3171c6fdbd8SKent Overstreet 
318e7f7ddedSKent Overstreet 	bch_verbose(c, "going read-only");
319e7f7ddedSKent Overstreet 
3201c6fdbd8SKent Overstreet 	/*
3211c6fdbd8SKent Overstreet 	 * Block new foreground-end write operations from starting - any new
3221c6fdbd8SKent Overstreet 	 * writes will return -EROFS:
3231c6fdbd8SKent Overstreet 	 */
3243c471b65SKent Overstreet 	set_bit(BCH_FS_going_ro, &c->flags);
325d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
3261c6fdbd8SKent Overstreet 	percpu_ref_kill(&c->writes);
327d94189adSKent Overstreet #else
328d94189adSKent Overstreet 	for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++)
329d94189adSKent Overstreet 		bch2_write_ref_put(c, i);
330d94189adSKent Overstreet #endif
3311c6fdbd8SKent Overstreet 
3321c6fdbd8SKent Overstreet 	/*
3331c6fdbd8SKent Overstreet 	 * If we're not doing an emergency shutdown, we want to wait on
3341c6fdbd8SKent Overstreet 	 * outstanding writes to complete so they don't see spurious errors due
3351c6fdbd8SKent Overstreet 	 * to shutting down the allocator:
3361c6fdbd8SKent Overstreet 	 *
3371c6fdbd8SKent Overstreet 	 * If we are doing an emergency shutdown outstanding writes may
3381c6fdbd8SKent Overstreet 	 * hang until we shutdown the allocator so we don't want to wait
3391c6fdbd8SKent Overstreet 	 * on outstanding writes before shutting everything down - but
3401c6fdbd8SKent Overstreet 	 * we do need to wait on them before returning and signalling
3411c6fdbd8SKent Overstreet 	 * that going RO is complete:
3421c6fdbd8SKent Overstreet 	 */
343d94189adSKent Overstreet 	wait_event(bch2_read_only_wait,
3443c471b65SKent Overstreet 		   test_bit(BCH_FS_write_disable_complete, &c->flags) ||
3453c471b65SKent Overstreet 		   test_bit(BCH_FS_emergency_ro, &c->flags));
3461c6fdbd8SKent Overstreet 
3473c471b65SKent Overstreet 	bool writes_disabled = test_bit(BCH_FS_write_disable_complete, &c->flags);
348e7f7ddedSKent Overstreet 	if (writes_disabled)
349e7f7ddedSKent Overstreet 		bch_verbose(c, "finished waiting for writes to stop");
350e7f7ddedSKent Overstreet 
3511c6fdbd8SKent Overstreet 	__bch2_fs_read_only(c);
3521c6fdbd8SKent Overstreet 
353d94189adSKent Overstreet 	wait_event(bch2_read_only_wait,
3543c471b65SKent Overstreet 		   test_bit(BCH_FS_write_disable_complete, &c->flags));
3551c6fdbd8SKent Overstreet 
356e7f7ddedSKent Overstreet 	if (!writes_disabled)
357e7f7ddedSKent Overstreet 		bch_verbose(c, "finished waiting for writes to stop");
358e7f7ddedSKent Overstreet 
3593c471b65SKent Overstreet 	clear_bit(BCH_FS_write_disable_complete, &c->flags);
3603c471b65SKent Overstreet 	clear_bit(BCH_FS_going_ro, &c->flags);
3613c471b65SKent Overstreet 	clear_bit(BCH_FS_rw, &c->flags);
3621c6fdbd8SKent Overstreet 
3631c6fdbd8SKent Overstreet 	if (!bch2_journal_error(&c->journal) &&
3643c471b65SKent Overstreet 	    !test_bit(BCH_FS_error, &c->flags) &&
3653c471b65SKent Overstreet 	    !test_bit(BCH_FS_emergency_ro, &c->flags) &&
3663c471b65SKent Overstreet 	    test_bit(BCH_FS_started, &c->flags) &&
3673c471b65SKent Overstreet 	    test_bit(BCH_FS_clean_shutdown, &c->flags) &&
368*13c1e583SKent Overstreet 	    c->recovery_pass_done >= BCH_RECOVERY_PASS_journal_replay) {
3697724664fSKent Overstreet 		BUG_ON(c->journal.last_empty_seq != journal_cur_seq(&c->journal));
3707724664fSKent Overstreet 		BUG_ON(atomic_read(&c->btree_cache.dirty));
3717724664fSKent Overstreet 		BUG_ON(atomic_long_read(&c->btree_key_cache.nr_dirty));
37209caeabeSKent Overstreet 		BUG_ON(c->btree_write_buffer.inc.keys.nr);
37309caeabeSKent Overstreet 		BUG_ON(c->btree_write_buffer.flushing.keys.nr);
3747724664fSKent Overstreet 
375b2930396SKent Overstreet 		bch_verbose(c, "marking filesystem clean");
376134915f3SKent Overstreet 		bch2_fs_mark_clean(c);
377e7f7ddedSKent Overstreet 	} else {
378e7f7ddedSKent Overstreet 		bch_verbose(c, "done going read-only, filesystem not clean");
379b2930396SKent Overstreet 	}
3801c6fdbd8SKent Overstreet }
3811c6fdbd8SKent Overstreet 
3821c6fdbd8SKent Overstreet static void bch2_fs_read_only_work(struct work_struct *work)
3831c6fdbd8SKent Overstreet {
3841c6fdbd8SKent Overstreet 	struct bch_fs *c =
3851c6fdbd8SKent Overstreet 		container_of(work, struct bch_fs, read_only_work);
3861c6fdbd8SKent Overstreet 
3871ada1606SKent Overstreet 	down_write(&c->state_lock);
3881c6fdbd8SKent Overstreet 	bch2_fs_read_only(c);
3891ada1606SKent Overstreet 	up_write(&c->state_lock);
3901c6fdbd8SKent Overstreet }
3911c6fdbd8SKent Overstreet 
3921c6fdbd8SKent Overstreet static void bch2_fs_read_only_async(struct bch_fs *c)
3931c6fdbd8SKent Overstreet {
3941c6fdbd8SKent Overstreet 	queue_work(system_long_wq, &c->read_only_work);
3951c6fdbd8SKent Overstreet }
3961c6fdbd8SKent Overstreet 
3971c6fdbd8SKent Overstreet bool bch2_fs_emergency_read_only(struct bch_fs *c)
3981c6fdbd8SKent Overstreet {
3993c471b65SKent Overstreet 	bool ret = !test_and_set_bit(BCH_FS_emergency_ro, &c->flags);
4001c6fdbd8SKent Overstreet 
4011c6fdbd8SKent Overstreet 	bch2_journal_halt(&c->journal);
4029f115ce9SKent Overstreet 	bch2_fs_read_only_async(c);
4031c6fdbd8SKent Overstreet 
404d94189adSKent Overstreet 	wake_up(&bch2_read_only_wait);
4051c6fdbd8SKent Overstreet 	return ret;
4061c6fdbd8SKent Overstreet }
4071c6fdbd8SKent Overstreet 
408134915f3SKent Overstreet static int bch2_fs_read_write_late(struct bch_fs *c)
4091c6fdbd8SKent Overstreet {
410134915f3SKent Overstreet 	int ret;
4111c6fdbd8SKent Overstreet 
412ea28c867SKent Overstreet 	/*
413ea28c867SKent Overstreet 	 * Data move operations can't run until after check_snapshots has
414ea28c867SKent Overstreet 	 * completed, and bch2_snapshot_is_ancestor() is available.
415ea28c867SKent Overstreet 	 *
416ea28c867SKent Overstreet 	 * Ideally we'd start copygc/rebalance earlier instead of waiting for
417ea28c867SKent Overstreet 	 * all of recovery/fsck to complete:
418ea28c867SKent Overstreet 	 */
419ea28c867SKent Overstreet 	ret = bch2_copygc_start(c);
420ea28c867SKent Overstreet 	if (ret) {
421ea28c867SKent Overstreet 		bch_err(c, "error starting copygc thread");
422ea28c867SKent Overstreet 		return ret;
423ea28c867SKent Overstreet 	}
424ea28c867SKent Overstreet 
425134915f3SKent Overstreet 	ret = bch2_rebalance_start(c);
426134915f3SKent Overstreet 	if (ret) {
427134915f3SKent Overstreet 		bch_err(c, "error starting rebalance thread");
428134915f3SKent Overstreet 		return ret;
429134915f3SKent Overstreet 	}
430134915f3SKent Overstreet 
431134915f3SKent Overstreet 	return 0;
432134915f3SKent Overstreet }
433134915f3SKent Overstreet 
434e731d466SKent Overstreet static int __bch2_fs_read_write(struct bch_fs *c, bool early)
435134915f3SKent Overstreet {
436134915f3SKent Overstreet 	int ret;
437134915f3SKent Overstreet 
4383c471b65SKent Overstreet 	if (test_bit(BCH_FS_initial_gc_unfixed, &c->flags)) {
439aae15aafSKent Overstreet 		bch_err(c, "cannot go rw, unfixed btree errors");
4407c50140fSKent Overstreet 		return -BCH_ERR_erofs_unfixed_errors;
441aae15aafSKent Overstreet 	}
442aae15aafSKent Overstreet 
4433c471b65SKent Overstreet 	if (test_bit(BCH_FS_rw, &c->flags))
444134915f3SKent Overstreet 		return 0;
445134915f3SKent Overstreet 
4462c944fa1SKent Overstreet 	bch_info(c, "going read-write");
4472c944fa1SKent Overstreet 
448f5d26fa3SKent Overstreet 	ret = bch2_sb_members_v2_init(c);
4493f7b9713SHunter Shaffer 	if (ret)
4503f7b9713SHunter Shaffer 		goto err;
4513f7b9713SHunter Shaffer 
452134915f3SKent Overstreet 	ret = bch2_fs_mark_dirty(c);
453134915f3SKent Overstreet 	if (ret)
454134915f3SKent Overstreet 		goto err;
4551c6fdbd8SKent Overstreet 
4563c471b65SKent Overstreet 	clear_bit(BCH_FS_clean_shutdown, &c->flags);
4572340fd9dSKent Overstreet 
458b9004e85SKent Overstreet 	/*
459b9004e85SKent Overstreet 	 * First journal write must be a flush write: after a clean shutdown we
460b9004e85SKent Overstreet 	 * don't read the journal, so the first journal write may end up
461b9004e85SKent Overstreet 	 * overwriting whatever was there previously, and there must always be
462b9004e85SKent Overstreet 	 * at least one non-flush write in the journal or recovery will fail:
463b9004e85SKent Overstreet 	 */
464b9004e85SKent Overstreet 	set_bit(JOURNAL_NEED_FLUSH_WRITE, &c->journal.flags);
465b9004e85SKent Overstreet 
4669fea2274SKent Overstreet 	for_each_rw_member(c, ca)
4671c6fdbd8SKent Overstreet 		bch2_dev_allocator_add(c, ca);
4681c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
4691c6fdbd8SKent Overstreet 
4703c471b65SKent Overstreet 	set_bit(BCH_FS_rw, &c->flags);
4713c471b65SKent Overstreet 	set_bit(BCH_FS_was_rw, &c->flags);
472468035caSKent Overstreet 
473468035caSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
474468035caSKent Overstreet 	percpu_ref_reinit(&c->writes);
475468035caSKent Overstreet #else
4769fea2274SKent Overstreet 	for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++) {
477468035caSKent Overstreet 		BUG_ON(atomic_long_read(&c->writes[i]));
478468035caSKent Overstreet 		atomic_long_inc(&c->writes[i]);
479468035caSKent Overstreet 	}
480468035caSKent Overstreet #endif
481468035caSKent Overstreet 
4825f5c7466SKent Overstreet 	ret = bch2_gc_thread_start(c);
4835f5c7466SKent Overstreet 	if (ret) {
4845f5c7466SKent Overstreet 		bch_err(c, "error starting gc thread");
4855f5c7466SKent Overstreet 		return ret;
4865f5c7466SKent Overstreet 	}
4875f5c7466SKent 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 {
513*13c1e583SKent Overstreet 	if (c->opts.recovery_pass_last &&
514*13c1e583SKent 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 {
5341c6fdbd8SKent Overstreet 	unsigned i;
5351c6fdbd8SKent Overstreet 
5361c6fdbd8SKent Overstreet 	for (i = 0; i < BCH_TIME_STAT_NR; i++)
5371c6fdbd8SKent Overstreet 		bch2_time_stats_exit(&c->times[i]);
5381c6fdbd8SKent Overstreet 
539a1f26d70SKent Overstreet 	bch2_free_pending_node_rewrites(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);
55436e9d698SKent Overstreet 	bch2_fs_btree_iter_exit(c);
5552ca88e5aSKent Overstreet 	bch2_fs_btree_key_cache_exit(&c->btree_key_cache);
5561c6fdbd8SKent Overstreet 	bch2_fs_btree_cache_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);
5638a443d3eSKent Overstreet 	BUG_ON(atomic_read(&c->journal_keys.ref));
564920e69bcSKent Overstreet 	bch2_fs_btree_write_buffer_exit(c);
5659166b41dSKent Overstreet 	percpu_free_rwsem(&c->mark_lock);
5665e82a9a1SKent Overstreet 	free_percpu(c->online_reserved);
5671a21bf98SKent Overstreet 
568faa6cb6cSKent Overstreet 	darray_exit(&c->btree_roots_extra);
5695663a415SKent Overstreet 	free_percpu(c->pcpu);
57035189e09SKent Overstreet 	mempool_exit(&c->large_bkey_pool);
5711c6fdbd8SKent Overstreet 	mempool_exit(&c->btree_bounce_pool);
5721c6fdbd8SKent Overstreet 	bioset_exit(&c->btree_bio);
5731c6fdbd8SKent Overstreet 	mempool_exit(&c->fill_iter);
574d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
5751c6fdbd8SKent Overstreet 	percpu_ref_exit(&c->writes);
576d94189adSKent Overstreet #endif
5771c6fdbd8SKent Overstreet 	kfree(rcu_dereference_protected(c->disk_groups, 1));
5781dd7f9d9SKent Overstreet 	kfree(c->journal_seq_blacklist_table);
579b5e8a699SKent Overstreet 	kfree(c->unused_inode_hints);
5801c6fdbd8SKent Overstreet 
5818bff9875SBrian Foster 	if (c->write_ref_wq)
5828bff9875SBrian Foster 		destroy_workqueue(c->write_ref_wq);
583731bdd2eSKent Overstreet 	if (c->io_complete_wq)
584731bdd2eSKent Overstreet 		destroy_workqueue(c->io_complete_wq);
5851c6fdbd8SKent Overstreet 	if (c->copygc_wq)
5861c6fdbd8SKent Overstreet 		destroy_workqueue(c->copygc_wq);
5879f1833caSKent Overstreet 	if (c->btree_io_complete_wq)
5889f1833caSKent Overstreet 		destroy_workqueue(c->btree_io_complete_wq);
589731bdd2eSKent Overstreet 	if (c->btree_update_wq)
590731bdd2eSKent Overstreet 		destroy_workqueue(c->btree_update_wq);
5911c6fdbd8SKent Overstreet 
5929d8022dbSKent Overstreet 	bch2_free_super(&c->disk_sb);
593cb6fc943SKent Overstreet 	kvfree(c);
5941c6fdbd8SKent Overstreet 	module_put(THIS_MODULE);
5951c6fdbd8SKent Overstreet }
5961c6fdbd8SKent Overstreet 
5971c6fdbd8SKent Overstreet static void bch2_fs_release(struct kobject *kobj)
5981c6fdbd8SKent Overstreet {
5991c6fdbd8SKent Overstreet 	struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
6001c6fdbd8SKent Overstreet 
601d5e4dcc2SKent Overstreet 	__bch2_fs_free(c);
6021c6fdbd8SKent Overstreet }
6031c6fdbd8SKent Overstreet 
604d5e4dcc2SKent Overstreet void __bch2_fs_stop(struct bch_fs *c)
6051c6fdbd8SKent Overstreet {
606af1c6871SKent Overstreet 	bch_verbose(c, "shutting down");
607af1c6871SKent Overstreet 
6083c471b65SKent Overstreet 	set_bit(BCH_FS_stopping, &c->flags);
6091dd7f9d9SKent Overstreet 
6109b6e2f1eSKent Overstreet 	cancel_work_sync(&c->journal_seq_blacklist_gc_work);
6119b6e2f1eSKent Overstreet 
6121ada1606SKent Overstreet 	down_write(&c->state_lock);
613883f1a7cSKent Overstreet 	bch2_fs_read_only(c);
6141ada1606SKent Overstreet 	up_write(&c->state_lock);
615883f1a7cSKent Overstreet 
6169fea2274SKent Overstreet 	for_each_member_device(c, ca)
6171c6fdbd8SKent Overstreet 		if (ca->kobj.state_in_sysfs &&
6181c6fdbd8SKent Overstreet 		    ca->disk_sb.bdev)
6191c6fdbd8SKent Overstreet 			sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
6201c6fdbd8SKent Overstreet 
6211c6fdbd8SKent Overstreet 	if (c->kobj.state_in_sysfs)
6221c6fdbd8SKent Overstreet 		kobject_del(&c->kobj);
6231c6fdbd8SKent Overstreet 
6241c6fdbd8SKent Overstreet 	bch2_fs_debug_exit(c);
6251c6fdbd8SKent Overstreet 	bch2_fs_chardev_exit(c);
6261c6fdbd8SKent Overstreet 
62763508b75SKent Overstreet 	bch2_ro_ref_put(c);
62863508b75SKent Overstreet 	wait_event(c->ro_ref_wait, !refcount_read(&c->ro_ref));
62963508b75SKent Overstreet 
630104c6974SDaniel Hill 	kobject_put(&c->counters_kobj);
6311c6fdbd8SKent Overstreet 	kobject_put(&c->time_stats);
6321c6fdbd8SKent Overstreet 	kobject_put(&c->opts_dir);
6331c6fdbd8SKent Overstreet 	kobject_put(&c->internal);
6341c6fdbd8SKent Overstreet 
6351c6fdbd8SKent Overstreet 	/* btree prefetch might have kicked off reads in the background: */
6361c6fdbd8SKent Overstreet 	bch2_btree_flush_all_reads(c);
6371c6fdbd8SKent Overstreet 
6389fea2274SKent Overstreet 	for_each_member_device(c, ca)
6391c6fdbd8SKent Overstreet 		cancel_work_sync(&ca->io_error_work);
6401c6fdbd8SKent Overstreet 
6411c6fdbd8SKent Overstreet 	cancel_work_sync(&c->read_only_work);
642d5e4dcc2SKent Overstreet }
6431c6fdbd8SKent Overstreet 
644d5e4dcc2SKent Overstreet void bch2_fs_free(struct bch_fs *c)
645d5e4dcc2SKent Overstreet {
646d5e4dcc2SKent Overstreet 	unsigned i;
647d5e4dcc2SKent Overstreet 
648d5e4dcc2SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
649d5e4dcc2SKent Overstreet 	list_del(&c->list);
650d5e4dcc2SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
651d5e4dcc2SKent Overstreet 
652d5e4dcc2SKent Overstreet 	closure_sync(&c->cl);
653d5e4dcc2SKent Overstreet 	closure_debug_destroy(&c->cl);
654d5e4dcc2SKent Overstreet 
655d5e4dcc2SKent Overstreet 	for (i = 0; i < c->sb.nr_devices; i++) {
656d5e4dcc2SKent Overstreet 		struct bch_dev *ca = rcu_dereference_protected(c->devs[i], true);
657d5e4dcc2SKent Overstreet 
658d5e4dcc2SKent Overstreet 		if (ca) {
659d5e4dcc2SKent Overstreet 			bch2_free_super(&ca->disk_sb);
660d5e4dcc2SKent Overstreet 			bch2_dev_free(ca);
661d5e4dcc2SKent Overstreet 		}
662d5e4dcc2SKent Overstreet 	}
6631c6fdbd8SKent Overstreet 
664af1c6871SKent Overstreet 	bch_verbose(c, "shutdown complete");
665af1c6871SKent Overstreet 
6661c6fdbd8SKent Overstreet 	kobject_put(&c->kobj);
6671c6fdbd8SKent Overstreet }
6681c6fdbd8SKent Overstreet 
669d5e4dcc2SKent Overstreet void bch2_fs_stop(struct bch_fs *c)
670d5e4dcc2SKent Overstreet {
671d5e4dcc2SKent Overstreet 	__bch2_fs_stop(c);
672d5e4dcc2SKent Overstreet 	bch2_fs_free(c);
673d5e4dcc2SKent Overstreet }
674d5e4dcc2SKent Overstreet 
675e2b60560SKent Overstreet static int bch2_fs_online(struct bch_fs *c)
6761c6fdbd8SKent Overstreet {
677e2b60560SKent Overstreet 	int ret = 0;
6781c6fdbd8SKent Overstreet 
6791c6fdbd8SKent Overstreet 	lockdep_assert_held(&bch_fs_list_lock);
6801c6fdbd8SKent Overstreet 
681e2b60560SKent Overstreet 	if (__bch2_uuid_to_fs(c->sb.uuid)) {
682e2b60560SKent Overstreet 		bch_err(c, "filesystem UUID already open");
683e2b60560SKent Overstreet 		return -EINVAL;
684e2b60560SKent Overstreet 	}
6851c6fdbd8SKent Overstreet 
6861c6fdbd8SKent Overstreet 	ret = bch2_fs_chardev_init(c);
687e2b60560SKent Overstreet 	if (ret) {
688e2b60560SKent Overstreet 		bch_err(c, "error creating character device");
689e2b60560SKent Overstreet 		return ret;
690e2b60560SKent Overstreet 	}
6911c6fdbd8SKent Overstreet 
6921c6fdbd8SKent Overstreet 	bch2_fs_debug_init(c);
6931c6fdbd8SKent Overstreet 
694e2b60560SKent Overstreet 	ret = kobject_add(&c->kobj, NULL, "%pU", c->sb.user_uuid.b) ?:
695e2b60560SKent Overstreet 	    kobject_add(&c->internal, &c->kobj, "internal") ?:
696e2b60560SKent Overstreet 	    kobject_add(&c->opts_dir, &c->kobj, "options") ?:
697066a2646SKent Overstreet #ifndef CONFIG_BCACHEFS_NO_LATENCY_ACCT
698e2b60560SKent Overstreet 	    kobject_add(&c->time_stats, &c->kobj, "time_stats") ?:
699066a2646SKent Overstreet #endif
700104c6974SDaniel Hill 	    kobject_add(&c->counters_kobj, &c->kobj, "counters") ?:
701e2b60560SKent Overstreet 	    bch2_opts_create_sysfs_files(&c->opts_dir);
702e2b60560SKent Overstreet 	if (ret) {
703e2b60560SKent Overstreet 		bch_err(c, "error creating sysfs objects");
704e2b60560SKent Overstreet 		return ret;
705e2b60560SKent Overstreet 	}
7061c6fdbd8SKent Overstreet 
7071ada1606SKent Overstreet 	down_write(&c->state_lock);
7081c6fdbd8SKent Overstreet 
7099fea2274SKent Overstreet 	for_each_member_device(c, ca) {
710e2b60560SKent Overstreet 		ret = bch2_dev_sysfs_online(c, ca);
711e2b60560SKent Overstreet 		if (ret) {
712e2b60560SKent Overstreet 			bch_err(c, "error creating sysfs objects");
7133a402c8dSKent Overstreet 			percpu_ref_put(&ca->ref);
7141c6fdbd8SKent Overstreet 			goto err;
7153a402c8dSKent Overstreet 		}
716e2b60560SKent Overstreet 	}
7171c6fdbd8SKent Overstreet 
718e2b60560SKent Overstreet 	BUG_ON(!list_empty(&c->list));
7191c6fdbd8SKent Overstreet 	list_add(&c->list, &bch_fs_list);
7201c6fdbd8SKent Overstreet err:
7211ada1606SKent Overstreet 	up_write(&c->state_lock);
722e2b60560SKent Overstreet 	return ret;
7231c6fdbd8SKent Overstreet }
7241c6fdbd8SKent Overstreet 
7251c6fdbd8SKent Overstreet static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
7261c6fdbd8SKent Overstreet {
7271c6fdbd8SKent Overstreet 	struct bch_fs *c;
728401ec4dbSKent Overstreet 	struct printbuf name = PRINTBUF;
729ecf37a4aSKent Overstreet 	unsigned i, iter_size;
7307be9ab63SChris Webb 	int ret = 0;
7311c6fdbd8SKent Overstreet 
732cb6fc943SKent Overstreet 	c = kvmalloc(sizeof(struct bch_fs), GFP_KERNEL|__GFP_ZERO);
7337be9ab63SChris Webb 	if (!c) {
73465d48e35SKent Overstreet 		c = ERR_PTR(-BCH_ERR_ENOMEM_fs_alloc);
7351c6fdbd8SKent Overstreet 		goto out;
7367be9ab63SChris Webb 	}
7371c6fdbd8SKent Overstreet 
73896f37eabSKent Overstreet 	c->stdio = (void *)(unsigned long) opts.stdio;
7392b41226dSKent Overstreet 
7401c6fdbd8SKent Overstreet 	__module_get(THIS_MODULE);
7411c6fdbd8SKent Overstreet 
742505b7a4cSKent Overstreet 	closure_init(&c->cl, NULL);
743505b7a4cSKent Overstreet 
744505b7a4cSKent Overstreet 	c->kobj.kset = bcachefs_kset;
745505b7a4cSKent Overstreet 	kobject_init(&c->kobj, &bch2_fs_ktype);
746505b7a4cSKent Overstreet 	kobject_init(&c->internal, &bch2_fs_internal_ktype);
747505b7a4cSKent Overstreet 	kobject_init(&c->opts_dir, &bch2_fs_opts_dir_ktype);
748505b7a4cSKent Overstreet 	kobject_init(&c->time_stats, &bch2_fs_time_stats_ktype);
749104c6974SDaniel Hill 	kobject_init(&c->counters_kobj, &bch2_fs_counters_ktype);
750505b7a4cSKent Overstreet 
7511c6fdbd8SKent Overstreet 	c->minor		= -1;
7521c6fdbd8SKent Overstreet 	c->disk_sb.fs_sb	= true;
7531c6fdbd8SKent Overstreet 
7541ada1606SKent Overstreet 	init_rwsem(&c->state_lock);
7551c6fdbd8SKent Overstreet 	mutex_init(&c->sb_lock);
7561c6fdbd8SKent Overstreet 	mutex_init(&c->replicas_gc_lock);
7571c6fdbd8SKent Overstreet 	mutex_init(&c->btree_root_lock);
7581c6fdbd8SKent Overstreet 	INIT_WORK(&c->read_only_work, bch2_fs_read_only_work);
7591c6fdbd8SKent Overstreet 
76063508b75SKent Overstreet 	refcount_set(&c->ro_ref, 1);
76163508b75SKent Overstreet 	init_waitqueue_head(&c->ro_ref_wait);
762267b801fSKent Overstreet 	sema_init(&c->online_fsck_mutex, 1);
76363508b75SKent Overstreet 
7641c6fdbd8SKent Overstreet 	init_rwsem(&c->gc_lock);
765c45c8667SKent Overstreet 	mutex_init(&c->gc_gens_lock);
7668a443d3eSKent Overstreet 	atomic_set(&c->journal_keys.ref, 1);
7678a443d3eSKent Overstreet 	c->journal_keys.initial_ref_held = true;
7681c6fdbd8SKent Overstreet 
7691c6fdbd8SKent Overstreet 	for (i = 0; i < BCH_TIME_STAT_NR; i++)
7701c6fdbd8SKent Overstreet 		bch2_time_stats_init(&c->times[i]);
7711c6fdbd8SKent Overstreet 
772e6d11615SKent Overstreet 	bch2_fs_copygc_init(c);
7732ca88e5aSKent Overstreet 	bch2_fs_btree_key_cache_init_early(&c->btree_key_cache);
77450a8a732SThomas Bertschinger 	bch2_fs_btree_iter_init_early(c);
77565db6049SKent Overstreet 	bch2_fs_btree_interior_update_init_early(c);
776b092daddSKent Overstreet 	bch2_fs_allocator_background_init(c);
777b092daddSKent Overstreet 	bch2_fs_allocator_foreground_init(c);
7781c6fdbd8SKent Overstreet 	bch2_fs_rebalance_init(c);
7791c6fdbd8SKent Overstreet 	bch2_fs_quota_init(c);
78084c72755SKent Overstreet 	bch2_fs_ec_init_early(c);
781b9fa375bSKent Overstreet 	bch2_fs_move_init(c);
782f5d26fa3SKent Overstreet 	bch2_fs_sb_errors_init_early(c);
7831c6fdbd8SKent Overstreet 
7841c6fdbd8SKent Overstreet 	INIT_LIST_HEAD(&c->list);
7851c6fdbd8SKent Overstreet 
7864d8100daSKent Overstreet 	mutex_init(&c->usage_scratch_lock);
7874d8100daSKent Overstreet 
7881c6fdbd8SKent Overstreet 	mutex_init(&c->bio_bounce_pages_lock);
78914b393eeSKent Overstreet 	mutex_init(&c->snapshot_table_lock);
79037fad949SKent Overstreet 	init_rwsem(&c->snapshot_create_lock);
7911c6fdbd8SKent Overstreet 
7921c6fdbd8SKent Overstreet 	spin_lock_init(&c->btree_write_error_lock);
7931c6fdbd8SKent Overstreet 
7949b6e2f1eSKent Overstreet 	INIT_WORK(&c->journal_seq_blacklist_gc_work,
7959b6e2f1eSKent Overstreet 		  bch2_blacklist_entries_gc);
7969b6e2f1eSKent Overstreet 
7975b593ee1SKent Overstreet 	INIT_LIST_HEAD(&c->journal_iters);
798f1d786a0SKent Overstreet 
799f5d26fa3SKent Overstreet 	INIT_LIST_HEAD(&c->fsck_error_msgs);
800f5d26fa3SKent Overstreet 	mutex_init(&c->fsck_error_msgs_lock);
8011c6fdbd8SKent Overstreet 
8021c6fdbd8SKent Overstreet 	seqcount_init(&c->gc_pos_lock);
8031c6fdbd8SKent Overstreet 
8045e82a9a1SKent Overstreet 	seqcount_init(&c->usage_lock);
8055e82a9a1SKent Overstreet 
806ef1b2092SKent Overstreet 	sema_init(&c->io_in_flight, 128);
807ef1b2092SKent Overstreet 
8089edbcc72SKent Overstreet 	INIT_LIST_HEAD(&c->vfs_inodes_list);
8099edbcc72SKent Overstreet 	mutex_init(&c->vfs_inodes_lock);
8109edbcc72SKent Overstreet 
8111c6fdbd8SKent Overstreet 	c->copy_gc_enabled		= 1;
8121c6fdbd8SKent Overstreet 	c->rebalance.enabled		= 1;
8131c6fdbd8SKent Overstreet 	c->promote_whole_extents	= true;
8141c6fdbd8SKent Overstreet 
815991ba021SKent Overstreet 	c->journal.flush_write_time	= &c->times[BCH_TIME_journal_flush_write];
816991ba021SKent Overstreet 	c->journal.noflush_write_time	= &c->times[BCH_TIME_journal_noflush_write];
8171c6fdbd8SKent Overstreet 	c->journal.flush_seq_time	= &c->times[BCH_TIME_journal_flush_seq];
8181c6fdbd8SKent Overstreet 
8191c6fdbd8SKent Overstreet 	bch2_fs_btree_cache_init_early(&c->btree_cache);
8201c6fdbd8SKent Overstreet 
821fca1223cSKent Overstreet 	mutex_init(&c->sectors_available_lock);
822fca1223cSKent Overstreet 
823e2b60560SKent Overstreet 	ret = percpu_init_rwsem(&c->mark_lock);
824e2b60560SKent Overstreet 	if (ret)
82573e6ab95SKent Overstreet 		goto err;
82673e6ab95SKent Overstreet 
8271c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
828e2b60560SKent Overstreet 	ret = bch2_sb_to_fs(c, sb);
8291c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
830e2b60560SKent Overstreet 
831e2b60560SKent Overstreet 	if (ret)
8321c6fdbd8SKent Overstreet 		goto err;
8331c6fdbd8SKent Overstreet 
834401ec4dbSKent Overstreet 	pr_uuid(&name, c->sb.user_uuid.b);
83565d48e35SKent Overstreet 	ret = name.allocation_failure ? -BCH_ERR_ENOMEM_fs_name_alloc : 0;
836401ec4dbSKent Overstreet 	if (ret)
837401ec4dbSKent Overstreet 		goto err;
8381c6fdbd8SKent Overstreet 
839f8cdf65bSLi Zetao 	strscpy(c->name, name.buf, sizeof(c->name));
840f8cdf65bSLi Zetao 	printbuf_exit(&name);
841f8cdf65bSLi Zetao 
8422430e72fSKent Overstreet 	/* Compat: */
84373bd774dSKent Overstreet 	if (le16_to_cpu(sb->version) <= bcachefs_metadata_version_inode_v2 &&
8442430e72fSKent Overstreet 	    !BCH_SB_JOURNAL_FLUSH_DELAY(sb))
8452430e72fSKent Overstreet 		SET_BCH_SB_JOURNAL_FLUSH_DELAY(sb, 1000);
8462430e72fSKent Overstreet 
84773bd774dSKent Overstreet 	if (le16_to_cpu(sb->version) <= bcachefs_metadata_version_inode_v2 &&
8482430e72fSKent Overstreet 	    !BCH_SB_JOURNAL_RECLAIM_DELAY(sb))
8492430e72fSKent Overstreet 		SET_BCH_SB_JOURNAL_RECLAIM_DELAY(sb, 100);
8502430e72fSKent Overstreet 
8511c6fdbd8SKent Overstreet 	c->opts = bch2_opts_default;
8528244f320SKent Overstreet 	ret = bch2_opts_from_sb(&c->opts, sb);
8538244f320SKent Overstreet 	if (ret)
8548244f320SKent Overstreet 		goto err;
8558244f320SKent Overstreet 
8561c6fdbd8SKent Overstreet 	bch2_opts_apply(&c->opts, opts);
8571c6fdbd8SKent Overstreet 
8587c8f6f98SKent Overstreet 	c->btree_key_cache_btrees |= 1U << BTREE_ID_alloc;
8597c8f6f98SKent Overstreet 	if (c->opts.inodes_use_key_cache)
8607c8f6f98SKent Overstreet 		c->btree_key_cache_btrees |= 1U << BTREE_ID_inodes;
861aaad530aSKent Overstreet 	c->btree_key_cache_btrees |= 1U << BTREE_ID_logged_ops;
8627c8f6f98SKent Overstreet 
8638244f320SKent Overstreet 	c->block_bits		= ilog2(block_sectors(c));
8641c6fdbd8SKent Overstreet 	c->btree_foreground_merge_threshold = BTREE_FOREGROUND_MERGE_THRESHOLD(c);
8651c6fdbd8SKent Overstreet 
8667be9ab63SChris Webb 	if (bch2_fs_init_fault("fs_alloc")) {
867e2b60560SKent Overstreet 		bch_err(c, "fs_alloc fault injected");
868e2b60560SKent Overstreet 		ret = -EFAULT;
8691c6fdbd8SKent Overstreet 		goto err;
8707be9ab63SChris Webb 	}
8711c6fdbd8SKent Overstreet 
872ae2f17d5SKent Overstreet 	iter_size = sizeof(struct sort_iter) +
8731c6fdbd8SKent Overstreet 		(btree_blocks(c) + 1) * 2 *
874ae2f17d5SKent Overstreet 		sizeof(struct sort_iter_set);
8751c6fdbd8SKent Overstreet 
876b5e8a699SKent Overstreet 	c->inode_shard_bits = ilog2(roundup_pow_of_two(num_possible_cpus()));
877b5e8a699SKent Overstreet 
878731bdd2eSKent Overstreet 	if (!(c->btree_update_wq = alloc_workqueue("bcachefs",
8796b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_UNBOUND, 512)) ||
8809f1833caSKent Overstreet 	    !(c->btree_io_complete_wq = alloc_workqueue("bcachefs_btree_io",
8816b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 1)) ||
8822f33ece9SKent Overstreet 	    !(c->copygc_wq = alloc_workqueue("bcachefs_copygc",
8836b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 1)) ||
884731bdd2eSKent Overstreet 	    !(c->io_complete_wq = alloc_workqueue("bcachefs_io",
8856b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 512)) ||
8868bff9875SBrian Foster 	    !(c->write_ref_wq = alloc_workqueue("bcachefs_write_ref",
8878bff9875SBrian Foster 				WQ_FREEZABLE, 0)) ||
888d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
889134915f3SKent Overstreet 	    percpu_ref_init(&c->writes, bch2_writes_disabled,
890134915f3SKent Overstreet 			    PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
891d94189adSKent Overstreet #endif
8921c6fdbd8SKent Overstreet 	    mempool_init_kmalloc_pool(&c->fill_iter, 1, iter_size) ||
8931c6fdbd8SKent Overstreet 	    bioset_init(&c->btree_bio, 1,
8941c6fdbd8SKent Overstreet 			max(offsetof(struct btree_read_bio, bio),
8951c6fdbd8SKent Overstreet 			    offsetof(struct btree_write_bio, wbio.bio)),
8961c6fdbd8SKent Overstreet 			BIOSET_NEED_BVECS) ||
8975663a415SKent Overstreet 	    !(c->pcpu = alloc_percpu(struct bch_fs_pcpu)) ||
8985e82a9a1SKent Overstreet 	    !(c->online_reserved = alloc_percpu(u64)) ||
899cb6fc943SKent Overstreet 	    mempool_init_kvmalloc_pool(&c->btree_bounce_pool, 1,
900ec4edd7bSKent Overstreet 				       c->opts.btree_node_size) ||
90135189e09SKent Overstreet 	    mempool_init_kmalloc_pool(&c->large_bkey_pool, 1, 2048) ||
902b5e8a699SKent Overstreet 	    !(c->unused_inode_hints = kcalloc(1U << c->inode_shard_bits,
903e2b60560SKent Overstreet 					      sizeof(u64), GFP_KERNEL))) {
90465d48e35SKent Overstreet 		ret = -BCH_ERR_ENOMEM_fs_other_alloc;
9057be9ab63SChris Webb 		goto err;
9067be9ab63SChris Webb 	}
9077be9ab63SChris Webb 
908f3b8403eSKent Overstreet 	ret = bch2_fs_counters_init(c) ?:
909f5d26fa3SKent Overstreet 	    bch2_fs_sb_errors_init(c) ?:
910f3b8403eSKent Overstreet 	    bch2_io_clock_init(&c->io_clock[READ]) ?:
911e2b60560SKent Overstreet 	    bch2_io_clock_init(&c->io_clock[WRITE]) ?:
912e2b60560SKent Overstreet 	    bch2_fs_journal_init(&c->journal) ?:
913e2b60560SKent Overstreet 	    bch2_fs_replicas_init(c) ?:
914e2b60560SKent Overstreet 	    bch2_fs_btree_cache_init(c) ?:
915e2b60560SKent Overstreet 	    bch2_fs_btree_key_cache_init(&c->btree_key_cache) ?:
916e2b60560SKent Overstreet 	    bch2_fs_btree_iter_init(c) ?:
917e2b60560SKent Overstreet 	    bch2_fs_btree_interior_update_init(c) ?:
9189b688da3SKent Overstreet 	    bch2_fs_buckets_waiting_for_journal_init(c) ?:
919920e69bcSKent Overstreet 	    bch2_fs_btree_write_buffer_init(c) ?:
920e2b60560SKent Overstreet 	    bch2_fs_subvolumes_init(c) ?:
9211809b8cbSKent Overstreet 	    bch2_fs_io_read_init(c) ?:
9221809b8cbSKent Overstreet 	    bch2_fs_io_write_init(c) ?:
923350175bfSKent Overstreet 	    bch2_fs_nocow_locking_init(c) ?:
924e2b60560SKent Overstreet 	    bch2_fs_encryption_init(c) ?:
925e2b60560SKent Overstreet 	    bch2_fs_compress_init(c) ?:
926e2b60560SKent Overstreet 	    bch2_fs_ec_init(c) ?:
927dbbfca9fSKent Overstreet 	    bch2_fs_fsio_init(c) ?:
928867c1fe0SDan Carpenter 	    bch2_fs_fs_io_buffered_init(c) ?:
929dbbfca9fSKent Overstreet 	    bch2_fs_fs_io_direct_init(c);
9307be9ab63SChris Webb 	if (ret)
9311c6fdbd8SKent Overstreet 		goto err;
9321c6fdbd8SKent Overstreet 
9331c6fdbd8SKent Overstreet 	for (i = 0; i < c->sb.nr_devices; i++)
9341241df58SHunter Shaffer 		if (bch2_dev_exists(c->disk_sb.sb, i) &&
9357be9ab63SChris Webb 		    bch2_dev_alloc(c, i)) {
936e2b60560SKent Overstreet 			ret = -EEXIST;
9371c6fdbd8SKent Overstreet 			goto err;
9387be9ab63SChris Webb 		}
9391c6fdbd8SKent Overstreet 
9404b8f89afSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
9414b8f89afSKent Overstreet 			&c->btree_root_journal_res,
9424b8f89afSKent Overstreet 			BTREE_ID_NR * (JSET_KEYS_U64s + BKEY_BTREE_PTR_U64s_MAX));
9434b8f89afSKent Overstreet 	bch2_dev_usage_journal_reserve(c);
9444b8f89afSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
9454b8f89afSKent Overstreet 			&c->clock_journal_res,
9464b8f89afSKent Overstreet 			(sizeof(struct jset_entry_clock) / sizeof(u64)) * 2);
9474b8f89afSKent Overstreet 
9481c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
949e2b60560SKent Overstreet 	ret = bch2_fs_online(c);
9501c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
951e2b60560SKent Overstreet 
952e2b60560SKent Overstreet 	if (ret)
9531c6fdbd8SKent Overstreet 		goto err;
9541c6fdbd8SKent Overstreet out:
9551c6fdbd8SKent Overstreet 	return c;
9561c6fdbd8SKent Overstreet err:
9571c6fdbd8SKent Overstreet 	bch2_fs_free(c);
9587be9ab63SChris Webb 	c = ERR_PTR(ret);
9591c6fdbd8SKent Overstreet 	goto out;
9601c6fdbd8SKent Overstreet }
9611c6fdbd8SKent Overstreet 
962619f5beeSKent Overstreet noinline_for_stack
963619f5beeSKent Overstreet static void print_mount_opts(struct bch_fs *c)
964619f5beeSKent Overstreet {
965619f5beeSKent Overstreet 	enum bch_opt_id i;
966fa8e94faSKent Overstreet 	struct printbuf p = PRINTBUF;
967619f5beeSKent Overstreet 	bool first = true;
968619f5beeSKent Overstreet 
969ef1634f0SKent Overstreet 	prt_str(&p, "mounting version ");
970e3804b55SKent Overstreet 	bch2_version_to_text(&p, c->sb.version);
97160573ff5SKent Overstreet 
972619f5beeSKent Overstreet 	if (c->opts.read_only) {
97360573ff5SKent Overstreet 		prt_str(&p, " opts=");
974619f5beeSKent Overstreet 		first = false;
97560573ff5SKent Overstreet 		prt_printf(&p, "ro");
976619f5beeSKent Overstreet 	}
977619f5beeSKent Overstreet 
978619f5beeSKent Overstreet 	for (i = 0; i < bch2_opts_nr; i++) {
979619f5beeSKent Overstreet 		const struct bch_option *opt = &bch2_opt_table[i];
980619f5beeSKent Overstreet 		u64 v = bch2_opt_get_by_id(&c->opts, i);
981619f5beeSKent Overstreet 
9828244f320SKent Overstreet 		if (!(opt->flags & OPT_MOUNT))
983619f5beeSKent Overstreet 			continue;
984619f5beeSKent Overstreet 
985619f5beeSKent Overstreet 		if (v == bch2_opt_get_by_id(&bch2_opts_default, i))
986619f5beeSKent Overstreet 			continue;
987619f5beeSKent Overstreet 
98860573ff5SKent Overstreet 		prt_str(&p, first ? " opts=" : ",");
989619f5beeSKent Overstreet 		first = false;
9905521b1dfSKent Overstreet 		bch2_opt_to_text(&p, c, c->disk_sb.sb, opt, v, OPT_SHOW_MOUNT_STYLE);
991619f5beeSKent Overstreet 	}
992619f5beeSKent Overstreet 
99360573ff5SKent Overstreet 	bch_info(c, "%s", p.buf);
994fa8e94faSKent Overstreet 	printbuf_exit(&p);
995619f5beeSKent Overstreet }
996619f5beeSKent Overstreet 
997619f5beeSKent Overstreet int bch2_fs_start(struct bch_fs *c)
9981c6fdbd8SKent Overstreet {
999a420eea6STim Schlueter 	time64_t now = ktime_get_real_seconds();
100078c0b75cSKent Overstreet 	int ret;
10011c6fdbd8SKent Overstreet 
1002ef1634f0SKent Overstreet 	print_mount_opts(c);
1003ef1634f0SKent Overstreet 
10041ada1606SKent Overstreet 	down_write(&c->state_lock);
10051c6fdbd8SKent Overstreet 
10063c471b65SKent Overstreet 	BUG_ON(test_bit(BCH_FS_started, &c->flags));
10071c6fdbd8SKent Overstreet 
10081c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
10091c6fdbd8SKent Overstreet 
1010f5d26fa3SKent Overstreet 	ret = bch2_sb_members_v2_init(c);
10113f7b9713SHunter Shaffer 	if (ret) {
10123f7b9713SHunter Shaffer 		mutex_unlock(&c->sb_lock);
10133f7b9713SHunter Shaffer 		goto err;
10143f7b9713SHunter Shaffer 	}
10153f7b9713SHunter Shaffer 
10169fea2274SKent Overstreet 	for_each_online_member(c, ca)
10179fea2274SKent Overstreet 		bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount = cpu_to_le64(now);
10181c6fdbd8SKent Overstreet 
10190a34c058SKent Overstreet 	struct bch_sb_field_ext *ext =
10200a34c058SKent Overstreet 		bch2_sb_field_get_minsize(&c->disk_sb, ext, sizeof(*ext) / sizeof(u64));
10211c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
10221c6fdbd8SKent Overstreet 
10230a34c058SKent Overstreet 	if (!ext) {
10240a34c058SKent Overstreet 		bch_err(c, "insufficient space in superblock for sb_field_ext");
10250a34c058SKent Overstreet 		ret = -BCH_ERR_ENOSPC_sb;
10260a34c058SKent Overstreet 		goto err;
10270a34c058SKent Overstreet 	}
10280a34c058SKent Overstreet 
10299fea2274SKent Overstreet 	for_each_rw_member(c, ca)
10301c6fdbd8SKent Overstreet 		bch2_dev_allocator_add(c, ca);
10311c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
10321c6fdbd8SKent Overstreet 
10331c6fdbd8SKent Overstreet 	ret = BCH_SB_INITIALIZED(c->disk_sb.sb)
10341c6fdbd8SKent Overstreet 		? bch2_fs_recovery(c)
10351c6fdbd8SKent Overstreet 		: bch2_fs_initialize(c);
10361c6fdbd8SKent Overstreet 	if (ret)
10371c6fdbd8SKent Overstreet 		goto err;
10381c6fdbd8SKent Overstreet 
1039cd575ddfSKent Overstreet 	ret = bch2_opts_check_may_set(c);
1040cd575ddfSKent Overstreet 	if (ret)
1041cd575ddfSKent Overstreet 		goto err;
1042cd575ddfSKent Overstreet 
1043e2b60560SKent Overstreet 	if (bch2_fs_init_fault("fs_start")) {
1044e2b60560SKent Overstreet 		bch_err(c, "fs_start fault injected");
104578c0b75cSKent Overstreet 		ret = -EINVAL;
10461c6fdbd8SKent Overstreet 		goto err;
1047e2b60560SKent Overstreet 	}
10481c6fdbd8SKent Overstreet 
10493c471b65SKent Overstreet 	set_bit(BCH_FS_started, &c->flags);
1050a9310ab0SKent Overstreet 
105162719cf3SKent Overstreet 	if (c->opts.read_only) {
10521c6fdbd8SKent Overstreet 		bch2_fs_read_only(c);
10531c6fdbd8SKent Overstreet 	} else {
10543c471b65SKent Overstreet 		ret = !test_bit(BCH_FS_rw, &c->flags)
1055619f5beeSKent Overstreet 			? bch2_fs_read_write(c)
1056619f5beeSKent Overstreet 			: bch2_fs_read_write_late(c);
1057619f5beeSKent Overstreet 		if (ret)
10581c6fdbd8SKent Overstreet 			goto err;
10591c6fdbd8SKent Overstreet 	}
10601c6fdbd8SKent Overstreet 
1061619f5beeSKent Overstreet 	ret = 0;
1062e34ec13aSKent Overstreet err:
1063e34ec13aSKent Overstreet 	if (ret)
1064e34ec13aSKent Overstreet 		bch_err_msg(c, ret, "starting filesystem");
1065e34ec13aSKent Overstreet 	else
1066e34ec13aSKent Overstreet 		bch_verbose(c, "done starting filesystem");
10671ada1606SKent Overstreet 	up_write(&c->state_lock);
1068619f5beeSKent Overstreet 	return ret;
10691c6fdbd8SKent Overstreet }
10701c6fdbd8SKent Overstreet 
107178c0b75cSKent Overstreet static int bch2_dev_may_add(struct bch_sb *sb, struct bch_fs *c)
10721c6fdbd8SKent Overstreet {
10731241df58SHunter Shaffer 	struct bch_member m = bch2_sb_member_get(sb, sb->dev_idx);
10741c6fdbd8SKent Overstreet 
10758244f320SKent Overstreet 	if (le16_to_cpu(sb->block_size) != block_sectors(c))
107678c0b75cSKent Overstreet 		return -BCH_ERR_mismatched_block_size;
10771c6fdbd8SKent Overstreet 
10781241df58SHunter Shaffer 	if (le16_to_cpu(m.bucket_size) <
10791c6fdbd8SKent Overstreet 	    BCH_SB_BTREE_NODE_SIZE(c->disk_sb.sb))
108078c0b75cSKent Overstreet 		return -BCH_ERR_bucket_size_too_small;
10811c6fdbd8SKent Overstreet 
108278c0b75cSKent Overstreet 	return 0;
10831c6fdbd8SKent Overstreet }
10841c6fdbd8SKent Overstreet 
10850d529663SKent Overstreet static int bch2_dev_in_fs(struct bch_sb_handle *fs,
10862f300f09SKent Overstreet 			  struct bch_sb_handle *sb,
10872f300f09SKent Overstreet 			  struct bch_opts *opts)
10881c6fdbd8SKent Overstreet {
10890d529663SKent Overstreet 	if (fs == sb)
10900d529663SKent Overstreet 		return 0;
10911c6fdbd8SKent Overstreet 
10920d529663SKent Overstreet 	if (!uuid_equal(&fs->sb->uuid, &sb->sb->uuid))
109378c0b75cSKent Overstreet 		return -BCH_ERR_device_not_a_member_of_filesystem;
10941c6fdbd8SKent Overstreet 
10950d529663SKent Overstreet 	if (!bch2_dev_exists(fs->sb, sb->sb->dev_idx))
109678c0b75cSKent Overstreet 		return -BCH_ERR_device_has_been_removed;
10971c6fdbd8SKent Overstreet 
10980d529663SKent Overstreet 	if (fs->sb->block_size != sb->sb->block_size)
109978c0b75cSKent Overstreet 		return -BCH_ERR_mismatched_block_size;
11001c6fdbd8SKent Overstreet 
11010d529663SKent Overstreet 	if (le16_to_cpu(fs->sb->version) < bcachefs_metadata_version_member_seq ||
11020d529663SKent Overstreet 	    le16_to_cpu(sb->sb->version) < bcachefs_metadata_version_member_seq)
11030d529663SKent Overstreet 		return 0;
11040d529663SKent Overstreet 
11050d529663SKent Overstreet 	if (fs->sb->seq == sb->sb->seq &&
11060d529663SKent Overstreet 	    fs->sb->write_time != sb->sb->write_time) {
11070d529663SKent Overstreet 		struct printbuf buf = PRINTBUF;
11080d529663SKent Overstreet 
11091f5af5fcSKent Overstreet 		prt_str(&buf, "Split brain detected between ");
11101f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11111f5af5fcSKent Overstreet 		prt_str(&buf, " and ");
11121f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11131f5af5fcSKent Overstreet 		prt_char(&buf, ':');
11140d529663SKent Overstreet 		prt_newline(&buf);
11150d529663SKent Overstreet 		prt_printf(&buf, "seq=%llu but write_time different, got", le64_to_cpu(sb->sb->seq));
11160d529663SKent Overstreet 		prt_newline(&buf);
11170d529663SKent Overstreet 
11181f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11191f5af5fcSKent Overstreet 		prt_char(&buf, ' ');
11200d529663SKent Overstreet 		bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));;
11210d529663SKent Overstreet 		prt_newline(&buf);
11220d529663SKent Overstreet 
11231f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11241f5af5fcSKent Overstreet 		prt_char(&buf, ' ');
11250d529663SKent Overstreet 		bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));;
11260d529663SKent Overstreet 		prt_newline(&buf);
11270d529663SKent Overstreet 
11282f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11290d529663SKent Overstreet 			prt_printf(&buf, "Not using older sb");
11300d529663SKent Overstreet 
11310d529663SKent Overstreet 		pr_err("%s", buf.buf);
11320d529663SKent Overstreet 		printbuf_exit(&buf);
11332f300f09SKent Overstreet 
11342f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11350d529663SKent Overstreet 			return -BCH_ERR_device_splitbrain;
11360d529663SKent Overstreet 	}
11370d529663SKent Overstreet 
11380d529663SKent Overstreet 	struct bch_member m = bch2_sb_member_get(fs->sb, sb->sb->dev_idx);
11390d529663SKent Overstreet 	u64 seq_from_fs		= le64_to_cpu(m.seq);
11400d529663SKent Overstreet 	u64 seq_from_member	= le64_to_cpu(sb->sb->seq);
11410d529663SKent Overstreet 
11420d529663SKent Overstreet 	if (seq_from_fs && seq_from_fs < seq_from_member) {
11431f5af5fcSKent Overstreet 		struct printbuf buf = PRINTBUF;
11441f5af5fcSKent Overstreet 
11451f5af5fcSKent Overstreet 		prt_str(&buf, "Split brain detected between ");
11461f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11471f5af5fcSKent Overstreet 		prt_str(&buf, " and ");
11481f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11491f5af5fcSKent Overstreet 		prt_char(&buf, ':');
11501f5af5fcSKent Overstreet 		prt_newline(&buf);
11511f5af5fcSKent Overstreet 
11521f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11531f5af5fcSKent Overstreet 		prt_str(&buf, " believes seq of ");
11541f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11551f5af5fcSKent Overstreet 		prt_printf(&buf, " to be %llu, but ", seq_from_fs);
11561f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11571f5af5fcSKent Overstreet 		prt_printf(&buf, " has %llu\n", seq_from_member);
11582f300f09SKent Overstreet 
11592f300f09SKent Overstreet 		if (!opts->no_splitbrain_check) {
11601f5af5fcSKent Overstreet 			prt_str(&buf, "Not using ");
11611f5af5fcSKent Overstreet 			prt_bdevname(&buf, sb->bdev);
11622f300f09SKent Overstreet 		}
11631f5af5fcSKent Overstreet 
11641f5af5fcSKent Overstreet 		pr_err("%s", buf.buf);
11651f5af5fcSKent Overstreet 		printbuf_exit(&buf);
11662f300f09SKent Overstreet 
11672f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11680d529663SKent Overstreet 			return -BCH_ERR_device_splitbrain;
11690d529663SKent Overstreet 	}
11700d529663SKent Overstreet 
117178c0b75cSKent Overstreet 	return 0;
11721c6fdbd8SKent Overstreet }
11731c6fdbd8SKent Overstreet 
11741c6fdbd8SKent Overstreet /* Device startup/shutdown: */
11751c6fdbd8SKent Overstreet 
11761c6fdbd8SKent Overstreet static void bch2_dev_release(struct kobject *kobj)
11771c6fdbd8SKent Overstreet {
11781c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
11791c6fdbd8SKent Overstreet 
11801c6fdbd8SKent Overstreet 	kfree(ca);
11811c6fdbd8SKent Overstreet }
11821c6fdbd8SKent Overstreet 
11831c6fdbd8SKent Overstreet static void bch2_dev_free(struct bch_dev *ca)
11841c6fdbd8SKent Overstreet {
11851c6fdbd8SKent Overstreet 	cancel_work_sync(&ca->io_error_work);
11861c6fdbd8SKent Overstreet 
11871c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs &&
11881c6fdbd8SKent Overstreet 	    ca->disk_sb.bdev)
11891c6fdbd8SKent Overstreet 		sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
11901c6fdbd8SKent Overstreet 
11911c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs)
11921c6fdbd8SKent Overstreet 		kobject_del(&ca->kobj);
11931c6fdbd8SKent Overstreet 
11941c6fdbd8SKent Overstreet 	bch2_free_super(&ca->disk_sb);
11951c6fdbd8SKent Overstreet 	bch2_dev_journal_exit(ca);
11961c6fdbd8SKent Overstreet 
11971c6fdbd8SKent Overstreet 	free_percpu(ca->io_done);
11981c6fdbd8SKent Overstreet 	bioset_exit(&ca->replica_set);
11991c6fdbd8SKent Overstreet 	bch2_dev_buckets_free(ca);
1200d1170ce5SKent Overstreet 	free_page((unsigned long) ca->sb_read_scratch);
12011c6fdbd8SKent Overstreet 
1202273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_exit(&ca->io_latency[WRITE]);
1203273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_exit(&ca->io_latency[READ]);
12041c6fdbd8SKent Overstreet 
12051c6fdbd8SKent Overstreet 	percpu_ref_exit(&ca->io_ref);
12061c6fdbd8SKent Overstreet 	percpu_ref_exit(&ca->ref);
12071c6fdbd8SKent Overstreet 	kobject_put(&ca->kobj);
12081c6fdbd8SKent Overstreet }
12091c6fdbd8SKent Overstreet 
12101c6fdbd8SKent Overstreet static void __bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca)
12111c6fdbd8SKent Overstreet {
12121c6fdbd8SKent Overstreet 
12131c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
12141c6fdbd8SKent Overstreet 
12151c6fdbd8SKent Overstreet 	if (percpu_ref_is_zero(&ca->io_ref))
12161c6fdbd8SKent Overstreet 		return;
12171c6fdbd8SKent Overstreet 
12181c6fdbd8SKent Overstreet 	__bch2_dev_read_only(c, ca);
12191c6fdbd8SKent Overstreet 
12201c6fdbd8SKent Overstreet 	reinit_completion(&ca->io_ref_completion);
12211c6fdbd8SKent Overstreet 	percpu_ref_kill(&ca->io_ref);
12221c6fdbd8SKent Overstreet 	wait_for_completion(&ca->io_ref_completion);
12231c6fdbd8SKent Overstreet 
12241c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs) {
12251c6fdbd8SKent Overstreet 		sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
12261c6fdbd8SKent Overstreet 		sysfs_remove_link(&ca->kobj, "block");
12271c6fdbd8SKent Overstreet 	}
12281c6fdbd8SKent Overstreet 
12291c6fdbd8SKent Overstreet 	bch2_free_super(&ca->disk_sb);
12301c6fdbd8SKent Overstreet 	bch2_dev_journal_exit(ca);
12311c6fdbd8SKent Overstreet }
12321c6fdbd8SKent Overstreet 
12331c6fdbd8SKent Overstreet static void bch2_dev_ref_complete(struct percpu_ref *ref)
12341c6fdbd8SKent Overstreet {
12351c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(ref, struct bch_dev, ref);
12361c6fdbd8SKent Overstreet 
12371c6fdbd8SKent Overstreet 	complete(&ca->ref_completion);
12381c6fdbd8SKent Overstreet }
12391c6fdbd8SKent Overstreet 
12401c6fdbd8SKent Overstreet static void bch2_dev_io_ref_complete(struct percpu_ref *ref)
12411c6fdbd8SKent Overstreet {
12421c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(ref, struct bch_dev, io_ref);
12431c6fdbd8SKent Overstreet 
12441c6fdbd8SKent Overstreet 	complete(&ca->io_ref_completion);
12451c6fdbd8SKent Overstreet }
12461c6fdbd8SKent Overstreet 
12471c6fdbd8SKent Overstreet static int bch2_dev_sysfs_online(struct bch_fs *c, struct bch_dev *ca)
12481c6fdbd8SKent Overstreet {
12491c6fdbd8SKent Overstreet 	int ret;
12501c6fdbd8SKent Overstreet 
12511c6fdbd8SKent Overstreet 	if (!c->kobj.state_in_sysfs)
12521c6fdbd8SKent Overstreet 		return 0;
12531c6fdbd8SKent Overstreet 
12541c6fdbd8SKent Overstreet 	if (!ca->kobj.state_in_sysfs) {
12551c6fdbd8SKent Overstreet 		ret = kobject_add(&ca->kobj, &c->kobj,
12561c6fdbd8SKent Overstreet 				  "dev-%u", ca->dev_idx);
12571c6fdbd8SKent Overstreet 		if (ret)
12581c6fdbd8SKent Overstreet 			return ret;
12591c6fdbd8SKent Overstreet 	}
12601c6fdbd8SKent Overstreet 
12611c6fdbd8SKent Overstreet 	if (ca->disk_sb.bdev) {
12621c6fdbd8SKent Overstreet 		struct kobject *block = bdev_kobj(ca->disk_sb.bdev);
12631c6fdbd8SKent Overstreet 
12641c6fdbd8SKent Overstreet 		ret = sysfs_create_link(block, &ca->kobj, "bcachefs");
12651c6fdbd8SKent Overstreet 		if (ret)
12661c6fdbd8SKent Overstreet 			return ret;
12671c6fdbd8SKent Overstreet 
12681c6fdbd8SKent Overstreet 		ret = sysfs_create_link(&ca->kobj, block, "block");
12691c6fdbd8SKent Overstreet 		if (ret)
12701c6fdbd8SKent Overstreet 			return ret;
12711c6fdbd8SKent Overstreet 	}
12721c6fdbd8SKent Overstreet 
12731c6fdbd8SKent Overstreet 	return 0;
12741c6fdbd8SKent Overstreet }
12751c6fdbd8SKent Overstreet 
12761c6fdbd8SKent Overstreet static struct bch_dev *__bch2_dev_alloc(struct bch_fs *c,
12771c6fdbd8SKent Overstreet 					struct bch_member *member)
12781c6fdbd8SKent Overstreet {
12791c6fdbd8SKent Overstreet 	struct bch_dev *ca;
128094119eebSKent Overstreet 	unsigned i;
12811c6fdbd8SKent Overstreet 
12821c6fdbd8SKent Overstreet 	ca = kzalloc(sizeof(*ca), GFP_KERNEL);
12831c6fdbd8SKent Overstreet 	if (!ca)
12841c6fdbd8SKent Overstreet 		return NULL;
12851c6fdbd8SKent Overstreet 
12861c6fdbd8SKent Overstreet 	kobject_init(&ca->kobj, &bch2_dev_ktype);
12871c6fdbd8SKent Overstreet 	init_completion(&ca->ref_completion);
12881c6fdbd8SKent Overstreet 	init_completion(&ca->io_ref_completion);
12891c6fdbd8SKent Overstreet 
12901c6fdbd8SKent Overstreet 	init_rwsem(&ca->bucket_lock);
12911c6fdbd8SKent Overstreet 
12921c6fdbd8SKent Overstreet 	INIT_WORK(&ca->io_error_work, bch2_io_error_work);
12931c6fdbd8SKent Overstreet 
1294273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_init(&ca->io_latency[READ]);
1295273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_init(&ca->io_latency[WRITE]);
12961c6fdbd8SKent Overstreet 
12971c6fdbd8SKent Overstreet 	ca->mi = bch2_mi_to_cpu(member);
129894119eebSKent Overstreet 
129994119eebSKent Overstreet 	for (i = 0; i < ARRAY_SIZE(member->errors); i++)
130094119eebSKent Overstreet 		atomic64_set(&ca->errors[i], le64_to_cpu(member->errors[i]));
130194119eebSKent Overstreet 
13021c6fdbd8SKent Overstreet 	ca->uuid = member->uuid;
13031c6fdbd8SKent Overstreet 
1304f25d8215SKent Overstreet 	ca->nr_btree_reserve = DIV_ROUND_UP(BTREE_NODE_RESERVE,
1305f25d8215SKent Overstreet 			     ca->mi.bucket_size / btree_sectors(c));
1306f25d8215SKent Overstreet 
13071c6fdbd8SKent Overstreet 	if (percpu_ref_init(&ca->ref, bch2_dev_ref_complete,
13081c6fdbd8SKent Overstreet 			    0, GFP_KERNEL) ||
13091c6fdbd8SKent Overstreet 	    percpu_ref_init(&ca->io_ref, bch2_dev_io_ref_complete,
13101c6fdbd8SKent Overstreet 			    PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
1311d1170ce5SKent Overstreet 	    !(ca->sb_read_scratch = (void *) __get_free_page(GFP_KERNEL)) ||
13121c6fdbd8SKent Overstreet 	    bch2_dev_buckets_alloc(c, ca) ||
13131c6fdbd8SKent Overstreet 	    bioset_init(&ca->replica_set, 4,
13141c6fdbd8SKent Overstreet 			offsetof(struct bch_write_bio, bio), 0) ||
13151c6fdbd8SKent Overstreet 	    !(ca->io_done	= alloc_percpu(*ca->io_done)))
13161c6fdbd8SKent Overstreet 		goto err;
13171c6fdbd8SKent Overstreet 
13181c6fdbd8SKent Overstreet 	return ca;
13191c6fdbd8SKent Overstreet err:
13201c6fdbd8SKent Overstreet 	bch2_dev_free(ca);
13211c6fdbd8SKent Overstreet 	return NULL;
13221c6fdbd8SKent Overstreet }
13231c6fdbd8SKent Overstreet 
13241c6fdbd8SKent Overstreet static void bch2_dev_attach(struct bch_fs *c, struct bch_dev *ca,
13251c6fdbd8SKent Overstreet 			    unsigned dev_idx)
13261c6fdbd8SKent Overstreet {
13271c6fdbd8SKent Overstreet 	ca->dev_idx = dev_idx;
13281c6fdbd8SKent Overstreet 	__set_bit(ca->dev_idx, ca->self.d);
13291c6fdbd8SKent Overstreet 	scnprintf(ca->name, sizeof(ca->name), "dev-%u", dev_idx);
13301c6fdbd8SKent Overstreet 
13311c6fdbd8SKent Overstreet 	ca->fs = c;
13321c6fdbd8SKent Overstreet 	rcu_assign_pointer(c->devs[ca->dev_idx], ca);
13331c6fdbd8SKent Overstreet 
13341c6fdbd8SKent Overstreet 	if (bch2_dev_sysfs_online(c, ca))
13351c6fdbd8SKent Overstreet 		pr_warn("error creating sysfs objects");
13361c6fdbd8SKent Overstreet }
13371c6fdbd8SKent Overstreet 
13381c6fdbd8SKent Overstreet static int bch2_dev_alloc(struct bch_fs *c, unsigned dev_idx)
13391c6fdbd8SKent Overstreet {
13401241df58SHunter Shaffer 	struct bch_member member = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
13411c6fdbd8SKent Overstreet 	struct bch_dev *ca = NULL;
13421c6fdbd8SKent Overstreet 	int ret = 0;
13431c6fdbd8SKent Overstreet 
13441c6fdbd8SKent Overstreet 	if (bch2_fs_init_fault("dev_alloc"))
13451c6fdbd8SKent Overstreet 		goto err;
13461c6fdbd8SKent Overstreet 
13471241df58SHunter Shaffer 	ca = __bch2_dev_alloc(c, &member);
13481c6fdbd8SKent Overstreet 	if (!ca)
13491c6fdbd8SKent Overstreet 		goto err;
13501c6fdbd8SKent Overstreet 
1351220d2062SKent Overstreet 	ca->fs = c;
1352220d2062SKent Overstreet 
13531c6fdbd8SKent Overstreet 	bch2_dev_attach(c, ca, dev_idx);
13541c6fdbd8SKent Overstreet 	return ret;
13551c6fdbd8SKent Overstreet err:
13561c6fdbd8SKent Overstreet 	if (ca)
13571c6fdbd8SKent Overstreet 		bch2_dev_free(ca);
1358c8b4534dSKent Overstreet 	return -BCH_ERR_ENOMEM_dev_alloc;
13591c6fdbd8SKent Overstreet }
13601c6fdbd8SKent Overstreet 
13611c6fdbd8SKent Overstreet static int __bch2_dev_attach_bdev(struct bch_dev *ca, struct bch_sb_handle *sb)
13621c6fdbd8SKent Overstreet {
13631c6fdbd8SKent Overstreet 	unsigned ret;
13641c6fdbd8SKent Overstreet 
13651c6fdbd8SKent Overstreet 	if (bch2_dev_is_online(ca)) {
13661c6fdbd8SKent Overstreet 		bch_err(ca, "already have device online in slot %u",
13671c6fdbd8SKent Overstreet 			sb->sb->dev_idx);
136878c0b75cSKent Overstreet 		return -BCH_ERR_device_already_online;
13691c6fdbd8SKent Overstreet 	}
13701c6fdbd8SKent Overstreet 
13711c6fdbd8SKent Overstreet 	if (get_capacity(sb->bdev->bd_disk) <
13721c6fdbd8SKent Overstreet 	    ca->mi.bucket_size * ca->mi.nbuckets) {
13731c6fdbd8SKent Overstreet 		bch_err(ca, "cannot online: device too small");
137478c0b75cSKent Overstreet 		return -BCH_ERR_device_size_too_small;
13751c6fdbd8SKent Overstreet 	}
13761c6fdbd8SKent Overstreet 
13771c6fdbd8SKent Overstreet 	BUG_ON(!percpu_ref_is_zero(&ca->io_ref));
13781c6fdbd8SKent Overstreet 
13791c6fdbd8SKent Overstreet 	ret = bch2_dev_journal_init(ca, sb->sb);
13801c6fdbd8SKent Overstreet 	if (ret)
13811c6fdbd8SKent Overstreet 		return ret;
13821c6fdbd8SKent Overstreet 
13831c6fdbd8SKent Overstreet 	/* Commit: */
13841c6fdbd8SKent Overstreet 	ca->disk_sb = *sb;
13851c6fdbd8SKent Overstreet 	memset(sb, 0, sizeof(*sb));
13861c6fdbd8SKent Overstreet 
1387eacb2574SKent Overstreet 	ca->dev = ca->disk_sb.bdev->bd_dev;
1388eacb2574SKent Overstreet 
13891c6fdbd8SKent Overstreet 	percpu_ref_reinit(&ca->io_ref);
13901c6fdbd8SKent Overstreet 
13911c6fdbd8SKent Overstreet 	return 0;
13921c6fdbd8SKent Overstreet }
13931c6fdbd8SKent Overstreet 
13941c6fdbd8SKent Overstreet static int bch2_dev_attach_bdev(struct bch_fs *c, struct bch_sb_handle *sb)
13951c6fdbd8SKent Overstreet {
13961c6fdbd8SKent Overstreet 	struct bch_dev *ca;
13971c6fdbd8SKent Overstreet 	int ret;
13981c6fdbd8SKent Overstreet 
13991c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
14001c6fdbd8SKent Overstreet 
14011c6fdbd8SKent Overstreet 	if (le64_to_cpu(sb->sb->seq) >
14021c6fdbd8SKent Overstreet 	    le64_to_cpu(c->disk_sb.sb->seq))
14031c6fdbd8SKent Overstreet 		bch2_sb_to_fs(c, sb->sb);
14041c6fdbd8SKent Overstreet 
14051c6fdbd8SKent Overstreet 	BUG_ON(sb->sb->dev_idx >= c->sb.nr_devices ||
14061c6fdbd8SKent Overstreet 	       !c->devs[sb->sb->dev_idx]);
14071c6fdbd8SKent Overstreet 
14081c6fdbd8SKent Overstreet 	ca = bch_dev_locked(c, sb->sb->dev_idx);
14091c6fdbd8SKent Overstreet 
14101c6fdbd8SKent Overstreet 	ret = __bch2_dev_attach_bdev(ca, sb);
14111c6fdbd8SKent Overstreet 	if (ret)
14121c6fdbd8SKent Overstreet 		return ret;
14131c6fdbd8SKent Overstreet 
14141c6fdbd8SKent Overstreet 	bch2_dev_sysfs_online(c, ca);
14151c6fdbd8SKent Overstreet 
14161f5af5fcSKent Overstreet 	struct printbuf name = PRINTBUF;
14171f5af5fcSKent Overstreet 	prt_bdevname(&name, ca->disk_sb.bdev);
14181f5af5fcSKent Overstreet 
14191c6fdbd8SKent Overstreet 	if (c->sb.nr_devices == 1)
1420e28b0359SKees Cook 		strscpy(c->name, name.buf, sizeof(c->name));
1421e28b0359SKees Cook 	strscpy(ca->name, name.buf, sizeof(ca->name));
14221f5af5fcSKent Overstreet 
14231f5af5fcSKent Overstreet 	printbuf_exit(&name);
14241c6fdbd8SKent Overstreet 
14251c6fdbd8SKent Overstreet 	rebalance_wakeup(c);
14261c6fdbd8SKent Overstreet 	return 0;
14271c6fdbd8SKent Overstreet }
14281c6fdbd8SKent Overstreet 
14291c6fdbd8SKent Overstreet /* Device management: */
14301c6fdbd8SKent Overstreet 
14311c6fdbd8SKent Overstreet /*
14321c6fdbd8SKent Overstreet  * Note: this function is also used by the error paths - when a particular
14331c6fdbd8SKent Overstreet  * device sees an error, we call it to determine whether we can just set the
14341c6fdbd8SKent Overstreet  * device RO, or - if this function returns false - we'll set the whole
14351c6fdbd8SKent Overstreet  * filesystem RO:
14361c6fdbd8SKent Overstreet  *
14371c6fdbd8SKent Overstreet  * XXX: maybe we should be more explicit about whether we're changing state
14381c6fdbd8SKent Overstreet  * because we got an error or what have you?
14391c6fdbd8SKent Overstreet  */
14401c6fdbd8SKent Overstreet bool bch2_dev_state_allowed(struct bch_fs *c, struct bch_dev *ca,
14411c6fdbd8SKent Overstreet 			    enum bch_member_state new_state, int flags)
14421c6fdbd8SKent Overstreet {
14431c6fdbd8SKent Overstreet 	struct bch_devs_mask new_online_devs;
14449fea2274SKent Overstreet 	int nr_rw = 0, required;
14451c6fdbd8SKent Overstreet 
14461c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
14471c6fdbd8SKent Overstreet 
14481c6fdbd8SKent Overstreet 	switch (new_state) {
14492436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_rw:
14501c6fdbd8SKent Overstreet 		return true;
14512436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_ro:
14522436cb9fSKent Overstreet 		if (ca->mi.state != BCH_MEMBER_STATE_rw)
14531c6fdbd8SKent Overstreet 			return true;
14541c6fdbd8SKent Overstreet 
14551c6fdbd8SKent Overstreet 		/* do we have enough devices to write to?  */
14569fea2274SKent Overstreet 		for_each_member_device(c, ca2)
14571c6fdbd8SKent Overstreet 			if (ca2 != ca)
14582436cb9fSKent Overstreet 				nr_rw += ca2->mi.state == BCH_MEMBER_STATE_rw;
14591c6fdbd8SKent Overstreet 
14601c6fdbd8SKent Overstreet 		required = max(!(flags & BCH_FORCE_IF_METADATA_DEGRADED)
14611c6fdbd8SKent Overstreet 			       ? c->opts.metadata_replicas
14624e074475SKent Overstreet 			       : metadata_replicas_required(c),
14631c6fdbd8SKent Overstreet 			       !(flags & BCH_FORCE_IF_DATA_DEGRADED)
14641c6fdbd8SKent Overstreet 			       ? c->opts.data_replicas
14654e074475SKent Overstreet 			       : data_replicas_required(c));
14661c6fdbd8SKent Overstreet 
14671c6fdbd8SKent Overstreet 		return nr_rw >= required;
14682436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_failed:
14692436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_spare:
14702436cb9fSKent Overstreet 		if (ca->mi.state != BCH_MEMBER_STATE_rw &&
14712436cb9fSKent Overstreet 		    ca->mi.state != BCH_MEMBER_STATE_ro)
14721c6fdbd8SKent Overstreet 			return true;
14731c6fdbd8SKent Overstreet 
14741c6fdbd8SKent Overstreet 		/* do we have enough devices to read from?  */
14751c6fdbd8SKent Overstreet 		new_online_devs = bch2_online_devs(c);
14761c6fdbd8SKent Overstreet 		__clear_bit(ca->dev_idx, new_online_devs.d);
14771c6fdbd8SKent Overstreet 
1478fcb3431bSKent Overstreet 		return bch2_have_enough_devs(c, new_online_devs, flags, false);
14791c6fdbd8SKent Overstreet 	default:
14801c6fdbd8SKent Overstreet 		BUG();
14811c6fdbd8SKent Overstreet 	}
14821c6fdbd8SKent Overstreet }
14831c6fdbd8SKent Overstreet 
14841c6fdbd8SKent Overstreet static bool bch2_fs_may_start(struct bch_fs *c)
14851c6fdbd8SKent Overstreet {
14861c6fdbd8SKent Overstreet 	struct bch_dev *ca;
1487fcb3431bSKent Overstreet 	unsigned i, flags = 0;
14881c6fdbd8SKent Overstreet 
1489fcb3431bSKent Overstreet 	if (c->opts.very_degraded)
1490fcb3431bSKent Overstreet 		flags |= BCH_FORCE_IF_DEGRADED|BCH_FORCE_IF_LOST;
1491fcb3431bSKent Overstreet 
1492fcb3431bSKent Overstreet 	if (c->opts.degraded)
1493fcb3431bSKent Overstreet 		flags |= BCH_FORCE_IF_DEGRADED;
1494fcb3431bSKent Overstreet 
1495fcb3431bSKent Overstreet 	if (!c->opts.degraded &&
1496fcb3431bSKent Overstreet 	    !c->opts.very_degraded) {
14971c6fdbd8SKent Overstreet 		mutex_lock(&c->sb_lock);
14981c6fdbd8SKent Overstreet 
14991c6fdbd8SKent Overstreet 		for (i = 0; i < c->disk_sb.sb->nr_devices; i++) {
15001241df58SHunter Shaffer 			if (!bch2_dev_exists(c->disk_sb.sb, i))
15011c6fdbd8SKent Overstreet 				continue;
15021c6fdbd8SKent Overstreet 
15031c6fdbd8SKent Overstreet 			ca = bch_dev_locked(c, i);
15041c6fdbd8SKent Overstreet 
15051c6fdbd8SKent Overstreet 			if (!bch2_dev_is_online(ca) &&
15062436cb9fSKent Overstreet 			    (ca->mi.state == BCH_MEMBER_STATE_rw ||
15072436cb9fSKent Overstreet 			     ca->mi.state == BCH_MEMBER_STATE_ro)) {
15081c6fdbd8SKent Overstreet 				mutex_unlock(&c->sb_lock);
15091c6fdbd8SKent Overstreet 				return false;
15101c6fdbd8SKent Overstreet 			}
15111c6fdbd8SKent Overstreet 		}
15121c6fdbd8SKent Overstreet 		mutex_unlock(&c->sb_lock);
15131c6fdbd8SKent Overstreet 	}
15141c6fdbd8SKent Overstreet 
1515fcb3431bSKent Overstreet 	return bch2_have_enough_devs(c, bch2_online_devs(c), flags, true);
15161c6fdbd8SKent Overstreet }
15171c6fdbd8SKent Overstreet 
15181c6fdbd8SKent Overstreet static void __bch2_dev_read_only(struct bch_fs *c, struct bch_dev *ca)
15191c6fdbd8SKent Overstreet {
15201c6fdbd8SKent Overstreet 	/*
15211c6fdbd8SKent Overstreet 	 * The allocator thread itself allocates btree nodes, so stop it first:
15221c6fdbd8SKent Overstreet 	 */
15231c6fdbd8SKent Overstreet 	bch2_dev_allocator_remove(c, ca);
15241c6fdbd8SKent Overstreet 	bch2_dev_journal_stop(&c->journal, ca);
15251c6fdbd8SKent Overstreet }
15261c6fdbd8SKent Overstreet 
1527f25d8215SKent Overstreet static void __bch2_dev_read_write(struct bch_fs *c, struct bch_dev *ca)
15281c6fdbd8SKent Overstreet {
15291c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
15301c6fdbd8SKent Overstreet 
15312436cb9fSKent Overstreet 	BUG_ON(ca->mi.state != BCH_MEMBER_STATE_rw);
15321c6fdbd8SKent Overstreet 
15331c6fdbd8SKent Overstreet 	bch2_dev_allocator_add(c, ca);
15341c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
15351c6fdbd8SKent Overstreet }
15361c6fdbd8SKent Overstreet 
15371c6fdbd8SKent Overstreet int __bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
15381c6fdbd8SKent Overstreet 			 enum bch_member_state new_state, int flags)
15391c6fdbd8SKent Overstreet {
15403f7b9713SHunter Shaffer 	struct bch_member *m;
15411c6fdbd8SKent Overstreet 	int ret = 0;
15421c6fdbd8SKent Overstreet 
15431c6fdbd8SKent Overstreet 	if (ca->mi.state == new_state)
15441c6fdbd8SKent Overstreet 		return 0;
15451c6fdbd8SKent Overstreet 
15461c6fdbd8SKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, new_state, flags))
154778c0b75cSKent Overstreet 		return -BCH_ERR_device_state_not_allowed;
15481c6fdbd8SKent Overstreet 
15492436cb9fSKent Overstreet 	if (new_state != BCH_MEMBER_STATE_rw)
15501c6fdbd8SKent Overstreet 		__bch2_dev_read_only(c, ca);
15511c6fdbd8SKent Overstreet 
15522436cb9fSKent Overstreet 	bch_notice(ca, "%s", bch2_member_states[new_state]);
15531c6fdbd8SKent Overstreet 
15541c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
15553f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
15563f7b9713SHunter Shaffer 	SET_BCH_MEMBER_STATE(m, new_state);
15571c6fdbd8SKent Overstreet 	bch2_write_super(c);
15581c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
15591c6fdbd8SKent Overstreet 
1560e2b60560SKent Overstreet 	if (new_state == BCH_MEMBER_STATE_rw)
1561f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
15621c6fdbd8SKent Overstreet 
15631c6fdbd8SKent Overstreet 	rebalance_wakeup(c);
15641c6fdbd8SKent Overstreet 
15651c6fdbd8SKent Overstreet 	return ret;
15661c6fdbd8SKent Overstreet }
15671c6fdbd8SKent Overstreet 
15681c6fdbd8SKent Overstreet int bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
15691c6fdbd8SKent Overstreet 		       enum bch_member_state new_state, int flags)
15701c6fdbd8SKent Overstreet {
15711c6fdbd8SKent Overstreet 	int ret;
15721c6fdbd8SKent Overstreet 
15731ada1606SKent Overstreet 	down_write(&c->state_lock);
15741c6fdbd8SKent Overstreet 	ret = __bch2_dev_set_state(c, ca, new_state, flags);
15751ada1606SKent Overstreet 	up_write(&c->state_lock);
15761c6fdbd8SKent Overstreet 
15771c6fdbd8SKent Overstreet 	return ret;
15781c6fdbd8SKent Overstreet }
15791c6fdbd8SKent Overstreet 
15801c6fdbd8SKent Overstreet /* Device add/removal: */
15811c6fdbd8SKent Overstreet 
1582c0ebe3e4SKent Overstreet static int bch2_dev_remove_alloc(struct bch_fs *c, struct bch_dev *ca)
15835d20ba48SKent Overstreet {
1584c6b2826cSKent Overstreet 	struct bpos start	= POS(ca->dev_idx, 0);
1585c6b2826cSKent Overstreet 	struct bpos end		= POS(ca->dev_idx, U64_MAX);
15865d20ba48SKent Overstreet 	int ret;
15875d20ba48SKent Overstreet 
1588a9c0a4cbSKent Overstreet 	/*
1589a9c0a4cbSKent Overstreet 	 * We clear the LRU and need_discard btrees first so that we don't race
1590a9c0a4cbSKent Overstreet 	 * with bch2_do_invalidates() and bch2_do_discards()
1591a9c0a4cbSKent Overstreet 	 */
1592a9c0a4cbSKent Overstreet 	ret =   bch2_btree_delete_range(c, BTREE_ID_lru, start, end,
1593a9c0a4cbSKent Overstreet 					BTREE_TRIGGER_NORUN, NULL) ?:
1594a9c0a4cbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_need_discard, start, end,
1595c6b2826cSKent Overstreet 					BTREE_TRIGGER_NORUN, NULL) ?:
1596c6b2826cSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_freespace, start, end,
1597c6b2826cSKent Overstreet 					BTREE_TRIGGER_NORUN, NULL) ?:
1598a8c752bbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_backpointers, start, end,
1599a8c752bbSKent Overstreet 					BTREE_TRIGGER_NORUN, NULL) ?:
1600a9c0a4cbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_alloc, start, end,
160102d51bb9SBrian Foster 					BTREE_TRIGGER_NORUN, NULL) ?:
160202d51bb9SBrian Foster 		bch2_btree_delete_range(c, BTREE_ID_bucket_gens, start, end,
1603c6b2826cSKent Overstreet 					BTREE_TRIGGER_NORUN, NULL);
1604e46c181aSKent Overstreet 	bch_err_msg(c, ret, "removing dev alloc info");
1605c6b2826cSKent Overstreet 	return ret;
16065d20ba48SKent Overstreet }
16075d20ba48SKent Overstreet 
16081c6fdbd8SKent Overstreet int bch2_dev_remove(struct bch_fs *c, struct bch_dev *ca, int flags)
16091c6fdbd8SKent Overstreet {
16103f7b9713SHunter Shaffer 	struct bch_member *m;
16111c6fdbd8SKent Overstreet 	unsigned dev_idx = ca->dev_idx, data;
161278c0b75cSKent Overstreet 	int ret;
16131c6fdbd8SKent Overstreet 
16141ada1606SKent Overstreet 	down_write(&c->state_lock);
16151c6fdbd8SKent Overstreet 
161631ba2cd3SKent Overstreet 	/*
161731ba2cd3SKent Overstreet 	 * We consume a reference to ca->ref, regardless of whether we succeed
161831ba2cd3SKent Overstreet 	 * or fail:
161931ba2cd3SKent Overstreet 	 */
162031ba2cd3SKent Overstreet 	percpu_ref_put(&ca->ref);
16211c6fdbd8SKent Overstreet 
16222436cb9fSKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
16231c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot remove without losing data");
162478c0b75cSKent Overstreet 		ret = -BCH_ERR_device_state_not_allowed;
16251c6fdbd8SKent Overstreet 		goto err;
16261c6fdbd8SKent Overstreet 	}
16271c6fdbd8SKent Overstreet 
16281c6fdbd8SKent Overstreet 	__bch2_dev_read_only(c, ca);
16291c6fdbd8SKent Overstreet 
16301c6fdbd8SKent Overstreet 	ret = bch2_dev_data_drop(c, ca->dev_idx, flags);
1631130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_dev_data_drop()");
1632cf904c8dSKent Overstreet 	if (ret)
16331c6fdbd8SKent Overstreet 		goto err;
16341c6fdbd8SKent Overstreet 
16355d20ba48SKent Overstreet 	ret = bch2_dev_remove_alloc(c, ca);
1636130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_dev_remove_alloc()");
1637cf904c8dSKent Overstreet 	if (ret)
16381c6fdbd8SKent Overstreet 		goto err;
16391c6fdbd8SKent Overstreet 
1640a9c0a4cbSKent Overstreet 	ret = bch2_journal_flush_device_pins(&c->journal, ca->dev_idx);
1641130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_journal_flush_device_pins()");
1642cf904c8dSKent Overstreet 	if (ret)
1643a9c0a4cbSKent Overstreet 		goto err;
1644a9c0a4cbSKent Overstreet 
1645a9c0a4cbSKent Overstreet 	ret = bch2_journal_flush(&c->journal);
1646130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_journal_flush()");
1647cf904c8dSKent Overstreet 	if (ret)
16481c6fdbd8SKent Overstreet 		goto err;
16491c6fdbd8SKent Overstreet 
165031ba2cd3SKent Overstreet 	ret = bch2_replicas_gc2(c);
1651130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_replicas_gc2()");
1652cf904c8dSKent Overstreet 	if (ret)
165331ba2cd3SKent Overstreet 		goto err;
165431ba2cd3SKent Overstreet 
165531ba2cd3SKent Overstreet 	data = bch2_dev_has_data(c, ca);
165631ba2cd3SKent Overstreet 	if (data) {
1657fa8e94faSKent Overstreet 		struct printbuf data_has = PRINTBUF;
165831ba2cd3SKent Overstreet 
1659e58f963cSKent Overstreet 		prt_bitflags(&data_has, __bch2_data_types, data);
1660fa8e94faSKent Overstreet 		bch_err(ca, "Remove failed, still has data (%s)", data_has.buf);
1661fa8e94faSKent Overstreet 		printbuf_exit(&data_has);
166231ba2cd3SKent Overstreet 		ret = -EBUSY;
166331ba2cd3SKent Overstreet 		goto err;
166431ba2cd3SKent Overstreet 	}
166531ba2cd3SKent Overstreet 
16661c6fdbd8SKent Overstreet 	__bch2_dev_offline(c, ca);
16671c6fdbd8SKent Overstreet 
16681c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
16691c6fdbd8SKent Overstreet 	rcu_assign_pointer(c->devs[ca->dev_idx], NULL);
16701c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
16711c6fdbd8SKent Overstreet 
16721c6fdbd8SKent Overstreet 	percpu_ref_kill(&ca->ref);
16731c6fdbd8SKent Overstreet 	wait_for_completion(&ca->ref_completion);
16741c6fdbd8SKent Overstreet 
16751c6fdbd8SKent Overstreet 	bch2_dev_free(ca);
16761c6fdbd8SKent Overstreet 
16771c6fdbd8SKent Overstreet 	/*
1678bc652905SBrian Foster 	 * At this point the device object has been removed in-core, but the
1679bc652905SBrian Foster 	 * on-disk journal might still refer to the device index via sb device
1680bc652905SBrian Foster 	 * usage entries. Recovery fails if it sees usage information for an
1681bc652905SBrian Foster 	 * invalid device. Flush journal pins to push the back of the journal
1682bc652905SBrian Foster 	 * past now invalid device index references before we update the
1683bc652905SBrian Foster 	 * superblock, but after the device object has been removed so any
1684bc652905SBrian Foster 	 * further journal writes elide usage info for the device.
1685bc652905SBrian Foster 	 */
1686bc652905SBrian Foster 	bch2_journal_flush_all_pins(&c->journal);
1687bc652905SBrian Foster 
1688bc652905SBrian Foster 	/*
16891c6fdbd8SKent Overstreet 	 * Free this device's slot in the bch_member array - all pointers to
16901c6fdbd8SKent Overstreet 	 * this device must be gone:
16911c6fdbd8SKent Overstreet 	 */
16921c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
16933f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
16943f7b9713SHunter Shaffer 	memset(&m->uuid, 0, sizeof(m->uuid));
16951c6fdbd8SKent Overstreet 
16961c6fdbd8SKent Overstreet 	bch2_write_super(c);
16971c6fdbd8SKent Overstreet 
16981c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
16991ada1606SKent Overstreet 	up_write(&c->state_lock);
1700180fb49dSKent Overstreet 
1701180fb49dSKent Overstreet 	bch2_dev_usage_journal_reserve(c);
17021c6fdbd8SKent Overstreet 	return 0;
17031c6fdbd8SKent Overstreet err:
17042436cb9fSKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1705d3bb629dSKent Overstreet 	    !percpu_ref_is_zero(&ca->io_ref))
17061c6fdbd8SKent Overstreet 		__bch2_dev_read_write(c, ca);
17071ada1606SKent Overstreet 	up_write(&c->state_lock);
17081c6fdbd8SKent Overstreet 	return ret;
17091c6fdbd8SKent Overstreet }
17101c6fdbd8SKent Overstreet 
17111c6fdbd8SKent Overstreet /* Add new device to running filesystem: */
17121c6fdbd8SKent Overstreet int bch2_dev_add(struct bch_fs *c, const char *path)
17131c6fdbd8SKent Overstreet {
17141c6fdbd8SKent Overstreet 	struct bch_opts opts = bch2_opts_empty();
17151c6fdbd8SKent Overstreet 	struct bch_sb_handle sb;
17161c6fdbd8SKent Overstreet 	struct bch_dev *ca = NULL;
17173f7b9713SHunter Shaffer 	struct bch_sb_field_members_v2 *mi;
17181c6fdbd8SKent Overstreet 	struct bch_member dev_mi;
17191c6fdbd8SKent Overstreet 	unsigned dev_idx, nr_devices, u64s;
1720fa8e94faSKent Overstreet 	struct printbuf errbuf = PRINTBUF;
172102afcb8cSKent Overstreet 	struct printbuf label = PRINTBUF;
17221c6fdbd8SKent Overstreet 	int ret;
17231c6fdbd8SKent Overstreet 
17241c6fdbd8SKent Overstreet 	ret = bch2_read_super(path, &opts, &sb);
1725e46c181aSKent Overstreet 	bch_err_msg(c, ret, "reading super");
1726cf904c8dSKent Overstreet 	if (ret)
1727efe68e1dSKent Overstreet 		goto err;
17281c6fdbd8SKent Overstreet 
17291241df58SHunter Shaffer 	dev_mi = bch2_sb_member_get(sb.sb, sb.sb->dev_idx);
17301c6fdbd8SKent Overstreet 
173102afcb8cSKent Overstreet 	if (BCH_MEMBER_GROUP(&dev_mi)) {
1732e677179bSKent Overstreet 		bch2_disk_path_to_text_sb(&label, sb.sb, BCH_MEMBER_GROUP(&dev_mi) - 1);
173302afcb8cSKent Overstreet 		if (label.allocation_failure) {
173402afcb8cSKent Overstreet 			ret = -ENOMEM;
173502afcb8cSKent Overstreet 			goto err;
173602afcb8cSKent Overstreet 		}
173702afcb8cSKent Overstreet 	}
173802afcb8cSKent Overstreet 
173978c0b75cSKent Overstreet 	ret = bch2_dev_may_add(sb.sb, c);
1740cf904c8dSKent Overstreet 	if (ret)
1741efe68e1dSKent Overstreet 		goto err;
17421c6fdbd8SKent Overstreet 
17431c6fdbd8SKent Overstreet 	ca = __bch2_dev_alloc(c, &dev_mi);
17441c6fdbd8SKent Overstreet 	if (!ca) {
1745efe68e1dSKent Overstreet 		ret = -ENOMEM;
1746efe68e1dSKent Overstreet 		goto err;
17471c6fdbd8SKent Overstreet 	}
17481c6fdbd8SKent Overstreet 
1749822835ffSKent Overstreet 	bch2_dev_usage_init(ca);
1750822835ffSKent Overstreet 
17511c6fdbd8SKent Overstreet 	ret = __bch2_dev_attach_bdev(ca, &sb);
175271933fb6SChristophe JAILLET 	if (ret)
1753efe68e1dSKent Overstreet 		goto err;
17541c6fdbd8SKent Overstreet 
17551c6fdbd8SKent Overstreet 	ret = bch2_dev_journal_alloc(ca);
1756e46c181aSKent Overstreet 	bch_err_msg(c, ret, "allocating journal");
1757cf904c8dSKent Overstreet 	if (ret)
17581c6fdbd8SKent Overstreet 		goto err;
17591c6fdbd8SKent Overstreet 
17601ada1606SKent Overstreet 	down_write(&c->state_lock);
17611c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
17621c6fdbd8SKent Overstreet 
17631c6fdbd8SKent Overstreet 	ret = bch2_sb_from_fs(c, ca);
1764e46c181aSKent Overstreet 	bch_err_msg(c, ret, "setting up new superblock");
1765cf904c8dSKent Overstreet 	if (ret)
17661c6fdbd8SKent Overstreet 		goto err_unlock;
17671c6fdbd8SKent Overstreet 
17681c6fdbd8SKent Overstreet 	if (dynamic_fault("bcachefs:add:no_slot"))
17691c6fdbd8SKent Overstreet 		goto no_slot;
17701c6fdbd8SKent Overstreet 
17711c6fdbd8SKent Overstreet 	for (dev_idx = 0; dev_idx < BCH_SB_MEMBERS_MAX; dev_idx++)
17721241df58SHunter Shaffer 		if (!bch2_dev_exists(c->disk_sb.sb, dev_idx))
17731c6fdbd8SKent Overstreet 			goto have_slot;
17741c6fdbd8SKent Overstreet no_slot:
1775098ef98dSKent Overstreet 	ret = -BCH_ERR_ENOSPC_sb_members;
1776e46c181aSKent Overstreet 	bch_err_msg(c, ret, "setting up new superblock");
17771c6fdbd8SKent Overstreet 	goto err_unlock;
17781c6fdbd8SKent Overstreet 
17791c6fdbd8SKent Overstreet have_slot:
17801c6fdbd8SKent Overstreet 	nr_devices = max_t(unsigned, dev_idx + 1, c->sb.nr_devices);
1781e8484348SKent Overstreet 
1782e8484348SKent Overstreet 	mi = bch2_sb_field_get(c->disk_sb.sb, members_v2);
17833f7b9713SHunter Shaffer 	u64s = DIV_ROUND_UP(sizeof(struct bch_sb_field_members_v2) +
17843f7b9713SHunter Shaffer 			    le16_to_cpu(mi->member_bytes) * nr_devices, sizeof(u64));
17851c6fdbd8SKent Overstreet 
17864637429eSKent Overstreet 	mi = bch2_sb_field_resize(&c->disk_sb, members_v2, u64s);
1787e8536925SKent Overstreet 	if (!mi) {
1788098ef98dSKent Overstreet 		ret = -BCH_ERR_ENOSPC_sb_members;
1789e46c181aSKent Overstreet 		bch_err_msg(c, ret, "setting up new superblock");
17901c6fdbd8SKent Overstreet 		goto err_unlock;
1791e8536925SKent Overstreet 	}
17923f7b9713SHunter Shaffer 	struct bch_member *m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
17931c6fdbd8SKent Overstreet 
17941c6fdbd8SKent Overstreet 	/* success: */
17951c6fdbd8SKent Overstreet 
17963f7b9713SHunter Shaffer 	*m = dev_mi;
17973f7b9713SHunter Shaffer 	m->last_mount = cpu_to_le64(ktime_get_real_seconds());
17981c6fdbd8SKent Overstreet 	c->disk_sb.sb->nr_devices	= nr_devices;
17991c6fdbd8SKent Overstreet 
18001c6fdbd8SKent Overstreet 	ca->disk_sb.sb->dev_idx	= dev_idx;
18011c6fdbd8SKent Overstreet 	bch2_dev_attach(c, ca, dev_idx);
18021c6fdbd8SKent Overstreet 
180302afcb8cSKent Overstreet 	if (BCH_MEMBER_GROUP(&dev_mi)) {
180402afcb8cSKent Overstreet 		ret = __bch2_dev_group_set(c, ca, label.buf);
1805e46c181aSKent Overstreet 		bch_err_msg(c, ret, "creating new label");
1806cf904c8dSKent Overstreet 		if (ret)
180702afcb8cSKent Overstreet 			goto err_unlock;
180802afcb8cSKent Overstreet 	}
180902afcb8cSKent Overstreet 
18101c6fdbd8SKent Overstreet 	bch2_write_super(c);
18111c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
18121c6fdbd8SKent Overstreet 
1813180fb49dSKent Overstreet 	bch2_dev_usage_journal_reserve(c);
1814180fb49dSKent Overstreet 
1815d62ab355SKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca);
1816bbe682c7SKent Overstreet 	bch_err_msg(ca, ret, "marking new superblock");
1817cf904c8dSKent Overstreet 	if (ret)
1818bfcf840dSKent Overstreet 		goto err_late;
18198d6b6222SKent Overstreet 
1820c6b2826cSKent Overstreet 	ret = bch2_fs_freespace_init(c);
1821bbe682c7SKent Overstreet 	bch_err_msg(ca, ret, "initializing free space");
1822cf904c8dSKent Overstreet 	if (ret)
1823c6b2826cSKent Overstreet 		goto err_late;
1824c6b2826cSKent Overstreet 
182509943313SKent Overstreet 	ca->new_fs_bucket_idx = 0;
182609943313SKent Overstreet 
1827f25d8215SKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw)
1828f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
18291c6fdbd8SKent Overstreet 
18301ada1606SKent Overstreet 	up_write(&c->state_lock);
18311c6fdbd8SKent Overstreet 	return 0;
18321c6fdbd8SKent Overstreet 
18331c6fdbd8SKent Overstreet err_unlock:
18341c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
18351ada1606SKent Overstreet 	up_write(&c->state_lock);
18361c6fdbd8SKent Overstreet err:
18371c6fdbd8SKent Overstreet 	if (ca)
18381c6fdbd8SKent Overstreet 		bch2_dev_free(ca);
18391c6fdbd8SKent Overstreet 	bch2_free_super(&sb);
184002afcb8cSKent Overstreet 	printbuf_exit(&label);
1841fa8e94faSKent Overstreet 	printbuf_exit(&errbuf);
1842cf904c8dSKent Overstreet 	bch_err_fn(c, ret);
18431c6fdbd8SKent Overstreet 	return ret;
18441c6fdbd8SKent Overstreet err_late:
1845bfcf840dSKent Overstreet 	up_write(&c->state_lock);
1846efe68e1dSKent Overstreet 	ca = NULL;
1847efe68e1dSKent Overstreet 	goto err;
18481c6fdbd8SKent Overstreet }
18491c6fdbd8SKent Overstreet 
18501c6fdbd8SKent Overstreet /* Hot add existing device to running filesystem: */
18511c6fdbd8SKent Overstreet int bch2_dev_online(struct bch_fs *c, const char *path)
18521c6fdbd8SKent Overstreet {
18531c6fdbd8SKent Overstreet 	struct bch_opts opts = bch2_opts_empty();
18541c6fdbd8SKent Overstreet 	struct bch_sb_handle sb = { NULL };
18551c6fdbd8SKent Overstreet 	struct bch_dev *ca;
18561c6fdbd8SKent Overstreet 	unsigned dev_idx;
18571c6fdbd8SKent Overstreet 	int ret;
18581c6fdbd8SKent Overstreet 
18591ada1606SKent Overstreet 	down_write(&c->state_lock);
18601c6fdbd8SKent Overstreet 
18611c6fdbd8SKent Overstreet 	ret = bch2_read_super(path, &opts, &sb);
18621c6fdbd8SKent Overstreet 	if (ret) {
18631ada1606SKent Overstreet 		up_write(&c->state_lock);
18641c6fdbd8SKent Overstreet 		return ret;
18651c6fdbd8SKent Overstreet 	}
18661c6fdbd8SKent Overstreet 
18671c6fdbd8SKent Overstreet 	dev_idx = sb.sb->dev_idx;
18681c6fdbd8SKent Overstreet 
18692f300f09SKent Overstreet 	ret = bch2_dev_in_fs(&c->disk_sb, &sb, &c->opts);
1870e46c181aSKent Overstreet 	bch_err_msg(c, ret, "bringing %s online", path);
1871cf904c8dSKent Overstreet 	if (ret)
18721c6fdbd8SKent Overstreet 		goto err;
18731c6fdbd8SKent Overstreet 
1874e2b60560SKent Overstreet 	ret = bch2_dev_attach_bdev(c, &sb);
1875e2b60560SKent Overstreet 	if (ret)
1876e2b60560SKent Overstreet 		goto err;
1877e2b60560SKent Overstreet 
18781c6fdbd8SKent Overstreet 	ca = bch_dev_locked(c, dev_idx);
1879bfcf840dSKent Overstreet 
1880e2b60560SKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca);
1881e46c181aSKent Overstreet 	bch_err_msg(c, ret, "bringing %s online: error from bch2_trans_mark_dev_sb", path);
1882cf904c8dSKent Overstreet 	if (ret)
1883bfcf840dSKent Overstreet 		goto err;
1884bfcf840dSKent Overstreet 
1885f25d8215SKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw)
1886f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
18871c6fdbd8SKent Overstreet 
1888bbe682c7SKent Overstreet 	if (!ca->mi.freespace_initialized) {
1889bbe682c7SKent Overstreet 		ret = bch2_dev_freespace_init(c, ca, 0, ca->mi.nbuckets);
1890bbe682c7SKent Overstreet 		bch_err_msg(ca, ret, "initializing free space");
1891bbe682c7SKent Overstreet 		if (ret)
1892bbe682c7SKent Overstreet 			goto err;
1893bbe682c7SKent Overstreet 	}
1894bbe682c7SKent Overstreet 
1895bbe682c7SKent Overstreet 	if (!ca->journal.nr) {
1896bbe682c7SKent Overstreet 		ret = bch2_dev_journal_alloc(ca);
1897bbe682c7SKent Overstreet 		bch_err_msg(ca, ret, "allocating journal");
1898bbe682c7SKent Overstreet 		if (ret)
1899bbe682c7SKent Overstreet 			goto err;
1900bbe682c7SKent Overstreet 	}
1901bbe682c7SKent Overstreet 
19021c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
1903bbe682c7SKent Overstreet 	bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount =
1904a420eea6STim Schlueter 		cpu_to_le64(ktime_get_real_seconds());
19051c6fdbd8SKent Overstreet 	bch2_write_super(c);
19061c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
19071c6fdbd8SKent Overstreet 
19081ada1606SKent Overstreet 	up_write(&c->state_lock);
19091c6fdbd8SKent Overstreet 	return 0;
19101c6fdbd8SKent Overstreet err:
19111ada1606SKent Overstreet 	up_write(&c->state_lock);
19121c6fdbd8SKent Overstreet 	bch2_free_super(&sb);
191378c0b75cSKent Overstreet 	return ret;
19141c6fdbd8SKent Overstreet }
19151c6fdbd8SKent Overstreet 
19161c6fdbd8SKent Overstreet int bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca, int flags)
19171c6fdbd8SKent Overstreet {
19181ada1606SKent Overstreet 	down_write(&c->state_lock);
19191c6fdbd8SKent Overstreet 
19201c6fdbd8SKent Overstreet 	if (!bch2_dev_is_online(ca)) {
19211c6fdbd8SKent Overstreet 		bch_err(ca, "Already offline");
19221ada1606SKent Overstreet 		up_write(&c->state_lock);
19231c6fdbd8SKent Overstreet 		return 0;
19241c6fdbd8SKent Overstreet 	}
19251c6fdbd8SKent Overstreet 
19262436cb9fSKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
19271c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot offline required disk");
19281ada1606SKent Overstreet 		up_write(&c->state_lock);
192978c0b75cSKent Overstreet 		return -BCH_ERR_device_state_not_allowed;
19301c6fdbd8SKent Overstreet 	}
19311c6fdbd8SKent Overstreet 
19321c6fdbd8SKent Overstreet 	__bch2_dev_offline(c, ca);
19331c6fdbd8SKent Overstreet 
19341ada1606SKent Overstreet 	up_write(&c->state_lock);
19351c6fdbd8SKent Overstreet 	return 0;
19361c6fdbd8SKent Overstreet }
19371c6fdbd8SKent Overstreet 
19381c6fdbd8SKent Overstreet int bch2_dev_resize(struct bch_fs *c, struct bch_dev *ca, u64 nbuckets)
19391c6fdbd8SKent Overstreet {
19403f7b9713SHunter Shaffer 	struct bch_member *m;
194169d1f052SKent Overstreet 	u64 old_nbuckets;
19421c6fdbd8SKent Overstreet 	int ret = 0;
19431c6fdbd8SKent Overstreet 
19441ada1606SKent Overstreet 	down_write(&c->state_lock);
194569d1f052SKent Overstreet 	old_nbuckets = ca->mi.nbuckets;
19461c6fdbd8SKent Overstreet 
19471c6fdbd8SKent Overstreet 	if (nbuckets < ca->mi.nbuckets) {
19481c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot shrink yet");
19491c6fdbd8SKent Overstreet 		ret = -EINVAL;
19501c6fdbd8SKent Overstreet 		goto err;
19511c6fdbd8SKent Overstreet 	}
19521c6fdbd8SKent Overstreet 
19531c6fdbd8SKent Overstreet 	if (bch2_dev_is_online(ca) &&
19541c6fdbd8SKent Overstreet 	    get_capacity(ca->disk_sb.bdev->bd_disk) <
19551c6fdbd8SKent Overstreet 	    ca->mi.bucket_size * nbuckets) {
19561c6fdbd8SKent Overstreet 		bch_err(ca, "New size larger than device");
195778c0b75cSKent Overstreet 		ret = -BCH_ERR_device_size_too_small;
19581c6fdbd8SKent Overstreet 		goto err;
19591c6fdbd8SKent Overstreet 	}
19601c6fdbd8SKent Overstreet 
19611c6fdbd8SKent Overstreet 	ret = bch2_dev_buckets_resize(c, ca, nbuckets);
1962e46c181aSKent Overstreet 	bch_err_msg(ca, ret, "resizing buckets");
1963cf904c8dSKent Overstreet 	if (ret)
19641c6fdbd8SKent Overstreet 		goto err;
19651c6fdbd8SKent Overstreet 
1966224ec3e6SKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca);
19673e3e02e6SKent Overstreet 	if (ret)
1968224ec3e6SKent Overstreet 		goto err;
1969224ec3e6SKent Overstreet 
19701c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
19713f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
19723f7b9713SHunter Shaffer 	m->nbuckets = cpu_to_le64(nbuckets);
19731c6fdbd8SKent Overstreet 
19741c6fdbd8SKent Overstreet 	bch2_write_super(c);
19751c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
19761c6fdbd8SKent Overstreet 
197769d1f052SKent Overstreet 	if (ca->mi.freespace_initialized) {
197869d1f052SKent Overstreet 		ret = bch2_dev_freespace_init(c, ca, old_nbuckets, nbuckets);
197969d1f052SKent Overstreet 		if (ret)
198069d1f052SKent Overstreet 			goto err;
198169d1f052SKent Overstreet 
198269d1f052SKent Overstreet 		/*
198369d1f052SKent Overstreet 		 * XXX: this is all wrong transactionally - we'll be able to do
198469d1f052SKent Overstreet 		 * this correctly after the disk space accounting rewrite
198569d1f052SKent Overstreet 		 */
198669d1f052SKent Overstreet 		ca->usage_base->d[BCH_DATA_free].buckets += nbuckets - old_nbuckets;
198769d1f052SKent Overstreet 	}
198869d1f052SKent Overstreet 
19891c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
19901c6fdbd8SKent Overstreet err:
19911ada1606SKent Overstreet 	up_write(&c->state_lock);
19921c6fdbd8SKent Overstreet 	return ret;
19931c6fdbd8SKent Overstreet }
19941c6fdbd8SKent Overstreet 
19951c6fdbd8SKent Overstreet /* return with ref on ca->ref: */
1996bf7e49a4SKent Overstreet struct bch_dev *bch2_dev_lookup(struct bch_fs *c, const char *name)
19971c6fdbd8SKent Overstreet {
19983a402c8dSKent Overstreet 	rcu_read_lock();
199941b84fb4SKent Overstreet 	for_each_member_device_rcu(c, ca, NULL)
200041b84fb4SKent Overstreet 		if (!strcmp(name, ca->name)) {
20013a402c8dSKent Overstreet 			rcu_read_unlock();
20021c6fdbd8SKent Overstreet 			return ca;
20031c6fdbd8SKent Overstreet 		}
200441b84fb4SKent Overstreet 	rcu_read_unlock();
200541b84fb4SKent Overstreet 	return ERR_PTR(-BCH_ERR_ENOENT_dev_not_found);
200641b84fb4SKent Overstreet }
20071c6fdbd8SKent Overstreet 
20081c6fdbd8SKent Overstreet /* Filesystem open: */
20091c6fdbd8SKent Overstreet 
20100d529663SKent Overstreet static inline int sb_cmp(struct bch_sb *l, struct bch_sb *r)
20110d529663SKent Overstreet {
20120d529663SKent Overstreet 	return  cmp_int(le64_to_cpu(l->seq), le64_to_cpu(r->seq)) ?:
20130d529663SKent Overstreet 		cmp_int(le64_to_cpu(l->write_time), le64_to_cpu(r->write_time));
20140d529663SKent Overstreet }
20150d529663SKent Overstreet 
20161c6fdbd8SKent Overstreet struct bch_fs *bch2_fs_open(char * const *devices, unsigned nr_devices,
20171c6fdbd8SKent Overstreet 			    struct bch_opts opts)
20181c6fdbd8SKent Overstreet {
2019d4c8bb69SKent Overstreet 	DARRAY(struct bch_sb_handle) sbs = { 0 };
20201c6fdbd8SKent Overstreet 	struct bch_fs *c = NULL;
2021defd9e39SKent Overstreet 	struct bch_sb_handle *best = NULL;
2022fa8e94faSKent Overstreet 	struct printbuf errbuf = PRINTBUF;
2023e2b60560SKent Overstreet 	int ret = 0;
20241c6fdbd8SKent Overstreet 
2025efe68e1dSKent Overstreet 	if (!try_module_get(THIS_MODULE))
2026efe68e1dSKent Overstreet 		return ERR_PTR(-ENODEV);
2027efe68e1dSKent Overstreet 
20281c6fdbd8SKent Overstreet 	if (!nr_devices) {
2029efe68e1dSKent Overstreet 		ret = -EINVAL;
2030efe68e1dSKent Overstreet 		goto err;
20311c6fdbd8SKent Overstreet 	}
20321c6fdbd8SKent Overstreet 
2033d4c8bb69SKent Overstreet 	ret = darray_make_room(&sbs, nr_devices);
20341c6fdbd8SKent Overstreet 	if (ret)
20351c6fdbd8SKent Overstreet 		goto err;
20361c6fdbd8SKent Overstreet 
2037d4c8bb69SKent Overstreet 	for (unsigned i = 0; i < nr_devices; i++) {
2038d4c8bb69SKent Overstreet 		struct bch_sb_handle sb = { NULL };
2039d4c8bb69SKent Overstreet 
2040d4c8bb69SKent Overstreet 		ret = bch2_read_super(devices[i], &opts, &sb);
2041d4c8bb69SKent Overstreet 		if (ret)
2042d4c8bb69SKent Overstreet 			goto err;
2043d4c8bb69SKent Overstreet 
2044d4c8bb69SKent Overstreet 		BUG_ON(darray_push(&sbs, sb));
20451c6fdbd8SKent Overstreet 	}
20461c6fdbd8SKent Overstreet 
204762719cf3SKent Overstreet 	if (opts.nochanges && !opts.read_only) {
204862719cf3SKent Overstreet 		ret = -BCH_ERR_erofs_nochanges;
204962719cf3SKent Overstreet 		goto err_print;
205062719cf3SKent Overstreet 	}
205162719cf3SKent Overstreet 
2052d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb)
20530d529663SKent Overstreet 		if (!best || sb_cmp(sb->sb, best->sb) > 0)
2054d4c8bb69SKent Overstreet 			best = sb;
20551c6fdbd8SKent Overstreet 
2056d4c8bb69SKent Overstreet 	darray_for_each_reverse(sbs, sb) {
20572f300f09SKent Overstreet 		ret = bch2_dev_in_fs(best, sb, &opts);
20580d529663SKent Overstreet 
20590d529663SKent Overstreet 		if (ret == -BCH_ERR_device_has_been_removed ||
20600d529663SKent Overstreet 		    ret == -BCH_ERR_device_splitbrain) {
2061d4c8bb69SKent Overstreet 			bch2_free_super(sb);
2062d4c8bb69SKent Overstreet 			darray_remove_item(&sbs, sb);
2063d4c8bb69SKent Overstreet 			best -= best > sb;
20640d529663SKent Overstreet 			ret = 0;
2065625104eaSKent Overstreet 			continue;
2066625104eaSKent Overstreet 		}
2067625104eaSKent Overstreet 
206878c0b75cSKent Overstreet 		if (ret)
20691c6fdbd8SKent Overstreet 			goto err_print;
20701c6fdbd8SKent Overstreet 	}
20711c6fdbd8SKent Overstreet 
2072d4c8bb69SKent Overstreet 	c = bch2_fs_alloc(best->sb, opts);
2073d4c8bb69SKent Overstreet 	ret = PTR_ERR_OR_ZERO(c);
2074d4c8bb69SKent Overstreet 	if (ret)
20751c6fdbd8SKent Overstreet 		goto err;
20761c6fdbd8SKent Overstreet 
20771ada1606SKent Overstreet 	down_write(&c->state_lock);
2078d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb) {
2079d4c8bb69SKent Overstreet 		ret = bch2_dev_attach_bdev(c, sb);
2080e2b60560SKent Overstreet 		if (ret) {
20811ada1606SKent Overstreet 			up_write(&c->state_lock);
2082e2b60560SKent Overstreet 			goto err;
2083e2b60560SKent Overstreet 		}
20841c6fdbd8SKent Overstreet 	}
20851ada1606SKent Overstreet 	up_write(&c->state_lock);
20861c6fdbd8SKent Overstreet 
208778c0b75cSKent Overstreet 	if (!bch2_fs_may_start(c)) {
208878c0b75cSKent Overstreet 		ret = -BCH_ERR_insufficient_devices_to_start;
20891c6fdbd8SKent Overstreet 		goto err_print;
209078c0b75cSKent Overstreet 	}
20911c6fdbd8SKent Overstreet 
20921c6fdbd8SKent Overstreet 	if (!c->opts.nostart) {
2093619f5beeSKent Overstreet 		ret = bch2_fs_start(c);
2094619f5beeSKent Overstreet 		if (ret)
2095619f5beeSKent Overstreet 			goto err;
20961c6fdbd8SKent Overstreet 	}
20971c6fdbd8SKent Overstreet out:
2098d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb)
2099d4c8bb69SKent Overstreet 		bch2_free_super(sb);
2100d4c8bb69SKent Overstreet 	darray_exit(&sbs);
2101fa8e94faSKent Overstreet 	printbuf_exit(&errbuf);
21021c6fdbd8SKent Overstreet 	module_put(THIS_MODULE);
21031c6fdbd8SKent Overstreet 	return c;
21041c6fdbd8SKent Overstreet err_print:
21051c6fdbd8SKent Overstreet 	pr_err("bch_fs_open err opening %s: %s",
210678c0b75cSKent Overstreet 	       devices[0], bch2_err_str(ret));
21071c6fdbd8SKent Overstreet err:
21087be9ab63SChris Webb 	if (!IS_ERR_OR_NULL(c))
21091c6fdbd8SKent Overstreet 		bch2_fs_stop(c);
21101c6fdbd8SKent Overstreet 	c = ERR_PTR(ret);
21111c6fdbd8SKent Overstreet 	goto out;
21121c6fdbd8SKent Overstreet }
21131c6fdbd8SKent Overstreet 
21141c6fdbd8SKent Overstreet /* Global interfaces/init */
21151c6fdbd8SKent Overstreet 
21161c6fdbd8SKent Overstreet static void bcachefs_exit(void)
21171c6fdbd8SKent Overstreet {
21181c6fdbd8SKent Overstreet 	bch2_debug_exit();
21191c6fdbd8SKent Overstreet 	bch2_vfs_exit();
21201c6fdbd8SKent Overstreet 	bch2_chardev_exit();
212114ba3706SKent Overstreet 	bch2_btree_key_cache_exit();
21221c6fdbd8SKent Overstreet 	if (bcachefs_kset)
21231c6fdbd8SKent Overstreet 		kset_unregister(bcachefs_kset);
21241c6fdbd8SKent Overstreet }
21251c6fdbd8SKent Overstreet 
21261c6fdbd8SKent Overstreet static int __init bcachefs_init(void)
21271c6fdbd8SKent Overstreet {
21281c6fdbd8SKent Overstreet 	bch2_bkey_pack_test();
21291c6fdbd8SKent Overstreet 
21301c6fdbd8SKent Overstreet 	if (!(bcachefs_kset = kset_create_and_add("bcachefs", NULL, fs_kobj)) ||
213114ba3706SKent Overstreet 	    bch2_btree_key_cache_init() ||
21321c6fdbd8SKent Overstreet 	    bch2_chardev_init() ||
21331c6fdbd8SKent Overstreet 	    bch2_vfs_init() ||
21341c6fdbd8SKent Overstreet 	    bch2_debug_init())
21351c6fdbd8SKent Overstreet 		goto err;
21361c6fdbd8SKent Overstreet 
21371c6fdbd8SKent Overstreet 	return 0;
21381c6fdbd8SKent Overstreet err:
21391c6fdbd8SKent Overstreet 	bcachefs_exit();
21401c6fdbd8SKent Overstreet 	return -ENOMEM;
21411c6fdbd8SKent Overstreet }
21421c6fdbd8SKent Overstreet 
21431c6fdbd8SKent Overstreet #define BCH_DEBUG_PARAM(name, description)			\
21441c6fdbd8SKent Overstreet 	bool bch2_##name;					\
21451c6fdbd8SKent Overstreet 	module_param_named(name, bch2_##name, bool, 0644);	\
21461c6fdbd8SKent Overstreet 	MODULE_PARM_DESC(name, description);
21471c6fdbd8SKent Overstreet BCH_DEBUG_PARAMS()
21481c6fdbd8SKent Overstreet #undef BCH_DEBUG_PARAM
21491c6fdbd8SKent Overstreet 
2150e08e63e4SKent Overstreet __maybe_unused
215173bd774dSKent Overstreet static unsigned bch2_metadata_version = bcachefs_metadata_version_current;
21521c6fdbd8SKent Overstreet module_param_named(version, bch2_metadata_version, uint, 0400);
21531c6fdbd8SKent Overstreet 
21541c6fdbd8SKent Overstreet module_exit(bcachefs_exit);
21551c6fdbd8SKent Overstreet module_init(bcachefs_init);
2156