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