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