btrfs: handle errors from async submission
[linux-block.git] / fs / btrfs / super.c
CommitLineData
c1d7c514 1// SPDX-License-Identifier: GPL-2.0
6cbd5570
CM
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
6cbd5570
CM
4 */
5
4b82d6e4 6#include <linux/blkdev.h>
2e635a27
CM
7#include <linux/module.h>
8#include <linux/fs.h>
9#include <linux/pagemap.h>
10#include <linux/highmem.h>
11#include <linux/time.h>
12#include <linux/init.h>
a9572a15 13#include <linux/seq_file.h>
2e635a27 14#include <linux/string.h>
2e635a27 15#include <linux/backing-dev.h>
4b82d6e4 16#include <linux/mount.h>
75dfe396 17#include <linux/writeback.h>
8fd17795 18#include <linux/statfs.h>
08607c1b 19#include <linux/compat.h>
95e05289 20#include <linux/parser.h>
c59f8951 21#include <linux/ctype.h>
6da6abae 22#include <linux/namei.h>
a9218f6b 23#include <linux/miscdevice.h>
1bcbf313 24#include <linux/magic.h>
5a0e3ad6 25#include <linux/slab.h>
90a887c9 26#include <linux/cleancache.h>
22c44fe6 27#include <linux/ratelimit.h>
9678c543 28#include <linux/crc32c.h>
55e301fd 29#include <linux/btrfs.h>
16cdcec7 30#include "delayed-inode.h"
2e635a27 31#include "ctree.h"
e20d96d6 32#include "disk-io.h"
d5719762 33#include "transaction.h"
2c90e5d6 34#include "btrfs_inode.h"
3a686375 35#include "print-tree.h"
63541927 36#include "props.h"
5103e947 37#include "xattr.h"
8a4b83cc 38#include "volumes.h"
be6e8dc0 39#include "export.h"
c8b97818 40#include "compression.h"
9c5085c1 41#include "rcu-string.h"
8dabb742 42#include "dev-replace.h"
74255aa0 43#include "free-space-cache.h"
b9e9a6cb 44#include "backref.h"
8719aaae 45#include "space-info.h"
89439109 46#include "sysfs.h"
dc11dd5d 47#include "tests/btrfs-tests.h"
aac0023c 48#include "block-group.h"
b0643e59 49#include "discard.h"
2e635a27 50
d3982100 51#include "qgroup.h"
1abe9b8a 52#define CREATE_TRACE_POINTS
53#include <trace/events/btrfs.h>
54
b87221de 55static const struct super_operations btrfs_super_ops;
72fa39f5
MT
56
57/*
58 * Types for mounting the default subvolume and a subvolume explicitly
59 * requested by subvol=/path. That way the callchain is straightforward and we
60 * don't have to play tricks with the mount options and recursive calls to
61 * btrfs_mount.
312c89fb
MT
62 *
63 * The new btrfs_root_fs_type also servers as a tag for the bdev_holder.
72fa39f5 64 */
830c4adb 65static struct file_system_type btrfs_fs_type;
72fa39f5 66static struct file_system_type btrfs_root_fs_type;
75dfe396 67
0723a047
HH
68static int btrfs_remount(struct super_block *sb, int *flags, char *data);
69
59131393
JB
70/*
71 * Generally the error codes correspond to their respective errors, but there
72 * are a few special cases.
73 *
74 * EUCLEAN: Any sort of corruption that we encounter. The tree-checker for
75 * instance will return EUCLEAN if any of the blocks are corrupted in
76 * a way that is problematic. We want to reserve EUCLEAN for these
77 * sort of corruptions.
78 *
79 * EROFS: If we check BTRFS_FS_STATE_ERROR and fail out with a return error, we
80 * need to use EROFS for this case. We will have no idea of the
81 * original failure, that will have been reported at the time we tripped
82 * over the error. Each subsequent error that doesn't have any context
83 * of the original error should use EROFS when handling BTRFS_FS_STATE_ERROR.
84 */
4143cb8b 85const char * __attribute_const__ btrfs_decode_error(int errno)
acce952b 86{
08748810 87 char *errstr = "unknown";
acce952b 88
89 switch (errno) {
d54f8144
DS
90 case -ENOENT: /* -2 */
91 errstr = "No such entry";
92 break;
93 case -EIO: /* -5 */
acce952b 94 errstr = "IO failure";
95 break;
d54f8144 96 case -ENOMEM: /* -12*/
acce952b 97 errstr = "Out of memory";
98 break;
d54f8144 99 case -EEXIST: /* -17 */
8c342930
JM
100 errstr = "Object already exists";
101 break;
d54f8144 102 case -ENOSPC: /* -28 */
94ef7280
DS
103 errstr = "No space left";
104 break;
d54f8144
DS
105 case -EROFS: /* -30 */
106 errstr = "Readonly filesystem";
94ef7280 107 break;
fb8521ca
DS
108 case -EOPNOTSUPP: /* -95 */
109 errstr = "Operation not supported";
110 break;
111 case -EUCLEAN: /* -117 */
112 errstr = "Filesystem corrupted";
113 break;
114 case -EDQUOT: /* -122 */
115 errstr = "Quota exceeded";
116 break;
acce952b 117 }
118
119 return errstr;
120}
121
acce952b 122/*
34d97007 123 * __btrfs_handle_fs_error decodes expected errors from the caller and
52042d8e 124 * invokes the appropriate error response.
acce952b 125 */
c0d19e2b 126__cold
34d97007 127void __btrfs_handle_fs_error(struct btrfs_fs_info *fs_info, const char *function,
4da35113 128 unsigned int line, int errno, const char *fmt, ...)
acce952b 129{
130 struct super_block *sb = fs_info->sb;
57d816a1 131#ifdef CONFIG_PRINTK
acce952b 132 const char *errstr;
57d816a1 133#endif
acce952b 134
135 /*
136 * Special case: if the error is EROFS, and we're already
1751e8a6 137 * under SB_RDONLY, then it is safe here.
acce952b 138 */
bc98a42c 139 if (errno == -EROFS && sb_rdonly(sb))
4da35113
JM
140 return;
141
57d816a1 142#ifdef CONFIG_PRINTK
08748810 143 errstr = btrfs_decode_error(errno);
4da35113 144 if (fmt) {
37252a66
ES
145 struct va_format vaf;
146 va_list args;
147
148 va_start(args, fmt);
149 vaf.fmt = fmt;
150 vaf.va = &args;
4da35113 151
62e85577 152 pr_crit("BTRFS: error (device %s) in %s:%d: errno=%d %s (%pV)\n",
08748810 153 sb->s_id, function, line, errno, errstr, &vaf);
37252a66 154 va_end(args);
4da35113 155 } else {
62e85577 156 pr_crit("BTRFS: error (device %s) in %s:%d: errno=%d %s\n",
08748810 157 sb->s_id, function, line, errno, errstr);
4da35113 158 }
57d816a1 159#endif
acce952b 160
0713d90c
AJ
161 /*
162 * Today we only save the error info to memory. Long term we'll
163 * also send it down to the disk
164 */
165 set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state);
166
4da35113 167 /* Don't go through full error handling during mount */
922ea899
AJ
168 if (!(sb->s_flags & SB_BORN))
169 return;
170
171 if (sb_rdonly(sb))
172 return;
173
b0643e59
DZ
174 btrfs_discard_stop(fs_info);
175
922ea899
AJ
176 /* btrfs handle error by forcing the filesystem readonly */
177 sb->s_flags |= SB_RDONLY;
178 btrfs_info(fs_info, "forced readonly");
179 /*
180 * Note that a running device replace operation is not canceled here
181 * although there is no way to update the progress. It would add the
182 * risk of a deadlock, therefore the canceling is omitted. The only
183 * penalty is that some I/O remains active until the procedure
52042d8e 184 * completes. The next time when the filesystem is mounted writable
922ea899
AJ
185 * again, the device replace operation continues.
186 */
4da35113 187}
acce952b 188
57d816a1 189#ifdef CONFIG_PRINTK
533574c6 190static const char * const logtypes[] = {
4da35113
JM
191 "emergency",
192 "alert",
193 "critical",
194 "error",
195 "warning",
196 "notice",
197 "info",
198 "debug",
199};
200
35f4e5e6
NB
201
202/*
203 * Use one ratelimit state per log level so that a flood of less important
204 * messages doesn't cause more important ones to be dropped.
205 */
206static struct ratelimit_state printk_limits[] = {
207 RATELIMIT_STATE_INIT(printk_limits[0], DEFAULT_RATELIMIT_INTERVAL, 100),
208 RATELIMIT_STATE_INIT(printk_limits[1], DEFAULT_RATELIMIT_INTERVAL, 100),
209 RATELIMIT_STATE_INIT(printk_limits[2], DEFAULT_RATELIMIT_INTERVAL, 100),
210 RATELIMIT_STATE_INIT(printk_limits[3], DEFAULT_RATELIMIT_INTERVAL, 100),
211 RATELIMIT_STATE_INIT(printk_limits[4], DEFAULT_RATELIMIT_INTERVAL, 100),
212 RATELIMIT_STATE_INIT(printk_limits[5], DEFAULT_RATELIMIT_INTERVAL, 100),
213 RATELIMIT_STATE_INIT(printk_limits[6], DEFAULT_RATELIMIT_INTERVAL, 100),
214 RATELIMIT_STATE_INIT(printk_limits[7], DEFAULT_RATELIMIT_INTERVAL, 100),
215};
216
b105e927 217void __cold btrfs_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...)
4da35113 218{
40f7828b 219 char lvl[PRINTK_MAX_SINGLE_HEADER_LEN + 1] = "\0";
4da35113
JM
220 struct va_format vaf;
221 va_list args;
533574c6 222 int kern_level;
40f7828b
PM
223 const char *type = logtypes[4];
224 struct ratelimit_state *ratelimit = &printk_limits[4];
4da35113
JM
225
226 va_start(args, fmt);
227
262c5e86 228 while ((kern_level = printk_get_level(fmt)) != 0) {
533574c6 229 size_t size = printk_skip_level(fmt) - fmt;
262c5e86
PM
230
231 if (kern_level >= '0' && kern_level <= '7') {
232 memcpy(lvl, fmt, size);
233 lvl[size] = '\0';
234 type = logtypes[kern_level - '0'];
235 ratelimit = &printk_limits[kern_level - '0'];
236 }
533574c6 237 fmt += size;
262c5e86
PM
238 }
239
4da35113
JM
240 vaf.fmt = fmt;
241 vaf.va = &args;
533574c6 242
35f4e5e6 243 if (__ratelimit(ratelimit))
3993b112
CIK
244 printk("%sBTRFS %s (device %s): %pV\n", lvl, type,
245 fs_info ? fs_info->sb->s_id : "<unknown>", &vaf);
533574c6
JP
246
247 va_end(args);
248}
533574c6 249#endif
acce952b 250
49b25e05
JM
251/*
252 * We only mark the transaction aborted and then set the file system read-only.
253 * This will prevent new transactions from starting or trying to join this
254 * one.
255 *
256 * This means that error recovery at the call site is limited to freeing
257 * any local memory allocations and passing the error code up without
258 * further cleanup. The transaction should complete as it normally would
259 * in the call path but will return -EIO.
260 *
261 * We'll complete the cleanup in btrfs_end_transaction and
262 * btrfs_commit_transaction.
263 */
c0d19e2b 264__cold
49b25e05 265void __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
66642832 266 const char *function,
49b25e05
JM
267 unsigned int line, int errno)
268{
66642832
JM
269 struct btrfs_fs_info *fs_info = trans->fs_info;
270
bf31f87f 271 WRITE_ONCE(trans->aborted, errno);
49b25e05
JM
272 /* Nothing used. The other threads that have joined this
273 * transaction may be able to continue. */
64c12921 274 if (!trans->dirty && list_empty(&trans->new_bgs)) {
69ce977a
MX
275 const char *errstr;
276
08748810 277 errstr = btrfs_decode_error(errno);
66642832 278 btrfs_warn(fs_info,
c2cf52eb
SK
279 "%s:%d: Aborting unused transaction(%s).",
280 function, line, errstr);
acce952b 281 return;
49b25e05 282 }
20c7bcec 283 WRITE_ONCE(trans->transaction->aborted, errno);
501407aa 284 /* Wake up anybody who may be waiting on this transaction */
66642832
JM
285 wake_up(&fs_info->transaction_wait);
286 wake_up(&fs_info->transaction_blocked_wait);
287 __btrfs_handle_fs_error(fs_info, function, line, errno, NULL);
49b25e05 288}
8c342930
JM
289/*
290 * __btrfs_panic decodes unexpected, fatal errors from the caller,
291 * issues an alert, and either panics or BUGs, depending on mount options.
292 */
c0d19e2b 293__cold
8c342930
JM
294void __btrfs_panic(struct btrfs_fs_info *fs_info, const char *function,
295 unsigned int line, int errno, const char *fmt, ...)
296{
8c342930
JM
297 char *s_id = "<unknown>";
298 const char *errstr;
299 struct va_format vaf = { .fmt = fmt };
300 va_list args;
acce952b 301
8c342930
JM
302 if (fs_info)
303 s_id = fs_info->sb->s_id;
acce952b 304
8c342930
JM
305 va_start(args, fmt);
306 vaf.va = &args;
307
08748810 308 errstr = btrfs_decode_error(errno);
d8953d69 309 if (fs_info && (btrfs_test_opt(fs_info, PANIC_ON_FATAL_ERROR)))
08748810
DS
310 panic(KERN_CRIT "BTRFS panic (device %s) in %s:%d: %pV (errno=%d %s)\n",
311 s_id, function, line, &vaf, errno, errstr);
8c342930 312
efe120a0
FH
313 btrfs_crit(fs_info, "panic in %s:%d: %pV (errno=%d %s)",
314 function, line, &vaf, errno, errstr);
8c342930
JM
315 va_end(args);
316 /* Caller calls BUG() */
acce952b 317}
318
d397712b 319static void btrfs_put_super(struct super_block *sb)
b18c6685 320{
6bccf3ab 321 close_ctree(btrfs_sb(sb));
75dfe396
CM
322}
323
95e05289 324enum {
416a7202
DS
325 Opt_acl, Opt_noacl,
326 Opt_clear_cache,
327 Opt_commit_interval,
328 Opt_compress,
329 Opt_compress_force,
330 Opt_compress_force_type,
331 Opt_compress_type,
332 Opt_degraded,
333 Opt_device,
334 Opt_fatal_errors,
335 Opt_flushoncommit, Opt_noflushoncommit,
336 Opt_inode_cache, Opt_noinode_cache,
337 Opt_max_inline,
338 Opt_barrier, Opt_nobarrier,
339 Opt_datacow, Opt_nodatacow,
340 Opt_datasum, Opt_nodatasum,
341 Opt_defrag, Opt_nodefrag,
342 Opt_discard, Opt_nodiscard,
b0643e59 343 Opt_discard_mode,
416a7202
DS
344 Opt_norecovery,
345 Opt_ratio,
346 Opt_rescan_uuid_tree,
347 Opt_skip_balance,
348 Opt_space_cache, Opt_no_space_cache,
349 Opt_space_cache_version,
350 Opt_ssd, Opt_nossd,
351 Opt_ssd_spread, Opt_nossd_spread,
352 Opt_subvol,
37becec9 353 Opt_subvol_empty,
416a7202
DS
354 Opt_subvolid,
355 Opt_thread_pool,
356 Opt_treelog, Opt_notreelog,
416a7202
DS
357 Opt_user_subvol_rm_allowed,
358
74ef0018
QW
359 /* Rescue options */
360 Opt_rescue,
361 Opt_usebackuproot,
362 Opt_nologreplay,
363
416a7202 364 /* Deprecated options */
416a7202 365 Opt_recovery,
416a7202
DS
366
367 /* Debugging options */
368 Opt_check_integrity,
70f6d82e 369 Opt_check_integrity_including_extent_data,
416a7202
DS
370 Opt_check_integrity_print_mask,
371 Opt_enospc_debug, Opt_noenospc_debug,
d0bd4560
JB
372#ifdef CONFIG_BTRFS_DEBUG
373 Opt_fragment_data, Opt_fragment_metadata, Opt_fragment_all,
fb592373
JB
374#endif
375#ifdef CONFIG_BTRFS_FS_REF_VERIFY
376 Opt_ref_verify,
d0bd4560 377#endif
9555c6c1 378 Opt_err,
95e05289
CM
379};
380
4d4ab6d6 381static const match_table_t tokens = {
416a7202
DS
382 {Opt_acl, "acl"},
383 {Opt_noacl, "noacl"},
384 {Opt_clear_cache, "clear_cache"},
385 {Opt_commit_interval, "commit=%u"},
c8b97818 386 {Opt_compress, "compress"},
261507a0 387 {Opt_compress_type, "compress=%s"},
a555f810 388 {Opt_compress_force, "compress-force"},
261507a0 389 {Opt_compress_force_type, "compress-force=%s"},
416a7202
DS
390 {Opt_degraded, "degraded"},
391 {Opt_device, "device=%s"},
392 {Opt_fatal_errors, "fatal_errors=%s"},
dccae999 393 {Opt_flushoncommit, "flushoncommit"},
2c9ee856 394 {Opt_noflushoncommit, "noflushoncommit"},
416a7202
DS
395 {Opt_inode_cache, "inode_cache"},
396 {Opt_noinode_cache, "noinode_cache"},
397 {Opt_max_inline, "max_inline=%s"},
398 {Opt_barrier, "barrier"},
399 {Opt_nobarrier, "nobarrier"},
400 {Opt_datacow, "datacow"},
401 {Opt_nodatacow, "nodatacow"},
402 {Opt_datasum, "datasum"},
403 {Opt_nodatasum, "nodatasum"},
404 {Opt_defrag, "autodefrag"},
405 {Opt_nodefrag, "noautodefrag"},
e244a0ae 406 {Opt_discard, "discard"},
b0643e59 407 {Opt_discard_mode, "discard=%s"},
e07a2ade 408 {Opt_nodiscard, "nodiscard"},
416a7202
DS
409 {Opt_norecovery, "norecovery"},
410 {Opt_ratio, "metadata_ratio=%u"},
411 {Opt_rescan_uuid_tree, "rescan_uuid_tree"},
412 {Opt_skip_balance, "skip_balance"},
0af3d00b 413 {Opt_space_cache, "space_cache"},
8965593e 414 {Opt_no_space_cache, "nospace_cache"},
416a7202
DS
415 {Opt_space_cache_version, "space_cache=%s"},
416 {Opt_ssd, "ssd"},
417 {Opt_nossd, "nossd"},
418 {Opt_ssd_spread, "ssd_spread"},
419 {Opt_nossd_spread, "nossd_spread"},
420 {Opt_subvol, "subvol=%s"},
37becec9 421 {Opt_subvol_empty, "subvol="},
416a7202
DS
422 {Opt_subvolid, "subvolid=%s"},
423 {Opt_thread_pool, "thread_pool=%u"},
424 {Opt_treelog, "treelog"},
425 {Opt_notreelog, "notreelog"},
416a7202
DS
426 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
427
74ef0018
QW
428 /* Rescue options */
429 {Opt_rescue, "rescue=%s"},
430 /* Deprecated, with alias rescue=nologreplay */
431 {Opt_nologreplay, "nologreplay"},
432 /* Deprecated, with alias rescue=usebackuproot */
433 {Opt_usebackuproot, "usebackuproot"},
434
416a7202 435 /* Deprecated options */
416a7202 436 {Opt_recovery, "recovery"},
416a7202
DS
437
438 /* Debugging options */
21adbd5c
SB
439 {Opt_check_integrity, "check_int"},
440 {Opt_check_integrity_including_extent_data, "check_int_data"},
02453bde 441 {Opt_check_integrity_print_mask, "check_int_print_mask=%u"},
416a7202
DS
442 {Opt_enospc_debug, "enospc_debug"},
443 {Opt_noenospc_debug, "noenospc_debug"},
d0bd4560
JB
444#ifdef CONFIG_BTRFS_DEBUG
445 {Opt_fragment_data, "fragment=data"},
446 {Opt_fragment_metadata, "fragment=metadata"},
447 {Opt_fragment_all, "fragment=all"},
fb592373
JB
448#endif
449#ifdef CONFIG_BTRFS_FS_REF_VERIFY
450 {Opt_ref_verify, "ref_verify"},
d0bd4560 451#endif
33268eaf 452 {Opt_err, NULL},
95e05289
CM
453};
454
74ef0018
QW
455static const match_table_t rescue_tokens = {
456 {Opt_usebackuproot, "usebackuproot"},
457 {Opt_nologreplay, "nologreplay"},
458 {Opt_err, NULL},
459};
460
461static int parse_rescue_options(struct btrfs_fs_info *info, const char *options)
462{
463 char *opts;
464 char *orig;
465 char *p;
466 substring_t args[MAX_OPT_ARGS];
467 int ret = 0;
468
469 opts = kstrdup(options, GFP_KERNEL);
470 if (!opts)
471 return -ENOMEM;
472 orig = opts;
473
474 while ((p = strsep(&opts, ":")) != NULL) {
475 int token;
476
477 if (!*p)
478 continue;
479 token = match_token(p, rescue_tokens, args);
480 switch (token){
481 case Opt_usebackuproot:
482 btrfs_info(info,
483 "trying to use backup root at mount time");
484 btrfs_set_opt(info->mount_opt, USEBACKUPROOT);
485 break;
486 case Opt_nologreplay:
487 btrfs_set_and_info(info, NOLOGREPLAY,
488 "disabling log replay at mount time");
489 break;
490 case Opt_err:
491 btrfs_info(info, "unrecognized rescue option '%s'", p);
492 ret = -EINVAL;
493 goto out;
494 default:
495 break;
496 }
497
498 }
499out:
500 kfree(orig);
501 return ret;
502}
503
edf24abe
CH
504/*
505 * Regular mount options parser. Everything that is needed only when
506 * reading in a new superblock is parsed here.
49b25e05 507 * XXX JDM: This needs to be cleaned up for remount.
edf24abe 508 */
2ff7e61e 509int btrfs_parse_options(struct btrfs_fs_info *info, char *options,
96da0919 510 unsigned long new_flags)
95e05289 511{
95e05289 512 substring_t args[MAX_OPT_ARGS];
e215772c 513 char *p, *num;
73bc1876 514 u64 cache_gen;
4543df7e 515 int intarg;
a7a3f7ca 516 int ret = 0;
261507a0
LZ
517 char *compress_type;
518 bool compress_force = false;
b7c47bbb 519 enum btrfs_compression_type saved_compress_type;
27942c99 520 int saved_compress_level;
b7c47bbb
TI
521 bool saved_compress_force;
522 int no_compress = 0;
b6cda9bc 523
0b246afa
JM
524 cache_gen = btrfs_super_cache_generation(info->super_copy);
525 if (btrfs_fs_compat_ro(info, FREE_SPACE_TREE))
70f6d82e
OS
526 btrfs_set_opt(info->mount_opt, FREE_SPACE_TREE);
527 else if (cache_gen)
73bc1876
JB
528 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
529
96da0919
QW
530 /*
531 * Even the options are empty, we still need to do extra check
532 * against new flags
533 */
95e05289 534 if (!options)
96da0919 535 goto check;
95e05289 536
edf24abe 537 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
538 int token;
539 if (!*p)
540 continue;
541
542 token = match_token(p, tokens, args);
543 switch (token) {
dfe25020 544 case Opt_degraded:
0b246afa 545 btrfs_info(info, "allowing degraded mounts");
edf24abe 546 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 547 break;
95e05289 548 case Opt_subvol:
37becec9 549 case Opt_subvol_empty:
73f73415 550 case Opt_subvolid:
43e570b0 551 case Opt_device:
edf24abe 552 /*
fa59f27c
AJ
553 * These are parsed by btrfs_parse_subvol_options or
554 * btrfs_parse_device_options and can be ignored here.
edf24abe 555 */
b6cda9bc
CM
556 break;
557 case Opt_nodatasum:
3cdde224 558 btrfs_set_and_info(info, NODATASUM,
07802534 559 "setting nodatasum");
be20aa9d 560 break;
d399167d 561 case Opt_datasum:
3cdde224
JM
562 if (btrfs_test_opt(info, NODATASUM)) {
563 if (btrfs_test_opt(info, NODATACOW))
0b246afa 564 btrfs_info(info,
5d163e0e 565 "setting datasum, datacow enabled");
07802534 566 else
0b246afa 567 btrfs_info(info, "setting datasum");
07802534 568 }
d399167d
QW
569 btrfs_clear_opt(info->mount_opt, NODATACOW);
570 btrfs_clear_opt(info->mount_opt, NODATASUM);
571 break;
be20aa9d 572 case Opt_nodatacow:
3cdde224
JM
573 if (!btrfs_test_opt(info, NODATACOW)) {
574 if (!btrfs_test_opt(info, COMPRESS) ||
575 !btrfs_test_opt(info, FORCE_COMPRESS)) {
0b246afa 576 btrfs_info(info,
07802534
QW
577 "setting nodatacow, compression disabled");
578 } else {
0b246afa 579 btrfs_info(info, "setting nodatacow");
07802534 580 }
bedb2cca 581 }
bedb2cca
AP
582 btrfs_clear_opt(info->mount_opt, COMPRESS);
583 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
edf24abe
CH
584 btrfs_set_opt(info->mount_opt, NODATACOW);
585 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 586 break;
a258af7a 587 case Opt_datacow:
3cdde224 588 btrfs_clear_and_info(info, NODATACOW,
07802534 589 "setting datacow");
a258af7a 590 break;
a555f810 591 case Opt_compress_force:
261507a0
LZ
592 case Opt_compress_force_type:
593 compress_force = true;
c730ae0c 594 fallthrough;
261507a0
LZ
595 case Opt_compress:
596 case Opt_compress_type:
3cdde224
JM
597 saved_compress_type = btrfs_test_opt(info,
598 COMPRESS) ?
b7c47bbb
TI
599 info->compress_type : BTRFS_COMPRESS_NONE;
600 saved_compress_force =
3cdde224 601 btrfs_test_opt(info, FORCE_COMPRESS);
27942c99 602 saved_compress_level = info->compress_level;
261507a0
LZ
603 if (token == Opt_compress ||
604 token == Opt_compress_force ||
a7164fa4 605 strncmp(args[0].from, "zlib", 4) == 0) {
261507a0 606 compress_type = "zlib";
eae8d825 607
261507a0 608 info->compress_type = BTRFS_COMPRESS_ZLIB;
eae8d825
QW
609 info->compress_level = BTRFS_ZLIB_DEFAULT_LEVEL;
610 /*
611 * args[0] contains uninitialized data since
612 * for these tokens we don't expect any
613 * parameter.
614 */
615 if (token != Opt_compress &&
616 token != Opt_compress_force)
617 info->compress_level =
d0ab62ce
DZ
618 btrfs_compress_str2level(
619 BTRFS_COMPRESS_ZLIB,
620 args[0].from + 4);
063849ea 621 btrfs_set_opt(info->mount_opt, COMPRESS);
bedb2cca
AP
622 btrfs_clear_opt(info->mount_opt, NODATACOW);
623 btrfs_clear_opt(info->mount_opt, NODATASUM);
b7c47bbb 624 no_compress = 0;
a7164fa4 625 } else if (strncmp(args[0].from, "lzo", 3) == 0) {
a6fa6fae
LZ
626 compress_type = "lzo";
627 info->compress_type = BTRFS_COMPRESS_LZO;
063849ea 628 btrfs_set_opt(info->mount_opt, COMPRESS);
bedb2cca
AP
629 btrfs_clear_opt(info->mount_opt, NODATACOW);
630 btrfs_clear_opt(info->mount_opt, NODATASUM);
2b0ce2c2 631 btrfs_set_fs_incompat(info, COMPRESS_LZO);
b7c47bbb 632 no_compress = 0;
3f93aef5 633 } else if (strncmp(args[0].from, "zstd", 4) == 0) {
5c1aab1d
NT
634 compress_type = "zstd";
635 info->compress_type = BTRFS_COMPRESS_ZSTD;
3f93aef5
DZ
636 info->compress_level =
637 btrfs_compress_str2level(
638 BTRFS_COMPRESS_ZSTD,
639 args[0].from + 4);
5c1aab1d
NT
640 btrfs_set_opt(info->mount_opt, COMPRESS);
641 btrfs_clear_opt(info->mount_opt, NODATACOW);
642 btrfs_clear_opt(info->mount_opt, NODATASUM);
643 btrfs_set_fs_incompat(info, COMPRESS_ZSTD);
644 no_compress = 0;
063849ea
AH
645 } else if (strncmp(args[0].from, "no", 2) == 0) {
646 compress_type = "no";
27942c99
DS
647 info->compress_level = 0;
648 info->compress_type = 0;
063849ea
AH
649 btrfs_clear_opt(info->mount_opt, COMPRESS);
650 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
651 compress_force = false;
b7c47bbb 652 no_compress++;
261507a0
LZ
653 } else {
654 ret = -EINVAL;
655 goto out;
656 }
657
261507a0 658 if (compress_force) {
b7c47bbb 659 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
143f3636 660 } else {
4027e0f4
WS
661 /*
662 * If we remount from compress-force=xxx to
663 * compress=xxx, we need clear FORCE_COMPRESS
664 * flag, otherwise, there is no way for users
665 * to disable forcible compression separately.
666 */
667 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
a7e252af 668 }
27942c99
DS
669 if (no_compress == 1) {
670 btrfs_info(info, "use no compression");
671 } else if ((info->compress_type != saved_compress_type) ||
672 (compress_force != saved_compress_force) ||
673 (info->compress_level != saved_compress_level)) {
f51d2b59 674 btrfs_info(info, "%s %s compression, level %d",
b7c47bbb 675 (compress_force) ? "force" : "use",
f51d2b59 676 compress_type, info->compress_level);
b7c47bbb
TI
677 }
678 compress_force = false;
a555f810 679 break;
e18e4809 680 case Opt_ssd:
3cdde224 681 btrfs_set_and_info(info, SSD,
583b7231 682 "enabling ssd optimizations");
951e7966 683 btrfs_clear_opt(info->mount_opt, NOSSD);
e18e4809 684 break;
451d7585 685 case Opt_ssd_spread:
583b7231
HK
686 btrfs_set_and_info(info, SSD,
687 "enabling ssd optimizations");
3cdde224 688 btrfs_set_and_info(info, SSD_SPREAD,
583b7231 689 "using spread ssd allocation scheme");
951e7966 690 btrfs_clear_opt(info->mount_opt, NOSSD);
451d7585 691 break;
3b30c22f 692 case Opt_nossd:
583b7231
HK
693 btrfs_set_opt(info->mount_opt, NOSSD);
694 btrfs_clear_and_info(info, SSD,
695 "not using ssd optimizations");
c730ae0c 696 fallthrough;
62b8e077 697 case Opt_nossd_spread:
583b7231
HK
698 btrfs_clear_and_info(info, SSD_SPREAD,
699 "not using spread ssd allocation scheme");
3b30c22f 700 break;
842bef58 701 case Opt_barrier:
3cdde224 702 btrfs_clear_and_info(info, NOBARRIER,
07802534 703 "turning on barriers");
842bef58 704 break;
21ad10cf 705 case Opt_nobarrier:
3cdde224 706 btrfs_set_and_info(info, NOBARRIER,
07802534 707 "turning off barriers");
21ad10cf 708 break;
4543df7e 709 case Opt_thread_pool:
2c334e87
WS
710 ret = match_int(&args[0], &intarg);
711 if (ret) {
712 goto out;
f7b885be 713 } else if (intarg == 0) {
2c334e87
WS
714 ret = -EINVAL;
715 goto out;
716 }
f7b885be 717 info->thread_pool_size = intarg;
4543df7e 718 break;
6f568d35 719 case Opt_max_inline:
edf24abe
CH
720 num = match_strdup(&args[0]);
721 if (num) {
91748467 722 info->max_inline = memparse(num, NULL);
edf24abe
CH
723 kfree(num);
724
15ada040 725 if (info->max_inline) {
feb5f965 726 info->max_inline = min_t(u64,
15ada040 727 info->max_inline,
0b246afa 728 info->sectorsize);
15ada040 729 }
0b246afa
JM
730 btrfs_info(info, "max_inline at %llu",
731 info->max_inline);
2c334e87
WS
732 } else {
733 ret = -ENOMEM;
734 goto out;
6f568d35
CM
735 }
736 break;
bd0330ad 737 case Opt_acl:
45ff35d6 738#ifdef CONFIG_BTRFS_FS_POSIX_ACL
1751e8a6 739 info->sb->s_flags |= SB_POSIXACL;
bd0330ad 740 break;
45ff35d6 741#else
0b246afa 742 btrfs_err(info, "support for ACL not compiled in!");
45ff35d6
GZ
743 ret = -EINVAL;
744 goto out;
745#endif
33268eaf 746 case Opt_noacl:
1751e8a6 747 info->sb->s_flags &= ~SB_POSIXACL;
33268eaf 748 break;
3a5e1404 749 case Opt_notreelog:
3cdde224 750 btrfs_set_and_info(info, NOTREELOG,
07802534 751 "disabling tree log");
a88998f2
QW
752 break;
753 case Opt_treelog:
3cdde224 754 btrfs_clear_and_info(info, NOTREELOG,
07802534 755 "enabling tree log");
3a5e1404 756 break;
fed8f166 757 case Opt_norecovery:
96da0919 758 case Opt_nologreplay:
74ef0018
QW
759 btrfs_warn(info,
760 "'nologreplay' is deprecated, use 'rescue=nologreplay' instead");
3cdde224 761 btrfs_set_and_info(info, NOLOGREPLAY,
96da0919
QW
762 "disabling log replay at mount time");
763 break;
dccae999 764 case Opt_flushoncommit:
3cdde224 765 btrfs_set_and_info(info, FLUSHONCOMMIT,
07802534 766 "turning on flush-on-commit");
dccae999 767 break;
2c9ee856 768 case Opt_noflushoncommit:
3cdde224 769 btrfs_clear_and_info(info, FLUSHONCOMMIT,
07802534 770 "turning off flush-on-commit");
2c9ee856 771 break;
97e728d4 772 case Opt_ratio:
2c334e87 773 ret = match_int(&args[0], &intarg);
764cb8b4 774 if (ret)
2c334e87 775 goto out;
764cb8b4
AJ
776 info->metadata_ratio = intarg;
777 btrfs_info(info, "metadata ratio %u",
778 info->metadata_ratio);
97e728d4 779 break;
e244a0ae 780 case Opt_discard:
b0643e59
DZ
781 case Opt_discard_mode:
782 if (token == Opt_discard ||
783 strcmp(args[0].from, "sync") == 0) {
784 btrfs_clear_opt(info->mount_opt, DISCARD_ASYNC);
785 btrfs_set_and_info(info, DISCARD_SYNC,
786 "turning on sync discard");
787 } else if (strcmp(args[0].from, "async") == 0) {
788 btrfs_clear_opt(info->mount_opt, DISCARD_SYNC);
789 btrfs_set_and_info(info, DISCARD_ASYNC,
790 "turning on async discard");
791 } else {
792 ret = -EINVAL;
793 goto out;
794 }
e244a0ae 795 break;
e07a2ade 796 case Opt_nodiscard:
46b27f50 797 btrfs_clear_and_info(info, DISCARD_SYNC,
07802534 798 "turning off discard");
b0643e59
DZ
799 btrfs_clear_and_info(info, DISCARD_ASYNC,
800 "turning off async discard");
e07a2ade 801 break;
0af3d00b 802 case Opt_space_cache:
70f6d82e
OS
803 case Opt_space_cache_version:
804 if (token == Opt_space_cache ||
805 strcmp(args[0].from, "v1") == 0) {
0b246afa 806 btrfs_clear_opt(info->mount_opt,
70f6d82e 807 FREE_SPACE_TREE);
3cdde224 808 btrfs_set_and_info(info, SPACE_CACHE,
0b246afa 809 "enabling disk space caching");
70f6d82e 810 } else if (strcmp(args[0].from, "v2") == 0) {
0b246afa 811 btrfs_clear_opt(info->mount_opt,
70f6d82e 812 SPACE_CACHE);
0b246afa 813 btrfs_set_and_info(info, FREE_SPACE_TREE,
70f6d82e
OS
814 "enabling free space tree");
815 } else {
816 ret = -EINVAL;
817 goto out;
818 }
0de90876 819 break;
f420ee1e
SB
820 case Opt_rescan_uuid_tree:
821 btrfs_set_opt(info->mount_opt, RESCAN_UUID_TREE);
822 break;
73bc1876 823 case Opt_no_space_cache:
3cdde224 824 if (btrfs_test_opt(info, SPACE_CACHE)) {
0b246afa
JM
825 btrfs_clear_and_info(info, SPACE_CACHE,
826 "disabling disk space caching");
70f6d82e 827 }
3cdde224 828 if (btrfs_test_opt(info, FREE_SPACE_TREE)) {
0b246afa
JM
829 btrfs_clear_and_info(info, FREE_SPACE_TREE,
830 "disabling free space tree");
70f6d82e 831 }
73bc1876 832 break;
4b9465cb 833 case Opt_inode_cache:
b547a88e
DS
834 btrfs_warn(info,
835 "the 'inode_cache' option is deprecated and will have no effect from 5.11");
7e1876ac 836 btrfs_set_pending_and_info(info, INODE_MAP_CACHE,
07802534 837 "enabling inode map caching");
3818aea2
QW
838 break;
839 case Opt_noinode_cache:
7e1876ac 840 btrfs_clear_pending_and_info(info, INODE_MAP_CACHE,
07802534 841 "disabling inode map caching");
4b9465cb 842 break;
88c2ba3b 843 case Opt_clear_cache:
3cdde224 844 btrfs_set_and_info(info, CLEAR_CACHE,
07802534 845 "force clearing of disk cache");
0af3d00b 846 break;
4260f7c7
SW
847 case Opt_user_subvol_rm_allowed:
848 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
849 break;
91435650
CM
850 case Opt_enospc_debug:
851 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
852 break;
53036293
QW
853 case Opt_noenospc_debug:
854 btrfs_clear_opt(info->mount_opt, ENOSPC_DEBUG);
855 break;
4cb5300b 856 case Opt_defrag:
3cdde224 857 btrfs_set_and_info(info, AUTO_DEFRAG,
07802534 858 "enabling auto defrag");
4cb5300b 859 break;
fc0ca9af 860 case Opt_nodefrag:
3cdde224 861 btrfs_clear_and_info(info, AUTO_DEFRAG,
07802534 862 "disabling auto defrag");
fc0ca9af 863 break;
af31f5e5 864 case Opt_recovery:
8dcddfa0 865 case Opt_usebackuproot:
74ef0018
QW
866 btrfs_warn(info,
867 "'%s' is deprecated, use 'rescue=usebackuproot' instead",
868 token == Opt_recovery ? "recovery" :
869 "usebackuproot");
0b246afa 870 btrfs_info(info,
8dcddfa0
QW
871 "trying to use backup root at mount time");
872 btrfs_set_opt(info->mount_opt, USEBACKUPROOT);
af31f5e5 873 break;
9555c6c1
ID
874 case Opt_skip_balance:
875 btrfs_set_opt(info->mount_opt, SKIP_BALANCE);
876 break;
21adbd5c
SB
877#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
878 case Opt_check_integrity_including_extent_data:
0b246afa 879 btrfs_info(info,
efe120a0 880 "enabling check integrity including extent data");
21adbd5c
SB
881 btrfs_set_opt(info->mount_opt,
882 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA);
883 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
884 break;
885 case Opt_check_integrity:
0b246afa 886 btrfs_info(info, "enabling check integrity");
21adbd5c
SB
887 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
888 break;
889 case Opt_check_integrity_print_mask:
2c334e87 890 ret = match_int(&args[0], &intarg);
02453bde 891 if (ret)
2c334e87 892 goto out;
02453bde
AJ
893 info->check_integrity_print_mask = intarg;
894 btrfs_info(info, "check_integrity_print_mask 0x%x",
895 info->check_integrity_print_mask);
21adbd5c
SB
896 break;
897#else
898 case Opt_check_integrity_including_extent_data:
899 case Opt_check_integrity:
900 case Opt_check_integrity_print_mask:
0b246afa
JM
901 btrfs_err(info,
902 "support for check_integrity* not compiled in!");
21adbd5c
SB
903 ret = -EINVAL;
904 goto out;
905#endif
8c342930
JM
906 case Opt_fatal_errors:
907 if (strcmp(args[0].from, "panic") == 0)
908 btrfs_set_opt(info->mount_opt,
909 PANIC_ON_FATAL_ERROR);
910 else if (strcmp(args[0].from, "bug") == 0)
911 btrfs_clear_opt(info->mount_opt,
912 PANIC_ON_FATAL_ERROR);
913 else {
914 ret = -EINVAL;
915 goto out;
916 }
917 break;
8b87dc17
DS
918 case Opt_commit_interval:
919 intarg = 0;
920 ret = match_int(&args[0], &intarg);
d3740608 921 if (ret)
8b87dc17 922 goto out;
d3740608 923 if (intarg == 0) {
0b246afa 924 btrfs_info(info,
d3740608 925 "using default commit interval %us",
5d163e0e 926 BTRFS_DEFAULT_COMMIT_INTERVAL);
d3740608
AJ
927 intarg = BTRFS_DEFAULT_COMMIT_INTERVAL;
928 } else if (intarg > 300) {
929 btrfs_warn(info, "excessive commit interval %d",
930 intarg);
8b87dc17 931 }
d3740608 932 info->commit_interval = intarg;
8b87dc17 933 break;
74ef0018
QW
934 case Opt_rescue:
935 ret = parse_rescue_options(info, args[0].from);
936 if (ret < 0)
937 goto out;
938 break;
d0bd4560
JB
939#ifdef CONFIG_BTRFS_DEBUG
940 case Opt_fragment_all:
0b246afa 941 btrfs_info(info, "fragmenting all space");
d0bd4560
JB
942 btrfs_set_opt(info->mount_opt, FRAGMENT_DATA);
943 btrfs_set_opt(info->mount_opt, FRAGMENT_METADATA);
944 break;
945 case Opt_fragment_metadata:
0b246afa 946 btrfs_info(info, "fragmenting metadata");
d0bd4560
JB
947 btrfs_set_opt(info->mount_opt,
948 FRAGMENT_METADATA);
949 break;
950 case Opt_fragment_data:
0b246afa 951 btrfs_info(info, "fragmenting data");
d0bd4560
JB
952 btrfs_set_opt(info->mount_opt, FRAGMENT_DATA);
953 break;
fb592373
JB
954#endif
955#ifdef CONFIG_BTRFS_FS_REF_VERIFY
956 case Opt_ref_verify:
957 btrfs_info(info, "doing ref verification");
958 btrfs_set_opt(info->mount_opt, REF_VERIFY);
959 break;
d0bd4560 960#endif
a7a3f7ca 961 case Opt_err:
7e8f19e5 962 btrfs_err(info, "unrecognized mount option '%s'", p);
a7a3f7ca
SW
963 ret = -EINVAL;
964 goto out;
95e05289 965 default:
be20aa9d 966 break;
95e05289
CM
967 }
968 }
96da0919
QW
969check:
970 /*
971 * Extra check for current option against current flag
972 */
1751e8a6 973 if (btrfs_test_opt(info, NOLOGREPLAY) && !(new_flags & SB_RDONLY)) {
0b246afa 974 btrfs_err(info,
96da0919
QW
975 "nologreplay must be used with ro mount option");
976 ret = -EINVAL;
977 }
a7a3f7ca 978out:
0b246afa 979 if (btrfs_fs_compat_ro(info, FREE_SPACE_TREE) &&
3cdde224
JM
980 !btrfs_test_opt(info, FREE_SPACE_TREE) &&
981 !btrfs_test_opt(info, CLEAR_CACHE)) {
0b246afa 982 btrfs_err(info, "cannot disable free space tree");
70f6d82e
OS
983 ret = -EINVAL;
984
985 }
3cdde224 986 if (!ret && btrfs_test_opt(info, SPACE_CACHE))
0b246afa 987 btrfs_info(info, "disk space caching is enabled");
3cdde224 988 if (!ret && btrfs_test_opt(info, FREE_SPACE_TREE))
0b246afa 989 btrfs_info(info, "using free space tree");
a7a3f7ca 990 return ret;
edf24abe
CH
991}
992
993/*
994 * Parse mount options that are required early in the mount process.
995 *
996 * All other options will be parsed on much later in the mount process and
997 * only when we need to allocate a new super block.
998 */
fa59f27c
AJ
999static int btrfs_parse_device_options(const char *options, fmode_t flags,
1000 void *holder)
edf24abe
CH
1001{
1002 substring_t args[MAX_OPT_ARGS];
83c8c9bd 1003 char *device_name, *opts, *orig, *p;
36350e95 1004 struct btrfs_device *device = NULL;
d7407606
MT
1005 int error = 0;
1006
5139cff5
DS
1007 lockdep_assert_held(&uuid_mutex);
1008
d7407606
MT
1009 if (!options)
1010 return 0;
1011
1012 /*
1013 * strsep changes the string, duplicate it because btrfs_parse_options
1014 * gets called later
1015 */
1016 opts = kstrdup(options, GFP_KERNEL);
1017 if (!opts)
1018 return -ENOMEM;
1019 orig = opts;
1020
1021 while ((p = strsep(&opts, ",")) != NULL) {
1022 int token;
1023
1024 if (!*p)
1025 continue;
1026
1027 token = match_token(p, tokens, args);
1028 if (token == Opt_device) {
1029 device_name = match_strdup(&args[0]);
1030 if (!device_name) {
1031 error = -ENOMEM;
1032 goto out;
1033 }
36350e95
GJ
1034 device = btrfs_scan_one_device(device_name, flags,
1035 holder);
d7407606 1036 kfree(device_name);
36350e95
GJ
1037 if (IS_ERR(device)) {
1038 error = PTR_ERR(device);
d7407606 1039 goto out;
36350e95 1040 }
d7407606
MT
1041 }
1042 }
1043
1044out:
1045 kfree(orig);
1046 return error;
1047}
1048
1049/*
1050 * Parse mount options that are related to subvolume id
1051 *
1052 * The value is later passed to mount_subvol()
1053 */
93b9bcdf
GJ
1054static int btrfs_parse_subvol_options(const char *options, char **subvol_name,
1055 u64 *subvol_objectid)
d7407606
MT
1056{
1057 substring_t args[MAX_OPT_ARGS];
1058 char *opts, *orig, *p;
edf24abe 1059 int error = 0;
ccb0e7d1 1060 u64 subvolid;
edf24abe
CH
1061
1062 if (!options)
830c4adb 1063 return 0;
edf24abe
CH
1064
1065 /*
d7407606 1066 * strsep changes the string, duplicate it because
fa59f27c 1067 * btrfs_parse_device_options gets called later
edf24abe
CH
1068 */
1069 opts = kstrdup(options, GFP_KERNEL);
1070 if (!opts)
1071 return -ENOMEM;
3f3d0bc0 1072 orig = opts;
edf24abe
CH
1073
1074 while ((p = strsep(&opts, ",")) != NULL) {
1075 int token;
1076 if (!*p)
1077 continue;
1078
1079 token = match_token(p, tokens, args);
1080 switch (token) {
1081 case Opt_subvol:
a90e8b6f 1082 kfree(*subvol_name);
edf24abe 1083 *subvol_name = match_strdup(&args[0]);
2c334e87
WS
1084 if (!*subvol_name) {
1085 error = -ENOMEM;
1086 goto out;
1087 }
edf24abe 1088 break;
73f73415 1089 case Opt_subvolid:
ccb0e7d1
AJ
1090 error = match_u64(&args[0], &subvolid);
1091 if (error)
2c334e87 1092 goto out;
ccb0e7d1
AJ
1093
1094 /* we want the original fs_tree */
1095 if (subvolid == 0)
1096 subvolid = BTRFS_FS_TREE_OBJECTID;
1097
1098 *subvol_objectid = subvolid;
73f73415 1099 break;
edf24abe
CH
1100 default:
1101 break;
1102 }
1103 }
1104
830c4adb 1105out:
3f3d0bc0 1106 kfree(orig);
edf24abe 1107 return error;
95e05289
CM
1108}
1109
c0c907a4
MPS
1110char *btrfs_get_subvol_name_from_objectid(struct btrfs_fs_info *fs_info,
1111 u64 subvol_objectid)
73f73415 1112{
815745cf 1113 struct btrfs_root *root = fs_info->tree_root;
5168489a 1114 struct btrfs_root *fs_root = NULL;
05dbe683
OS
1115 struct btrfs_root_ref *root_ref;
1116 struct btrfs_inode_ref *inode_ref;
1117 struct btrfs_key key;
1118 struct btrfs_path *path = NULL;
1119 char *name = NULL, *ptr;
1120 u64 dirid;
1121 int len;
1122 int ret;
1123
1124 path = btrfs_alloc_path();
1125 if (!path) {
1126 ret = -ENOMEM;
1127 goto err;
1128 }
1129 path->leave_spinning = 1;
1130
3ec83621 1131 name = kmalloc(PATH_MAX, GFP_KERNEL);
05dbe683
OS
1132 if (!name) {
1133 ret = -ENOMEM;
1134 goto err;
1135 }
1136 ptr = name + PATH_MAX - 1;
1137 ptr[0] = '\0';
73f73415
JB
1138
1139 /*
05dbe683
OS
1140 * Walk up the subvolume trees in the tree of tree roots by root
1141 * backrefs until we hit the top-level subvolume.
73f73415 1142 */
05dbe683
OS
1143 while (subvol_objectid != BTRFS_FS_TREE_OBJECTID) {
1144 key.objectid = subvol_objectid;
1145 key.type = BTRFS_ROOT_BACKREF_KEY;
1146 key.offset = (u64)-1;
1147
1148 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1149 if (ret < 0) {
1150 goto err;
1151 } else if (ret > 0) {
1152 ret = btrfs_previous_item(root, path, subvol_objectid,
1153 BTRFS_ROOT_BACKREF_KEY);
1154 if (ret < 0) {
1155 goto err;
1156 } else if (ret > 0) {
1157 ret = -ENOENT;
1158 goto err;
1159 }
1160 }
1161
1162 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1163 subvol_objectid = key.offset;
1164
1165 root_ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
1166 struct btrfs_root_ref);
1167 len = btrfs_root_ref_name_len(path->nodes[0], root_ref);
1168 ptr -= len + 1;
1169 if (ptr < name) {
1170 ret = -ENAMETOOLONG;
1171 goto err;
1172 }
1173 read_extent_buffer(path->nodes[0], ptr + 1,
1174 (unsigned long)(root_ref + 1), len);
1175 ptr[0] = '/';
1176 dirid = btrfs_root_ref_dirid(path->nodes[0], root_ref);
1177 btrfs_release_path(path);
1178
56e9357a 1179 fs_root = btrfs_get_fs_root(fs_info, subvol_objectid, true);
05dbe683
OS
1180 if (IS_ERR(fs_root)) {
1181 ret = PTR_ERR(fs_root);
5168489a
JB
1182 fs_root = NULL;
1183 goto err;
1184 }
05dbe683
OS
1185
1186 /*
1187 * Walk up the filesystem tree by inode refs until we hit the
1188 * root directory.
1189 */
1190 while (dirid != BTRFS_FIRST_FREE_OBJECTID) {
1191 key.objectid = dirid;
1192 key.type = BTRFS_INODE_REF_KEY;
1193 key.offset = (u64)-1;
1194
1195 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
1196 if (ret < 0) {
1197 goto err;
1198 } else if (ret > 0) {
1199 ret = btrfs_previous_item(fs_root, path, dirid,
1200 BTRFS_INODE_REF_KEY);
1201 if (ret < 0) {
1202 goto err;
1203 } else if (ret > 0) {
1204 ret = -ENOENT;
1205 goto err;
1206 }
1207 }
1208
1209 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1210 dirid = key.offset;
1211
1212 inode_ref = btrfs_item_ptr(path->nodes[0],
1213 path->slots[0],
1214 struct btrfs_inode_ref);
1215 len = btrfs_inode_ref_name_len(path->nodes[0],
1216 inode_ref);
1217 ptr -= len + 1;
1218 if (ptr < name) {
1219 ret = -ENAMETOOLONG;
1220 goto err;
1221 }
1222 read_extent_buffer(path->nodes[0], ptr + 1,
1223 (unsigned long)(inode_ref + 1), len);
1224 ptr[0] = '/';
1225 btrfs_release_path(path);
1226 }
00246528 1227 btrfs_put_root(fs_root);
5168489a 1228 fs_root = NULL;
73f73415
JB
1229 }
1230
05dbe683
OS
1231 btrfs_free_path(path);
1232 if (ptr == name + PATH_MAX - 1) {
1233 name[0] = '/';
1234 name[1] = '\0';
1235 } else {
1236 memmove(name, ptr, name + PATH_MAX - ptr);
1237 }
1238 return name;
1239
1240err:
00246528 1241 btrfs_put_root(fs_root);
05dbe683
OS
1242 btrfs_free_path(path);
1243 kfree(name);
1244 return ERR_PTR(ret);
1245}
1246
1247static int get_default_subvol_objectid(struct btrfs_fs_info *fs_info, u64 *objectid)
1248{
1249 struct btrfs_root *root = fs_info->tree_root;
1250 struct btrfs_dir_item *di;
1251 struct btrfs_path *path;
1252 struct btrfs_key location;
1253 u64 dir_id;
1254
73f73415
JB
1255 path = btrfs_alloc_path();
1256 if (!path)
05dbe683 1257 return -ENOMEM;
73f73415
JB
1258 path->leave_spinning = 1;
1259
1260 /*
1261 * Find the "default" dir item which points to the root item that we
1262 * will mount by default if we haven't been given a specific subvolume
1263 * to mount.
1264 */
815745cf 1265 dir_id = btrfs_super_root_dir(fs_info->super_copy);
73f73415 1266 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
b0839166
JL
1267 if (IS_ERR(di)) {
1268 btrfs_free_path(path);
05dbe683 1269 return PTR_ERR(di);
b0839166 1270 }
73f73415
JB
1271 if (!di) {
1272 /*
1273 * Ok the default dir item isn't there. This is weird since
1274 * it's always been there, but don't freak out, just try and
05dbe683 1275 * mount the top-level subvolume.
73f73415
JB
1276 */
1277 btrfs_free_path(path);
05dbe683
OS
1278 *objectid = BTRFS_FS_TREE_OBJECTID;
1279 return 0;
73f73415
JB
1280 }
1281
1282 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
1283 btrfs_free_path(path);
05dbe683
OS
1284 *objectid = location.objectid;
1285 return 0;
73f73415
JB
1286}
1287
d397712b 1288static int btrfs_fill_super(struct super_block *sb,
8a4b83cc 1289 struct btrfs_fs_devices *fs_devices,
56e033a7 1290 void *data)
75dfe396 1291{
d397712b 1292 struct inode *inode;
815745cf 1293 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
39279cc3 1294 int err;
a429e513 1295
39279cc3
CM
1296 sb->s_maxbytes = MAX_LFS_FILESIZE;
1297 sb->s_magic = BTRFS_SUPER_MAGIC;
1298 sb->s_op = &btrfs_super_ops;
af53d29a 1299 sb->s_d_op = &btrfs_dentry_operations;
be6e8dc0 1300 sb->s_export_op = &btrfs_export_ops;
5103e947 1301 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 1302 sb->s_time_gran = 1;
0eda294d 1303#ifdef CONFIG_BTRFS_FS_POSIX_ACL
1751e8a6 1304 sb->s_flags |= SB_POSIXACL;
49cf6f45 1305#endif
357fdad0 1306 sb->s_flags |= SB_I_VERSION;
da2f0f74 1307 sb->s_iflags |= SB_I_CGROUPWB;
9e11ceee
JK
1308
1309 err = super_setup_bdi(sb);
1310 if (err) {
1311 btrfs_err(fs_info, "super_setup_bdi failed");
1312 return err;
1313 }
1314
ad2b2c80
AV
1315 err = open_ctree(sb, fs_devices, (char *)data);
1316 if (err) {
ab8d0fc4 1317 btrfs_err(fs_info, "open_ctree failed");
ad2b2c80 1318 return err;
a429e513
CM
1319 }
1320
0202e83f 1321 inode = btrfs_iget(sb, BTRFS_FIRST_FREE_OBJECTID, fs_info->fs_root);
5d4f98a2
YZ
1322 if (IS_ERR(inode)) {
1323 err = PTR_ERR(inode);
39279cc3 1324 goto fail_close;
f254e52c 1325 }
f254e52c 1326
48fde701
AV
1327 sb->s_root = d_make_root(inode);
1328 if (!sb->s_root) {
39279cc3
CM
1329 err = -ENOMEM;
1330 goto fail_close;
f254e52c 1331 }
58176a96 1332
90a887c9 1333 cleancache_init_fs(sb);
1751e8a6 1334 sb->s_flags |= SB_ACTIVE;
2619ba1f 1335 return 0;
39279cc3
CM
1336
1337fail_close:
6bccf3ab 1338 close_ctree(fs_info);
39279cc3 1339 return err;
2619ba1f
CM
1340}
1341
6bf13c0c 1342int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
1343{
1344 struct btrfs_trans_handle *trans;
815745cf
AV
1345 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1346 struct btrfs_root *root = fs_info->tree_root;
2619ba1f 1347
bc074524 1348 trace_btrfs_sync_fs(fs_info, wait);
1abe9b8a 1349
39279cc3 1350 if (!wait) {
815745cf 1351 filemap_flush(fs_info->btree_inode->i_mapping);
39279cc3
CM
1352 return 0;
1353 }
771ed689 1354
6374e57a 1355 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0, (u64)-1);
771ed689 1356
d4edf39b 1357 trans = btrfs_attach_transaction_barrier(root);
60376ce4 1358 if (IS_ERR(trans)) {
354aa0fb 1359 /* no transaction, don't bother */
6b5fe46d
DS
1360 if (PTR_ERR(trans) == -ENOENT) {
1361 /*
1362 * Exit unless we have some pending changes
1363 * that need to go through commit
1364 */
1365 if (fs_info->pending_changes == 0)
1366 return 0;
a53f4f8e
QW
1367 /*
1368 * A non-blocking test if the fs is frozen. We must not
1369 * start a new transaction here otherwise a deadlock
1370 * happens. The pending operations are delayed to the
1371 * next commit after thawing.
1372 */
a7e3c5f2
RP
1373 if (sb_start_write_trylock(sb))
1374 sb_end_write(sb);
a53f4f8e
QW
1375 else
1376 return 0;
6b5fe46d 1377 trans = btrfs_start_transaction(root, 0);
6b5fe46d 1378 }
98bd5c54
DS
1379 if (IS_ERR(trans))
1380 return PTR_ERR(trans);
60376ce4 1381 }
3a45bb20 1382 return btrfs_commit_transaction(trans);
2c90e5d6
CM
1383}
1384
34c80b1d 1385static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
a9572a15 1386{
815745cf 1387 struct btrfs_fs_info *info = btrfs_sb(dentry->d_sb);
0f628c63 1388 const char *compress_type;
3ef3959b 1389 const char *subvol_name;
a9572a15 1390
3cdde224 1391 if (btrfs_test_opt(info, DEGRADED))
a9572a15 1392 seq_puts(seq, ",degraded");
3cdde224 1393 if (btrfs_test_opt(info, NODATASUM))
a9572a15 1394 seq_puts(seq, ",nodatasum");
3cdde224 1395 if (btrfs_test_opt(info, NODATACOW))
a9572a15 1396 seq_puts(seq, ",nodatacow");
3cdde224 1397 if (btrfs_test_opt(info, NOBARRIER))
a9572a15 1398 seq_puts(seq, ",nobarrier");
95ac567a 1399 if (info->max_inline != BTRFS_DEFAULT_MAX_INLINE)
c1c9ff7c 1400 seq_printf(seq, ",max_inline=%llu", info->max_inline);
a9572a15
EP
1401 if (info->thread_pool_size != min_t(unsigned long,
1402 num_online_cpus() + 2, 8))
f7b885be 1403 seq_printf(seq, ",thread_pool=%u", info->thread_pool_size);
3cdde224 1404 if (btrfs_test_opt(info, COMPRESS)) {
0f628c63 1405 compress_type = btrfs_compress_type2str(info->compress_type);
3cdde224 1406 if (btrfs_test_opt(info, FORCE_COMPRESS))
200da64e
TI
1407 seq_printf(seq, ",compress-force=%s", compress_type);
1408 else
1409 seq_printf(seq, ",compress=%s", compress_type);
f51d2b59 1410 if (info->compress_level)
fa4d885a 1411 seq_printf(seq, ":%d", info->compress_level);
200da64e 1412 }
3cdde224 1413 if (btrfs_test_opt(info, NOSSD))
c289811c 1414 seq_puts(seq, ",nossd");
3cdde224 1415 if (btrfs_test_opt(info, SSD_SPREAD))
451d7585 1416 seq_puts(seq, ",ssd_spread");
3cdde224 1417 else if (btrfs_test_opt(info, SSD))
a9572a15 1418 seq_puts(seq, ",ssd");
3cdde224 1419 if (btrfs_test_opt(info, NOTREELOG))
6b65c5c6 1420 seq_puts(seq, ",notreelog");
3cdde224 1421 if (btrfs_test_opt(info, NOLOGREPLAY))
74ef0018 1422 seq_puts(seq, ",rescue=nologreplay");
3cdde224 1423 if (btrfs_test_opt(info, FLUSHONCOMMIT))
6b65c5c6 1424 seq_puts(seq, ",flushoncommit");
46b27f50 1425 if (btrfs_test_opt(info, DISCARD_SYNC))
20a5239a 1426 seq_puts(seq, ",discard");
b0643e59
DZ
1427 if (btrfs_test_opt(info, DISCARD_ASYNC))
1428 seq_puts(seq, ",discard=async");
1751e8a6 1429 if (!(info->sb->s_flags & SB_POSIXACL))
a9572a15 1430 seq_puts(seq, ",noacl");
3cdde224 1431 if (btrfs_test_opt(info, SPACE_CACHE))
200da64e 1432 seq_puts(seq, ",space_cache");
3cdde224 1433 else if (btrfs_test_opt(info, FREE_SPACE_TREE))
70f6d82e 1434 seq_puts(seq, ",space_cache=v2");
73bc1876 1435 else
8965593e 1436 seq_puts(seq, ",nospace_cache");
3cdde224 1437 if (btrfs_test_opt(info, RESCAN_UUID_TREE))
f420ee1e 1438 seq_puts(seq, ",rescan_uuid_tree");
3cdde224 1439 if (btrfs_test_opt(info, CLEAR_CACHE))
200da64e 1440 seq_puts(seq, ",clear_cache");
3cdde224 1441 if (btrfs_test_opt(info, USER_SUBVOL_RM_ALLOWED))
200da64e 1442 seq_puts(seq, ",user_subvol_rm_allowed");
3cdde224 1443 if (btrfs_test_opt(info, ENOSPC_DEBUG))
0942caa3 1444 seq_puts(seq, ",enospc_debug");
3cdde224 1445 if (btrfs_test_opt(info, AUTO_DEFRAG))
0942caa3 1446 seq_puts(seq, ",autodefrag");
3cdde224 1447 if (btrfs_test_opt(info, INODE_MAP_CACHE))
0942caa3 1448 seq_puts(seq, ",inode_cache");
3cdde224 1449 if (btrfs_test_opt(info, SKIP_BALANCE))
9555c6c1 1450 seq_puts(seq, ",skip_balance");
8507d216 1451#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
3cdde224 1452 if (btrfs_test_opt(info, CHECK_INTEGRITY_INCLUDING_EXTENT_DATA))
8507d216 1453 seq_puts(seq, ",check_int_data");
3cdde224 1454 else if (btrfs_test_opt(info, CHECK_INTEGRITY))
8507d216
WS
1455 seq_puts(seq, ",check_int");
1456 if (info->check_integrity_print_mask)
1457 seq_printf(seq, ",check_int_print_mask=%d",
1458 info->check_integrity_print_mask);
1459#endif
1460 if (info->metadata_ratio)
764cb8b4 1461 seq_printf(seq, ",metadata_ratio=%u", info->metadata_ratio);
3cdde224 1462 if (btrfs_test_opt(info, PANIC_ON_FATAL_ERROR))
8c342930 1463 seq_puts(seq, ",fatal_errors=panic");
8b87dc17 1464 if (info->commit_interval != BTRFS_DEFAULT_COMMIT_INTERVAL)
d3740608 1465 seq_printf(seq, ",commit=%u", info->commit_interval);
d0bd4560 1466#ifdef CONFIG_BTRFS_DEBUG
3cdde224 1467 if (btrfs_test_opt(info, FRAGMENT_DATA))
d0bd4560 1468 seq_puts(seq, ",fragment=data");
3cdde224 1469 if (btrfs_test_opt(info, FRAGMENT_METADATA))
d0bd4560
JB
1470 seq_puts(seq, ",fragment=metadata");
1471#endif
fb592373
JB
1472 if (btrfs_test_opt(info, REF_VERIFY))
1473 seq_puts(seq, ",ref_verify");
c8d3fe02
OS
1474 seq_printf(seq, ",subvolid=%llu",
1475 BTRFS_I(d_inode(dentry))->root->root_key.objectid);
3ef3959b
JB
1476 subvol_name = btrfs_get_subvol_name_from_objectid(info,
1477 BTRFS_I(d_inode(dentry))->root->root_key.objectid);
1478 if (!IS_ERR(subvol_name)) {
1479 seq_puts(seq, ",subvol=");
1480 seq_escape(seq, subvol_name, " \t\n\\");
1481 kfree(subvol_name);
1482 }
a9572a15
EP
1483 return 0;
1484}
1485
a061fc8d 1486static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 1487{
815745cf
AV
1488 struct btrfs_fs_info *p = data;
1489 struct btrfs_fs_info *fs_info = btrfs_sb(s);
4b82d6e4 1490
815745cf 1491 return fs_info->fs_devices == p->fs_devices;
4b82d6e4
Y
1492}
1493
450ba0ea
JB
1494static int btrfs_set_super(struct super_block *s, void *data)
1495{
6de1d09d
AV
1496 int err = set_anon_super(s, data);
1497 if (!err)
1498 s->s_fs_info = data;
1499 return err;
4b82d6e4
Y
1500}
1501
f9d9ef62
DS
1502/*
1503 * subvolumes are identified by ino 256
1504 */
1505static inline int is_subvolume_inode(struct inode *inode)
1506{
1507 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
1508 return 1;
1509 return 0;
1510}
1511
bb289b7b 1512static struct dentry *mount_subvol(const char *subvol_name, u64 subvol_objectid,
ae0bc863 1513 struct vfsmount *mnt)
830c4adb 1514{
830c4adb 1515 struct dentry *root;
fa330659 1516 int ret;
830c4adb 1517
05dbe683
OS
1518 if (!subvol_name) {
1519 if (!subvol_objectid) {
1520 ret = get_default_subvol_objectid(btrfs_sb(mnt->mnt_sb),
1521 &subvol_objectid);
1522 if (ret) {
1523 root = ERR_PTR(ret);
1524 goto out;
1525 }
1526 }
c0c907a4
MPS
1527 subvol_name = btrfs_get_subvol_name_from_objectid(
1528 btrfs_sb(mnt->mnt_sb), subvol_objectid);
05dbe683
OS
1529 if (IS_ERR(subvol_name)) {
1530 root = ERR_CAST(subvol_name);
1531 subvol_name = NULL;
1532 goto out;
1533 }
1534
1535 }
1536
ea441d11 1537 root = mount_subtree(mnt, subvol_name);
fa330659
OS
1538 /* mount_subtree() drops our reference on the vfsmount. */
1539 mnt = NULL;
830c4adb 1540
bb289b7b 1541 if (!IS_ERR(root)) {
ea441d11 1542 struct super_block *s = root->d_sb;
ab8d0fc4 1543 struct btrfs_fs_info *fs_info = btrfs_sb(s);
bb289b7b
OS
1544 struct inode *root_inode = d_inode(root);
1545 u64 root_objectid = BTRFS_I(root_inode)->root->root_key.objectid;
1546
1547 ret = 0;
1548 if (!is_subvolume_inode(root_inode)) {
ab8d0fc4 1549 btrfs_err(fs_info, "'%s' is not a valid subvolume",
bb289b7b
OS
1550 subvol_name);
1551 ret = -EINVAL;
1552 }
1553 if (subvol_objectid && root_objectid != subvol_objectid) {
05dbe683
OS
1554 /*
1555 * This will also catch a race condition where a
1556 * subvolume which was passed by ID is renamed and
1557 * another subvolume is renamed over the old location.
1558 */
ab8d0fc4
JM
1559 btrfs_err(fs_info,
1560 "subvol '%s' does not match subvolid %llu",
1561 subvol_name, subvol_objectid);
bb289b7b
OS
1562 ret = -EINVAL;
1563 }
1564 if (ret) {
1565 dput(root);
1566 root = ERR_PTR(ret);
1567 deactivate_locked_super(s);
1568 }
f9d9ef62
DS
1569 }
1570
fa330659
OS
1571out:
1572 mntput(mnt);
fa330659 1573 kfree(subvol_name);
830c4adb
JB
1574 return root;
1575}
450ba0ea 1576
312c89fb
MT
1577/*
1578 * Find a superblock for the given device / mount point.
1579 *
1580 * Note: This is based on mount_bdev from fs/super.c with a few additions
1581 * for multiple device setup. Make sure to keep it in sync.
1582 */
72fa39f5
MT
1583static struct dentry *btrfs_mount_root(struct file_system_type *fs_type,
1584 int flags, const char *device_name, void *data)
1585{
1586 struct block_device *bdev = NULL;
1587 struct super_block *s;
36350e95 1588 struct btrfs_device *device = NULL;
72fa39f5
MT
1589 struct btrfs_fs_devices *fs_devices = NULL;
1590 struct btrfs_fs_info *fs_info = NULL;
204cc0cc 1591 void *new_sec_opts = NULL;
72fa39f5 1592 fmode_t mode = FMODE_READ;
72fa39f5
MT
1593 int error = 0;
1594
1595 if (!(flags & SB_RDONLY))
1596 mode |= FMODE_WRITE;
1597
72fa39f5 1598 if (data) {
a65001e8 1599 error = security_sb_eat_lsm_opts(data, &new_sec_opts);
72fa39f5
MT
1600 if (error)
1601 return ERR_PTR(error);
1602 }
1603
72fa39f5
MT
1604 /*
1605 * Setup a dummy root and fs_info for test/set super. This is because
1606 * we don't actually fill this stuff out until open_ctree, but we need
8260edba
JB
1607 * then open_ctree will properly initialize the file system specific
1608 * settings later. btrfs_init_fs_info initializes the static elements
1609 * of the fs_info (locks and such) to make cleanup easier if we find a
1610 * superblock with our given fs_devices later on at sget() time.
72fa39f5 1611 */
a8fd1f71 1612 fs_info = kvzalloc(sizeof(struct btrfs_fs_info), GFP_KERNEL);
72fa39f5
MT
1613 if (!fs_info) {
1614 error = -ENOMEM;
1615 goto error_sec_opts;
1616 }
8260edba 1617 btrfs_init_fs_info(fs_info);
72fa39f5 1618
72fa39f5
MT
1619 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_KERNEL);
1620 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_KERNEL);
72fa39f5
MT
1621 if (!fs_info->super_copy || !fs_info->super_for_commit) {
1622 error = -ENOMEM;
1623 goto error_fs_info;
1624 }
1625
399f7f4c 1626 mutex_lock(&uuid_mutex);
fa59f27c 1627 error = btrfs_parse_device_options(data, mode, fs_type);
81ffd56b
DS
1628 if (error) {
1629 mutex_unlock(&uuid_mutex);
399f7f4c 1630 goto error_fs_info;
81ffd56b 1631 }
399f7f4c 1632
36350e95
GJ
1633 device = btrfs_scan_one_device(device_name, mode, fs_type);
1634 if (IS_ERR(device)) {
81ffd56b 1635 mutex_unlock(&uuid_mutex);
36350e95 1636 error = PTR_ERR(device);
399f7f4c 1637 goto error_fs_info;
81ffd56b 1638 }
399f7f4c 1639
36350e95 1640 fs_devices = device->fs_devices;
399f7f4c
DS
1641 fs_info->fs_devices = fs_devices;
1642
72fa39f5 1643 error = btrfs_open_devices(fs_devices, mode, fs_type);
f5194e34 1644 mutex_unlock(&uuid_mutex);
72fa39f5
MT
1645 if (error)
1646 goto error_fs_info;
1647
1648 if (!(flags & SB_RDONLY) && fs_devices->rw_devices == 0) {
1649 error = -EACCES;
1650 goto error_close_devices;
1651 }
1652
1653 bdev = fs_devices->latest_bdev;
1654 s = sget(fs_type, btrfs_test_super, btrfs_set_super, flags | SB_NOSEC,
1655 fs_info);
1656 if (IS_ERR(s)) {
1657 error = PTR_ERR(s);
1658 goto error_close_devices;
1659 }
1660
1661 if (s->s_root) {
1662 btrfs_close_devices(fs_devices);
0d4b0463 1663 btrfs_free_fs_info(fs_info);
72fa39f5
MT
1664 if ((flags ^ s->s_flags) & SB_RDONLY)
1665 error = -EBUSY;
1666 } else {
1667 snprintf(s->s_id, sizeof(s->s_id), "%pg", bdev);
1668 btrfs_sb(s)->bdev_holder = fs_type;
9b4e675a
DS
1669 if (!strstr(crc32c_impl(), "generic"))
1670 set_bit(BTRFS_FS_CSUM_IMPL_FAST, &fs_info->flags);
72fa39f5
MT
1671 error = btrfs_fill_super(s, fs_devices, data);
1672 }
a65001e8 1673 if (!error)
204cc0cc 1674 error = security_sb_set_mnt_opts(s, new_sec_opts, 0, NULL);
a65001e8 1675 security_free_mnt_opts(&new_sec_opts);
72fa39f5
MT
1676 if (error) {
1677 deactivate_locked_super(s);
a65001e8 1678 return ERR_PTR(error);
72fa39f5
MT
1679 }
1680
1681 return dget(s->s_root);
1682
1683error_close_devices:
1684 btrfs_close_devices(fs_devices);
1685error_fs_info:
0d4b0463 1686 btrfs_free_fs_info(fs_info);
72fa39f5
MT
1687error_sec_opts:
1688 security_free_mnt_opts(&new_sec_opts);
1689 return ERR_PTR(error);
1690}
312c89fb 1691
edf24abe 1692/*
312c89fb 1693 * Mount function which is called by VFS layer.
edf24abe 1694 *
312c89fb
MT
1695 * In order to allow mounting a subvolume directly, btrfs uses mount_subtree()
1696 * which needs vfsmount* of device's root (/). This means device's root has to
1697 * be mounted internally in any case.
1698 *
1699 * Operation flow:
1700 * 1. Parse subvol id related options for later use in mount_subvol().
1701 *
1702 * 2. Mount device's root (/) by calling vfs_kern_mount().
1703 *
1704 * NOTE: vfs_kern_mount() is used by VFS to call btrfs_mount() in the
1705 * first place. In order to avoid calling btrfs_mount() again, we use
1706 * different file_system_type which is not registered to VFS by
1707 * register_filesystem() (btrfs_root_fs_type). As a result,
1708 * btrfs_mount_root() is called. The return value will be used by
1709 * mount_subtree() in mount_subvol().
1710 *
1711 * 3. Call mount_subvol() to get the dentry of subvolume. Since there is
1712 * "btrfs subvolume set-default", mount_subvol() is called always.
edf24abe 1713 */
061dbc6b 1714static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
306e16ce 1715 const char *device_name, void *data)
4b82d6e4 1716{
312c89fb
MT
1717 struct vfsmount *mnt_root;
1718 struct dentry *root;
73f73415
JB
1719 char *subvol_name = NULL;
1720 u64 subvol_objectid = 0;
4b82d6e4
Y
1721 int error = 0;
1722
93b9bcdf
GJ
1723 error = btrfs_parse_subvol_options(data, &subvol_name,
1724 &subvol_objectid);
f23c8af8
ID
1725 if (error) {
1726 kfree(subvol_name);
061dbc6b 1727 return ERR_PTR(error);
f23c8af8 1728 }
edf24abe 1729
312c89fb
MT
1730 /* mount device's root (/) */
1731 mnt_root = vfs_kern_mount(&btrfs_root_fs_type, flags, device_name, data);
1732 if (PTR_ERR_OR_ZERO(mnt_root) == -EBUSY) {
1733 if (flags & SB_RDONLY) {
1734 mnt_root = vfs_kern_mount(&btrfs_root_fs_type,
1735 flags & ~SB_RDONLY, device_name, data);
1736 } else {
1737 mnt_root = vfs_kern_mount(&btrfs_root_fs_type,
1738 flags | SB_RDONLY, device_name, data);
1739 if (IS_ERR(mnt_root)) {
1740 root = ERR_CAST(mnt_root);
532b618b 1741 kfree(subvol_name);
312c89fb
MT
1742 goto out;
1743 }
4b82d6e4 1744
312c89fb
MT
1745 down_write(&mnt_root->mnt_sb->s_umount);
1746 error = btrfs_remount(mnt_root->mnt_sb, &flags, NULL);
1747 up_write(&mnt_root->mnt_sb->s_umount);
1748 if (error < 0) {
1749 root = ERR_PTR(error);
1750 mntput(mnt_root);
532b618b 1751 kfree(subvol_name);
312c89fb
MT
1752 goto out;
1753 }
1754 }
f667aef6 1755 }
312c89fb
MT
1756 if (IS_ERR(mnt_root)) {
1757 root = ERR_CAST(mnt_root);
532b618b 1758 kfree(subvol_name);
312c89fb 1759 goto out;
f667aef6 1760 }
4b82d6e4 1761
312c89fb 1762 /* mount_subvol() will free subvol_name and mnt_root */
ae0bc863 1763 root = mount_subvol(subvol_name, subvol_objectid, mnt_root);
4b82d6e4 1764
312c89fb
MT
1765out:
1766 return root;
4b82d6e4 1767}
2e635a27 1768
0d2450ab 1769static void btrfs_resize_thread_pool(struct btrfs_fs_info *fs_info,
f7b885be 1770 u32 new_pool_size, u32 old_pool_size)
0d2450ab
ST
1771{
1772 if (new_pool_size == old_pool_size)
1773 return;
1774
1775 fs_info->thread_pool_size = new_pool_size;
1776
efe120a0 1777 btrfs_info(fs_info, "resize thread pool %d -> %d",
0d2450ab
ST
1778 old_pool_size, new_pool_size);
1779
5cdc7ad3 1780 btrfs_workqueue_set_max(fs_info->workers, new_pool_size);
afe3d242 1781 btrfs_workqueue_set_max(fs_info->delalloc_workers, new_pool_size);
e66f0bb1 1782 btrfs_workqueue_set_max(fs_info->caching_workers, new_pool_size);
fccb5d86
QW
1783 btrfs_workqueue_set_max(fs_info->endio_workers, new_pool_size);
1784 btrfs_workqueue_set_max(fs_info->endio_meta_workers, new_pool_size);
1785 btrfs_workqueue_set_max(fs_info->endio_meta_write_workers,
1786 new_pool_size);
1787 btrfs_workqueue_set_max(fs_info->endio_write_workers, new_pool_size);
1788 btrfs_workqueue_set_max(fs_info->endio_freespace_worker, new_pool_size);
5b3bc44e 1789 btrfs_workqueue_set_max(fs_info->delayed_workers, new_pool_size);
736cfa15 1790 btrfs_workqueue_set_max(fs_info->readahead_workers, new_pool_size);
0339ef2f
QW
1791 btrfs_workqueue_set_max(fs_info->scrub_wr_completion_workers,
1792 new_pool_size);
0d2450ab
ST
1793}
1794
f42a34b2
MX
1795static inline void btrfs_remount_begin(struct btrfs_fs_info *fs_info,
1796 unsigned long old_opts, int flags)
1797{
dc81cdc5
MX
1798 if (btrfs_raw_test_opt(old_opts, AUTO_DEFRAG) &&
1799 (!btrfs_raw_test_opt(fs_info->mount_opt, AUTO_DEFRAG) ||
1751e8a6 1800 (flags & SB_RDONLY))) {
dc81cdc5
MX
1801 /* wait for any defraggers to finish */
1802 wait_event(fs_info->transaction_wait,
1803 (atomic_read(&fs_info->defrag_running) == 0));
1751e8a6 1804 if (flags & SB_RDONLY)
dc81cdc5
MX
1805 sync_filesystem(fs_info->sb);
1806 }
1807}
1808
1809static inline void btrfs_remount_cleanup(struct btrfs_fs_info *fs_info,
1810 unsigned long old_opts)
1811{
1812 /*
180e4d47
LB
1813 * We need to cleanup all defragable inodes if the autodefragment is
1814 * close or the filesystem is read only.
dc81cdc5
MX
1815 */
1816 if (btrfs_raw_test_opt(old_opts, AUTO_DEFRAG) &&
bc98a42c 1817 (!btrfs_raw_test_opt(fs_info->mount_opt, AUTO_DEFRAG) || sb_rdonly(fs_info->sb))) {
dc81cdc5
MX
1818 btrfs_cleanup_defrag_inodes(fs_info);
1819 }
1820
b0643e59
DZ
1821 /* If we toggled discard async */
1822 if (!btrfs_raw_test_opt(old_opts, DISCARD_ASYNC) &&
1823 btrfs_test_opt(fs_info, DISCARD_ASYNC))
1824 btrfs_discard_resume(fs_info);
1825 else if (btrfs_raw_test_opt(old_opts, DISCARD_ASYNC) &&
1826 !btrfs_test_opt(fs_info, DISCARD_ASYNC))
1827 btrfs_discard_cleanup(fs_info);
dc81cdc5
MX
1828}
1829
c146afad
YZ
1830static int btrfs_remount(struct super_block *sb, int *flags, char *data)
1831{
815745cf
AV
1832 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1833 struct btrfs_root *root = fs_info->tree_root;
49b25e05
JM
1834 unsigned old_flags = sb->s_flags;
1835 unsigned long old_opts = fs_info->mount_opt;
1836 unsigned long old_compress_type = fs_info->compress_type;
1837 u64 old_max_inline = fs_info->max_inline;
f7b885be 1838 u32 old_thread_pool_size = fs_info->thread_pool_size;
d612ac59 1839 u32 old_metadata_ratio = fs_info->metadata_ratio;
c146afad
YZ
1840 int ret;
1841
02b9984d 1842 sync_filesystem(sb);
88c4703f 1843 set_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
dc81cdc5 1844
f667aef6 1845 if (data) {
204cc0cc 1846 void *new_sec_opts = NULL;
f667aef6 1847
a65001e8
AV
1848 ret = security_sb_eat_lsm_opts(data, &new_sec_opts);
1849 if (!ret)
204cc0cc 1850 ret = security_sb_remount(sb, new_sec_opts);
a65001e8 1851 security_free_mnt_opts(&new_sec_opts);
f667aef6
QW
1852 if (ret)
1853 goto restore;
f667aef6
QW
1854 }
1855
2ff7e61e 1856 ret = btrfs_parse_options(fs_info, data, *flags);
891f41cb 1857 if (ret)
49b25e05 1858 goto restore;
b288052e 1859
f42a34b2 1860 btrfs_remount_begin(fs_info, old_opts, *flags);
0d2450ab
ST
1861 btrfs_resize_thread_pool(fs_info,
1862 fs_info->thread_pool_size, old_thread_pool_size);
1863
1751e8a6 1864 if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
dc81cdc5 1865 goto out;
c146afad 1866
1751e8a6 1867 if (*flags & SB_RDONLY) {
8dabb742
SB
1868 /*
1869 * this also happens on 'umount -rf' or on shutdown, when
1870 * the filesystem is busy.
1871 */
21c7e756 1872 cancel_work_sync(&fs_info->async_reclaim_work);
361c093d 1873
b0643e59
DZ
1874 btrfs_discard_cleanup(fs_info);
1875
361c093d
SB
1876 /* wait for the uuid_scan task to finish */
1877 down(&fs_info->uuid_tree_rescan_sem);
1878 /* avoid complains from lockdep et al. */
1879 up(&fs_info->uuid_tree_rescan_sem);
1880
1751e8a6 1881 sb->s_flags |= SB_RDONLY;
c146afad 1882
e44163e1 1883 /*
1751e8a6 1884 * Setting SB_RDONLY will put the cleaner thread to
e44163e1
JM
1885 * sleep at the next loop if it's already active.
1886 * If it's already asleep, we'll leave unused block
1887 * groups on disk until we're mounted read-write again
1888 * unless we clean them up here.
1889 */
e44163e1 1890 btrfs_delete_unused_bgs(fs_info);
e44163e1 1891
8dabb742
SB
1892 btrfs_dev_replace_suspend_for_unmount(fs_info);
1893 btrfs_scrub_cancel(fs_info);
061594ef 1894 btrfs_pause_balance(fs_info);
8dabb742 1895
6bccf3ab 1896 ret = btrfs_commit_super(fs_info);
49b25e05
JM
1897 if (ret)
1898 goto restore;
c146afad 1899 } else {
0b246afa 1900 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
6ef3de9c 1901 btrfs_err(fs_info,
efe120a0 1902 "Remounting read-write after error is not allowed");
6ef3de9c
DS
1903 ret = -EINVAL;
1904 goto restore;
1905 }
8a3db184 1906 if (fs_info->fs_devices->rw_devices == 0) {
49b25e05
JM
1907 ret = -EACCES;
1908 goto restore;
8a3db184 1909 }
2b82032c 1910
6528b99d 1911 if (!btrfs_check_rw_degradable(fs_info, NULL)) {
efe120a0 1912 btrfs_warn(fs_info,
52042d8e 1913 "too many missing devices, writable remount is not allowed");
292fd7fc
SB
1914 ret = -EACCES;
1915 goto restore;
1916 }
1917
8a3db184 1918 if (btrfs_super_log_root(fs_info->super_copy) != 0) {
10a3a3ed
DS
1919 btrfs_warn(fs_info,
1920 "mount required to replay tree-log, cannot remount read-write");
49b25e05
JM
1921 ret = -EINVAL;
1922 goto restore;
8a3db184 1923 }
c146afad 1924
815745cf 1925 ret = btrfs_cleanup_fs_roots(fs_info);
49b25e05
JM
1926 if (ret)
1927 goto restore;
c146afad 1928
d68fc57b 1929 /* recover relocation */
5f316481 1930 mutex_lock(&fs_info->cleaner_mutex);
d68fc57b 1931 ret = btrfs_recover_relocation(root);
5f316481 1932 mutex_unlock(&fs_info->cleaner_mutex);
49b25e05
JM
1933 if (ret)
1934 goto restore;
c146afad 1935
2b6ba629
ID
1936 ret = btrfs_resume_balance_async(fs_info);
1937 if (ret)
1938 goto restore;
1939
8dabb742
SB
1940 ret = btrfs_resume_dev_replace_async(fs_info);
1941 if (ret) {
efe120a0 1942 btrfs_warn(fs_info, "failed to resume dev_replace");
8dabb742
SB
1943 goto restore;
1944 }
94aebfb2 1945
6c6b5a39
AS
1946 btrfs_qgroup_rescan_resume(fs_info);
1947
94aebfb2 1948 if (!fs_info->uuid_root) {
efe120a0 1949 btrfs_info(fs_info, "creating UUID tree");
94aebfb2
JB
1950 ret = btrfs_create_uuid_tree(fs_info);
1951 if (ret) {
5d163e0e
JM
1952 btrfs_warn(fs_info,
1953 "failed to create the UUID tree %d",
1954 ret);
94aebfb2
JB
1955 goto restore;
1956 }
1957 }
1751e8a6 1958 sb->s_flags &= ~SB_RDONLY;
90c711ab 1959
afcdd129 1960 set_bit(BTRFS_FS_OPEN, &fs_info->flags);
c146afad 1961 }
dc81cdc5 1962out:
faa00889
JB
1963 /*
1964 * We need to set SB_I_VERSION here otherwise it'll get cleared by VFS,
1965 * since the absence of the flag means it can be toggled off by remount.
1966 */
1967 *flags |= SB_I_VERSION;
1968
2c6a92b0 1969 wake_up_process(fs_info->transaction_kthread);
dc81cdc5 1970 btrfs_remount_cleanup(fs_info, old_opts);
88c4703f
JT
1971 clear_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
1972
c146afad 1973 return 0;
49b25e05
JM
1974
1975restore:
1751e8a6 1976 /* We've hit an error - don't reset SB_RDONLY */
bc98a42c 1977 if (sb_rdonly(sb))
1751e8a6 1978 old_flags |= SB_RDONLY;
49b25e05
JM
1979 sb->s_flags = old_flags;
1980 fs_info->mount_opt = old_opts;
1981 fs_info->compress_type = old_compress_type;
1982 fs_info->max_inline = old_max_inline;
0d2450ab
ST
1983 btrfs_resize_thread_pool(fs_info,
1984 old_thread_pool_size, fs_info->thread_pool_size);
49b25e05 1985 fs_info->metadata_ratio = old_metadata_ratio;
dc81cdc5 1986 btrfs_remount_cleanup(fs_info, old_opts);
88c4703f
JT
1987 clear_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
1988
49b25e05 1989 return ret;
c146afad
YZ
1990}
1991
bcd53741 1992/* Used to sort the devices by max_avail(descending sort) */
7e17916b 1993static inline int btrfs_cmp_device_free_bytes(const void *dev_info1,
bcd53741
AJ
1994 const void *dev_info2)
1995{
1996 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1997 ((struct btrfs_device_info *)dev_info2)->max_avail)
1998 return -1;
1999 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
2000 ((struct btrfs_device_info *)dev_info2)->max_avail)
2001 return 1;
2002 else
2003 return 0;
2004}
2005
2006/*
2007 * sort the devices by max_avail, in which max free extent size of each device
2008 * is stored.(Descending Sort)
2009 */
2010static inline void btrfs_descending_sort_devices(
2011 struct btrfs_device_info *devices,
2012 size_t nr_devices)
2013{
2014 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
2015 btrfs_cmp_device_free_bytes, NULL);
2016}
2017
6d07bcec
MX
2018/*
2019 * The helper to calc the free space on the devices that can be used to store
2020 * file data.
2021 */
7e17916b
AB
2022static inline int btrfs_calc_avail_data_space(struct btrfs_fs_info *fs_info,
2023 u64 *free_bytes)
6d07bcec 2024{
6d07bcec
MX
2025 struct btrfs_device_info *devices_info;
2026 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
2027 struct btrfs_device *device;
6d07bcec
MX
2028 u64 type;
2029 u64 avail_space;
6d07bcec 2030 u64 min_stripe_size;
559ca6ea 2031 int num_stripes = 1;
6d07bcec 2032 int i = 0, nr_devices;
4f080f57 2033 const struct btrfs_raid_attr *rattr;
6d07bcec 2034
7e33fd99 2035 /*
01327610 2036 * We aren't under the device list lock, so this is racy-ish, but good
7e33fd99
JB
2037 * enough for our purposes.
2038 */
b772a86e 2039 nr_devices = fs_info->fs_devices->open_devices;
7e33fd99
JB
2040 if (!nr_devices) {
2041 smp_mb();
2042 nr_devices = fs_info->fs_devices->open_devices;
2043 ASSERT(nr_devices);
2044 if (!nr_devices) {
2045 *free_bytes = 0;
2046 return 0;
2047 }
2048 }
6d07bcec 2049
d9b0d9ba 2050 devices_info = kmalloc_array(nr_devices, sizeof(*devices_info),
6a44517d 2051 GFP_KERNEL);
6d07bcec
MX
2052 if (!devices_info)
2053 return -ENOMEM;
2054
01327610 2055 /* calc min stripe number for data space allocation */
1b86826d 2056 type = btrfs_data_alloc_profile(fs_info);
4f080f57
DS
2057 rattr = &btrfs_raid_array[btrfs_bg_flags_to_raid_index(type)];
2058
e1ea2bee 2059 if (type & BTRFS_BLOCK_GROUP_RAID0)
39fb26c3 2060 num_stripes = nr_devices;
e1ea2bee 2061 else if (type & BTRFS_BLOCK_GROUP_RAID1)
39fb26c3 2062 num_stripes = 2;
47e6f742
DS
2063 else if (type & BTRFS_BLOCK_GROUP_RAID1C3)
2064 num_stripes = 3;
8d6fac00
DS
2065 else if (type & BTRFS_BLOCK_GROUP_RAID1C4)
2066 num_stripes = 4;
e1ea2bee 2067 else if (type & BTRFS_BLOCK_GROUP_RAID10)
39fb26c3 2068 num_stripes = 4;
6d07bcec 2069
4f080f57
DS
2070 /* Adjust for more than 1 stripe per device */
2071 min_stripe_size = rattr->dev_stripes * BTRFS_STRIPE_LEN;
6d07bcec 2072
7e33fd99
JB
2073 rcu_read_lock();
2074 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
e12c9621
AJ
2075 if (!test_bit(BTRFS_DEV_STATE_IN_FS_METADATA,
2076 &device->dev_state) ||
401e29c1
AJ
2077 !device->bdev ||
2078 test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state))
6d07bcec
MX
2079 continue;
2080
7e33fd99
JB
2081 if (i >= nr_devices)
2082 break;
2083
6d07bcec
MX
2084 avail_space = device->total_bytes - device->bytes_used;
2085
2086 /* align with stripe_len */
559ca6ea 2087 avail_space = rounddown(avail_space, BTRFS_STRIPE_LEN);
6d07bcec
MX
2088
2089 /*
01327610 2090 * In order to avoid overwriting the superblock on the drive,
6d07bcec
MX
2091 * btrfs starts at an offset of at least 1MB when doing chunk
2092 * allocation.
559ca6ea
NB
2093 *
2094 * This ensures we have at least min_stripe_size free space
2095 * after excluding 1MB.
6d07bcec 2096 */
559ca6ea 2097 if (avail_space <= SZ_1M + min_stripe_size)
6d07bcec
MX
2098 continue;
2099
559ca6ea
NB
2100 avail_space -= SZ_1M;
2101
6d07bcec
MX
2102 devices_info[i].dev = device;
2103 devices_info[i].max_avail = avail_space;
2104
2105 i++;
2106 }
7e33fd99 2107 rcu_read_unlock();
6d07bcec
MX
2108
2109 nr_devices = i;
2110
2111 btrfs_descending_sort_devices(devices_info, nr_devices);
2112
2113 i = nr_devices - 1;
2114 avail_space = 0;
559ca6ea
NB
2115 while (nr_devices >= rattr->devs_min) {
2116 num_stripes = min(num_stripes, nr_devices);
39fb26c3 2117
6d07bcec
MX
2118 if (devices_info[i].max_avail >= min_stripe_size) {
2119 int j;
2120 u64 alloc_size;
2121
39fb26c3 2122 avail_space += devices_info[i].max_avail * num_stripes;
6d07bcec 2123 alloc_size = devices_info[i].max_avail;
39fb26c3 2124 for (j = i + 1 - num_stripes; j <= i; j++)
6d07bcec
MX
2125 devices_info[j].max_avail -= alloc_size;
2126 }
2127 i--;
2128 nr_devices--;
2129 }
2130
2131 kfree(devices_info);
2132 *free_bytes = avail_space;
2133 return 0;
2134}
2135
ba7b6e62
DS
2136/*
2137 * Calculate numbers for 'df', pessimistic in case of mixed raid profiles.
2138 *
2139 * If there's a redundant raid level at DATA block groups, use the respective
2140 * multiplier to scale the sizes.
2141 *
2142 * Unused device space usage is based on simulating the chunk allocator
0d0c71b3
DS
2143 * algorithm that respects the device sizes and order of allocations. This is
2144 * a close approximation of the actual use but there are other factors that may
2145 * change the result (like a new metadata chunk).
ba7b6e62 2146 *
ca8a51b3 2147 * If metadata is exhausted, f_bavail will be 0.
ba7b6e62 2148 */
8fd17795
CM
2149static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
2150{
815745cf
AV
2151 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
2152 struct btrfs_super_block *disk_super = fs_info->super_copy;
bd4d1088
JB
2153 struct btrfs_space_info *found;
2154 u64 total_used = 0;
6d07bcec 2155 u64 total_free_data = 0;
ca8a51b3 2156 u64 total_free_meta = 0;
db94535d 2157 int bits = dentry->d_sb->s_blocksize_bits;
de37aa51 2158 __be32 *fsid = (__be32 *)fs_info->fs_devices->fsid;
ba7b6e62
DS
2159 unsigned factor = 1;
2160 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
6d07bcec 2161 int ret;
ca8a51b3 2162 u64 thresh = 0;
ae02d1bd 2163 int mixed = 0;
8fd17795 2164
bd4d1088 2165 rcu_read_lock();
f5389f33 2166 list_for_each_entry_rcu(found, &fs_info->space_info, list) {
6d07bcec 2167 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
ba7b6e62
DS
2168 int i;
2169
6d07bcec
MX
2170 total_free_data += found->disk_total - found->disk_used;
2171 total_free_data -=
2172 btrfs_account_ro_block_groups_free_space(found);
ba7b6e62
DS
2173
2174 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
46df06b8
DS
2175 if (!list_empty(&found->block_groups[i]))
2176 factor = btrfs_bg_type_to_factor(
2177 btrfs_raid_array[i].bg_flag);
ba7b6e62 2178 }
6d07bcec 2179 }
ae02d1bd
LB
2180
2181 /*
2182 * Metadata in mixed block goup profiles are accounted in data
2183 */
2184 if (!mixed && found->flags & BTRFS_BLOCK_GROUP_METADATA) {
2185 if (found->flags & BTRFS_BLOCK_GROUP_DATA)
2186 mixed = 1;
2187 else
2188 total_free_meta += found->disk_total -
2189 found->disk_used;
2190 }
6d07bcec 2191
b742bb82 2192 total_used += found->disk_used;
89a55897 2193 }
ba7b6e62 2194
bd4d1088
JB
2195 rcu_read_unlock();
2196
ba7b6e62
DS
2197 buf->f_blocks = div_u64(btrfs_super_total_bytes(disk_super), factor);
2198 buf->f_blocks >>= bits;
2199 buf->f_bfree = buf->f_blocks - (div_u64(total_used, factor) >> bits);
2200
2201 /* Account global block reserve as used, it's in logical size already */
2202 spin_lock(&block_rsv->lock);
41b34acc
LB
2203 /* Mixed block groups accounting is not byte-accurate, avoid overflow */
2204 if (buf->f_bfree >= block_rsv->size >> bits)
2205 buf->f_bfree -= block_rsv->size >> bits;
2206 else
2207 buf->f_bfree = 0;
ba7b6e62
DS
2208 spin_unlock(&block_rsv->lock);
2209
0d95c1be 2210 buf->f_bavail = div_u64(total_free_data, factor);
6bccf3ab 2211 ret = btrfs_calc_avail_data_space(fs_info, &total_free_data);
7e33fd99 2212 if (ret)
6d07bcec 2213 return ret;
ba7b6e62 2214 buf->f_bavail += div_u64(total_free_data, factor);
6d07bcec 2215 buf->f_bavail = buf->f_bavail >> bits;
d397712b 2216
ca8a51b3
DS
2217 /*
2218 * We calculate the remaining metadata space minus global reserve. If
2219 * this is (supposedly) smaller than zero, there's no space. But this
2220 * does not hold in practice, the exhausted state happens where's still
2221 * some positive delta. So we apply some guesswork and compare the
2222 * delta to a 4M threshold. (Practically observed delta was ~2M.)
2223 *
2224 * We probably cannot calculate the exact threshold value because this
2225 * depends on the internal reservations requested by various
2226 * operations, so some operations that consume a few metadata will
2227 * succeed even if the Avail is zero. But this is better than the other
2228 * way around.
2229 */
d4417e22 2230 thresh = SZ_4M;
ca8a51b3 2231
d55966c4
JB
2232 /*
2233 * We only want to claim there's no available space if we can no longer
2234 * allocate chunks for our metadata profile and our global reserve will
2235 * not fit in the free metadata space. If we aren't ->full then we
2236 * still can allocate chunks and thus are fine using the currently
2237 * calculated f_bavail.
2238 */
2239 if (!mixed && block_rsv->space_info->full &&
2240 total_free_meta - thresh < block_rsv->size)
ca8a51b3
DS
2241 buf->f_bavail = 0;
2242
ba7b6e62
DS
2243 buf->f_type = BTRFS_SUPER_MAGIC;
2244 buf->f_bsize = dentry->d_sb->s_blocksize;
2245 buf->f_namelen = BTRFS_NAME_LEN;
2246
9d03632e 2247 /* We treat it as constant endianness (it doesn't matter _which_)
d397712b 2248 because we want the fsid to come out the same whether mounted
9d03632e
DW
2249 on a big-endian or little-endian host */
2250 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
2251 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1 2252 /* Mask in the root object ID too, to disambiguate subvols */
4fd786e6
MT
2253 buf->f_fsid.val[0] ^=
2254 BTRFS_I(d_inode(dentry))->root->root_key.objectid >> 32;
2255 buf->f_fsid.val[1] ^=
2256 BTRFS_I(d_inode(dentry))->root->root_key.objectid;
32d48fa1 2257
8fd17795
CM
2258 return 0;
2259}
b5133862 2260
aea52e19
AV
2261static void btrfs_kill_super(struct super_block *sb)
2262{
815745cf 2263 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
aea52e19 2264 kill_anon_super(sb);
0d4b0463 2265 btrfs_free_fs_info(fs_info);
aea52e19
AV
2266}
2267
2e635a27
CM
2268static struct file_system_type btrfs_fs_type = {
2269 .owner = THIS_MODULE,
2270 .name = "btrfs",
061dbc6b 2271 .mount = btrfs_mount,
aea52e19 2272 .kill_sb = btrfs_kill_super,
f667aef6 2273 .fs_flags = FS_REQUIRES_DEV | FS_BINARY_MOUNTDATA,
2e635a27 2274};
72fa39f5
MT
2275
2276static struct file_system_type btrfs_root_fs_type = {
2277 .owner = THIS_MODULE,
2278 .name = "btrfs",
2279 .mount = btrfs_mount_root,
2280 .kill_sb = btrfs_kill_super,
2281 .fs_flags = FS_REQUIRES_DEV | FS_BINARY_MOUNTDATA,
2282};
2283
7f78e035 2284MODULE_ALIAS_FS("btrfs");
a9218f6b 2285
d8620958
TVB
2286static int btrfs_control_open(struct inode *inode, struct file *file)
2287{
2288 /*
2289 * The control file's private_data is used to hold the
2290 * transaction when it is started and is used to keep
2291 * track of whether a transaction is already in progress.
2292 */
2293 file->private_data = NULL;
2294 return 0;
2295}
2296
d352ac68 2297/*
cfe953c8 2298 * Used by /dev/btrfs-control for devices ioctls.
d352ac68 2299 */
8a4b83cc
CM
2300static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
2301 unsigned long arg)
2302{
2303 struct btrfs_ioctl_vol_args *vol;
36350e95 2304 struct btrfs_device *device = NULL;
c071fcfd 2305 int ret = -ENOTTY;
8a4b83cc 2306
e441d54d
CM
2307 if (!capable(CAP_SYS_ADMIN))
2308 return -EPERM;
2309
dae7b665
LZ
2310 vol = memdup_user((void __user *)arg, sizeof(*vol));
2311 if (IS_ERR(vol))
2312 return PTR_ERR(vol);
f505754f 2313 vol->name[BTRFS_PATH_NAME_MAX] = '\0';
c071fcfd 2314
8a4b83cc
CM
2315 switch (cmd) {
2316 case BTRFS_IOC_SCAN_DEV:
899f9307 2317 mutex_lock(&uuid_mutex);
36350e95
GJ
2318 device = btrfs_scan_one_device(vol->name, FMODE_READ,
2319 &btrfs_root_fs_type);
2320 ret = PTR_ERR_OR_ZERO(device);
899f9307 2321 mutex_unlock(&uuid_mutex);
8a4b83cc 2322 break;
228a73ab
AJ
2323 case BTRFS_IOC_FORGET_DEV:
2324 ret = btrfs_forget_devices(vol->name);
2325 break;
02db0844 2326 case BTRFS_IOC_DEVICES_READY:
899f9307 2327 mutex_lock(&uuid_mutex);
36350e95
GJ
2328 device = btrfs_scan_one_device(vol->name, FMODE_READ,
2329 &btrfs_root_fs_type);
2330 if (IS_ERR(device)) {
899f9307 2331 mutex_unlock(&uuid_mutex);
36350e95 2332 ret = PTR_ERR(device);
02db0844 2333 break;
899f9307 2334 }
36350e95
GJ
2335 ret = !(device->fs_devices->num_devices ==
2336 device->fs_devices->total_devices);
899f9307 2337 mutex_unlock(&uuid_mutex);
02db0844 2338 break;
c5868f83 2339 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
d5131b65 2340 ret = btrfs_ioctl_get_supported_features((void __user*)arg);
c5868f83 2341 break;
8a4b83cc 2342 }
dae7b665 2343
8a4b83cc 2344 kfree(vol);
f819d837 2345 return ret;
8a4b83cc
CM
2346}
2347
0176260f 2348static int btrfs_freeze(struct super_block *sb)
ed0dab6b 2349{
354aa0fb 2350 struct btrfs_trans_handle *trans;
0b246afa
JM
2351 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
2352 struct btrfs_root *root = fs_info->tree_root;
354aa0fb 2353
fac03c8d 2354 set_bit(BTRFS_FS_FROZEN, &fs_info->flags);
9e7cc91a
WX
2355 /*
2356 * We don't need a barrier here, we'll wait for any transaction that
2357 * could be in progress on other threads (and do delayed iputs that
2358 * we want to avoid on a frozen filesystem), or do the commit
2359 * ourselves.
2360 */
d4edf39b 2361 trans = btrfs_attach_transaction_barrier(root);
354aa0fb
MX
2362 if (IS_ERR(trans)) {
2363 /* no transaction, don't bother */
2364 if (PTR_ERR(trans) == -ENOENT)
2365 return 0;
2366 return PTR_ERR(trans);
2367 }
3a45bb20 2368 return btrfs_commit_transaction(trans);
ed0dab6b
Y
2369}
2370
9e7cc91a
WX
2371static int btrfs_unfreeze(struct super_block *sb)
2372{
fac03c8d
DS
2373 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
2374
2375 clear_bit(BTRFS_FS_FROZEN, &fs_info->flags);
9e7cc91a
WX
2376 return 0;
2377}
2378
9c5085c1
JB
2379static int btrfs_show_devname(struct seq_file *m, struct dentry *root)
2380{
2381 struct btrfs_fs_info *fs_info = btrfs_sb(root->d_sb);
9c5085c1 2382 struct btrfs_device *dev, *first_dev = NULL;
9c5085c1 2383
88c14590
DS
2384 /*
2385 * Lightweight locking of the devices. We should not need
2386 * device_list_mutex here as we only read the device data and the list
2387 * is protected by RCU. Even if a device is deleted during the list
2388 * traversals, we'll get valid data, the freeing callback will wait at
52042d8e 2389 * least until the rcu_read_unlock.
88c14590
DS
2390 */
2391 rcu_read_lock();
4faf55b0
AJ
2392 list_for_each_entry_rcu(dev, &fs_info->fs_devices->devices, dev_list) {
2393 if (test_bit(BTRFS_DEV_STATE_MISSING, &dev->dev_state))
2394 continue;
2395 if (!dev->name)
2396 continue;
2397 if (!first_dev || dev->devid < first_dev->devid)
2398 first_dev = dev;
9c5085c1
JB
2399 }
2400
672d5990
MT
2401 if (first_dev)
2402 seq_escape(m, rcu_str_deref(first_dev->name), " \t\n\\");
2403 else
9c5085c1 2404 WARN_ON(1);
88c14590 2405 rcu_read_unlock();
9c5085c1
JB
2406 return 0;
2407}
2408
b87221de 2409static const struct super_operations btrfs_super_ops = {
76dda93c 2410 .drop_inode = btrfs_drop_inode,
bd555975 2411 .evict_inode = btrfs_evict_inode,
e20d96d6 2412 .put_super = btrfs_put_super,
d5719762 2413 .sync_fs = btrfs_sync_fs,
a9572a15 2414 .show_options = btrfs_show_options,
9c5085c1 2415 .show_devname = btrfs_show_devname,
2c90e5d6
CM
2416 .alloc_inode = btrfs_alloc_inode,
2417 .destroy_inode = btrfs_destroy_inode,
26602cab 2418 .free_inode = btrfs_free_inode,
8fd17795 2419 .statfs = btrfs_statfs,
c146afad 2420 .remount_fs = btrfs_remount,
0176260f 2421 .freeze_fs = btrfs_freeze,
9e7cc91a 2422 .unfreeze_fs = btrfs_unfreeze,
e20d96d6 2423};
a9218f6b
CM
2424
2425static const struct file_operations btrfs_ctl_fops = {
d8620958 2426 .open = btrfs_control_open,
a9218f6b 2427 .unlocked_ioctl = btrfs_control_ioctl,
1832f2d8 2428 .compat_ioctl = compat_ptr_ioctl,
a9218f6b 2429 .owner = THIS_MODULE,
6038f373 2430 .llseek = noop_llseek,
a9218f6b
CM
2431};
2432
2433static struct miscdevice btrfs_misc = {
578454ff 2434 .minor = BTRFS_MINOR,
a9218f6b
CM
2435 .name = "btrfs-control",
2436 .fops = &btrfs_ctl_fops
2437};
2438
578454ff
KS
2439MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
2440MODULE_ALIAS("devname:btrfs-control");
2441
f5c29bd9 2442static int __init btrfs_interface_init(void)
a9218f6b
CM
2443{
2444 return misc_register(&btrfs_misc);
2445}
2446
e67c718b 2447static __cold void btrfs_interface_exit(void)
a9218f6b 2448{
f368ed60 2449 misc_deregister(&btrfs_misc);
a9218f6b
CM
2450}
2451
f5c29bd9 2452static void __init btrfs_print_mod_info(void)
85965600 2453{
edf57cbf 2454 static const char options[] = ""
85965600
DS
2455#ifdef CONFIG_BTRFS_DEBUG
2456 ", debug=on"
2457#endif
79556c3d
SB
2458#ifdef CONFIG_BTRFS_ASSERT
2459 ", assert=on"
2460#endif
85965600
DS
2461#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
2462 ", integrity-checker=on"
fb592373
JB
2463#endif
2464#ifdef CONFIG_BTRFS_FS_REF_VERIFY
2465 ", ref-verify=on"
85965600 2466#endif
edf57cbf
BVA
2467 ;
2468 pr_info("Btrfs loaded, crc32c=%s%s\n", crc32c_impl(), options);
85965600
DS
2469}
2470
2e635a27
CM
2471static int __init init_btrfs_fs(void)
2472{
2c90e5d6 2473 int err;
58176a96 2474
63541927
FDBM
2475 btrfs_props_init();
2476
58176a96
JB
2477 err = btrfs_init_sysfs();
2478 if (err)
9678c543 2479 return err;
58176a96 2480
143bede5 2481 btrfs_init_compress();
d1310b2e 2482
261507a0
LZ
2483 err = btrfs_init_cachep();
2484 if (err)
2485 goto free_compress;
2486
d1310b2e 2487 err = extent_io_init();
2f4cbe64
WB
2488 if (err)
2489 goto free_cachep;
2490
6f0d04f8 2491 err = extent_state_cache_init();
d1310b2e
CM
2492 if (err)
2493 goto free_extent_io;
2494
6f0d04f8
JB
2495 err = extent_map_init();
2496 if (err)
2497 goto free_extent_state_cache;
2498
6352b91d 2499 err = ordered_data_init();
2f4cbe64
WB
2500 if (err)
2501 goto free_extent_map;
c8b97818 2502
6352b91d
MX
2503 err = btrfs_delayed_inode_init();
2504 if (err)
2505 goto free_ordered_data;
2506
9247f317 2507 err = btrfs_auto_defrag_init();
16cdcec7
MX
2508 if (err)
2509 goto free_delayed_inode;
2510
78a6184a 2511 err = btrfs_delayed_ref_init();
9247f317
MX
2512 if (err)
2513 goto free_auto_defrag;
2514
b9e9a6cb
WS
2515 err = btrfs_prelim_ref_init();
2516 if (err)
af13b492 2517 goto free_delayed_ref;
b9e9a6cb 2518
97eb6b69 2519 err = btrfs_end_io_wq_init();
78a6184a 2520 if (err)
af13b492 2521 goto free_prelim_ref;
78a6184a 2522
97eb6b69
DS
2523 err = btrfs_interface_init();
2524 if (err)
2525 goto free_end_io_wq;
2526
e565d4b9
JS
2527 btrfs_init_lockdep();
2528
8ae1af3c 2529 btrfs_print_mod_info();
dc11dd5d
JB
2530
2531 err = btrfs_run_sanity_tests();
2532 if (err)
2533 goto unregister_ioctl;
2534
2535 err = register_filesystem(&btrfs_fs_type);
2536 if (err)
2537 goto unregister_ioctl;
74255aa0 2538
2f4cbe64
WB
2539 return 0;
2540
a9218f6b
CM
2541unregister_ioctl:
2542 btrfs_interface_exit();
97eb6b69
DS
2543free_end_io_wq:
2544 btrfs_end_io_wq_exit();
b9e9a6cb
WS
2545free_prelim_ref:
2546 btrfs_prelim_ref_exit();
78a6184a
MX
2547free_delayed_ref:
2548 btrfs_delayed_ref_exit();
9247f317
MX
2549free_auto_defrag:
2550 btrfs_auto_defrag_exit();
16cdcec7
MX
2551free_delayed_inode:
2552 btrfs_delayed_inode_exit();
6352b91d
MX
2553free_ordered_data:
2554 ordered_data_exit();
2f4cbe64
WB
2555free_extent_map:
2556 extent_map_exit();
6f0d04f8
JB
2557free_extent_state_cache:
2558 extent_state_cache_exit();
d1310b2e
CM
2559free_extent_io:
2560 extent_io_exit();
2f4cbe64
WB
2561free_cachep:
2562 btrfs_destroy_cachep();
261507a0
LZ
2563free_compress:
2564 btrfs_exit_compress();
2f4cbe64 2565 btrfs_exit_sysfs();
9678c543 2566
2f4cbe64 2567 return err;
2e635a27
CM
2568}
2569
2570static void __exit exit_btrfs_fs(void)
2571{
39279cc3 2572 btrfs_destroy_cachep();
78a6184a 2573 btrfs_delayed_ref_exit();
9247f317 2574 btrfs_auto_defrag_exit();
16cdcec7 2575 btrfs_delayed_inode_exit();
b9e9a6cb 2576 btrfs_prelim_ref_exit();
6352b91d 2577 ordered_data_exit();
a52d9a80 2578 extent_map_exit();
6f0d04f8 2579 extent_state_cache_exit();
d1310b2e 2580 extent_io_exit();
a9218f6b 2581 btrfs_interface_exit();
5ed5f588 2582 btrfs_end_io_wq_exit();
2e635a27 2583 unregister_filesystem(&btrfs_fs_type);
58176a96 2584 btrfs_exit_sysfs();
8a4b83cc 2585 btrfs_cleanup_fs_uuids();
261507a0 2586 btrfs_exit_compress();
2e635a27
CM
2587}
2588
60efa5eb 2589late_initcall(init_btrfs_fs);
2e635a27
CM
2590module_exit(exit_btrfs_fs)
2591
2592MODULE_LICENSE("GPL");
d5178578 2593MODULE_SOFTDEP("pre: crc32c");
3951e7f0 2594MODULE_SOFTDEP("pre: xxhash64");
3831bf00 2595MODULE_SOFTDEP("pre: sha256");
352ae07b 2596MODULE_SOFTDEP("pre: blake2b-256");