xref: /linux/fs/bcachefs/super.c (revision ec8bf491a9008b8db97076ba7a6905edb4537bb9)
11c6fdbd8SKent Overstreet // SPDX-License-Identifier: GPL-2.0
21c6fdbd8SKent Overstreet /*
31c6fdbd8SKent Overstreet  * bcachefs setup/teardown code, and some metadata io - read a superblock and
41c6fdbd8SKent Overstreet  * figure out what to do with it.
51c6fdbd8SKent Overstreet  *
61c6fdbd8SKent Overstreet  * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
71c6fdbd8SKent Overstreet  * Copyright 2012 Google, Inc.
81c6fdbd8SKent Overstreet  */
91c6fdbd8SKent Overstreet 
101c6fdbd8SKent Overstreet #include "bcachefs.h"
117b3f84eaSKent Overstreet #include "alloc_background.h"
127b3f84eaSKent Overstreet #include "alloc_foreground.h"
135b8a9227SKent Overstreet #include "bkey_sort.h"
141c6fdbd8SKent Overstreet #include "btree_cache.h"
151c6fdbd8SKent Overstreet #include "btree_gc.h"
16401585feSKent Overstreet #include "btree_journal_iter.h"
172ca88e5aSKent Overstreet #include "btree_key_cache.h"
184409b808SKent Overstreet #include "btree_node_scan.h"
191c6fdbd8SKent Overstreet #include "btree_update_interior.h"
201c6fdbd8SKent Overstreet #include "btree_io.h"
21920e69bcSKent Overstreet #include "btree_write_buffer.h"
2221aec962SKent Overstreet #include "buckets_waiting_for_journal.h"
231c6fdbd8SKent Overstreet #include "chardev.h"
241c6fdbd8SKent Overstreet #include "checksum.h"
251c6fdbd8SKent Overstreet #include "clock.h"
261c6fdbd8SKent Overstreet #include "compress.h"
271c6fdbd8SKent Overstreet #include "debug.h"
281d16c605SKent Overstreet #include "disk_accounting.h"
291c6fdbd8SKent Overstreet #include "disk_groups.h"
30cd575ddfSKent Overstreet #include "ec.h"
31d4bf5eecSKent Overstreet #include "errcode.h"
321c6fdbd8SKent Overstreet #include "error.h"
331c6fdbd8SKent Overstreet #include "fs.h"
341c6fdbd8SKent Overstreet #include "fs-io.h"
35dbbfca9fSKent Overstreet #include "fs-io-buffered.h"
36dbbfca9fSKent Overstreet #include "fs-io-direct.h"
371c6fdbd8SKent Overstreet #include "fsck.h"
381c6fdbd8SKent Overstreet #include "inode.h"
391809b8cbSKent Overstreet #include "io_read.h"
401809b8cbSKent Overstreet #include "io_write.h"
411c6fdbd8SKent Overstreet #include "journal.h"
421c6fdbd8SKent Overstreet #include "journal_reclaim.h"
431dd7f9d9SKent Overstreet #include "journal_seq_blacklist.h"
441c6fdbd8SKent Overstreet #include "move.h"
451c6fdbd8SKent Overstreet #include "migrate.h"
461c6fdbd8SKent Overstreet #include "movinggc.h"
47350175bfSKent Overstreet #include "nocow_locking.h"
481c6fdbd8SKent Overstreet #include "quota.h"
491c6fdbd8SKent Overstreet #include "rebalance.h"
501c6fdbd8SKent Overstreet #include "recovery.h"
511c6fdbd8SKent Overstreet #include "replicas.h"
52a37ad1a3SKent Overstreet #include "sb-clean.h"
533a58dfbcSKent Overstreet #include "sb-counters.h"
54f5d26fa3SKent Overstreet #include "sb-errors.h"
551241df58SHunter Shaffer #include "sb-members.h"
568e877caaSKent Overstreet #include "snapshot.h"
5714b393eeSKent Overstreet #include "subvolume.h"
581c6fdbd8SKent Overstreet #include "super.h"
591c6fdbd8SKent Overstreet #include "super-io.h"
601c6fdbd8SKent Overstreet #include "sysfs.h"
6160e1baa8SKent Overstreet #include "thread_with_file.h"
621c6fdbd8SKent Overstreet #include "trace.h"
631c6fdbd8SKent Overstreet 
641c6fdbd8SKent Overstreet #include <linux/backing-dev.h>
651c6fdbd8SKent Overstreet #include <linux/blkdev.h>
661c6fdbd8SKent Overstreet #include <linux/debugfs.h>
671c6fdbd8SKent Overstreet #include <linux/device.h>
681c6fdbd8SKent Overstreet #include <linux/idr.h>
691c6fdbd8SKent Overstreet #include <linux/module.h>
701c6fdbd8SKent Overstreet #include <linux/percpu.h>
711c6fdbd8SKent Overstreet #include <linux/random.h>
721c6fdbd8SKent Overstreet #include <linux/sysfs.h>
731c6fdbd8SKent Overstreet #include <crypto/hash.h>
741c6fdbd8SKent Overstreet 
751c6fdbd8SKent Overstreet MODULE_LICENSE("GPL");
761c6fdbd8SKent Overstreet MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
77a9737e0bSBrian Foster MODULE_DESCRIPTION("bcachefs filesystem");
7885c6db98SDaniel Hill MODULE_SOFTDEP("pre: crc32c");
7985c6db98SDaniel Hill MODULE_SOFTDEP("pre: crc64");
8085c6db98SDaniel Hill MODULE_SOFTDEP("pre: sha256");
8185c6db98SDaniel Hill MODULE_SOFTDEP("pre: chacha20");
8285c6db98SDaniel Hill MODULE_SOFTDEP("pre: poly1305");
8385c6db98SDaniel Hill MODULE_SOFTDEP("pre: xxhash");
841c6fdbd8SKent Overstreet 
853c471b65SKent Overstreet const char * const bch2_fs_flag_strs[] = {
863c471b65SKent Overstreet #define x(n)		#n,
873c471b65SKent Overstreet 	BCH_FS_FLAGS()
883c471b65SKent Overstreet #undef x
893c471b65SKent Overstreet 	NULL
903c471b65SKent Overstreet };
913c471b65SKent Overstreet 
9236008d5dSKent Overstreet void bch2_print_str(struct bch_fs *c, const char *str)
9336008d5dSKent Overstreet {
9436008d5dSKent Overstreet #ifdef __KERNEL__
9536008d5dSKent Overstreet 	struct stdio_redirect *stdio = bch2_fs_stdio_redirect(c);
9636008d5dSKent Overstreet 
9736008d5dSKent Overstreet 	if (unlikely(stdio)) {
9836008d5dSKent Overstreet 		bch2_stdio_redirect_printf(stdio, true, "%s", str);
9936008d5dSKent Overstreet 		return;
10036008d5dSKent Overstreet 	}
10136008d5dSKent Overstreet #endif
10236008d5dSKent Overstreet 	bch2_print_string_as_lines(KERN_ERR, str);
10336008d5dSKent Overstreet }
10436008d5dSKent Overstreet 
1053ed94062SKent Overstreet __printf(2, 0)
106f3589bfaSKent Overstreet static void bch2_print_maybe_redirect(struct stdio_redirect *stdio, const char *fmt, va_list args)
107f3589bfaSKent Overstreet {
108f3589bfaSKent Overstreet #ifdef __KERNEL__
109f3589bfaSKent Overstreet 	if (unlikely(stdio)) {
110f3589bfaSKent Overstreet 		if (fmt[0] == KERN_SOH[0])
111f3589bfaSKent Overstreet 			fmt += 2;
112f3589bfaSKent Overstreet 
113f3589bfaSKent Overstreet 		bch2_stdio_redirect_vprintf(stdio, true, fmt, args);
114f3589bfaSKent Overstreet 		return;
115f3589bfaSKent Overstreet 	}
116f3589bfaSKent Overstreet #endif
117f3589bfaSKent Overstreet 	vprintk(fmt, args);
118f3589bfaSKent Overstreet }
119f3589bfaSKent Overstreet 
120b63570f7SKent Overstreet void bch2_print_opts(struct bch_opts *opts, const char *fmt, ...)
121b63570f7SKent Overstreet {
122b63570f7SKent Overstreet 	struct stdio_redirect *stdio = (void *)(unsigned long)opts->stdio;
123b63570f7SKent Overstreet 
124b63570f7SKent Overstreet 	va_list args;
125b63570f7SKent Overstreet 	va_start(args, fmt);
126f3589bfaSKent Overstreet 	bch2_print_maybe_redirect(stdio, fmt, args);
127b63570f7SKent Overstreet 	va_end(args);
128b63570f7SKent Overstreet }
129b63570f7SKent Overstreet 
1302b41226dSKent Overstreet void __bch2_print(struct bch_fs *c, const char *fmt, ...)
1312b41226dSKent Overstreet {
13296f37eabSKent Overstreet 	struct stdio_redirect *stdio = bch2_fs_stdio_redirect(c);
13396f37eabSKent Overstreet 
1342b41226dSKent Overstreet 	va_list args;
1352b41226dSKent Overstreet 	va_start(args, fmt);
136f3589bfaSKent Overstreet 	bch2_print_maybe_redirect(stdio, fmt, args);
1372b41226dSKent Overstreet 	va_end(args);
1382b41226dSKent Overstreet }
1392b41226dSKent Overstreet 
1401c6fdbd8SKent Overstreet #define KTYPE(type)							\
1411c6fdbd8SKent Overstreet static const struct attribute_group type ## _group = {			\
1421c6fdbd8SKent Overstreet 	.attrs = type ## _files						\
1431c6fdbd8SKent Overstreet };									\
1441c6fdbd8SKent Overstreet 									\
1451c6fdbd8SKent Overstreet static const struct attribute_group *type ## _groups[] = {		\
1461c6fdbd8SKent Overstreet 	&type ## _group,						\
1471c6fdbd8SKent Overstreet 	NULL								\
1481c6fdbd8SKent Overstreet };									\
1491c6fdbd8SKent Overstreet 									\
1501c6fdbd8SKent Overstreet static const struct kobj_type type ## _ktype = {			\
1511c6fdbd8SKent Overstreet 	.release	= type ## _release,				\
1521c6fdbd8SKent Overstreet 	.sysfs_ops	= &type ## _sysfs_ops,				\
1531c6fdbd8SKent Overstreet 	.default_groups = type ## _groups				\
1541c6fdbd8SKent Overstreet }
1551c6fdbd8SKent Overstreet 
1561c6fdbd8SKent Overstreet static void bch2_fs_release(struct kobject *);
1571c6fdbd8SKent Overstreet static void bch2_dev_release(struct kobject *);
158104c6974SDaniel Hill static void bch2_fs_counters_release(struct kobject *k)
159104c6974SDaniel Hill {
160104c6974SDaniel Hill }
1611c6fdbd8SKent Overstreet 
1621c6fdbd8SKent Overstreet static void bch2_fs_internal_release(struct kobject *k)
1631c6fdbd8SKent Overstreet {
1641c6fdbd8SKent Overstreet }
1651c6fdbd8SKent Overstreet 
1661c6fdbd8SKent Overstreet static void bch2_fs_opts_dir_release(struct kobject *k)
1671c6fdbd8SKent Overstreet {
1681c6fdbd8SKent Overstreet }
1691c6fdbd8SKent Overstreet 
1701c6fdbd8SKent Overstreet static void bch2_fs_time_stats_release(struct kobject *k)
1711c6fdbd8SKent Overstreet {
1721c6fdbd8SKent Overstreet }
1731c6fdbd8SKent Overstreet 
1741c6fdbd8SKent Overstreet KTYPE(bch2_fs);
175104c6974SDaniel Hill KTYPE(bch2_fs_counters);
1761c6fdbd8SKent Overstreet KTYPE(bch2_fs_internal);
1771c6fdbd8SKent Overstreet KTYPE(bch2_fs_opts_dir);
1781c6fdbd8SKent Overstreet KTYPE(bch2_fs_time_stats);
1791c6fdbd8SKent Overstreet KTYPE(bch2_dev);
1801c6fdbd8SKent Overstreet 
1811c6fdbd8SKent Overstreet static struct kset *bcachefs_kset;
1821c6fdbd8SKent Overstreet static LIST_HEAD(bch_fs_list);
1831c6fdbd8SKent Overstreet static DEFINE_MUTEX(bch_fs_list_lock);
1841c6fdbd8SKent Overstreet 
185d94189adSKent Overstreet DECLARE_WAIT_QUEUE_HEAD(bch2_read_only_wait);
1861c6fdbd8SKent Overstreet 
1871c6fdbd8SKent Overstreet static void bch2_dev_free(struct bch_dev *);
1881c6fdbd8SKent Overstreet static int bch2_dev_alloc(struct bch_fs *, unsigned);
1891c6fdbd8SKent Overstreet static int bch2_dev_sysfs_online(struct bch_fs *, struct bch_dev *);
1901c6fdbd8SKent Overstreet static void __bch2_dev_read_only(struct bch_fs *, struct bch_dev *);
1911c6fdbd8SKent Overstreet 
1921c6fdbd8SKent Overstreet struct bch_fs *bch2_dev_to_fs(dev_t dev)
1931c6fdbd8SKent Overstreet {
1941c6fdbd8SKent Overstreet 	struct bch_fs *c;
1951c6fdbd8SKent Overstreet 
1961c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
1971c6fdbd8SKent Overstreet 	rcu_read_lock();
1981c6fdbd8SKent Overstreet 
1991c6fdbd8SKent Overstreet 	list_for_each_entry(c, &bch_fs_list, list)
20041b84fb4SKent Overstreet 		for_each_member_device_rcu(c, ca, NULL)
201ec4ab9d2SDan Robertson 			if (ca->disk_sb.bdev && ca->disk_sb.bdev->bd_dev == dev) {
2021c6fdbd8SKent Overstreet 				closure_get(&c->cl);
2031c6fdbd8SKent Overstreet 				goto found;
2041c6fdbd8SKent Overstreet 			}
2051c6fdbd8SKent Overstreet 	c = NULL;
2061c6fdbd8SKent Overstreet found:
2071c6fdbd8SKent Overstreet 	rcu_read_unlock();
2081c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
2091c6fdbd8SKent Overstreet 
2101c6fdbd8SKent Overstreet 	return c;
2111c6fdbd8SKent Overstreet }
2121c6fdbd8SKent Overstreet 
2131c6fdbd8SKent Overstreet static struct bch_fs *__bch2_uuid_to_fs(__uuid_t uuid)
2141c6fdbd8SKent Overstreet {
2151c6fdbd8SKent Overstreet 	struct bch_fs *c;
2161c6fdbd8SKent Overstreet 
2171c6fdbd8SKent Overstreet 	lockdep_assert_held(&bch_fs_list_lock);
2181c6fdbd8SKent Overstreet 
2191c6fdbd8SKent Overstreet 	list_for_each_entry(c, &bch_fs_list, list)
2201c6fdbd8SKent Overstreet 		if (!memcmp(&c->disk_sb.sb->uuid, &uuid, sizeof(uuid)))
2211c6fdbd8SKent Overstreet 			return c;
2221c6fdbd8SKent Overstreet 
2231c6fdbd8SKent Overstreet 	return NULL;
2241c6fdbd8SKent Overstreet }
2251c6fdbd8SKent Overstreet 
2261c6fdbd8SKent Overstreet struct bch_fs *bch2_uuid_to_fs(__uuid_t uuid)
2271c6fdbd8SKent Overstreet {
2281c6fdbd8SKent Overstreet 	struct bch_fs *c;
2291c6fdbd8SKent Overstreet 
2301c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
2311c6fdbd8SKent Overstreet 	c = __bch2_uuid_to_fs(uuid);
2321c6fdbd8SKent Overstreet 	if (c)
2331c6fdbd8SKent Overstreet 		closure_get(&c->cl);
2341c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
2351c6fdbd8SKent Overstreet 
2361c6fdbd8SKent Overstreet 	return c;
2371c6fdbd8SKent Overstreet }
2381c6fdbd8SKent Overstreet 
2391c6fdbd8SKent Overstreet /* Filesystem RO/RW: */
2401c6fdbd8SKent Overstreet 
2411c6fdbd8SKent Overstreet /*
2421c6fdbd8SKent Overstreet  * For startup/shutdown of RW stuff, the dependencies are:
2431c6fdbd8SKent Overstreet  *
2441c6fdbd8SKent Overstreet  * - foreground writes depend on copygc and rebalance (to free up space)
2451c6fdbd8SKent Overstreet  *
2461c6fdbd8SKent Overstreet  * - copygc and rebalance depend on mark and sweep gc (they actually probably
2471c6fdbd8SKent Overstreet  *   don't because they either reserve ahead of time or don't block if
2481c6fdbd8SKent Overstreet  *   allocations fail, but allocations can require mark and sweep gc to run
2491c6fdbd8SKent Overstreet  *   because of generation number wraparound)
2501c6fdbd8SKent Overstreet  *
2511c6fdbd8SKent Overstreet  * - all of the above depends on the allocator threads
2521c6fdbd8SKent Overstreet  *
2531c6fdbd8SKent Overstreet  * - allocator depends on the journal (when it rewrites prios and gens)
2541c6fdbd8SKent Overstreet  */
2551c6fdbd8SKent Overstreet 
2561c6fdbd8SKent Overstreet static void __bch2_fs_read_only(struct bch_fs *c)
2571c6fdbd8SKent Overstreet {
2589fea2274SKent Overstreet 	unsigned clean_passes = 0;
259c0960603SKent Overstreet 	u64 seq = 0;
2601c6fdbd8SKent Overstreet 
261b40901b0SKent Overstreet 	bch2_fs_ec_stop(c);
262b40901b0SKent Overstreet 	bch2_open_buckets_stop(c, NULL, true);
2631c6fdbd8SKent Overstreet 	bch2_rebalance_stop(c);
264e6d11615SKent Overstreet 	bch2_copygc_stop(c);
265b40901b0SKent Overstreet 	bch2_fs_ec_flush(c);
2661c6fdbd8SKent Overstreet 
26783ec519aSKent Overstreet 	bch_verbose(c, "flushing journal and stopping allocators, journal seq %llu",
26883ec519aSKent Overstreet 		    journal_cur_seq(&c->journal));
2691c6fdbd8SKent Overstreet 
270039fc4c5SKent Overstreet 	do {
271039fc4c5SKent Overstreet 		clean_passes++;
272039fc4c5SKent Overstreet 
273c0960603SKent Overstreet 		if (bch2_btree_interior_updates_flush(c) ||
274c0960603SKent Overstreet 		    bch2_journal_flush_all_pins(&c->journal) ||
275c0960603SKent Overstreet 		    bch2_btree_flush_all_writes(c) ||
276c0960603SKent Overstreet 		    seq != atomic64_read(&c->journal.seq)) {
277c0960603SKent Overstreet 			seq = atomic64_read(&c->journal.seq);
278039fc4c5SKent Overstreet 			clean_passes = 0;
279039fc4c5SKent Overstreet 		}
280d5f70c1fSKent Overstreet 	} while (clean_passes < 2);
281c0960603SKent Overstreet 
28283ec519aSKent Overstreet 	bch_verbose(c, "flushing journal and stopping allocators complete, journal seq %llu",
28383ec519aSKent Overstreet 		    journal_cur_seq(&c->journal));
2842340fd9dSKent Overstreet 
285b895c703SKent Overstreet 	if (test_bit(JOURNAL_replay_done, &c->journal.flags) &&
2863c471b65SKent Overstreet 	    !test_bit(BCH_FS_emergency_ro, &c->flags))
2873c471b65SKent Overstreet 		set_bit(BCH_FS_clean_shutdown, &c->flags);
2889802ff48SKent Overstreet 
2891c6fdbd8SKent Overstreet 	bch2_fs_journal_stop(&c->journal);
2901c6fdbd8SKent Overstreet 
2919802ff48SKent Overstreet 	bch_info(c, "%sshutdown complete, journal seq %llu",
2929802ff48SKent Overstreet 		 test_bit(BCH_FS_clean_shutdown, &c->flags) ? "" : "un",
2939802ff48SKent Overstreet 		 c->journal.seq_ondisk);
2949802ff48SKent Overstreet 
2951c6fdbd8SKent Overstreet 	/*
2961c6fdbd8SKent Overstreet 	 * After stopping journal:
2971c6fdbd8SKent Overstreet 	 */
2989fea2274SKent Overstreet 	for_each_member_device(c, ca)
2991c6fdbd8SKent Overstreet 		bch2_dev_allocator_remove(c, ca);
3001c6fdbd8SKent Overstreet }
3011c6fdbd8SKent Overstreet 
302d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
3031c6fdbd8SKent Overstreet static void bch2_writes_disabled(struct percpu_ref *writes)
3041c6fdbd8SKent Overstreet {
3051c6fdbd8SKent Overstreet 	struct bch_fs *c = container_of(writes, struct bch_fs, writes);
3061c6fdbd8SKent Overstreet 
3073c471b65SKent Overstreet 	set_bit(BCH_FS_write_disable_complete, &c->flags);
308d94189adSKent Overstreet 	wake_up(&bch2_read_only_wait);
3091c6fdbd8SKent Overstreet }
310d94189adSKent Overstreet #endif
3111c6fdbd8SKent Overstreet 
3121c6fdbd8SKent Overstreet void bch2_fs_read_only(struct bch_fs *c)
3131c6fdbd8SKent Overstreet {
3143c471b65SKent Overstreet 	if (!test_bit(BCH_FS_rw, &c->flags)) {
3159ae28f82SKent Overstreet 		bch2_journal_reclaim_stop(&c->journal);
3161c6fdbd8SKent Overstreet 		return;
317134915f3SKent Overstreet 	}
3181c6fdbd8SKent Overstreet 
3193c471b65SKent Overstreet 	BUG_ON(test_bit(BCH_FS_write_disable_complete, &c->flags));
3201c6fdbd8SKent Overstreet 
321e7f7ddedSKent Overstreet 	bch_verbose(c, "going read-only");
322e7f7ddedSKent Overstreet 
3231c6fdbd8SKent Overstreet 	/*
3241c6fdbd8SKent Overstreet 	 * Block new foreground-end write operations from starting - any new
3251c6fdbd8SKent Overstreet 	 * writes will return -EROFS:
3261c6fdbd8SKent Overstreet 	 */
3273c471b65SKent Overstreet 	set_bit(BCH_FS_going_ro, &c->flags);
328d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
3291c6fdbd8SKent Overstreet 	percpu_ref_kill(&c->writes);
330d94189adSKent Overstreet #else
331d94189adSKent Overstreet 	for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++)
332d94189adSKent Overstreet 		bch2_write_ref_put(c, i);
333d94189adSKent Overstreet #endif
3341c6fdbd8SKent Overstreet 
3351c6fdbd8SKent Overstreet 	/*
3361c6fdbd8SKent Overstreet 	 * If we're not doing an emergency shutdown, we want to wait on
3371c6fdbd8SKent Overstreet 	 * outstanding writes to complete so they don't see spurious errors due
3381c6fdbd8SKent Overstreet 	 * to shutting down the allocator:
3391c6fdbd8SKent Overstreet 	 *
3401c6fdbd8SKent Overstreet 	 * If we are doing an emergency shutdown outstanding writes may
3411c6fdbd8SKent Overstreet 	 * hang until we shutdown the allocator so we don't want to wait
3421c6fdbd8SKent Overstreet 	 * on outstanding writes before shutting everything down - but
3431c6fdbd8SKent Overstreet 	 * we do need to wait on them before returning and signalling
3441c6fdbd8SKent Overstreet 	 * that going RO is complete:
3451c6fdbd8SKent Overstreet 	 */
346d94189adSKent Overstreet 	wait_event(bch2_read_only_wait,
3473c471b65SKent Overstreet 		   test_bit(BCH_FS_write_disable_complete, &c->flags) ||
3483c471b65SKent Overstreet 		   test_bit(BCH_FS_emergency_ro, &c->flags));
3491c6fdbd8SKent Overstreet 
3503c471b65SKent Overstreet 	bool writes_disabled = test_bit(BCH_FS_write_disable_complete, &c->flags);
351e7f7ddedSKent Overstreet 	if (writes_disabled)
352e7f7ddedSKent Overstreet 		bch_verbose(c, "finished waiting for writes to stop");
353e7f7ddedSKent Overstreet 
3541c6fdbd8SKent Overstreet 	__bch2_fs_read_only(c);
3551c6fdbd8SKent Overstreet 
356d94189adSKent Overstreet 	wait_event(bch2_read_only_wait,
3573c471b65SKent Overstreet 		   test_bit(BCH_FS_write_disable_complete, &c->flags));
3581c6fdbd8SKent Overstreet 
359e7f7ddedSKent Overstreet 	if (!writes_disabled)
360e7f7ddedSKent Overstreet 		bch_verbose(c, "finished waiting for writes to stop");
361e7f7ddedSKent Overstreet 
3623c471b65SKent Overstreet 	clear_bit(BCH_FS_write_disable_complete, &c->flags);
3633c471b65SKent Overstreet 	clear_bit(BCH_FS_going_ro, &c->flags);
3643c471b65SKent Overstreet 	clear_bit(BCH_FS_rw, &c->flags);
3651c6fdbd8SKent Overstreet 
3661c6fdbd8SKent Overstreet 	if (!bch2_journal_error(&c->journal) &&
3673c471b65SKent Overstreet 	    !test_bit(BCH_FS_error, &c->flags) &&
3683c471b65SKent Overstreet 	    !test_bit(BCH_FS_emergency_ro, &c->flags) &&
3693c471b65SKent Overstreet 	    test_bit(BCH_FS_started, &c->flags) &&
3703c471b65SKent Overstreet 	    test_bit(BCH_FS_clean_shutdown, &c->flags) &&
37113c1e583SKent Overstreet 	    c->recovery_pass_done >= BCH_RECOVERY_PASS_journal_replay) {
3727724664fSKent Overstreet 		BUG_ON(c->journal.last_empty_seq != journal_cur_seq(&c->journal));
3737724664fSKent Overstreet 		BUG_ON(atomic_read(&c->btree_cache.dirty));
3747724664fSKent Overstreet 		BUG_ON(atomic_long_read(&c->btree_key_cache.nr_dirty));
37509caeabeSKent Overstreet 		BUG_ON(c->btree_write_buffer.inc.keys.nr);
37609caeabeSKent Overstreet 		BUG_ON(c->btree_write_buffer.flushing.keys.nr);
3775668e5deSKent Overstreet 		bch2_verify_accounting_clean(c);
3787724664fSKent Overstreet 
379b2930396SKent Overstreet 		bch_verbose(c, "marking filesystem clean");
380134915f3SKent Overstreet 		bch2_fs_mark_clean(c);
381e7f7ddedSKent Overstreet 	} else {
382e7f7ddedSKent Overstreet 		bch_verbose(c, "done going read-only, filesystem not clean");
383b2930396SKent Overstreet 	}
3841c6fdbd8SKent Overstreet }
3851c6fdbd8SKent Overstreet 
3861c6fdbd8SKent Overstreet static void bch2_fs_read_only_work(struct work_struct *work)
3871c6fdbd8SKent Overstreet {
3881c6fdbd8SKent Overstreet 	struct bch_fs *c =
3891c6fdbd8SKent Overstreet 		container_of(work, struct bch_fs, read_only_work);
3901c6fdbd8SKent Overstreet 
3911ada1606SKent Overstreet 	down_write(&c->state_lock);
3921c6fdbd8SKent Overstreet 	bch2_fs_read_only(c);
3931ada1606SKent Overstreet 	up_write(&c->state_lock);
3941c6fdbd8SKent Overstreet }
3951c6fdbd8SKent Overstreet 
3961c6fdbd8SKent Overstreet static void bch2_fs_read_only_async(struct bch_fs *c)
3971c6fdbd8SKent Overstreet {
3981c6fdbd8SKent Overstreet 	queue_work(system_long_wq, &c->read_only_work);
3991c6fdbd8SKent Overstreet }
4001c6fdbd8SKent Overstreet 
4011c6fdbd8SKent Overstreet bool bch2_fs_emergency_read_only(struct bch_fs *c)
4021c6fdbd8SKent Overstreet {
4033c471b65SKent Overstreet 	bool ret = !test_and_set_bit(BCH_FS_emergency_ro, &c->flags);
4041c6fdbd8SKent Overstreet 
4051c6fdbd8SKent Overstreet 	bch2_journal_halt(&c->journal);
4069f115ce9SKent Overstreet 	bch2_fs_read_only_async(c);
4071c6fdbd8SKent Overstreet 
408d94189adSKent Overstreet 	wake_up(&bch2_read_only_wait);
4091c6fdbd8SKent Overstreet 	return ret;
4101c6fdbd8SKent Overstreet }
4111c6fdbd8SKent Overstreet 
412134915f3SKent Overstreet static int bch2_fs_read_write_late(struct bch_fs *c)
4131c6fdbd8SKent Overstreet {
414134915f3SKent Overstreet 	int ret;
4151c6fdbd8SKent Overstreet 
416ea28c867SKent Overstreet 	/*
417ea28c867SKent Overstreet 	 * Data move operations can't run until after check_snapshots has
418ea28c867SKent Overstreet 	 * completed, and bch2_snapshot_is_ancestor() is available.
419ea28c867SKent Overstreet 	 *
420ea28c867SKent Overstreet 	 * Ideally we'd start copygc/rebalance earlier instead of waiting for
421ea28c867SKent Overstreet 	 * all of recovery/fsck to complete:
422ea28c867SKent Overstreet 	 */
423ea28c867SKent Overstreet 	ret = bch2_copygc_start(c);
424ea28c867SKent Overstreet 	if (ret) {
425ea28c867SKent Overstreet 		bch_err(c, "error starting copygc thread");
426ea28c867SKent Overstreet 		return ret;
427ea28c867SKent Overstreet 	}
428ea28c867SKent Overstreet 
429134915f3SKent Overstreet 	ret = bch2_rebalance_start(c);
430134915f3SKent Overstreet 	if (ret) {
431134915f3SKent Overstreet 		bch_err(c, "error starting rebalance thread");
432134915f3SKent Overstreet 		return ret;
433134915f3SKent Overstreet 	}
434134915f3SKent Overstreet 
435134915f3SKent Overstreet 	return 0;
436134915f3SKent Overstreet }
437134915f3SKent Overstreet 
438e731d466SKent Overstreet static int __bch2_fs_read_write(struct bch_fs *c, bool early)
439134915f3SKent Overstreet {
440134915f3SKent Overstreet 	int ret;
441134915f3SKent Overstreet 
4423c471b65SKent Overstreet 	if (test_bit(BCH_FS_initial_gc_unfixed, &c->flags)) {
443aae15aafSKent Overstreet 		bch_err(c, "cannot go rw, unfixed btree errors");
4447c50140fSKent Overstreet 		return -BCH_ERR_erofs_unfixed_errors;
445aae15aafSKent Overstreet 	}
446aae15aafSKent Overstreet 
4473c471b65SKent Overstreet 	if (test_bit(BCH_FS_rw, &c->flags))
448134915f3SKent Overstreet 		return 0;
449134915f3SKent Overstreet 
4502c944fa1SKent Overstreet 	bch_info(c, "going read-write");
4512c944fa1SKent Overstreet 
452f5d26fa3SKent Overstreet 	ret = bch2_sb_members_v2_init(c);
4533f7b9713SHunter Shaffer 	if (ret)
4543f7b9713SHunter Shaffer 		goto err;
4553f7b9713SHunter Shaffer 
456134915f3SKent Overstreet 	ret = bch2_fs_mark_dirty(c);
457134915f3SKent Overstreet 	if (ret)
458134915f3SKent Overstreet 		goto err;
4591c6fdbd8SKent Overstreet 
4603c471b65SKent Overstreet 	clear_bit(BCH_FS_clean_shutdown, &c->flags);
4612340fd9dSKent Overstreet 
462b9004e85SKent Overstreet 	/*
463b9004e85SKent Overstreet 	 * First journal write must be a flush write: after a clean shutdown we
464b9004e85SKent Overstreet 	 * don't read the journal, so the first journal write may end up
465b9004e85SKent Overstreet 	 * overwriting whatever was there previously, and there must always be
466b9004e85SKent Overstreet 	 * at least one non-flush write in the journal or recovery will fail:
467b9004e85SKent Overstreet 	 */
468b895c703SKent Overstreet 	set_bit(JOURNAL_need_flush_write, &c->journal.flags);
469b895c703SKent Overstreet 	set_bit(JOURNAL_running, &c->journal.flags);
470b9004e85SKent Overstreet 
4719fea2274SKent Overstreet 	for_each_rw_member(c, ca)
4721c6fdbd8SKent Overstreet 		bch2_dev_allocator_add(c, ca);
4731c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
4741c6fdbd8SKent Overstreet 
4753c471b65SKent Overstreet 	set_bit(BCH_FS_rw, &c->flags);
4763c471b65SKent Overstreet 	set_bit(BCH_FS_was_rw, &c->flags);
477468035caSKent Overstreet 
478468035caSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
479468035caSKent Overstreet 	percpu_ref_reinit(&c->writes);
480468035caSKent Overstreet #else
4819fea2274SKent Overstreet 	for (unsigned i = 0; i < BCH_WRITE_REF_NR; i++) {
482468035caSKent Overstreet 		BUG_ON(atomic_long_read(&c->writes[i]));
483468035caSKent Overstreet 		atomic_long_inc(&c->writes[i]);
484468035caSKent Overstreet 	}
485468035caSKent Overstreet #endif
486468035caSKent Overstreet 
487197763a7SBrian Foster 	ret = bch2_journal_reclaim_start(&c->journal);
488197763a7SBrian Foster 	if (ret)
489197763a7SBrian Foster 		goto err;
490197763a7SBrian Foster 
491134915f3SKent Overstreet 	if (!early) {
492134915f3SKent Overstreet 		ret = bch2_fs_read_write_late(c);
493134915f3SKent Overstreet 		if (ret)
4941c6fdbd8SKent Overstreet 			goto err;
4951c6fdbd8SKent Overstreet 	}
4961c6fdbd8SKent Overstreet 
497dd81a060SKent Overstreet 	bch2_do_discards(c);
498dd81a060SKent Overstreet 	bch2_do_invalidates(c);
499dd81a060SKent Overstreet 	bch2_do_stripe_deletes(c);
500a1f26d70SKent Overstreet 	bch2_do_pending_node_rewrites(c);
501134915f3SKent Overstreet 	return 0;
5021c6fdbd8SKent Overstreet err:
5033c471b65SKent Overstreet 	if (test_bit(BCH_FS_rw, &c->flags))
504468035caSKent Overstreet 		bch2_fs_read_only(c);
505468035caSKent Overstreet 	else
5061c6fdbd8SKent Overstreet 		__bch2_fs_read_only(c);
507134915f3SKent Overstreet 	return ret;
508134915f3SKent Overstreet }
509134915f3SKent Overstreet 
510134915f3SKent Overstreet int bch2_fs_read_write(struct bch_fs *c)
511134915f3SKent Overstreet {
51213c1e583SKent Overstreet 	if (c->opts.recovery_pass_last &&
51313c1e583SKent Overstreet 	    c->opts.recovery_pass_last < BCH_RECOVERY_PASS_journal_replay)
51462719cf3SKent Overstreet 		return -BCH_ERR_erofs_norecovery;
51562719cf3SKent Overstreet 
51662719cf3SKent Overstreet 	if (c->opts.nochanges)
51762719cf3SKent Overstreet 		return -BCH_ERR_erofs_nochanges;
51862719cf3SKent Overstreet 
519134915f3SKent Overstreet 	return __bch2_fs_read_write(c, false);
520134915f3SKent Overstreet }
521134915f3SKent Overstreet 
522134915f3SKent Overstreet int bch2_fs_read_write_early(struct bch_fs *c)
523134915f3SKent Overstreet {
524134915f3SKent Overstreet 	lockdep_assert_held(&c->state_lock);
525134915f3SKent Overstreet 
526134915f3SKent Overstreet 	return __bch2_fs_read_write(c, true);
5271c6fdbd8SKent Overstreet }
5281c6fdbd8SKent Overstreet 
5291c6fdbd8SKent Overstreet /* Filesystem startup/shutdown: */
5301c6fdbd8SKent Overstreet 
531d5e4dcc2SKent Overstreet static void __bch2_fs_free(struct bch_fs *c)
5321c6fdbd8SKent Overstreet {
533ffcbec60SKent Overstreet 	for (unsigned i = 0; i < BCH_TIME_STAT_NR; i++)
5341c6fdbd8SKent Overstreet 		bch2_time_stats_exit(&c->times[i]);
5351c6fdbd8SKent Overstreet 
5364409b808SKent Overstreet 	bch2_find_btree_nodes_exit(&c->found_btree_nodes);
537a1f26d70SKent Overstreet 	bch2_free_pending_node_rewrites(c);
5381d16c605SKent Overstreet 	bch2_fs_accounting_exit(c);
539f5d26fa3SKent Overstreet 	bch2_fs_sb_errors_exit(c);
540104c6974SDaniel Hill 	bch2_fs_counters_exit(c);
54114b393eeSKent Overstreet 	bch2_fs_snapshots_exit(c);
5421c6fdbd8SKent Overstreet 	bch2_fs_quota_exit(c);
543dbbfca9fSKent Overstreet 	bch2_fs_fs_io_direct_exit(c);
544dbbfca9fSKent Overstreet 	bch2_fs_fs_io_buffered_exit(c);
5451c6fdbd8SKent Overstreet 	bch2_fs_fsio_exit(c);
546cd575ddfSKent Overstreet 	bch2_fs_ec_exit(c);
5471c6fdbd8SKent Overstreet 	bch2_fs_encryption_exit(c);
5481e3b4098SKent Overstreet 	bch2_fs_nocow_locking_exit(c);
5491809b8cbSKent Overstreet 	bch2_fs_io_write_exit(c);
5501809b8cbSKent Overstreet 	bch2_fs_io_read_exit(c);
55121aec962SKent Overstreet 	bch2_fs_buckets_waiting_for_journal_exit(c);
552c823c339SKent Overstreet 	bch2_fs_btree_interior_update_exit(c);
5532ca88e5aSKent Overstreet 	bch2_fs_btree_key_cache_exit(&c->btree_key_cache);
5541c6fdbd8SKent Overstreet 	bch2_fs_btree_cache_exit(c);
555d293ece1SKent Overstreet 	bch2_fs_btree_iter_exit(c);
5569620c3ecSKent Overstreet 	bch2_fs_replicas_exit(c);
5571c6fdbd8SKent Overstreet 	bch2_fs_journal_exit(&c->journal);
5581c6fdbd8SKent Overstreet 	bch2_io_clock_exit(&c->io_clock[WRITE]);
5591c6fdbd8SKent Overstreet 	bch2_io_clock_exit(&c->io_clock[READ]);
5601c6fdbd8SKent Overstreet 	bch2_fs_compress_exit(c);
5618a443d3eSKent Overstreet 	bch2_journal_keys_put_initial(c);
5624409b808SKent Overstreet 	bch2_find_btree_nodes_exit(&c->found_btree_nodes);
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);
566759b2e80SKent Overstreet 	if (c->online_reserved) {
567759b2e80SKent Overstreet 		u64 v = percpu_u64_get(c->online_reserved);
568759b2e80SKent Overstreet 		WARN(v, "online_reserved not 0 at shutdown: %lli", v);
5695e82a9a1SKent Overstreet 		free_percpu(c->online_reserved);
570759b2e80SKent Overstreet 	}
5711a21bf98SKent Overstreet 
572faa6cb6cSKent Overstreet 	darray_exit(&c->btree_roots_extra);
5735663a415SKent Overstreet 	free_percpu(c->pcpu);
5748bb8d683SKent Overstreet 	free_percpu(c->usage);
57535189e09SKent Overstreet 	mempool_exit(&c->large_bkey_pool);
5761c6fdbd8SKent Overstreet 	mempool_exit(&c->btree_bounce_pool);
5771c6fdbd8SKent Overstreet 	bioset_exit(&c->btree_bio);
5781c6fdbd8SKent Overstreet 	mempool_exit(&c->fill_iter);
579d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
5801c6fdbd8SKent Overstreet 	percpu_ref_exit(&c->writes);
581d94189adSKent Overstreet #endif
5821c6fdbd8SKent Overstreet 	kfree(rcu_dereference_protected(c->disk_groups, 1));
5831dd7f9d9SKent Overstreet 	kfree(c->journal_seq_blacklist_table);
584b5e8a699SKent Overstreet 	kfree(c->unused_inode_hints);
5851c6fdbd8SKent Overstreet 
5868bff9875SBrian Foster 	if (c->write_ref_wq)
5878bff9875SBrian Foster 		destroy_workqueue(c->write_ref_wq);
588161f73c2SKent Overstreet 	if (c->btree_write_submit_wq)
589161f73c2SKent Overstreet 		destroy_workqueue(c->btree_write_submit_wq);
590161f73c2SKent Overstreet 	if (c->btree_read_complete_wq)
591161f73c2SKent Overstreet 		destroy_workqueue(c->btree_read_complete_wq);
5921c6fdbd8SKent Overstreet 	if (c->copygc_wq)
5931c6fdbd8SKent Overstreet 		destroy_workqueue(c->copygc_wq);
5949f1833caSKent Overstreet 	if (c->btree_io_complete_wq)
5959f1833caSKent Overstreet 		destroy_workqueue(c->btree_io_complete_wq);
596731bdd2eSKent Overstreet 	if (c->btree_update_wq)
597731bdd2eSKent Overstreet 		destroy_workqueue(c->btree_update_wq);
5981c6fdbd8SKent Overstreet 
5999d8022dbSKent Overstreet 	bch2_free_super(&c->disk_sb);
600cb6fc943SKent Overstreet 	kvfree(c);
6011c6fdbd8SKent Overstreet 	module_put(THIS_MODULE);
6021c6fdbd8SKent Overstreet }
6031c6fdbd8SKent Overstreet 
6041c6fdbd8SKent Overstreet static void bch2_fs_release(struct kobject *kobj)
6051c6fdbd8SKent Overstreet {
6061c6fdbd8SKent Overstreet 	struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
6071c6fdbd8SKent Overstreet 
608d5e4dcc2SKent Overstreet 	__bch2_fs_free(c);
6091c6fdbd8SKent Overstreet }
6101c6fdbd8SKent Overstreet 
611d5e4dcc2SKent Overstreet void __bch2_fs_stop(struct bch_fs *c)
6121c6fdbd8SKent Overstreet {
613af1c6871SKent Overstreet 	bch_verbose(c, "shutting down");
614af1c6871SKent Overstreet 
6153c471b65SKent Overstreet 	set_bit(BCH_FS_stopping, &c->flags);
6161dd7f9d9SKent Overstreet 
6171ada1606SKent Overstreet 	down_write(&c->state_lock);
618883f1a7cSKent Overstreet 	bch2_fs_read_only(c);
6191ada1606SKent Overstreet 	up_write(&c->state_lock);
620883f1a7cSKent Overstreet 
6219fea2274SKent Overstreet 	for_each_member_device(c, ca)
6221c6fdbd8SKent Overstreet 		if (ca->kobj.state_in_sysfs &&
6231c6fdbd8SKent Overstreet 		    ca->disk_sb.bdev)
6241c6fdbd8SKent Overstreet 			sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
6251c6fdbd8SKent Overstreet 
6261c6fdbd8SKent Overstreet 	if (c->kobj.state_in_sysfs)
6271c6fdbd8SKent Overstreet 		kobject_del(&c->kobj);
6281c6fdbd8SKent Overstreet 
6291c6fdbd8SKent Overstreet 	bch2_fs_debug_exit(c);
6301c6fdbd8SKent Overstreet 	bch2_fs_chardev_exit(c);
6311c6fdbd8SKent Overstreet 
63263508b75SKent Overstreet 	bch2_ro_ref_put(c);
63363508b75SKent Overstreet 	wait_event(c->ro_ref_wait, !refcount_read(&c->ro_ref));
63463508b75SKent Overstreet 
635104c6974SDaniel Hill 	kobject_put(&c->counters_kobj);
6361c6fdbd8SKent Overstreet 	kobject_put(&c->time_stats);
6371c6fdbd8SKent Overstreet 	kobject_put(&c->opts_dir);
6381c6fdbd8SKent Overstreet 	kobject_put(&c->internal);
6391c6fdbd8SKent Overstreet 
6401c6fdbd8SKent Overstreet 	/* btree prefetch might have kicked off reads in the background: */
6411c6fdbd8SKent Overstreet 	bch2_btree_flush_all_reads(c);
6421c6fdbd8SKent Overstreet 
6439fea2274SKent Overstreet 	for_each_member_device(c, ca)
6441c6fdbd8SKent Overstreet 		cancel_work_sync(&ca->io_error_work);
6451c6fdbd8SKent Overstreet 
6461c6fdbd8SKent Overstreet 	cancel_work_sync(&c->read_only_work);
647d5e4dcc2SKent Overstreet }
6481c6fdbd8SKent Overstreet 
649d5e4dcc2SKent Overstreet void bch2_fs_free(struct bch_fs *c)
650d5e4dcc2SKent Overstreet {
651d5e4dcc2SKent Overstreet 	unsigned i;
652d5e4dcc2SKent Overstreet 
653d5e4dcc2SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
654d5e4dcc2SKent Overstreet 	list_del(&c->list);
655d5e4dcc2SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
656d5e4dcc2SKent Overstreet 
657d5e4dcc2SKent Overstreet 	closure_sync(&c->cl);
658d5e4dcc2SKent Overstreet 	closure_debug_destroy(&c->cl);
659d5e4dcc2SKent Overstreet 
660d5e4dcc2SKent Overstreet 	for (i = 0; i < c->sb.nr_devices; i++) {
661d5e4dcc2SKent Overstreet 		struct bch_dev *ca = rcu_dereference_protected(c->devs[i], true);
662d5e4dcc2SKent Overstreet 
663d5e4dcc2SKent Overstreet 		if (ca) {
664552aa548SKent Overstreet 			EBUG_ON(atomic_long_read(&ca->ref) != 1);
665d5e4dcc2SKent Overstreet 			bch2_free_super(&ca->disk_sb);
666d5e4dcc2SKent Overstreet 			bch2_dev_free(ca);
667d5e4dcc2SKent Overstreet 		}
668d5e4dcc2SKent Overstreet 	}
6691c6fdbd8SKent Overstreet 
670af1c6871SKent Overstreet 	bch_verbose(c, "shutdown complete");
671af1c6871SKent Overstreet 
6721c6fdbd8SKent Overstreet 	kobject_put(&c->kobj);
6731c6fdbd8SKent Overstreet }
6741c6fdbd8SKent Overstreet 
675d5e4dcc2SKent Overstreet void bch2_fs_stop(struct bch_fs *c)
676d5e4dcc2SKent Overstreet {
677d5e4dcc2SKent Overstreet 	__bch2_fs_stop(c);
678d5e4dcc2SKent Overstreet 	bch2_fs_free(c);
679d5e4dcc2SKent Overstreet }
680d5e4dcc2SKent Overstreet 
681e2b60560SKent Overstreet static int bch2_fs_online(struct bch_fs *c)
6821c6fdbd8SKent Overstreet {
683e2b60560SKent Overstreet 	int ret = 0;
6841c6fdbd8SKent Overstreet 
6851c6fdbd8SKent Overstreet 	lockdep_assert_held(&bch_fs_list_lock);
6861c6fdbd8SKent Overstreet 
687e2b60560SKent Overstreet 	if (__bch2_uuid_to_fs(c->sb.uuid)) {
688e2b60560SKent Overstreet 		bch_err(c, "filesystem UUID already open");
689e2b60560SKent Overstreet 		return -EINVAL;
690e2b60560SKent Overstreet 	}
6911c6fdbd8SKent Overstreet 
6921c6fdbd8SKent Overstreet 	ret = bch2_fs_chardev_init(c);
693e2b60560SKent Overstreet 	if (ret) {
694e2b60560SKent Overstreet 		bch_err(c, "error creating character device");
695e2b60560SKent Overstreet 		return ret;
696e2b60560SKent Overstreet 	}
6971c6fdbd8SKent Overstreet 
6981c6fdbd8SKent Overstreet 	bch2_fs_debug_init(c);
6991c6fdbd8SKent Overstreet 
700e2b60560SKent Overstreet 	ret = kobject_add(&c->kobj, NULL, "%pU", c->sb.user_uuid.b) ?:
701e2b60560SKent Overstreet 	    kobject_add(&c->internal, &c->kobj, "internal") ?:
702e2b60560SKent Overstreet 	    kobject_add(&c->opts_dir, &c->kobj, "options") ?:
703066a2646SKent Overstreet #ifndef CONFIG_BCACHEFS_NO_LATENCY_ACCT
704e2b60560SKent Overstreet 	    kobject_add(&c->time_stats, &c->kobj, "time_stats") ?:
705066a2646SKent Overstreet #endif
706104c6974SDaniel Hill 	    kobject_add(&c->counters_kobj, &c->kobj, "counters") ?:
707e2b60560SKent Overstreet 	    bch2_opts_create_sysfs_files(&c->opts_dir);
708e2b60560SKent Overstreet 	if (ret) {
709e2b60560SKent Overstreet 		bch_err(c, "error creating sysfs objects");
710e2b60560SKent Overstreet 		return ret;
711e2b60560SKent Overstreet 	}
7121c6fdbd8SKent Overstreet 
7131ada1606SKent Overstreet 	down_write(&c->state_lock);
7141c6fdbd8SKent Overstreet 
7159fea2274SKent Overstreet 	for_each_member_device(c, ca) {
716e2b60560SKent Overstreet 		ret = bch2_dev_sysfs_online(c, ca);
717e2b60560SKent Overstreet 		if (ret) {
718e2b60560SKent Overstreet 			bch_err(c, "error creating sysfs objects");
719f295298bSKent Overstreet 			bch2_dev_put(ca);
7201c6fdbd8SKent Overstreet 			goto err;
7213a402c8dSKent Overstreet 		}
722e2b60560SKent Overstreet 	}
7231c6fdbd8SKent Overstreet 
724e2b60560SKent Overstreet 	BUG_ON(!list_empty(&c->list));
7251c6fdbd8SKent Overstreet 	list_add(&c->list, &bch_fs_list);
7261c6fdbd8SKent Overstreet err:
7271ada1606SKent Overstreet 	up_write(&c->state_lock);
728e2b60560SKent Overstreet 	return ret;
7291c6fdbd8SKent Overstreet }
7301c6fdbd8SKent Overstreet 
7311c6fdbd8SKent Overstreet static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
7321c6fdbd8SKent Overstreet {
7331c6fdbd8SKent Overstreet 	struct bch_fs *c;
734401ec4dbSKent Overstreet 	struct printbuf name = PRINTBUF;
735ecf37a4aSKent Overstreet 	unsigned i, iter_size;
7367be9ab63SChris Webb 	int ret = 0;
7371c6fdbd8SKent Overstreet 
738cb6fc943SKent Overstreet 	c = kvmalloc(sizeof(struct bch_fs), GFP_KERNEL|__GFP_ZERO);
7397be9ab63SChris Webb 	if (!c) {
74065d48e35SKent Overstreet 		c = ERR_PTR(-BCH_ERR_ENOMEM_fs_alloc);
7411c6fdbd8SKent Overstreet 		goto out;
7427be9ab63SChris Webb 	}
7431c6fdbd8SKent Overstreet 
74496f37eabSKent Overstreet 	c->stdio = (void *)(unsigned long) opts.stdio;
7452b41226dSKent Overstreet 
7461c6fdbd8SKent Overstreet 	__module_get(THIS_MODULE);
7471c6fdbd8SKent Overstreet 
748505b7a4cSKent Overstreet 	closure_init(&c->cl, NULL);
749505b7a4cSKent Overstreet 
750505b7a4cSKent Overstreet 	c->kobj.kset = bcachefs_kset;
751505b7a4cSKent Overstreet 	kobject_init(&c->kobj, &bch2_fs_ktype);
752505b7a4cSKent Overstreet 	kobject_init(&c->internal, &bch2_fs_internal_ktype);
753505b7a4cSKent Overstreet 	kobject_init(&c->opts_dir, &bch2_fs_opts_dir_ktype);
754505b7a4cSKent Overstreet 	kobject_init(&c->time_stats, &bch2_fs_time_stats_ktype);
755104c6974SDaniel Hill 	kobject_init(&c->counters_kobj, &bch2_fs_counters_ktype);
756505b7a4cSKent Overstreet 
7571c6fdbd8SKent Overstreet 	c->minor		= -1;
7581c6fdbd8SKent Overstreet 	c->disk_sb.fs_sb	= true;
7591c6fdbd8SKent Overstreet 
7601ada1606SKent Overstreet 	init_rwsem(&c->state_lock);
7611c6fdbd8SKent Overstreet 	mutex_init(&c->sb_lock);
7621c6fdbd8SKent Overstreet 	mutex_init(&c->replicas_gc_lock);
7631c6fdbd8SKent Overstreet 	mutex_init(&c->btree_root_lock);
7641c6fdbd8SKent Overstreet 	INIT_WORK(&c->read_only_work, bch2_fs_read_only_work);
7651c6fdbd8SKent Overstreet 
76663508b75SKent Overstreet 	refcount_set(&c->ro_ref, 1);
76763508b75SKent Overstreet 	init_waitqueue_head(&c->ro_ref_wait);
768267b801fSKent Overstreet 	sema_init(&c->online_fsck_mutex, 1);
76963508b75SKent Overstreet 
7701c6fdbd8SKent Overstreet 	init_rwsem(&c->gc_lock);
771c45c8667SKent Overstreet 	mutex_init(&c->gc_gens_lock);
7728a443d3eSKent Overstreet 	atomic_set(&c->journal_keys.ref, 1);
7738a443d3eSKent Overstreet 	c->journal_keys.initial_ref_held = true;
7741c6fdbd8SKent Overstreet 
7751c6fdbd8SKent Overstreet 	for (i = 0; i < BCH_TIME_STAT_NR; i++)
7761c6fdbd8SKent Overstreet 		bch2_time_stats_init(&c->times[i]);
7771c6fdbd8SKent Overstreet 
77810330402SKent Overstreet 	bch2_fs_gc_init(c);
779e6d11615SKent Overstreet 	bch2_fs_copygc_init(c);
7802ca88e5aSKent Overstreet 	bch2_fs_btree_key_cache_init_early(&c->btree_key_cache);
78150a8a732SThomas Bertschinger 	bch2_fs_btree_iter_init_early(c);
78265db6049SKent Overstreet 	bch2_fs_btree_interior_update_init_early(c);
783b092daddSKent Overstreet 	bch2_fs_allocator_background_init(c);
784b092daddSKent Overstreet 	bch2_fs_allocator_foreground_init(c);
7851c6fdbd8SKent Overstreet 	bch2_fs_rebalance_init(c);
7861c6fdbd8SKent Overstreet 	bch2_fs_quota_init(c);
78784c72755SKent Overstreet 	bch2_fs_ec_init_early(c);
788b9fa375bSKent Overstreet 	bch2_fs_move_init(c);
789f5d26fa3SKent Overstreet 	bch2_fs_sb_errors_init_early(c);
7901c6fdbd8SKent Overstreet 
7911c6fdbd8SKent Overstreet 	INIT_LIST_HEAD(&c->list);
7921c6fdbd8SKent Overstreet 
7931c6fdbd8SKent Overstreet 	mutex_init(&c->bio_bounce_pages_lock);
79414b393eeSKent Overstreet 	mutex_init(&c->snapshot_table_lock);
79537fad949SKent Overstreet 	init_rwsem(&c->snapshot_create_lock);
7961c6fdbd8SKent Overstreet 
7971c6fdbd8SKent Overstreet 	spin_lock_init(&c->btree_write_error_lock);
7981c6fdbd8SKent Overstreet 
7995b593ee1SKent Overstreet 	INIT_LIST_HEAD(&c->journal_iters);
800f1d786a0SKent Overstreet 
801f5d26fa3SKent Overstreet 	INIT_LIST_HEAD(&c->fsck_error_msgs);
802f5d26fa3SKent Overstreet 	mutex_init(&c->fsck_error_msgs_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)) ||
884161f73c2SKent Overstreet 	    !(c->btree_read_complete_wq = alloc_workqueue("bcachefs_btree_read_complete",
8856b83aee8SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 512)) ||
886161f73c2SKent Overstreet 	    !(c->btree_write_submit_wq = alloc_workqueue("bcachefs_btree_write_sumit",
887161f73c2SKent Overstreet 				WQ_HIGHPRI|WQ_FREEZABLE|WQ_MEM_RECLAIM, 1)) ||
8888bff9875SBrian Foster 	    !(c->write_ref_wq = alloc_workqueue("bcachefs_write_ref",
8898bff9875SBrian Foster 				WQ_FREEZABLE, 0)) ||
890d94189adSKent Overstreet #ifndef BCH_WRITE_REF_DEBUG
891134915f3SKent Overstreet 	    percpu_ref_init(&c->writes, bch2_writes_disabled,
892134915f3SKent Overstreet 			    PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
893d94189adSKent Overstreet #endif
8941c6fdbd8SKent Overstreet 	    mempool_init_kmalloc_pool(&c->fill_iter, 1, iter_size) ||
8951c6fdbd8SKent Overstreet 	    bioset_init(&c->btree_bio, 1,
8961c6fdbd8SKent Overstreet 			max(offsetof(struct btree_read_bio, bio),
8971c6fdbd8SKent Overstreet 			    offsetof(struct btree_write_bio, wbio.bio)),
8981c6fdbd8SKent Overstreet 			BIOSET_NEED_BVECS) ||
8995663a415SKent Overstreet 	    !(c->pcpu = alloc_percpu(struct bch_fs_pcpu)) ||
9008bb8d683SKent Overstreet 	    !(c->usage = alloc_percpu(struct bch_fs_usage_base)) ||
9015e82a9a1SKent Overstreet 	    !(c->online_reserved = alloc_percpu(u64)) ||
902cb6fc943SKent Overstreet 	    mempool_init_kvmalloc_pool(&c->btree_bounce_pool, 1,
903ec4edd7bSKent Overstreet 				       c->opts.btree_node_size) ||
90435189e09SKent Overstreet 	    mempool_init_kmalloc_pool(&c->large_bkey_pool, 1, 2048) ||
905b5e8a699SKent Overstreet 	    !(c->unused_inode_hints = kcalloc(1U << c->inode_shard_bits,
906e2b60560SKent Overstreet 					      sizeof(u64), GFP_KERNEL))) {
90765d48e35SKent Overstreet 		ret = -BCH_ERR_ENOMEM_fs_other_alloc;
9087be9ab63SChris Webb 		goto err;
9097be9ab63SChris Webb 	}
9107be9ab63SChris Webb 
911f3b8403eSKent Overstreet 	ret = bch2_fs_counters_init(c) ?:
912f5d26fa3SKent Overstreet 	    bch2_fs_sb_errors_init(c) ?:
913f3b8403eSKent Overstreet 	    bch2_io_clock_init(&c->io_clock[READ]) ?:
914e2b60560SKent Overstreet 	    bch2_io_clock_init(&c->io_clock[WRITE]) ?:
915e2b60560SKent Overstreet 	    bch2_fs_journal_init(&c->journal) ?:
916f770a6e9SKent Overstreet 	    bch2_fs_btree_iter_init(c) ?:
917e2b60560SKent Overstreet 	    bch2_fs_btree_cache_init(c) ?:
918e2b60560SKent Overstreet 	    bch2_fs_btree_key_cache_init(&c->btree_key_cache) ?:
919e2b60560SKent Overstreet 	    bch2_fs_btree_interior_update_init(c) ?:
9209b688da3SKent Overstreet 	    bch2_fs_buckets_waiting_for_journal_init(c) ?:
921920e69bcSKent Overstreet 	    bch2_fs_btree_write_buffer_init(c) ?:
922e2b60560SKent Overstreet 	    bch2_fs_subvolumes_init(c) ?:
9231809b8cbSKent Overstreet 	    bch2_fs_io_read_init(c) ?:
9241809b8cbSKent Overstreet 	    bch2_fs_io_write_init(c) ?:
925350175bfSKent Overstreet 	    bch2_fs_nocow_locking_init(c) ?:
926e2b60560SKent Overstreet 	    bch2_fs_encryption_init(c) ?:
927e2b60560SKent Overstreet 	    bch2_fs_compress_init(c) ?:
928e2b60560SKent Overstreet 	    bch2_fs_ec_init(c) ?:
929dbbfca9fSKent Overstreet 	    bch2_fs_fsio_init(c) ?:
930867c1fe0SDan Carpenter 	    bch2_fs_fs_io_buffered_init(c) ?:
931dbbfca9fSKent Overstreet 	    bch2_fs_fs_io_direct_init(c);
9327be9ab63SChris Webb 	if (ret)
9331c6fdbd8SKent Overstreet 		goto err;
9341c6fdbd8SKent Overstreet 
93550479406SKent Overstreet 	for (i = 0; i < c->sb.nr_devices; i++) {
93650479406SKent Overstreet 		if (!bch2_member_exists(c->disk_sb.sb, i))
93750479406SKent Overstreet 			continue;
93850479406SKent Overstreet 		ret = bch2_dev_alloc(c, i);
93950479406SKent Overstreet 		if (ret)
9401c6fdbd8SKent Overstreet 			goto err;
9417be9ab63SChris Webb 	}
9421c6fdbd8SKent Overstreet 
9434b8f89afSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
9444b8f89afSKent Overstreet 			&c->btree_root_journal_res,
9454b8f89afSKent Overstreet 			BTREE_ID_NR * (JSET_KEYS_U64s + BKEY_BTREE_PTR_U64s_MAX));
9464b8f89afSKent Overstreet 	bch2_journal_entry_res_resize(&c->journal,
9474b8f89afSKent Overstreet 			&c->clock_journal_res,
9484b8f89afSKent Overstreet 			(sizeof(struct jset_entry_clock) / sizeof(u64)) * 2);
9494b8f89afSKent Overstreet 
9501c6fdbd8SKent Overstreet 	mutex_lock(&bch_fs_list_lock);
951e2b60560SKent Overstreet 	ret = bch2_fs_online(c);
9521c6fdbd8SKent Overstreet 	mutex_unlock(&bch_fs_list_lock);
953e2b60560SKent Overstreet 
954e2b60560SKent Overstreet 	if (ret)
9551c6fdbd8SKent Overstreet 		goto err;
9561c6fdbd8SKent Overstreet out:
9571c6fdbd8SKent Overstreet 	return c;
9581c6fdbd8SKent Overstreet err:
9591c6fdbd8SKent Overstreet 	bch2_fs_free(c);
9607be9ab63SChris Webb 	c = ERR_PTR(ret);
9611c6fdbd8SKent Overstreet 	goto out;
9621c6fdbd8SKent Overstreet }
9631c6fdbd8SKent Overstreet 
964619f5beeSKent Overstreet noinline_for_stack
965619f5beeSKent Overstreet static void print_mount_opts(struct bch_fs *c)
966619f5beeSKent Overstreet {
967619f5beeSKent Overstreet 	enum bch_opt_id i;
968fa8e94faSKent Overstreet 	struct printbuf p = PRINTBUF;
969619f5beeSKent Overstreet 	bool first = true;
970619f5beeSKent Overstreet 
971*ec8bf491SKent Overstreet 	prt_str(&p, "starting version ");
972e3804b55SKent Overstreet 	bch2_version_to_text(&p, c->sb.version);
97360573ff5SKent Overstreet 
974619f5beeSKent Overstreet 	if (c->opts.read_only) {
97560573ff5SKent Overstreet 		prt_str(&p, " opts=");
976619f5beeSKent Overstreet 		first = false;
97760573ff5SKent Overstreet 		prt_printf(&p, "ro");
978619f5beeSKent Overstreet 	}
979619f5beeSKent Overstreet 
980619f5beeSKent Overstreet 	for (i = 0; i < bch2_opts_nr; i++) {
981619f5beeSKent Overstreet 		const struct bch_option *opt = &bch2_opt_table[i];
982619f5beeSKent Overstreet 		u64 v = bch2_opt_get_by_id(&c->opts, i);
983619f5beeSKent Overstreet 
9848244f320SKent Overstreet 		if (!(opt->flags & OPT_MOUNT))
985619f5beeSKent Overstreet 			continue;
986619f5beeSKent Overstreet 
987619f5beeSKent Overstreet 		if (v == bch2_opt_get_by_id(&bch2_opts_default, i))
988619f5beeSKent Overstreet 			continue;
989619f5beeSKent Overstreet 
99060573ff5SKent Overstreet 		prt_str(&p, first ? " opts=" : ",");
991619f5beeSKent Overstreet 		first = false;
9925521b1dfSKent Overstreet 		bch2_opt_to_text(&p, c, c->disk_sb.sb, opt, v, OPT_SHOW_MOUNT_STYLE);
993619f5beeSKent Overstreet 	}
994619f5beeSKent Overstreet 
99560573ff5SKent Overstreet 	bch_info(c, "%s", p.buf);
996fa8e94faSKent Overstreet 	printbuf_exit(&p);
997619f5beeSKent Overstreet }
998619f5beeSKent Overstreet 
999619f5beeSKent Overstreet int bch2_fs_start(struct bch_fs *c)
10001c6fdbd8SKent Overstreet {
1001a420eea6STim Schlueter 	time64_t now = ktime_get_real_seconds();
100278c0b75cSKent Overstreet 	int ret;
10031c6fdbd8SKent Overstreet 
1004ef1634f0SKent Overstreet 	print_mount_opts(c);
1005ef1634f0SKent Overstreet 
10061ada1606SKent Overstreet 	down_write(&c->state_lock);
10071c6fdbd8SKent Overstreet 
10083c471b65SKent Overstreet 	BUG_ON(test_bit(BCH_FS_started, &c->flags));
10091c6fdbd8SKent Overstreet 
10101c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
10111c6fdbd8SKent Overstreet 
1012f5d26fa3SKent Overstreet 	ret = bch2_sb_members_v2_init(c);
10133f7b9713SHunter Shaffer 	if (ret) {
10143f7b9713SHunter Shaffer 		mutex_unlock(&c->sb_lock);
10153f7b9713SHunter Shaffer 		goto err;
10163f7b9713SHunter Shaffer 	}
10173f7b9713SHunter Shaffer 
10189fea2274SKent Overstreet 	for_each_online_member(c, ca)
10199fea2274SKent Overstreet 		bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount = cpu_to_le64(now);
10201c6fdbd8SKent Overstreet 
10210a34c058SKent Overstreet 	struct bch_sb_field_ext *ext =
10220a34c058SKent Overstreet 		bch2_sb_field_get_minsize(&c->disk_sb, ext, sizeof(*ext) / sizeof(u64));
10231c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
10241c6fdbd8SKent Overstreet 
10250a34c058SKent Overstreet 	if (!ext) {
10260a34c058SKent Overstreet 		bch_err(c, "insufficient space in superblock for sb_field_ext");
10270a34c058SKent Overstreet 		ret = -BCH_ERR_ENOSPC_sb;
10280a34c058SKent Overstreet 		goto err;
10290a34c058SKent Overstreet 	}
10300a34c058SKent Overstreet 
10319fea2274SKent Overstreet 	for_each_rw_member(c, ca)
10321c6fdbd8SKent Overstreet 		bch2_dev_allocator_add(c, ca);
10331c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
10341c6fdbd8SKent Overstreet 
10351c6fdbd8SKent Overstreet 	ret = BCH_SB_INITIALIZED(c->disk_sb.sb)
10361c6fdbd8SKent Overstreet 		? bch2_fs_recovery(c)
10371c6fdbd8SKent Overstreet 		: bch2_fs_initialize(c);
10381c6fdbd8SKent Overstreet 	if (ret)
10391c6fdbd8SKent Overstreet 		goto err;
10401c6fdbd8SKent Overstreet 
1041cd575ddfSKent Overstreet 	ret = bch2_opts_check_may_set(c);
1042cd575ddfSKent Overstreet 	if (ret)
1043cd575ddfSKent Overstreet 		goto err;
1044cd575ddfSKent Overstreet 
1045e2b60560SKent Overstreet 	if (bch2_fs_init_fault("fs_start")) {
1046e2b60560SKent Overstreet 		bch_err(c, "fs_start fault injected");
104778c0b75cSKent Overstreet 		ret = -EINVAL;
10481c6fdbd8SKent Overstreet 		goto err;
1049e2b60560SKent Overstreet 	}
10501c6fdbd8SKent Overstreet 
10513c471b65SKent Overstreet 	set_bit(BCH_FS_started, &c->flags);
1052a9310ab0SKent Overstreet 
105362719cf3SKent Overstreet 	if (c->opts.read_only) {
10541c6fdbd8SKent Overstreet 		bch2_fs_read_only(c);
10551c6fdbd8SKent Overstreet 	} else {
10563c471b65SKent Overstreet 		ret = !test_bit(BCH_FS_rw, &c->flags)
1057619f5beeSKent Overstreet 			? bch2_fs_read_write(c)
1058619f5beeSKent Overstreet 			: bch2_fs_read_write_late(c);
1059619f5beeSKent Overstreet 		if (ret)
10601c6fdbd8SKent Overstreet 			goto err;
10611c6fdbd8SKent Overstreet 	}
10621c6fdbd8SKent Overstreet 
1063619f5beeSKent Overstreet 	ret = 0;
1064e34ec13aSKent Overstreet err:
1065e34ec13aSKent Overstreet 	if (ret)
1066e34ec13aSKent Overstreet 		bch_err_msg(c, ret, "starting filesystem");
1067e34ec13aSKent Overstreet 	else
1068e34ec13aSKent Overstreet 		bch_verbose(c, "done starting filesystem");
10691ada1606SKent Overstreet 	up_write(&c->state_lock);
1070619f5beeSKent Overstreet 	return ret;
10711c6fdbd8SKent Overstreet }
10721c6fdbd8SKent Overstreet 
107378c0b75cSKent Overstreet static int bch2_dev_may_add(struct bch_sb *sb, struct bch_fs *c)
10741c6fdbd8SKent Overstreet {
10751241df58SHunter Shaffer 	struct bch_member m = bch2_sb_member_get(sb, sb->dev_idx);
10761c6fdbd8SKent Overstreet 
10778244f320SKent Overstreet 	if (le16_to_cpu(sb->block_size) != block_sectors(c))
107878c0b75cSKent Overstreet 		return -BCH_ERR_mismatched_block_size;
10791c6fdbd8SKent Overstreet 
10801241df58SHunter Shaffer 	if (le16_to_cpu(m.bucket_size) <
10811c6fdbd8SKent Overstreet 	    BCH_SB_BTREE_NODE_SIZE(c->disk_sb.sb))
108278c0b75cSKent Overstreet 		return -BCH_ERR_bucket_size_too_small;
10831c6fdbd8SKent Overstreet 
108478c0b75cSKent Overstreet 	return 0;
10851c6fdbd8SKent Overstreet }
10861c6fdbd8SKent Overstreet 
10870d529663SKent Overstreet static int bch2_dev_in_fs(struct bch_sb_handle *fs,
10882f300f09SKent Overstreet 			  struct bch_sb_handle *sb,
10892f300f09SKent Overstreet 			  struct bch_opts *opts)
10901c6fdbd8SKent Overstreet {
10910d529663SKent Overstreet 	if (fs == sb)
10920d529663SKent Overstreet 		return 0;
10931c6fdbd8SKent Overstreet 
10940d529663SKent Overstreet 	if (!uuid_equal(&fs->sb->uuid, &sb->sb->uuid))
109578c0b75cSKent Overstreet 		return -BCH_ERR_device_not_a_member_of_filesystem;
10961c6fdbd8SKent Overstreet 
10972f724563SKent Overstreet 	if (!bch2_member_exists(fs->sb, sb->sb->dev_idx))
109878c0b75cSKent Overstreet 		return -BCH_ERR_device_has_been_removed;
10991c6fdbd8SKent Overstreet 
11000d529663SKent Overstreet 	if (fs->sb->block_size != sb->sb->block_size)
110178c0b75cSKent Overstreet 		return -BCH_ERR_mismatched_block_size;
11021c6fdbd8SKent Overstreet 
11030d529663SKent Overstreet 	if (le16_to_cpu(fs->sb->version) < bcachefs_metadata_version_member_seq ||
11040d529663SKent Overstreet 	    le16_to_cpu(sb->sb->version) < bcachefs_metadata_version_member_seq)
11050d529663SKent Overstreet 		return 0;
11060d529663SKent Overstreet 
11070d529663SKent Overstreet 	if (fs->sb->seq == sb->sb->seq &&
11080d529663SKent Overstreet 	    fs->sb->write_time != sb->sb->write_time) {
11090d529663SKent Overstreet 		struct printbuf buf = PRINTBUF;
11100d529663SKent Overstreet 
11111f5af5fcSKent Overstreet 		prt_str(&buf, "Split brain detected between ");
11121f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11131f5af5fcSKent Overstreet 		prt_str(&buf, " and ");
11141f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11151f5af5fcSKent Overstreet 		prt_char(&buf, ':');
11160d529663SKent Overstreet 		prt_newline(&buf);
11170d529663SKent Overstreet 		prt_printf(&buf, "seq=%llu but write_time different, got", le64_to_cpu(sb->sb->seq));
11180d529663SKent Overstreet 		prt_newline(&buf);
11190d529663SKent Overstreet 
11201f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11211f5af5fcSKent Overstreet 		prt_char(&buf, ' ');
11220d529663SKent Overstreet 		bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));;
11230d529663SKent Overstreet 		prt_newline(&buf);
11240d529663SKent Overstreet 
11251f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11261f5af5fcSKent Overstreet 		prt_char(&buf, ' ');
11270d529663SKent Overstreet 		bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));;
11280d529663SKent Overstreet 		prt_newline(&buf);
11290d529663SKent Overstreet 
11302f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11310d529663SKent Overstreet 			prt_printf(&buf, "Not using older sb");
11320d529663SKent Overstreet 
11330d529663SKent Overstreet 		pr_err("%s", buf.buf);
11340d529663SKent Overstreet 		printbuf_exit(&buf);
11352f300f09SKent Overstreet 
11362f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11370d529663SKent Overstreet 			return -BCH_ERR_device_splitbrain;
11380d529663SKent Overstreet 	}
11390d529663SKent Overstreet 
11400d529663SKent Overstreet 	struct bch_member m = bch2_sb_member_get(fs->sb, sb->sb->dev_idx);
11410d529663SKent Overstreet 	u64 seq_from_fs		= le64_to_cpu(m.seq);
11420d529663SKent Overstreet 	u64 seq_from_member	= le64_to_cpu(sb->sb->seq);
11430d529663SKent Overstreet 
11440d529663SKent Overstreet 	if (seq_from_fs && seq_from_fs < seq_from_member) {
11451f5af5fcSKent Overstreet 		struct printbuf buf = PRINTBUF;
11461f5af5fcSKent Overstreet 
11471f5af5fcSKent Overstreet 		prt_str(&buf, "Split brain detected between ");
11481f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11491f5af5fcSKent Overstreet 		prt_str(&buf, " and ");
11501f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11511f5af5fcSKent Overstreet 		prt_char(&buf, ':');
11521f5af5fcSKent Overstreet 		prt_newline(&buf);
11531f5af5fcSKent Overstreet 
11541f5af5fcSKent Overstreet 		prt_bdevname(&buf, fs->bdev);
11551f5af5fcSKent Overstreet 		prt_str(&buf, " believes seq of ");
11561f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11571f5af5fcSKent Overstreet 		prt_printf(&buf, " to be %llu, but ", seq_from_fs);
11581f5af5fcSKent Overstreet 		prt_bdevname(&buf, sb->bdev);
11591f5af5fcSKent Overstreet 		prt_printf(&buf, " has %llu\n", seq_from_member);
11602f300f09SKent Overstreet 
11612f300f09SKent Overstreet 		if (!opts->no_splitbrain_check) {
11621f5af5fcSKent Overstreet 			prt_str(&buf, "Not using ");
11631f5af5fcSKent Overstreet 			prt_bdevname(&buf, sb->bdev);
11642f300f09SKent Overstreet 		}
11651f5af5fcSKent Overstreet 
11661f5af5fcSKent Overstreet 		pr_err("%s", buf.buf);
11671f5af5fcSKent Overstreet 		printbuf_exit(&buf);
11682f300f09SKent Overstreet 
11692f300f09SKent Overstreet 		if (!opts->no_splitbrain_check)
11700d529663SKent Overstreet 			return -BCH_ERR_device_splitbrain;
11710d529663SKent Overstreet 	}
11720d529663SKent Overstreet 
117378c0b75cSKent Overstreet 	return 0;
11741c6fdbd8SKent Overstreet }
11751c6fdbd8SKent Overstreet 
11761c6fdbd8SKent Overstreet /* Device startup/shutdown: */
11771c6fdbd8SKent Overstreet 
11781c6fdbd8SKent Overstreet static void bch2_dev_release(struct kobject *kobj)
11791c6fdbd8SKent Overstreet {
11801c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
11811c6fdbd8SKent Overstreet 
11821c6fdbd8SKent Overstreet 	kfree(ca);
11831c6fdbd8SKent Overstreet }
11841c6fdbd8SKent Overstreet 
11851c6fdbd8SKent Overstreet static void bch2_dev_free(struct bch_dev *ca)
11861c6fdbd8SKent Overstreet {
11871c6fdbd8SKent Overstreet 	cancel_work_sync(&ca->io_error_work);
11881c6fdbd8SKent Overstreet 
11891c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs &&
11901c6fdbd8SKent Overstreet 	    ca->disk_sb.bdev)
11911c6fdbd8SKent Overstreet 		sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
11921c6fdbd8SKent Overstreet 
11931c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs)
11941c6fdbd8SKent Overstreet 		kobject_del(&ca->kobj);
11951c6fdbd8SKent Overstreet 
1196ffcbec60SKent Overstreet 	kfree(ca->buckets_nouse);
11971c6fdbd8SKent Overstreet 	bch2_free_super(&ca->disk_sb);
119864ee1431SKent Overstreet 	bch2_dev_allocator_background_exit(ca);
11991c6fdbd8SKent Overstreet 	bch2_dev_journal_exit(ca);
12001c6fdbd8SKent Overstreet 
12011c6fdbd8SKent Overstreet 	free_percpu(ca->io_done);
12021c6fdbd8SKent Overstreet 	bch2_dev_buckets_free(ca);
1203d1170ce5SKent Overstreet 	free_page((unsigned long) ca->sb_read_scratch);
12041c6fdbd8SKent Overstreet 
1205273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_exit(&ca->io_latency[WRITE]);
1206273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_exit(&ca->io_latency[READ]);
12071c6fdbd8SKent Overstreet 
12081c6fdbd8SKent Overstreet 	percpu_ref_exit(&ca->io_ref);
1209552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
12101c6fdbd8SKent Overstreet 	percpu_ref_exit(&ca->ref);
1211552aa548SKent Overstreet #endif
12121c6fdbd8SKent Overstreet 	kobject_put(&ca->kobj);
12131c6fdbd8SKent Overstreet }
12141c6fdbd8SKent Overstreet 
12151c6fdbd8SKent Overstreet static void __bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca)
12161c6fdbd8SKent Overstreet {
12171c6fdbd8SKent Overstreet 
12181c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
12191c6fdbd8SKent Overstreet 
12201c6fdbd8SKent Overstreet 	if (percpu_ref_is_zero(&ca->io_ref))
12211c6fdbd8SKent Overstreet 		return;
12221c6fdbd8SKent Overstreet 
12231c6fdbd8SKent Overstreet 	__bch2_dev_read_only(c, ca);
12241c6fdbd8SKent Overstreet 
12251c6fdbd8SKent Overstreet 	reinit_completion(&ca->io_ref_completion);
12261c6fdbd8SKent Overstreet 	percpu_ref_kill(&ca->io_ref);
12271c6fdbd8SKent Overstreet 	wait_for_completion(&ca->io_ref_completion);
12281c6fdbd8SKent Overstreet 
12291c6fdbd8SKent Overstreet 	if (ca->kobj.state_in_sysfs) {
12301c6fdbd8SKent Overstreet 		sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
12311c6fdbd8SKent Overstreet 		sysfs_remove_link(&ca->kobj, "block");
12321c6fdbd8SKent Overstreet 	}
12331c6fdbd8SKent Overstreet 
12341c6fdbd8SKent Overstreet 	bch2_free_super(&ca->disk_sb);
12351c6fdbd8SKent Overstreet 	bch2_dev_journal_exit(ca);
12361c6fdbd8SKent Overstreet }
12371c6fdbd8SKent Overstreet 
1238552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
12391c6fdbd8SKent Overstreet static void bch2_dev_ref_complete(struct percpu_ref *ref)
12401c6fdbd8SKent Overstreet {
12411c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(ref, struct bch_dev, ref);
12421c6fdbd8SKent Overstreet 
12431c6fdbd8SKent Overstreet 	complete(&ca->ref_completion);
12441c6fdbd8SKent Overstreet }
1245552aa548SKent Overstreet #endif
12461c6fdbd8SKent Overstreet 
12471c6fdbd8SKent Overstreet static void bch2_dev_io_ref_complete(struct percpu_ref *ref)
12481c6fdbd8SKent Overstreet {
12491c6fdbd8SKent Overstreet 	struct bch_dev *ca = container_of(ref, struct bch_dev, io_ref);
12501c6fdbd8SKent Overstreet 
12511c6fdbd8SKent Overstreet 	complete(&ca->io_ref_completion);
12521c6fdbd8SKent Overstreet }
12531c6fdbd8SKent Overstreet 
12541c6fdbd8SKent Overstreet static int bch2_dev_sysfs_online(struct bch_fs *c, struct bch_dev *ca)
12551c6fdbd8SKent Overstreet {
12561c6fdbd8SKent Overstreet 	int ret;
12571c6fdbd8SKent Overstreet 
12581c6fdbd8SKent Overstreet 	if (!c->kobj.state_in_sysfs)
12591c6fdbd8SKent Overstreet 		return 0;
12601c6fdbd8SKent Overstreet 
12611c6fdbd8SKent Overstreet 	if (!ca->kobj.state_in_sysfs) {
12621c6fdbd8SKent Overstreet 		ret = kobject_add(&ca->kobj, &c->kobj,
12631c6fdbd8SKent Overstreet 				  "dev-%u", ca->dev_idx);
12641c6fdbd8SKent Overstreet 		if (ret)
12651c6fdbd8SKent Overstreet 			return ret;
12661c6fdbd8SKent Overstreet 	}
12671c6fdbd8SKent Overstreet 
12681c6fdbd8SKent Overstreet 	if (ca->disk_sb.bdev) {
12691c6fdbd8SKent Overstreet 		struct kobject *block = bdev_kobj(ca->disk_sb.bdev);
12701c6fdbd8SKent Overstreet 
12711c6fdbd8SKent Overstreet 		ret = sysfs_create_link(block, &ca->kobj, "bcachefs");
12721c6fdbd8SKent Overstreet 		if (ret)
12731c6fdbd8SKent Overstreet 			return ret;
12741c6fdbd8SKent Overstreet 
12751c6fdbd8SKent Overstreet 		ret = sysfs_create_link(&ca->kobj, block, "block");
12761c6fdbd8SKent Overstreet 		if (ret)
12771c6fdbd8SKent Overstreet 			return ret;
12781c6fdbd8SKent Overstreet 	}
12791c6fdbd8SKent Overstreet 
12801c6fdbd8SKent Overstreet 	return 0;
12811c6fdbd8SKent Overstreet }
12821c6fdbd8SKent Overstreet 
12831c6fdbd8SKent Overstreet static struct bch_dev *__bch2_dev_alloc(struct bch_fs *c,
12841c6fdbd8SKent Overstreet 					struct bch_member *member)
12851c6fdbd8SKent Overstreet {
12861c6fdbd8SKent Overstreet 	struct bch_dev *ca;
128794119eebSKent Overstreet 	unsigned i;
12881c6fdbd8SKent Overstreet 
12891c6fdbd8SKent Overstreet 	ca = kzalloc(sizeof(*ca), GFP_KERNEL);
12901c6fdbd8SKent Overstreet 	if (!ca)
12911c6fdbd8SKent Overstreet 		return NULL;
12921c6fdbd8SKent Overstreet 
12931c6fdbd8SKent Overstreet 	kobject_init(&ca->kobj, &bch2_dev_ktype);
12941c6fdbd8SKent Overstreet 	init_completion(&ca->ref_completion);
12951c6fdbd8SKent Overstreet 	init_completion(&ca->io_ref_completion);
12961c6fdbd8SKent Overstreet 
12971c6fdbd8SKent Overstreet 	init_rwsem(&ca->bucket_lock);
12981c6fdbd8SKent Overstreet 
12991c6fdbd8SKent Overstreet 	INIT_WORK(&ca->io_error_work, bch2_io_error_work);
13001c6fdbd8SKent Overstreet 
1301273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_init(&ca->io_latency[READ]);
1302273960b8SDarrick J. Wong 	bch2_time_stats_quantiles_init(&ca->io_latency[WRITE]);
13031c6fdbd8SKent Overstreet 
13041c6fdbd8SKent Overstreet 	ca->mi = bch2_mi_to_cpu(member);
130594119eebSKent Overstreet 
130694119eebSKent Overstreet 	for (i = 0; i < ARRAY_SIZE(member->errors); i++)
130794119eebSKent Overstreet 		atomic64_set(&ca->errors[i], le64_to_cpu(member->errors[i]));
130894119eebSKent Overstreet 
13091c6fdbd8SKent Overstreet 	ca->uuid = member->uuid;
13101c6fdbd8SKent Overstreet 
1311f25d8215SKent Overstreet 	ca->nr_btree_reserve = DIV_ROUND_UP(BTREE_NODE_RESERVE,
1312f25d8215SKent Overstreet 			     ca->mi.bucket_size / btree_sectors(c));
1313f25d8215SKent Overstreet 
1314552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
1315552aa548SKent Overstreet 	if (percpu_ref_init(&ca->ref, bch2_dev_ref_complete, 0, GFP_KERNEL))
1316552aa548SKent Overstreet 		goto err;
1317552aa548SKent Overstreet #else
1318552aa548SKent Overstreet 	atomic_long_set(&ca->ref, 1);
1319552aa548SKent Overstreet #endif
1320552aa548SKent Overstreet 
132164ee1431SKent Overstreet 	bch2_dev_allocator_background_init(ca);
132264ee1431SKent Overstreet 
1323552aa548SKent Overstreet 	if (percpu_ref_init(&ca->io_ref, bch2_dev_io_ref_complete,
13241c6fdbd8SKent Overstreet 			    PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
1325d1170ce5SKent Overstreet 	    !(ca->sb_read_scratch = (void *) __get_free_page(GFP_KERNEL)) ||
13261c6fdbd8SKent Overstreet 	    bch2_dev_buckets_alloc(c, ca) ||
13271c6fdbd8SKent Overstreet 	    !(ca->io_done	= alloc_percpu(*ca->io_done)))
13281c6fdbd8SKent Overstreet 		goto err;
13291c6fdbd8SKent Overstreet 
13301c6fdbd8SKent Overstreet 	return ca;
13311c6fdbd8SKent Overstreet err:
13321c6fdbd8SKent Overstreet 	bch2_dev_free(ca);
13331c6fdbd8SKent Overstreet 	return NULL;
13341c6fdbd8SKent Overstreet }
13351c6fdbd8SKent Overstreet 
13361c6fdbd8SKent Overstreet static void bch2_dev_attach(struct bch_fs *c, struct bch_dev *ca,
13371c6fdbd8SKent Overstreet 			    unsigned dev_idx)
13381c6fdbd8SKent Overstreet {
13391c6fdbd8SKent Overstreet 	ca->dev_idx = dev_idx;
13401c6fdbd8SKent Overstreet 	__set_bit(ca->dev_idx, ca->self.d);
13411c6fdbd8SKent Overstreet 	scnprintf(ca->name, sizeof(ca->name), "dev-%u", dev_idx);
13421c6fdbd8SKent Overstreet 
13431c6fdbd8SKent Overstreet 	ca->fs = c;
13441c6fdbd8SKent Overstreet 	rcu_assign_pointer(c->devs[ca->dev_idx], ca);
13451c6fdbd8SKent Overstreet 
13461c6fdbd8SKent Overstreet 	if (bch2_dev_sysfs_online(c, ca))
13471c6fdbd8SKent Overstreet 		pr_warn("error creating sysfs objects");
13481c6fdbd8SKent Overstreet }
13491c6fdbd8SKent Overstreet 
13501c6fdbd8SKent Overstreet static int bch2_dev_alloc(struct bch_fs *c, unsigned dev_idx)
13511c6fdbd8SKent Overstreet {
13521241df58SHunter Shaffer 	struct bch_member member = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
13531c6fdbd8SKent Overstreet 	struct bch_dev *ca = NULL;
13541c6fdbd8SKent Overstreet 	int ret = 0;
13551c6fdbd8SKent Overstreet 
13561c6fdbd8SKent Overstreet 	if (bch2_fs_init_fault("dev_alloc"))
13571c6fdbd8SKent Overstreet 		goto err;
13581c6fdbd8SKent Overstreet 
13591241df58SHunter Shaffer 	ca = __bch2_dev_alloc(c, &member);
13601c6fdbd8SKent Overstreet 	if (!ca)
13611c6fdbd8SKent Overstreet 		goto err;
13621c6fdbd8SKent Overstreet 
1363220d2062SKent Overstreet 	ca->fs = c;
1364220d2062SKent Overstreet 
13651c6fdbd8SKent Overstreet 	bch2_dev_attach(c, ca, dev_idx);
13661c6fdbd8SKent Overstreet 	return ret;
13671c6fdbd8SKent Overstreet err:
13681c6fdbd8SKent Overstreet 	if (ca)
13691c6fdbd8SKent Overstreet 		bch2_dev_free(ca);
1370c8b4534dSKent Overstreet 	return -BCH_ERR_ENOMEM_dev_alloc;
13711c6fdbd8SKent Overstreet }
13721c6fdbd8SKent Overstreet 
13731c6fdbd8SKent Overstreet static int __bch2_dev_attach_bdev(struct bch_dev *ca, struct bch_sb_handle *sb)
13741c6fdbd8SKent Overstreet {
13751c6fdbd8SKent Overstreet 	unsigned ret;
13761c6fdbd8SKent Overstreet 
13771c6fdbd8SKent Overstreet 	if (bch2_dev_is_online(ca)) {
13781c6fdbd8SKent Overstreet 		bch_err(ca, "already have device online in slot %u",
13791c6fdbd8SKent Overstreet 			sb->sb->dev_idx);
138078c0b75cSKent Overstreet 		return -BCH_ERR_device_already_online;
13811c6fdbd8SKent Overstreet 	}
13821c6fdbd8SKent Overstreet 
13831c6fdbd8SKent Overstreet 	if (get_capacity(sb->bdev->bd_disk) <
13841c6fdbd8SKent Overstreet 	    ca->mi.bucket_size * ca->mi.nbuckets) {
13851c6fdbd8SKent Overstreet 		bch_err(ca, "cannot online: device too small");
138678c0b75cSKent Overstreet 		return -BCH_ERR_device_size_too_small;
13871c6fdbd8SKent Overstreet 	}
13881c6fdbd8SKent Overstreet 
13891c6fdbd8SKent Overstreet 	BUG_ON(!percpu_ref_is_zero(&ca->io_ref));
13901c6fdbd8SKent Overstreet 
13911c6fdbd8SKent Overstreet 	ret = bch2_dev_journal_init(ca, sb->sb);
13921c6fdbd8SKent Overstreet 	if (ret)
13931c6fdbd8SKent Overstreet 		return ret;
13941c6fdbd8SKent Overstreet 
13951c6fdbd8SKent Overstreet 	/* Commit: */
13961c6fdbd8SKent Overstreet 	ca->disk_sb = *sb;
13971c6fdbd8SKent Overstreet 	memset(sb, 0, sizeof(*sb));
13981c6fdbd8SKent Overstreet 
1399eacb2574SKent Overstreet 	ca->dev = ca->disk_sb.bdev->bd_dev;
1400eacb2574SKent Overstreet 
14011c6fdbd8SKent Overstreet 	percpu_ref_reinit(&ca->io_ref);
14021c6fdbd8SKent Overstreet 
14031c6fdbd8SKent Overstreet 	return 0;
14041c6fdbd8SKent Overstreet }
14051c6fdbd8SKent Overstreet 
14061c6fdbd8SKent Overstreet static int bch2_dev_attach_bdev(struct bch_fs *c, struct bch_sb_handle *sb)
14071c6fdbd8SKent Overstreet {
14081c6fdbd8SKent Overstreet 	struct bch_dev *ca;
14091c6fdbd8SKent Overstreet 	int ret;
14101c6fdbd8SKent Overstreet 
14111c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
14121c6fdbd8SKent Overstreet 
14131c6fdbd8SKent Overstreet 	if (le64_to_cpu(sb->sb->seq) >
14141c6fdbd8SKent Overstreet 	    le64_to_cpu(c->disk_sb.sb->seq))
14151c6fdbd8SKent Overstreet 		bch2_sb_to_fs(c, sb->sb);
14161c6fdbd8SKent Overstreet 
14172f724563SKent Overstreet 	BUG_ON(!bch2_dev_exists(c, sb->sb->dev_idx));
14181c6fdbd8SKent Overstreet 
14192f724563SKent Overstreet 	ca = bch2_dev_locked(c, sb->sb->dev_idx);
14201c6fdbd8SKent Overstreet 
14211c6fdbd8SKent Overstreet 	ret = __bch2_dev_attach_bdev(ca, sb);
14221c6fdbd8SKent Overstreet 	if (ret)
14231c6fdbd8SKent Overstreet 		return ret;
14241c6fdbd8SKent Overstreet 
14251c6fdbd8SKent Overstreet 	bch2_dev_sysfs_online(c, ca);
14261c6fdbd8SKent Overstreet 
14271f5af5fcSKent Overstreet 	struct printbuf name = PRINTBUF;
14281f5af5fcSKent Overstreet 	prt_bdevname(&name, ca->disk_sb.bdev);
14291f5af5fcSKent Overstreet 
14301c6fdbd8SKent Overstreet 	if (c->sb.nr_devices == 1)
1431e28b0359SKees Cook 		strscpy(c->name, name.buf, sizeof(c->name));
1432e28b0359SKees Cook 	strscpy(ca->name, name.buf, sizeof(ca->name));
14331f5af5fcSKent Overstreet 
14341f5af5fcSKent Overstreet 	printbuf_exit(&name);
14351c6fdbd8SKent Overstreet 
14361c6fdbd8SKent Overstreet 	rebalance_wakeup(c);
14371c6fdbd8SKent Overstreet 	return 0;
14381c6fdbd8SKent Overstreet }
14391c6fdbd8SKent Overstreet 
14401c6fdbd8SKent Overstreet /* Device management: */
14411c6fdbd8SKent Overstreet 
14421c6fdbd8SKent Overstreet /*
14431c6fdbd8SKent Overstreet  * Note: this function is also used by the error paths - when a particular
14441c6fdbd8SKent Overstreet  * device sees an error, we call it to determine whether we can just set the
14451c6fdbd8SKent Overstreet  * device RO, or - if this function returns false - we'll set the whole
14461c6fdbd8SKent Overstreet  * filesystem RO:
14471c6fdbd8SKent Overstreet  *
14481c6fdbd8SKent Overstreet  * XXX: maybe we should be more explicit about whether we're changing state
14491c6fdbd8SKent Overstreet  * because we got an error or what have you?
14501c6fdbd8SKent Overstreet  */
14511c6fdbd8SKent Overstreet bool bch2_dev_state_allowed(struct bch_fs *c, struct bch_dev *ca,
14521c6fdbd8SKent Overstreet 			    enum bch_member_state new_state, int flags)
14531c6fdbd8SKent Overstreet {
14541c6fdbd8SKent Overstreet 	struct bch_devs_mask new_online_devs;
14559fea2274SKent Overstreet 	int nr_rw = 0, required;
14561c6fdbd8SKent Overstreet 
14571c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
14581c6fdbd8SKent Overstreet 
14591c6fdbd8SKent Overstreet 	switch (new_state) {
14602436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_rw:
14611c6fdbd8SKent Overstreet 		return true;
14622436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_ro:
14632436cb9fSKent Overstreet 		if (ca->mi.state != BCH_MEMBER_STATE_rw)
14641c6fdbd8SKent Overstreet 			return true;
14651c6fdbd8SKent Overstreet 
14661c6fdbd8SKent Overstreet 		/* do we have enough devices to write to?  */
14679fea2274SKent Overstreet 		for_each_member_device(c, ca2)
14681c6fdbd8SKent Overstreet 			if (ca2 != ca)
14692436cb9fSKent Overstreet 				nr_rw += ca2->mi.state == BCH_MEMBER_STATE_rw;
14701c6fdbd8SKent Overstreet 
14711c6fdbd8SKent Overstreet 		required = max(!(flags & BCH_FORCE_IF_METADATA_DEGRADED)
14721c6fdbd8SKent Overstreet 			       ? c->opts.metadata_replicas
14734e074475SKent Overstreet 			       : metadata_replicas_required(c),
14741c6fdbd8SKent Overstreet 			       !(flags & BCH_FORCE_IF_DATA_DEGRADED)
14751c6fdbd8SKent Overstreet 			       ? c->opts.data_replicas
14764e074475SKent Overstreet 			       : data_replicas_required(c));
14771c6fdbd8SKent Overstreet 
14781c6fdbd8SKent Overstreet 		return nr_rw >= required;
14792436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_failed:
14802436cb9fSKent Overstreet 	case BCH_MEMBER_STATE_spare:
14812436cb9fSKent Overstreet 		if (ca->mi.state != BCH_MEMBER_STATE_rw &&
14822436cb9fSKent Overstreet 		    ca->mi.state != BCH_MEMBER_STATE_ro)
14831c6fdbd8SKent Overstreet 			return true;
14841c6fdbd8SKent Overstreet 
14851c6fdbd8SKent Overstreet 		/* do we have enough devices to read from?  */
14861c6fdbd8SKent Overstreet 		new_online_devs = bch2_online_devs(c);
14871c6fdbd8SKent Overstreet 		__clear_bit(ca->dev_idx, new_online_devs.d);
14881c6fdbd8SKent Overstreet 
1489fcb3431bSKent Overstreet 		return bch2_have_enough_devs(c, new_online_devs, flags, false);
14901c6fdbd8SKent Overstreet 	default:
14911c6fdbd8SKent Overstreet 		BUG();
14921c6fdbd8SKent Overstreet 	}
14931c6fdbd8SKent Overstreet }
14941c6fdbd8SKent Overstreet 
14951c6fdbd8SKent Overstreet static bool bch2_fs_may_start(struct bch_fs *c)
14961c6fdbd8SKent Overstreet {
14971c6fdbd8SKent Overstreet 	struct bch_dev *ca;
1498fcb3431bSKent Overstreet 	unsigned i, flags = 0;
14991c6fdbd8SKent Overstreet 
1500fcb3431bSKent Overstreet 	if (c->opts.very_degraded)
1501fcb3431bSKent Overstreet 		flags |= BCH_FORCE_IF_DEGRADED|BCH_FORCE_IF_LOST;
1502fcb3431bSKent Overstreet 
1503fcb3431bSKent Overstreet 	if (c->opts.degraded)
1504fcb3431bSKent Overstreet 		flags |= BCH_FORCE_IF_DEGRADED;
1505fcb3431bSKent Overstreet 
1506fcb3431bSKent Overstreet 	if (!c->opts.degraded &&
1507fcb3431bSKent Overstreet 	    !c->opts.very_degraded) {
15081c6fdbd8SKent Overstreet 		mutex_lock(&c->sb_lock);
15091c6fdbd8SKent Overstreet 
15101c6fdbd8SKent Overstreet 		for (i = 0; i < c->disk_sb.sb->nr_devices; i++) {
15112f724563SKent Overstreet 			if (!bch2_member_exists(c->disk_sb.sb, i))
15121c6fdbd8SKent Overstreet 				continue;
15131c6fdbd8SKent Overstreet 
15142f724563SKent Overstreet 			ca = bch2_dev_locked(c, i);
15151c6fdbd8SKent Overstreet 
15161c6fdbd8SKent Overstreet 			if (!bch2_dev_is_online(ca) &&
15172436cb9fSKent Overstreet 			    (ca->mi.state == BCH_MEMBER_STATE_rw ||
15182436cb9fSKent Overstreet 			     ca->mi.state == BCH_MEMBER_STATE_ro)) {
15191c6fdbd8SKent Overstreet 				mutex_unlock(&c->sb_lock);
15201c6fdbd8SKent Overstreet 				return false;
15211c6fdbd8SKent Overstreet 			}
15221c6fdbd8SKent Overstreet 		}
15231c6fdbd8SKent Overstreet 		mutex_unlock(&c->sb_lock);
15241c6fdbd8SKent Overstreet 	}
15251c6fdbd8SKent Overstreet 
1526fcb3431bSKent Overstreet 	return bch2_have_enough_devs(c, bch2_online_devs(c), flags, true);
15271c6fdbd8SKent Overstreet }
15281c6fdbd8SKent Overstreet 
15291c6fdbd8SKent Overstreet static void __bch2_dev_read_only(struct bch_fs *c, struct bch_dev *ca)
15301c6fdbd8SKent Overstreet {
15311c6fdbd8SKent Overstreet 	/*
15321c6fdbd8SKent Overstreet 	 * The allocator thread itself allocates btree nodes, so stop it first:
15331c6fdbd8SKent Overstreet 	 */
15341c6fdbd8SKent Overstreet 	bch2_dev_allocator_remove(c, ca);
153536da8e38SKent Overstreet 	bch2_recalc_capacity(c);
15361c6fdbd8SKent Overstreet 	bch2_dev_journal_stop(&c->journal, ca);
15371c6fdbd8SKent Overstreet }
15381c6fdbd8SKent Overstreet 
1539f25d8215SKent Overstreet static void __bch2_dev_read_write(struct bch_fs *c, struct bch_dev *ca)
15401c6fdbd8SKent Overstreet {
15411c6fdbd8SKent Overstreet 	lockdep_assert_held(&c->state_lock);
15421c6fdbd8SKent Overstreet 
15432436cb9fSKent Overstreet 	BUG_ON(ca->mi.state != BCH_MEMBER_STATE_rw);
15441c6fdbd8SKent Overstreet 
15451c6fdbd8SKent Overstreet 	bch2_dev_allocator_add(c, ca);
15461c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
154764ee1431SKent Overstreet 	bch2_dev_do_discards(ca);
15481c6fdbd8SKent Overstreet }
15491c6fdbd8SKent Overstreet 
15501c6fdbd8SKent Overstreet int __bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
15511c6fdbd8SKent Overstreet 			 enum bch_member_state new_state, int flags)
15521c6fdbd8SKent Overstreet {
15533f7b9713SHunter Shaffer 	struct bch_member *m;
15541c6fdbd8SKent Overstreet 	int ret = 0;
15551c6fdbd8SKent Overstreet 
15561c6fdbd8SKent Overstreet 	if (ca->mi.state == new_state)
15571c6fdbd8SKent Overstreet 		return 0;
15581c6fdbd8SKent Overstreet 
15591c6fdbd8SKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, new_state, flags))
156078c0b75cSKent Overstreet 		return -BCH_ERR_device_state_not_allowed;
15611c6fdbd8SKent Overstreet 
15622436cb9fSKent Overstreet 	if (new_state != BCH_MEMBER_STATE_rw)
15631c6fdbd8SKent Overstreet 		__bch2_dev_read_only(c, ca);
15641c6fdbd8SKent Overstreet 
15652436cb9fSKent Overstreet 	bch_notice(ca, "%s", bch2_member_states[new_state]);
15661c6fdbd8SKent Overstreet 
15671c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
15683f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
15693f7b9713SHunter Shaffer 	SET_BCH_MEMBER_STATE(m, new_state);
15701c6fdbd8SKent Overstreet 	bch2_write_super(c);
15711c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
15721c6fdbd8SKent Overstreet 
1573e2b60560SKent Overstreet 	if (new_state == BCH_MEMBER_STATE_rw)
1574f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
15751c6fdbd8SKent Overstreet 
15761c6fdbd8SKent Overstreet 	rebalance_wakeup(c);
15771c6fdbd8SKent Overstreet 
15781c6fdbd8SKent Overstreet 	return ret;
15791c6fdbd8SKent Overstreet }
15801c6fdbd8SKent Overstreet 
15811c6fdbd8SKent Overstreet int bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
15821c6fdbd8SKent Overstreet 		       enum bch_member_state new_state, int flags)
15831c6fdbd8SKent Overstreet {
15841c6fdbd8SKent Overstreet 	int ret;
15851c6fdbd8SKent Overstreet 
15861ada1606SKent Overstreet 	down_write(&c->state_lock);
15871c6fdbd8SKent Overstreet 	ret = __bch2_dev_set_state(c, ca, new_state, flags);
15881ada1606SKent Overstreet 	up_write(&c->state_lock);
15891c6fdbd8SKent Overstreet 
15901c6fdbd8SKent Overstreet 	return ret;
15911c6fdbd8SKent Overstreet }
15921c6fdbd8SKent Overstreet 
15931c6fdbd8SKent Overstreet /* Device add/removal: */
15941c6fdbd8SKent Overstreet 
1595c0ebe3e4SKent Overstreet static int bch2_dev_remove_alloc(struct bch_fs *c, struct bch_dev *ca)
15965d20ba48SKent Overstreet {
1597c6b2826cSKent Overstreet 	struct bpos start	= POS(ca->dev_idx, 0);
1598c6b2826cSKent Overstreet 	struct bpos end		= POS(ca->dev_idx, U64_MAX);
15995d20ba48SKent Overstreet 	int ret;
16005d20ba48SKent Overstreet 
1601a9c0a4cbSKent Overstreet 	/*
1602a9c0a4cbSKent Overstreet 	 * We clear the LRU and need_discard btrees first so that we don't race
1603a9c0a4cbSKent Overstreet 	 * with bch2_do_invalidates() and bch2_do_discards()
1604a9c0a4cbSKent Overstreet 	 */
1605a9c0a4cbSKent Overstreet 	ret =   bch2_btree_delete_range(c, BTREE_ID_lru, start, end,
16065dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1607a9c0a4cbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_need_discard, start, end,
16085dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1609c6b2826cSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_freespace, start, end,
16105dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1611a8c752bbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_backpointers, start, end,
16125dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
1613a9c0a4cbSKent Overstreet 		bch2_btree_delete_range(c, BTREE_ID_alloc, start, end,
16145dd8c60eSKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
161502d51bb9SBrian Foster 		bch2_btree_delete_range(c, BTREE_ID_bucket_gens, start, end,
16161d16c605SKent Overstreet 					BTREE_TRIGGER_norun, NULL) ?:
16171d16c605SKent Overstreet 		bch2_dev_usage_remove(c, ca->dev_idx);
1618e46c181aSKent Overstreet 	bch_err_msg(c, ret, "removing dev alloc info");
1619c6b2826cSKent Overstreet 	return ret;
16205d20ba48SKent Overstreet }
16215d20ba48SKent Overstreet 
16221c6fdbd8SKent Overstreet int bch2_dev_remove(struct bch_fs *c, struct bch_dev *ca, int flags)
16231c6fdbd8SKent Overstreet {
16243f7b9713SHunter Shaffer 	struct bch_member *m;
16251c6fdbd8SKent Overstreet 	unsigned dev_idx = ca->dev_idx, data;
162678c0b75cSKent Overstreet 	int ret;
16271c6fdbd8SKent Overstreet 
16281ada1606SKent Overstreet 	down_write(&c->state_lock);
16291c6fdbd8SKent Overstreet 
163031ba2cd3SKent Overstreet 	/*
163131ba2cd3SKent Overstreet 	 * We consume a reference to ca->ref, regardless of whether we succeed
163231ba2cd3SKent Overstreet 	 * or fail:
163331ba2cd3SKent Overstreet 	 */
1634f295298bSKent Overstreet 	bch2_dev_put(ca);
16351c6fdbd8SKent Overstreet 
16362436cb9fSKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
16371c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot remove without losing data");
163878c0b75cSKent Overstreet 		ret = -BCH_ERR_device_state_not_allowed;
16391c6fdbd8SKent Overstreet 		goto err;
16401c6fdbd8SKent Overstreet 	}
16411c6fdbd8SKent Overstreet 
16421c6fdbd8SKent Overstreet 	__bch2_dev_read_only(c, ca);
16431c6fdbd8SKent Overstreet 
16441c6fdbd8SKent Overstreet 	ret = bch2_dev_data_drop(c, ca->dev_idx, flags);
1645130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_dev_data_drop()");
1646cf904c8dSKent Overstreet 	if (ret)
16471c6fdbd8SKent Overstreet 		goto err;
16481c6fdbd8SKent Overstreet 
16495d20ba48SKent Overstreet 	ret = bch2_dev_remove_alloc(c, ca);
1650130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_dev_remove_alloc()");
1651cf904c8dSKent Overstreet 	if (ret)
16521c6fdbd8SKent Overstreet 		goto err;
16531c6fdbd8SKent Overstreet 
16541d16c605SKent Overstreet 	/*
16551d16c605SKent Overstreet 	 * We need to flush the entire journal to get rid of keys that reference
16561d16c605SKent Overstreet 	 * the device being removed before removing the superblock entry
16571d16c605SKent Overstreet 	 */
16581d16c605SKent Overstreet 	bch2_journal_flush_all_pins(&c->journal);
16591d16c605SKent Overstreet 
16601d16c605SKent Overstreet 	/*
16611d16c605SKent Overstreet 	 * this is really just needed for the bch2_replicas_gc_(start|end)
16621d16c605SKent Overstreet 	 * calls, and could be cleaned up:
16631d16c605SKent Overstreet 	 */
1664a9c0a4cbSKent Overstreet 	ret = bch2_journal_flush_device_pins(&c->journal, ca->dev_idx);
1665130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_journal_flush_device_pins()");
1666cf904c8dSKent Overstreet 	if (ret)
1667a9c0a4cbSKent Overstreet 		goto err;
1668a9c0a4cbSKent Overstreet 
1669a9c0a4cbSKent Overstreet 	ret = bch2_journal_flush(&c->journal);
1670130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_journal_flush()");
1671cf904c8dSKent Overstreet 	if (ret)
16721c6fdbd8SKent Overstreet 		goto err;
16731c6fdbd8SKent Overstreet 
167431ba2cd3SKent Overstreet 	ret = bch2_replicas_gc2(c);
1675130d229fSKent Overstreet 	bch_err_msg(ca, ret, "bch2_replicas_gc2()");
1676cf904c8dSKent Overstreet 	if (ret)
167731ba2cd3SKent Overstreet 		goto err;
167831ba2cd3SKent Overstreet 
167931ba2cd3SKent Overstreet 	data = bch2_dev_has_data(c, ca);
168031ba2cd3SKent Overstreet 	if (data) {
1681fa8e94faSKent Overstreet 		struct printbuf data_has = PRINTBUF;
168231ba2cd3SKent Overstreet 
1683e58f963cSKent Overstreet 		prt_bitflags(&data_has, __bch2_data_types, data);
1684fa8e94faSKent Overstreet 		bch_err(ca, "Remove failed, still has data (%s)", data_has.buf);
1685fa8e94faSKent Overstreet 		printbuf_exit(&data_has);
168631ba2cd3SKent Overstreet 		ret = -EBUSY;
168731ba2cd3SKent Overstreet 		goto err;
168831ba2cd3SKent Overstreet 	}
168931ba2cd3SKent Overstreet 
16901c6fdbd8SKent Overstreet 	__bch2_dev_offline(c, ca);
16911c6fdbd8SKent Overstreet 
16921c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
16931c6fdbd8SKent Overstreet 	rcu_assign_pointer(c->devs[ca->dev_idx], NULL);
16941c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
16951c6fdbd8SKent Overstreet 
1696552aa548SKent Overstreet #ifndef CONFIG_BCACHEFS_DEBUG
16971c6fdbd8SKent Overstreet 	percpu_ref_kill(&ca->ref);
1698552aa548SKent Overstreet #else
1699552aa548SKent Overstreet 	ca->dying = true;
1700552aa548SKent Overstreet 	bch2_dev_put(ca);
1701552aa548SKent Overstreet #endif
17021c6fdbd8SKent Overstreet 	wait_for_completion(&ca->ref_completion);
17031c6fdbd8SKent Overstreet 
17041c6fdbd8SKent Overstreet 	bch2_dev_free(ca);
17051c6fdbd8SKent Overstreet 
17061c6fdbd8SKent Overstreet 	/*
17071c6fdbd8SKent Overstreet 	 * Free this device's slot in the bch_member array - all pointers to
17081c6fdbd8SKent Overstreet 	 * this device must be gone:
17091c6fdbd8SKent Overstreet 	 */
17101c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
17113f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
17123f7b9713SHunter Shaffer 	memset(&m->uuid, 0, sizeof(m->uuid));
17131c6fdbd8SKent Overstreet 
17141c6fdbd8SKent Overstreet 	bch2_write_super(c);
17151c6fdbd8SKent Overstreet 
17161c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
17171ada1606SKent Overstreet 	up_write(&c->state_lock);
17181c6fdbd8SKent Overstreet 	return 0;
17191c6fdbd8SKent Overstreet err:
17202436cb9fSKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1721d3bb629dSKent Overstreet 	    !percpu_ref_is_zero(&ca->io_ref))
17221c6fdbd8SKent Overstreet 		__bch2_dev_read_write(c, ca);
17231ada1606SKent Overstreet 	up_write(&c->state_lock);
17241c6fdbd8SKent Overstreet 	return ret;
17251c6fdbd8SKent Overstreet }
17261c6fdbd8SKent Overstreet 
17271c6fdbd8SKent Overstreet /* Add new device to running filesystem: */
17281c6fdbd8SKent Overstreet int bch2_dev_add(struct bch_fs *c, const char *path)
17291c6fdbd8SKent Overstreet {
17301c6fdbd8SKent Overstreet 	struct bch_opts opts = bch2_opts_empty();
17311c6fdbd8SKent Overstreet 	struct bch_sb_handle sb;
17321c6fdbd8SKent Overstreet 	struct bch_dev *ca = NULL;
17333f7b9713SHunter Shaffer 	struct bch_sb_field_members_v2 *mi;
17341c6fdbd8SKent Overstreet 	struct bch_member dev_mi;
17351c6fdbd8SKent Overstreet 	unsigned dev_idx, nr_devices, u64s;
1736fa8e94faSKent Overstreet 	struct printbuf errbuf = PRINTBUF;
173702afcb8cSKent Overstreet 	struct printbuf label = PRINTBUF;
17381c6fdbd8SKent Overstreet 	int ret;
17391c6fdbd8SKent Overstreet 
17401c6fdbd8SKent Overstreet 	ret = bch2_read_super(path, &opts, &sb);
1741e46c181aSKent Overstreet 	bch_err_msg(c, ret, "reading super");
1742cf904c8dSKent Overstreet 	if (ret)
1743efe68e1dSKent Overstreet 		goto err;
17441c6fdbd8SKent Overstreet 
17451241df58SHunter Shaffer 	dev_mi = bch2_sb_member_get(sb.sb, sb.sb->dev_idx);
17461c6fdbd8SKent Overstreet 
174702afcb8cSKent Overstreet 	if (BCH_MEMBER_GROUP(&dev_mi)) {
1748e677179bSKent Overstreet 		bch2_disk_path_to_text_sb(&label, sb.sb, BCH_MEMBER_GROUP(&dev_mi) - 1);
174902afcb8cSKent Overstreet 		if (label.allocation_failure) {
175002afcb8cSKent Overstreet 			ret = -ENOMEM;
175102afcb8cSKent Overstreet 			goto err;
175202afcb8cSKent Overstreet 		}
175302afcb8cSKent Overstreet 	}
175402afcb8cSKent Overstreet 
175578c0b75cSKent Overstreet 	ret = bch2_dev_may_add(sb.sb, c);
1756cf904c8dSKent Overstreet 	if (ret)
1757efe68e1dSKent Overstreet 		goto err;
17581c6fdbd8SKent Overstreet 
17591c6fdbd8SKent Overstreet 	ca = __bch2_dev_alloc(c, &dev_mi);
17601c6fdbd8SKent Overstreet 	if (!ca) {
1761efe68e1dSKent Overstreet 		ret = -ENOMEM;
1762efe68e1dSKent Overstreet 		goto err;
17631c6fdbd8SKent Overstreet 	}
17641c6fdbd8SKent Overstreet 
17651c6fdbd8SKent Overstreet 	ret = __bch2_dev_attach_bdev(ca, &sb);
176671933fb6SChristophe JAILLET 	if (ret)
1767efe68e1dSKent Overstreet 		goto err;
17681c6fdbd8SKent Overstreet 
176944ec5990SKent Overstreet 	ret = bch2_dev_journal_alloc(ca, true);
1770e46c181aSKent Overstreet 	bch_err_msg(c, ret, "allocating journal");
1771cf904c8dSKent Overstreet 	if (ret)
17721c6fdbd8SKent Overstreet 		goto err;
17731c6fdbd8SKent Overstreet 
17741ada1606SKent Overstreet 	down_write(&c->state_lock);
17751c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
17761c6fdbd8SKent Overstreet 
17771c6fdbd8SKent Overstreet 	ret = bch2_sb_from_fs(c, ca);
1778e46c181aSKent Overstreet 	bch_err_msg(c, ret, "setting up new superblock");
1779cf904c8dSKent Overstreet 	if (ret)
17801c6fdbd8SKent Overstreet 		goto err_unlock;
17811c6fdbd8SKent Overstreet 
17821c6fdbd8SKent Overstreet 	if (dynamic_fault("bcachefs:add:no_slot"))
17831c6fdbd8SKent Overstreet 		goto no_slot;
17841c6fdbd8SKent Overstreet 
17853a718c06SKent Overstreet 	if (c->sb.nr_devices < BCH_SB_MEMBERS_MAX) {
17863a718c06SKent Overstreet 		dev_idx = c->sb.nr_devices;
17871c6fdbd8SKent Overstreet 		goto have_slot;
17883a718c06SKent Overstreet 	}
17893a718c06SKent Overstreet 
17903a718c06SKent Overstreet 	int best = -1;
17913a718c06SKent Overstreet 	u64 best_last_mount = 0;
17923a718c06SKent Overstreet 	for (dev_idx = 0; dev_idx < BCH_SB_MEMBERS_MAX; dev_idx++) {
17933a718c06SKent Overstreet 		struct bch_member m = bch2_sb_member_get(c->disk_sb.sb, dev_idx);
17943a718c06SKent Overstreet 		if (bch2_member_alive(&m))
17953a718c06SKent Overstreet 			continue;
17963a718c06SKent Overstreet 
17973a718c06SKent Overstreet 		u64 last_mount = le64_to_cpu(m.last_mount);
17983a718c06SKent Overstreet 		if (best < 0 || last_mount < best_last_mount) {
17993a718c06SKent Overstreet 			best = dev_idx;
18003a718c06SKent Overstreet 			best_last_mount = last_mount;
18013a718c06SKent Overstreet 		}
18023a718c06SKent Overstreet 	}
18033a718c06SKent Overstreet 	if (best >= 0) {
18043a718c06SKent Overstreet 		dev_idx = best;
18053a718c06SKent Overstreet 		goto have_slot;
18063a718c06SKent Overstreet 	}
18071c6fdbd8SKent Overstreet no_slot:
1808098ef98dSKent Overstreet 	ret = -BCH_ERR_ENOSPC_sb_members;
1809e46c181aSKent Overstreet 	bch_err_msg(c, ret, "setting up new superblock");
18101c6fdbd8SKent Overstreet 	goto err_unlock;
18111c6fdbd8SKent Overstreet 
18121c6fdbd8SKent Overstreet have_slot:
18131c6fdbd8SKent Overstreet 	nr_devices = max_t(unsigned, dev_idx + 1, c->sb.nr_devices);
1814e8484348SKent Overstreet 
1815e8484348SKent Overstreet 	mi = bch2_sb_field_get(c->disk_sb.sb, members_v2);
18163f7b9713SHunter Shaffer 	u64s = DIV_ROUND_UP(sizeof(struct bch_sb_field_members_v2) +
18173f7b9713SHunter Shaffer 			    le16_to_cpu(mi->member_bytes) * nr_devices, sizeof(u64));
18181c6fdbd8SKent Overstreet 
18194637429eSKent Overstreet 	mi = bch2_sb_field_resize(&c->disk_sb, members_v2, u64s);
1820e8536925SKent Overstreet 	if (!mi) {
1821098ef98dSKent Overstreet 		ret = -BCH_ERR_ENOSPC_sb_members;
1822e46c181aSKent Overstreet 		bch_err_msg(c, ret, "setting up new superblock");
18231c6fdbd8SKent Overstreet 		goto err_unlock;
1824e8536925SKent Overstreet 	}
18253f7b9713SHunter Shaffer 	struct bch_member *m = bch2_members_v2_get_mut(c->disk_sb.sb, dev_idx);
18261c6fdbd8SKent Overstreet 
18271c6fdbd8SKent Overstreet 	/* success: */
18281c6fdbd8SKent Overstreet 
18293f7b9713SHunter Shaffer 	*m = dev_mi;
18303f7b9713SHunter Shaffer 	m->last_mount = cpu_to_le64(ktime_get_real_seconds());
18311c6fdbd8SKent Overstreet 	c->disk_sb.sb->nr_devices	= nr_devices;
18321c6fdbd8SKent Overstreet 
18331c6fdbd8SKent Overstreet 	ca->disk_sb.sb->dev_idx	= dev_idx;
18341c6fdbd8SKent Overstreet 	bch2_dev_attach(c, ca, dev_idx);
18351c6fdbd8SKent Overstreet 
183602afcb8cSKent Overstreet 	if (BCH_MEMBER_GROUP(&dev_mi)) {
183702afcb8cSKent Overstreet 		ret = __bch2_dev_group_set(c, ca, label.buf);
1838e46c181aSKent Overstreet 		bch_err_msg(c, ret, "creating new label");
1839cf904c8dSKent Overstreet 		if (ret)
184002afcb8cSKent Overstreet 			goto err_unlock;
184102afcb8cSKent Overstreet 	}
184202afcb8cSKent Overstreet 
18431c6fdbd8SKent Overstreet 	bch2_write_super(c);
18441c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
18451c6fdbd8SKent Overstreet 
1846fb23d57aSKent Overstreet 	ret = bch2_dev_usage_init(ca, false);
18471d16c605SKent Overstreet 	if (ret)
18481d16c605SKent Overstreet 		goto err_late;
18491d16c605SKent Overstreet 
18505dd8c60eSKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca, BTREE_TRIGGER_transactional);
1851bbe682c7SKent Overstreet 	bch_err_msg(ca, ret, "marking new superblock");
1852cf904c8dSKent Overstreet 	if (ret)
1853bfcf840dSKent Overstreet 		goto err_late;
18548d6b6222SKent Overstreet 
1855c6b2826cSKent Overstreet 	ret = bch2_fs_freespace_init(c);
1856bbe682c7SKent Overstreet 	bch_err_msg(ca, ret, "initializing free space");
1857cf904c8dSKent Overstreet 	if (ret)
1858c6b2826cSKent Overstreet 		goto err_late;
1859c6b2826cSKent Overstreet 
186009943313SKent Overstreet 	ca->new_fs_bucket_idx = 0;
186109943313SKent Overstreet 
1862f25d8215SKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw)
1863f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
18641c6fdbd8SKent Overstreet 
18651ada1606SKent Overstreet 	up_write(&c->state_lock);
18661c6fdbd8SKent Overstreet 	return 0;
18671c6fdbd8SKent Overstreet 
18681c6fdbd8SKent Overstreet err_unlock:
18691c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
18701ada1606SKent Overstreet 	up_write(&c->state_lock);
18711c6fdbd8SKent Overstreet err:
18721c6fdbd8SKent Overstreet 	if (ca)
18731c6fdbd8SKent Overstreet 		bch2_dev_free(ca);
18741c6fdbd8SKent Overstreet 	bch2_free_super(&sb);
187502afcb8cSKent Overstreet 	printbuf_exit(&label);
1876fa8e94faSKent Overstreet 	printbuf_exit(&errbuf);
1877cf904c8dSKent Overstreet 	bch_err_fn(c, ret);
18781c6fdbd8SKent Overstreet 	return ret;
18791c6fdbd8SKent Overstreet err_late:
1880bfcf840dSKent Overstreet 	up_write(&c->state_lock);
1881efe68e1dSKent Overstreet 	ca = NULL;
1882efe68e1dSKent Overstreet 	goto err;
18831c6fdbd8SKent Overstreet }
18841c6fdbd8SKent Overstreet 
18851c6fdbd8SKent Overstreet /* Hot add existing device to running filesystem: */
18861c6fdbd8SKent Overstreet int bch2_dev_online(struct bch_fs *c, const char *path)
18871c6fdbd8SKent Overstreet {
18881c6fdbd8SKent Overstreet 	struct bch_opts opts = bch2_opts_empty();
18891c6fdbd8SKent Overstreet 	struct bch_sb_handle sb = { NULL };
18901c6fdbd8SKent Overstreet 	struct bch_dev *ca;
18911c6fdbd8SKent Overstreet 	unsigned dev_idx;
18921c6fdbd8SKent Overstreet 	int ret;
18931c6fdbd8SKent Overstreet 
18941ada1606SKent Overstreet 	down_write(&c->state_lock);
18951c6fdbd8SKent Overstreet 
18961c6fdbd8SKent Overstreet 	ret = bch2_read_super(path, &opts, &sb);
18971c6fdbd8SKent Overstreet 	if (ret) {
18981ada1606SKent Overstreet 		up_write(&c->state_lock);
18991c6fdbd8SKent Overstreet 		return ret;
19001c6fdbd8SKent Overstreet 	}
19011c6fdbd8SKent Overstreet 
19021c6fdbd8SKent Overstreet 	dev_idx = sb.sb->dev_idx;
19031c6fdbd8SKent Overstreet 
19042f300f09SKent Overstreet 	ret = bch2_dev_in_fs(&c->disk_sb, &sb, &c->opts);
1905e46c181aSKent Overstreet 	bch_err_msg(c, ret, "bringing %s online", path);
1906cf904c8dSKent Overstreet 	if (ret)
19071c6fdbd8SKent Overstreet 		goto err;
19081c6fdbd8SKent Overstreet 
1909e2b60560SKent Overstreet 	ret = bch2_dev_attach_bdev(c, &sb);
1910e2b60560SKent Overstreet 	if (ret)
1911e2b60560SKent Overstreet 		goto err;
1912e2b60560SKent Overstreet 
19132f724563SKent Overstreet 	ca = bch2_dev_locked(c, dev_idx);
1914bfcf840dSKent Overstreet 
19155dd8c60eSKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca, BTREE_TRIGGER_transactional);
1916e46c181aSKent Overstreet 	bch_err_msg(c, ret, "bringing %s online: error from bch2_trans_mark_dev_sb", path);
1917cf904c8dSKent Overstreet 	if (ret)
1918bfcf840dSKent Overstreet 		goto err;
1919bfcf840dSKent Overstreet 
1920f25d8215SKent Overstreet 	if (ca->mi.state == BCH_MEMBER_STATE_rw)
1921f25d8215SKent Overstreet 		__bch2_dev_read_write(c, ca);
19221c6fdbd8SKent Overstreet 
1923bbe682c7SKent Overstreet 	if (!ca->mi.freespace_initialized) {
1924bbe682c7SKent Overstreet 		ret = bch2_dev_freespace_init(c, ca, 0, ca->mi.nbuckets);
1925bbe682c7SKent Overstreet 		bch_err_msg(ca, ret, "initializing free space");
1926bbe682c7SKent Overstreet 		if (ret)
1927bbe682c7SKent Overstreet 			goto err;
1928bbe682c7SKent Overstreet 	}
1929bbe682c7SKent Overstreet 
1930bbe682c7SKent Overstreet 	if (!ca->journal.nr) {
193144ec5990SKent Overstreet 		ret = bch2_dev_journal_alloc(ca, false);
1932bbe682c7SKent Overstreet 		bch_err_msg(ca, ret, "allocating journal");
1933bbe682c7SKent Overstreet 		if (ret)
1934bbe682c7SKent Overstreet 			goto err;
1935bbe682c7SKent Overstreet 	}
1936bbe682c7SKent Overstreet 
19371c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
1938bbe682c7SKent Overstreet 	bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx)->last_mount =
1939a420eea6STim Schlueter 		cpu_to_le64(ktime_get_real_seconds());
19401c6fdbd8SKent Overstreet 	bch2_write_super(c);
19411c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
19421c6fdbd8SKent Overstreet 
19431ada1606SKent Overstreet 	up_write(&c->state_lock);
19441c6fdbd8SKent Overstreet 	return 0;
19451c6fdbd8SKent Overstreet err:
19461ada1606SKent Overstreet 	up_write(&c->state_lock);
19471c6fdbd8SKent Overstreet 	bch2_free_super(&sb);
194878c0b75cSKent Overstreet 	return ret;
19491c6fdbd8SKent Overstreet }
19501c6fdbd8SKent Overstreet 
19511c6fdbd8SKent Overstreet int bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca, int flags)
19521c6fdbd8SKent Overstreet {
19531ada1606SKent Overstreet 	down_write(&c->state_lock);
19541c6fdbd8SKent Overstreet 
19551c6fdbd8SKent Overstreet 	if (!bch2_dev_is_online(ca)) {
19561c6fdbd8SKent Overstreet 		bch_err(ca, "Already offline");
19571ada1606SKent Overstreet 		up_write(&c->state_lock);
19581c6fdbd8SKent Overstreet 		return 0;
19591c6fdbd8SKent Overstreet 	}
19601c6fdbd8SKent Overstreet 
19612436cb9fSKent Overstreet 	if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
19621c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot offline required disk");
19631ada1606SKent Overstreet 		up_write(&c->state_lock);
196478c0b75cSKent Overstreet 		return -BCH_ERR_device_state_not_allowed;
19651c6fdbd8SKent Overstreet 	}
19661c6fdbd8SKent Overstreet 
19671c6fdbd8SKent Overstreet 	__bch2_dev_offline(c, ca);
19681c6fdbd8SKent Overstreet 
19691ada1606SKent Overstreet 	up_write(&c->state_lock);
19701c6fdbd8SKent Overstreet 	return 0;
19711c6fdbd8SKent Overstreet }
19721c6fdbd8SKent Overstreet 
19731c6fdbd8SKent Overstreet int bch2_dev_resize(struct bch_fs *c, struct bch_dev *ca, u64 nbuckets)
19741c6fdbd8SKent Overstreet {
19753f7b9713SHunter Shaffer 	struct bch_member *m;
197669d1f052SKent Overstreet 	u64 old_nbuckets;
19771c6fdbd8SKent Overstreet 	int ret = 0;
19781c6fdbd8SKent Overstreet 
19791ada1606SKent Overstreet 	down_write(&c->state_lock);
198069d1f052SKent Overstreet 	old_nbuckets = ca->mi.nbuckets;
19811c6fdbd8SKent Overstreet 
19821c6fdbd8SKent Overstreet 	if (nbuckets < ca->mi.nbuckets) {
19831c6fdbd8SKent Overstreet 		bch_err(ca, "Cannot shrink yet");
19841c6fdbd8SKent Overstreet 		ret = -EINVAL;
19851c6fdbd8SKent Overstreet 		goto err;
19861c6fdbd8SKent Overstreet 	}
19871c6fdbd8SKent Overstreet 
1988db42549dSKent Overstreet 	if (nbuckets > BCH_MEMBER_NBUCKETS_MAX) {
1989db42549dSKent Overstreet 		bch_err(ca, "New device size too big (%llu greater than max %u)",
1990db42549dSKent Overstreet 			nbuckets, BCH_MEMBER_NBUCKETS_MAX);
1991db42549dSKent Overstreet 		ret = -BCH_ERR_device_size_too_big;
1992db42549dSKent Overstreet 		goto err;
1993db42549dSKent Overstreet 	}
1994db42549dSKent Overstreet 
19951c6fdbd8SKent Overstreet 	if (bch2_dev_is_online(ca) &&
19961c6fdbd8SKent Overstreet 	    get_capacity(ca->disk_sb.bdev->bd_disk) <
19971c6fdbd8SKent Overstreet 	    ca->mi.bucket_size * nbuckets) {
19981c6fdbd8SKent Overstreet 		bch_err(ca, "New size larger than device");
199978c0b75cSKent Overstreet 		ret = -BCH_ERR_device_size_too_small;
20001c6fdbd8SKent Overstreet 		goto err;
20011c6fdbd8SKent Overstreet 	}
20021c6fdbd8SKent Overstreet 
20031c6fdbd8SKent Overstreet 	ret = bch2_dev_buckets_resize(c, ca, nbuckets);
2004e46c181aSKent Overstreet 	bch_err_msg(ca, ret, "resizing buckets");
2005cf904c8dSKent Overstreet 	if (ret)
20061c6fdbd8SKent Overstreet 		goto err;
20071c6fdbd8SKent Overstreet 
20085dd8c60eSKent Overstreet 	ret = bch2_trans_mark_dev_sb(c, ca, BTREE_TRIGGER_transactional);
20093e3e02e6SKent Overstreet 	if (ret)
2010224ec3e6SKent Overstreet 		goto err;
2011224ec3e6SKent Overstreet 
20121c6fdbd8SKent Overstreet 	mutex_lock(&c->sb_lock);
20133f7b9713SHunter Shaffer 	m = bch2_members_v2_get_mut(c->disk_sb.sb, ca->dev_idx);
20143f7b9713SHunter Shaffer 	m->nbuckets = cpu_to_le64(nbuckets);
20151c6fdbd8SKent Overstreet 
20161c6fdbd8SKent Overstreet 	bch2_write_super(c);
20171c6fdbd8SKent Overstreet 	mutex_unlock(&c->sb_lock);
20181c6fdbd8SKent Overstreet 
201969d1f052SKent Overstreet 	if (ca->mi.freespace_initialized) {
20201d16c605SKent Overstreet 		struct disk_accounting_pos acc = {
20211d16c605SKent Overstreet 			.type = BCH_DISK_ACCOUNTING_dev_data_type,
20221d16c605SKent Overstreet 			.dev_data_type.dev = ca->dev_idx,
20231d16c605SKent Overstreet 			.dev_data_type.data_type = BCH_DATA_free,
20241d16c605SKent Overstreet 		};
20251d16c605SKent Overstreet 		u64 v[3] = { nbuckets - old_nbuckets, 0, 0 };
20261d16c605SKent Overstreet 
2027fb23d57aSKent Overstreet 		ret   = bch2_trans_do(ca->fs, NULL, NULL, 0,
2028fb23d57aSKent Overstreet 				bch2_disk_accounting_mod(trans, &acc, v, ARRAY_SIZE(v), false)) ?:
2029fb23d57aSKent Overstreet 			bch2_dev_freespace_init(c, ca, old_nbuckets, nbuckets);
203069d1f052SKent Overstreet 		if (ret)
203169d1f052SKent Overstreet 			goto err;
203269d1f052SKent Overstreet 	}
203369d1f052SKent Overstreet 
20341c6fdbd8SKent Overstreet 	bch2_recalc_capacity(c);
20351c6fdbd8SKent Overstreet err:
20361ada1606SKent Overstreet 	up_write(&c->state_lock);
20371c6fdbd8SKent Overstreet 	return ret;
20381c6fdbd8SKent Overstreet }
20391c6fdbd8SKent Overstreet 
20401c6fdbd8SKent Overstreet /* return with ref on ca->ref: */
2041bf7e49a4SKent Overstreet struct bch_dev *bch2_dev_lookup(struct bch_fs *c, const char *name)
20421c6fdbd8SKent Overstreet {
204351fc436cSThomas Bertschinger 	if (!strncmp(name, "/dev/", strlen("/dev/")))
204451fc436cSThomas Bertschinger 		name += strlen("/dev/");
204551fc436cSThomas Bertschinger 
20463a2d0259SKent Overstreet 	for_each_member_device(c, ca)
20473a2d0259SKent Overstreet 		if (!strcmp(name, ca->name))
20481c6fdbd8SKent Overstreet 			return ca;
204941b84fb4SKent Overstreet 	return ERR_PTR(-BCH_ERR_ENOENT_dev_not_found);
205041b84fb4SKent Overstreet }
20511c6fdbd8SKent Overstreet 
20521c6fdbd8SKent Overstreet /* Filesystem open: */
20531c6fdbd8SKent Overstreet 
20540d529663SKent Overstreet static inline int sb_cmp(struct bch_sb *l, struct bch_sb *r)
20550d529663SKent Overstreet {
20560d529663SKent Overstreet 	return  cmp_int(le64_to_cpu(l->seq), le64_to_cpu(r->seq)) ?:
20570d529663SKent Overstreet 		cmp_int(le64_to_cpu(l->write_time), le64_to_cpu(r->write_time));
20580d529663SKent Overstreet }
20590d529663SKent Overstreet 
20601c6fdbd8SKent Overstreet struct bch_fs *bch2_fs_open(char * const *devices, unsigned nr_devices,
20611c6fdbd8SKent Overstreet 			    struct bch_opts opts)
20621c6fdbd8SKent Overstreet {
2063d4c8bb69SKent Overstreet 	DARRAY(struct bch_sb_handle) sbs = { 0 };
20641c6fdbd8SKent Overstreet 	struct bch_fs *c = NULL;
2065defd9e39SKent Overstreet 	struct bch_sb_handle *best = NULL;
2066fa8e94faSKent Overstreet 	struct printbuf errbuf = PRINTBUF;
2067e2b60560SKent Overstreet 	int ret = 0;
20681c6fdbd8SKent Overstreet 
2069efe68e1dSKent Overstreet 	if (!try_module_get(THIS_MODULE))
2070efe68e1dSKent Overstreet 		return ERR_PTR(-ENODEV);
2071efe68e1dSKent Overstreet 
20721c6fdbd8SKent Overstreet 	if (!nr_devices) {
2073efe68e1dSKent Overstreet 		ret = -EINVAL;
2074efe68e1dSKent Overstreet 		goto err;
20751c6fdbd8SKent Overstreet 	}
20761c6fdbd8SKent Overstreet 
2077d4c8bb69SKent Overstreet 	ret = darray_make_room(&sbs, nr_devices);
20781c6fdbd8SKent Overstreet 	if (ret)
20791c6fdbd8SKent Overstreet 		goto err;
20801c6fdbd8SKent Overstreet 
2081d4c8bb69SKent Overstreet 	for (unsigned i = 0; i < nr_devices; i++) {
2082d4c8bb69SKent Overstreet 		struct bch_sb_handle sb = { NULL };
2083d4c8bb69SKent Overstreet 
2084d4c8bb69SKent Overstreet 		ret = bch2_read_super(devices[i], &opts, &sb);
2085d4c8bb69SKent Overstreet 		if (ret)
2086d4c8bb69SKent Overstreet 			goto err;
2087d4c8bb69SKent Overstreet 
2088d4c8bb69SKent Overstreet 		BUG_ON(darray_push(&sbs, sb));
20891c6fdbd8SKent Overstreet 	}
20901c6fdbd8SKent Overstreet 
209162719cf3SKent Overstreet 	if (opts.nochanges && !opts.read_only) {
209262719cf3SKent Overstreet 		ret = -BCH_ERR_erofs_nochanges;
209362719cf3SKent Overstreet 		goto err_print;
209462719cf3SKent Overstreet 	}
209562719cf3SKent Overstreet 
2096d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb)
20970d529663SKent Overstreet 		if (!best || sb_cmp(sb->sb, best->sb) > 0)
2098d4c8bb69SKent Overstreet 			best = sb;
20991c6fdbd8SKent Overstreet 
2100d4c8bb69SKent Overstreet 	darray_for_each_reverse(sbs, sb) {
21012f300f09SKent Overstreet 		ret = bch2_dev_in_fs(best, sb, &opts);
21020d529663SKent Overstreet 
21030d529663SKent Overstreet 		if (ret == -BCH_ERR_device_has_been_removed ||
21040d529663SKent Overstreet 		    ret == -BCH_ERR_device_splitbrain) {
2105d4c8bb69SKent Overstreet 			bch2_free_super(sb);
2106d4c8bb69SKent Overstreet 			darray_remove_item(&sbs, sb);
2107d4c8bb69SKent Overstreet 			best -= best > sb;
21080d529663SKent Overstreet 			ret = 0;
2109625104eaSKent Overstreet 			continue;
2110625104eaSKent Overstreet 		}
2111625104eaSKent Overstreet 
211278c0b75cSKent Overstreet 		if (ret)
21131c6fdbd8SKent Overstreet 			goto err_print;
21141c6fdbd8SKent Overstreet 	}
21151c6fdbd8SKent Overstreet 
2116d4c8bb69SKent Overstreet 	c = bch2_fs_alloc(best->sb, opts);
2117d4c8bb69SKent Overstreet 	ret = PTR_ERR_OR_ZERO(c);
2118d4c8bb69SKent Overstreet 	if (ret)
21191c6fdbd8SKent Overstreet 		goto err;
21201c6fdbd8SKent Overstreet 
21211ada1606SKent Overstreet 	down_write(&c->state_lock);
2122d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb) {
2123d4c8bb69SKent Overstreet 		ret = bch2_dev_attach_bdev(c, sb);
2124e2b60560SKent Overstreet 		if (ret) {
21251ada1606SKent Overstreet 			up_write(&c->state_lock);
2126e2b60560SKent Overstreet 			goto err;
2127e2b60560SKent Overstreet 		}
21281c6fdbd8SKent Overstreet 	}
21291ada1606SKent Overstreet 	up_write(&c->state_lock);
21301c6fdbd8SKent Overstreet 
213178c0b75cSKent Overstreet 	if (!bch2_fs_may_start(c)) {
213278c0b75cSKent Overstreet 		ret = -BCH_ERR_insufficient_devices_to_start;
21331c6fdbd8SKent Overstreet 		goto err_print;
213478c0b75cSKent Overstreet 	}
21351c6fdbd8SKent Overstreet 
21361c6fdbd8SKent Overstreet 	if (!c->opts.nostart) {
2137619f5beeSKent Overstreet 		ret = bch2_fs_start(c);
2138619f5beeSKent Overstreet 		if (ret)
2139619f5beeSKent Overstreet 			goto err;
21401c6fdbd8SKent Overstreet 	}
21411c6fdbd8SKent Overstreet out:
2142d4c8bb69SKent Overstreet 	darray_for_each(sbs, sb)
2143d4c8bb69SKent Overstreet 		bch2_free_super(sb);
2144d4c8bb69SKent Overstreet 	darray_exit(&sbs);
2145fa8e94faSKent Overstreet 	printbuf_exit(&errbuf);
21461c6fdbd8SKent Overstreet 	module_put(THIS_MODULE);
21471c6fdbd8SKent Overstreet 	return c;
21481c6fdbd8SKent Overstreet err_print:
21491c6fdbd8SKent Overstreet 	pr_err("bch_fs_open err opening %s: %s",
215078c0b75cSKent Overstreet 	       devices[0], bch2_err_str(ret));
21511c6fdbd8SKent Overstreet err:
21527be9ab63SChris Webb 	if (!IS_ERR_OR_NULL(c))
21531c6fdbd8SKent Overstreet 		bch2_fs_stop(c);
21541c6fdbd8SKent Overstreet 	c = ERR_PTR(ret);
21551c6fdbd8SKent Overstreet 	goto out;
21561c6fdbd8SKent Overstreet }
21571c6fdbd8SKent Overstreet 
21581c6fdbd8SKent Overstreet /* Global interfaces/init */
21591c6fdbd8SKent Overstreet 
21601c6fdbd8SKent Overstreet static void bcachefs_exit(void)
21611c6fdbd8SKent Overstreet {
21621c6fdbd8SKent Overstreet 	bch2_debug_exit();
21631c6fdbd8SKent Overstreet 	bch2_vfs_exit();
21641c6fdbd8SKent Overstreet 	bch2_chardev_exit();
216514ba3706SKent Overstreet 	bch2_btree_key_cache_exit();
21661c6fdbd8SKent Overstreet 	if (bcachefs_kset)
21671c6fdbd8SKent Overstreet 		kset_unregister(bcachefs_kset);
21681c6fdbd8SKent Overstreet }
21691c6fdbd8SKent Overstreet 
21701c6fdbd8SKent Overstreet static int __init bcachefs_init(void)
21711c6fdbd8SKent Overstreet {
21721c6fdbd8SKent Overstreet 	bch2_bkey_pack_test();
21731c6fdbd8SKent Overstreet 
21741c6fdbd8SKent Overstreet 	if (!(bcachefs_kset = kset_create_and_add("bcachefs", NULL, fs_kobj)) ||
217514ba3706SKent Overstreet 	    bch2_btree_key_cache_init() ||
21761c6fdbd8SKent Overstreet 	    bch2_chardev_init() ||
21771c6fdbd8SKent Overstreet 	    bch2_vfs_init() ||
21781c6fdbd8SKent Overstreet 	    bch2_debug_init())
21791c6fdbd8SKent Overstreet 		goto err;
21801c6fdbd8SKent Overstreet 
21811c6fdbd8SKent Overstreet 	return 0;
21821c6fdbd8SKent Overstreet err:
21831c6fdbd8SKent Overstreet 	bcachefs_exit();
21841c6fdbd8SKent Overstreet 	return -ENOMEM;
21851c6fdbd8SKent Overstreet }
21861c6fdbd8SKent Overstreet 
21871c6fdbd8SKent Overstreet #define BCH_DEBUG_PARAM(name, description)			\
21881c6fdbd8SKent Overstreet 	bool bch2_##name;					\
21891c6fdbd8SKent Overstreet 	module_param_named(name, bch2_##name, bool, 0644);	\
21901c6fdbd8SKent Overstreet 	MODULE_PARM_DESC(name, description);
21911c6fdbd8SKent Overstreet BCH_DEBUG_PARAMS()
21921c6fdbd8SKent Overstreet #undef BCH_DEBUG_PARAM
21931c6fdbd8SKent Overstreet 
2194e08e63e4SKent Overstreet __maybe_unused
219573bd774dSKent Overstreet static unsigned bch2_metadata_version = bcachefs_metadata_version_current;
21961c6fdbd8SKent Overstreet module_param_named(version, bch2_metadata_version, uint, 0400);
21971c6fdbd8SKent Overstreet 
21981c6fdbd8SKent Overstreet module_exit(bcachefs_exit);
21991c6fdbd8SKent Overstreet module_init(bcachefs_init);
2200