Btrfs: unlock inodes in correct order in clone ioctl
[deliverable/linux.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>
55e301fd 44#include <linux/btrfs.h>
16cdcec7 45#include "delayed-inode.h"
2e635a27 46#include "ctree.h"
e20d96d6 47#include "disk-io.h"
d5719762 48#include "transaction.h"
2c90e5d6 49#include "btrfs_inode.h"
3a686375 50#include "print-tree.h"
63541927 51#include "props.h"
5103e947 52#include "xattr.h"
8a4b83cc 53#include "volumes.h"
be6e8dc0 54#include "export.h"
c8b97818 55#include "compression.h"
9c5085c1 56#include "rcu-string.h"
8dabb742 57#include "dev-replace.h"
74255aa0 58#include "free-space-cache.h"
b9e9a6cb 59#include "backref.h"
dc11dd5d 60#include "tests/btrfs-tests.h"
2e635a27 61
1abe9b8a 62#define CREATE_TRACE_POINTS
63#include <trace/events/btrfs.h>
64
b87221de 65static const struct super_operations btrfs_super_ops;
830c4adb 66static struct file_system_type btrfs_fs_type;
75dfe396 67
08748810 68static const char *btrfs_decode_error(int errno)
acce952b 69{
08748810 70 char *errstr = "unknown";
acce952b 71
72 switch (errno) {
73 case -EIO:
74 errstr = "IO failure";
75 break;
76 case -ENOMEM:
77 errstr = "Out of memory";
78 break;
79 case -EROFS:
80 errstr = "Readonly filesystem";
81 break;
8c342930
JM
82 case -EEXIST:
83 errstr = "Object already exists";
84 break;
94ef7280
DS
85 case -ENOSPC:
86 errstr = "No space left";
87 break;
88 case -ENOENT:
89 errstr = "No such entry";
90 break;
acce952b 91 }
92
93 return errstr;
94}
95
bbece8a3 96static void save_error_info(struct btrfs_fs_info *fs_info)
acce952b 97{
98 /*
99 * today we only save the error info into ram. Long term we'll
100 * also send it down to the disk
101 */
87533c47 102 set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state);
acce952b 103}
104
acce952b 105/* btrfs handle error by forcing the filesystem readonly */
106static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
107{
108 struct super_block *sb = fs_info->sb;
109
110 if (sb->s_flags & MS_RDONLY)
111 return;
112
87533c47 113 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
acce952b 114 sb->s_flags |= MS_RDONLY;
c2cf52eb 115 btrfs_info(fs_info, "forced readonly");
1acd6831
SB
116 /*
117 * Note that a running device replace operation is not
118 * canceled here although there is no way to update
119 * the progress. It would add the risk of a deadlock,
120 * therefore the canceling is ommited. The only penalty
121 * is that some I/O remains active until the procedure
122 * completes. The next time when the filesystem is
123 * mounted writeable again, the device replace
124 * operation continues.
125 */
acce952b 126 }
127}
128
533574c6 129#ifdef CONFIG_PRINTK
acce952b 130/*
131 * __btrfs_std_error decodes expected errors from the caller and
132 * invokes the approciate error response.
133 */
134void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
4da35113 135 unsigned int line, int errno, const char *fmt, ...)
acce952b 136{
137 struct super_block *sb = fs_info->sb;
acce952b 138 const char *errstr;
139
140 /*
141 * Special case: if the error is EROFS, and we're already
142 * under MS_RDONLY, then it is safe here.
143 */
144 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
4da35113
JM
145 return;
146
08748810 147 errstr = btrfs_decode_error(errno);
4da35113 148 if (fmt) {
37252a66
ES
149 struct va_format vaf;
150 va_list args;
151
152 va_start(args, fmt);
153 vaf.fmt = fmt;
154 vaf.va = &args;
4da35113 155
efe120a0
FH
156 printk(KERN_CRIT
157 "BTRFS: error (device %s) in %s:%d: errno=%d %s (%pV)\n",
08748810 158 sb->s_id, function, line, errno, errstr, &vaf);
37252a66 159 va_end(args);
4da35113 160 } else {
efe120a0 161 printk(KERN_CRIT "BTRFS: error (device %s) in %s:%d: errno=%d %s\n",
08748810 162 sb->s_id, function, line, errno, errstr);
4da35113 163 }
acce952b 164
4da35113 165 /* Don't go through full error handling during mount */
cf79ffb5
JB
166 save_error_info(fs_info);
167 if (sb->s_flags & MS_BORN)
4da35113 168 btrfs_handle_error(fs_info);
4da35113 169}
acce952b 170
533574c6 171static const char * const logtypes[] = {
4da35113
JM
172 "emergency",
173 "alert",
174 "critical",
175 "error",
176 "warning",
177 "notice",
178 "info",
179 "debug",
180};
181
c2cf52eb 182void btrfs_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...)
4da35113
JM
183{
184 struct super_block *sb = fs_info->sb;
185 char lvl[4];
186 struct va_format vaf;
187 va_list args;
188 const char *type = logtypes[4];
533574c6 189 int kern_level;
4da35113
JM
190
191 va_start(args, fmt);
192
533574c6
JP
193 kern_level = printk_get_level(fmt);
194 if (kern_level) {
195 size_t size = printk_skip_level(fmt) - fmt;
196 memcpy(lvl, fmt, size);
197 lvl[size] = '\0';
198 fmt += size;
199 type = logtypes[kern_level - '0'];
4da35113
JM
200 } else
201 *lvl = '\0';
202
203 vaf.fmt = fmt;
204 vaf.va = &args;
533574c6 205
c2cf52eb 206 printk("%sBTRFS %s (device %s): %pV\n", lvl, type, sb->s_id, &vaf);
533574c6
JP
207
208 va_end(args);
209}
210
211#else
212
213void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
214 unsigned int line, int errno, const char *fmt, ...)
215{
216 struct super_block *sb = fs_info->sb;
217
218 /*
219 * Special case: if the error is EROFS, and we're already
220 * under MS_RDONLY, then it is safe here.
221 */
222 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
223 return;
224
225 /* Don't go through full error handling during mount */
226 if (sb->s_flags & MS_BORN) {
227 save_error_info(fs_info);
228 btrfs_handle_error(fs_info);
229 }
acce952b 230}
533574c6 231#endif
acce952b 232
49b25e05
JM
233/*
234 * We only mark the transaction aborted and then set the file system read-only.
235 * This will prevent new transactions from starting or trying to join this
236 * one.
237 *
238 * This means that error recovery at the call site is limited to freeing
239 * any local memory allocations and passing the error code up without
240 * further cleanup. The transaction should complete as it normally would
241 * in the call path but will return -EIO.
242 *
243 * We'll complete the cleanup in btrfs_end_transaction and
244 * btrfs_commit_transaction.
245 */
246void __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
247 struct btrfs_root *root, const char *function,
248 unsigned int line, int errno)
249{
08748810
DS
250 /*
251 * Report first abort since mount
252 */
253 if (!test_and_set_bit(BTRFS_FS_STATE_TRANS_ABORTED,
254 &root->fs_info->fs_state)) {
efe120a0 255 WARN(1, KERN_DEBUG "BTRFS: Transaction aborted (error %d)\n",
08748810
DS
256 errno);
257 }
49b25e05
JM
258 trans->aborted = errno;
259 /* Nothing used. The other threads that have joined this
260 * transaction may be able to continue. */
261 if (!trans->blocks_used) {
69ce977a
MX
262 const char *errstr;
263
08748810 264 errstr = btrfs_decode_error(errno);
c2cf52eb
SK
265 btrfs_warn(root->fs_info,
266 "%s:%d: Aborting unused transaction(%s).",
267 function, line, errstr);
acce952b 268 return;
49b25e05 269 }
8d25a086 270 ACCESS_ONCE(trans->transaction->aborted) = errno;
501407aa
JB
271 /* Wake up anybody who may be waiting on this transaction */
272 wake_up(&root->fs_info->transaction_wait);
273 wake_up(&root->fs_info->transaction_blocked_wait);
49b25e05
JM
274 __btrfs_std_error(root->fs_info, function, line, errno, NULL);
275}
8c342930
JM
276/*
277 * __btrfs_panic decodes unexpected, fatal errors from the caller,
278 * issues an alert, and either panics or BUGs, depending on mount options.
279 */
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);
aa43a17c 295 if (fs_info && (fs_info->mount_opt & BTRFS_MOUNT_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{
815745cf 307 (void)close_ctree(btrfs_sb(sb)->tree_root);
aea52e19
AV
308 /* FIXME: need to fix VFS to return error? */
309 /* AV: return it _where_? ->put_super() can be triggered by any number
310 * of async events, up to and including delivery of SIGKILL to the
311 * last process that kept it busy. Or segfault in the aforementioned
312 * process... Whom would you report that to?
313 */
75dfe396
CM
314}
315
95e05289 316enum {
73f73415 317 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
287a0ab9
JB
318 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
319 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
261507a0
LZ
320 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
321 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
91435650 322 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
9555c6c1
ID
323 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_inode_cache,
324 Opt_no_space_cache, Opt_recovery, Opt_skip_balance,
21adbd5c 325 Opt_check_integrity, Opt_check_integrity_including_extent_data,
f420ee1e 326 Opt_check_integrity_print_mask, Opt_fatal_errors, Opt_rescan_uuid_tree,
e07a2ade 327 Opt_commit_interval, Opt_barrier, Opt_nodefrag, Opt_nodiscard,
a258af7a 328 Opt_noenospc_debug, Opt_noflushoncommit, Opt_acl, Opt_datacow,
a88998f2 329 Opt_datasum, Opt_treelog,
9555c6c1 330 Opt_err,
95e05289
CM
331};
332
333static match_table_t tokens = {
dfe25020 334 {Opt_degraded, "degraded"},
95e05289 335 {Opt_subvol, "subvol=%s"},
1493381f 336 {Opt_subvolid, "subvolid=%s"},
43e570b0 337 {Opt_device, "device=%s"},
b6cda9bc 338 {Opt_nodatasum, "nodatasum"},
d399167d 339 {Opt_datasum, "datasum"},
be20aa9d 340 {Opt_nodatacow, "nodatacow"},
a258af7a 341 {Opt_datacow, "datacow"},
21ad10cf 342 {Opt_nobarrier, "nobarrier"},
842bef58 343 {Opt_barrier, "barrier"},
6f568d35 344 {Opt_max_inline, "max_inline=%s"},
8f662a76 345 {Opt_alloc_start, "alloc_start=%s"},
4543df7e 346 {Opt_thread_pool, "thread_pool=%d"},
c8b97818 347 {Opt_compress, "compress"},
261507a0 348 {Opt_compress_type, "compress=%s"},
a555f810 349 {Opt_compress_force, "compress-force"},
261507a0 350 {Opt_compress_force_type, "compress-force=%s"},
e18e4809 351 {Opt_ssd, "ssd"},
451d7585 352 {Opt_ssd_spread, "ssd_spread"},
3b30c22f 353 {Opt_nossd, "nossd"},
bd0330ad 354 {Opt_acl, "acl"},
33268eaf 355 {Opt_noacl, "noacl"},
3a5e1404 356 {Opt_notreelog, "notreelog"},
a88998f2 357 {Opt_treelog, "treelog"},
dccae999 358 {Opt_flushoncommit, "flushoncommit"},
2c9ee856 359 {Opt_noflushoncommit, "noflushoncommit"},
97e728d4 360 {Opt_ratio, "metadata_ratio=%d"},
e244a0ae 361 {Opt_discard, "discard"},
e07a2ade 362 {Opt_nodiscard, "nodiscard"},
0af3d00b 363 {Opt_space_cache, "space_cache"},
88c2ba3b 364 {Opt_clear_cache, "clear_cache"},
4260f7c7 365 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
91435650 366 {Opt_enospc_debug, "enospc_debug"},
53036293 367 {Opt_noenospc_debug, "noenospc_debug"},
e15d0542 368 {Opt_subvolrootid, "subvolrootid=%d"},
4cb5300b 369 {Opt_defrag, "autodefrag"},
fc0ca9af 370 {Opt_nodefrag, "noautodefrag"},
4b9465cb 371 {Opt_inode_cache, "inode_cache"},
8965593e 372 {Opt_no_space_cache, "nospace_cache"},
af31f5e5 373 {Opt_recovery, "recovery"},
9555c6c1 374 {Opt_skip_balance, "skip_balance"},
21adbd5c
SB
375 {Opt_check_integrity, "check_int"},
376 {Opt_check_integrity_including_extent_data, "check_int_data"},
377 {Opt_check_integrity_print_mask, "check_int_print_mask=%d"},
f420ee1e 378 {Opt_rescan_uuid_tree, "rescan_uuid_tree"},
8c342930 379 {Opt_fatal_errors, "fatal_errors=%s"},
8b87dc17 380 {Opt_commit_interval, "commit=%d"},
33268eaf 381 {Opt_err, NULL},
95e05289
CM
382};
383
edf24abe
CH
384/*
385 * Regular mount options parser. Everything that is needed only when
386 * reading in a new superblock is parsed here.
49b25e05 387 * XXX JDM: This needs to be cleaned up for remount.
edf24abe
CH
388 */
389int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 390{
edf24abe 391 struct btrfs_fs_info *info = root->fs_info;
95e05289 392 substring_t args[MAX_OPT_ARGS];
73bc1876
JB
393 char *p, *num, *orig = NULL;
394 u64 cache_gen;
4543df7e 395 int intarg;
a7a3f7ca 396 int ret = 0;
261507a0
LZ
397 char *compress_type;
398 bool compress_force = false;
b6cda9bc 399
6c41761f 400 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
73bc1876
JB
401 if (cache_gen)
402 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
403
95e05289 404 if (!options)
73bc1876 405 goto out;
95e05289 406
be20aa9d
CM
407 /*
408 * strsep changes the string, duplicate it because parse_options
409 * gets called twice
410 */
411 options = kstrdup(options, GFP_NOFS);
412 if (!options)
413 return -ENOMEM;
414
da495ecc 415 orig = options;
be20aa9d 416
edf24abe 417 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
418 int token;
419 if (!*p)
420 continue;
421
422 token = match_token(p, tokens, args);
423 switch (token) {
dfe25020 424 case Opt_degraded:
efe120a0 425 btrfs_info(root->fs_info, "allowing degraded mounts");
edf24abe 426 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 427 break;
95e05289 428 case Opt_subvol:
73f73415 429 case Opt_subvolid:
e15d0542 430 case Opt_subvolrootid:
43e570b0 431 case Opt_device:
edf24abe 432 /*
43e570b0 433 * These are parsed by btrfs_parse_early_options
edf24abe
CH
434 * and can be happily ignored here.
435 */
b6cda9bc
CM
436 break;
437 case Opt_nodatasum:
efe120a0 438 btrfs_info(root->fs_info, "setting nodatasum");
edf24abe 439 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d 440 break;
d399167d
QW
441 case Opt_datasum:
442 if (btrfs_test_opt(root, NODATACOW))
443 btrfs_info(root->fs_info, "setting datasum, datacow enabled");
444 else
445 btrfs_info(root->fs_info, "setting datasum");
446 btrfs_clear_opt(info->mount_opt, NODATACOW);
447 btrfs_clear_opt(info->mount_opt, NODATASUM);
448 break;
be20aa9d 449 case Opt_nodatacow:
bedb2cca
AP
450 if (!btrfs_test_opt(root, COMPRESS) ||
451 !btrfs_test_opt(root, FORCE_COMPRESS)) {
efe120a0
FH
452 btrfs_info(root->fs_info,
453 "setting nodatacow, compression disabled");
bedb2cca 454 } else {
efe120a0 455 btrfs_info(root->fs_info, "setting nodatacow");
bedb2cca 456 }
bedb2cca
AP
457 btrfs_clear_opt(info->mount_opt, COMPRESS);
458 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
edf24abe
CH
459 btrfs_set_opt(info->mount_opt, NODATACOW);
460 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 461 break;
a258af7a
QW
462 case Opt_datacow:
463 if (btrfs_test_opt(root, NODATACOW))
464 btrfs_info(root->fs_info, "setting datacow");
465 btrfs_clear_opt(info->mount_opt, NODATACOW);
466 break;
a555f810 467 case Opt_compress_force:
261507a0
LZ
468 case Opt_compress_force_type:
469 compress_force = true;
1c697d4a 470 /* Fallthrough */
261507a0
LZ
471 case Opt_compress:
472 case Opt_compress_type:
473 if (token == Opt_compress ||
474 token == Opt_compress_force ||
475 strcmp(args[0].from, "zlib") == 0) {
476 compress_type = "zlib";
477 info->compress_type = BTRFS_COMPRESS_ZLIB;
063849ea 478 btrfs_set_opt(info->mount_opt, COMPRESS);
bedb2cca
AP
479 btrfs_clear_opt(info->mount_opt, NODATACOW);
480 btrfs_clear_opt(info->mount_opt, NODATASUM);
a6fa6fae
LZ
481 } else if (strcmp(args[0].from, "lzo") == 0) {
482 compress_type = "lzo";
483 info->compress_type = BTRFS_COMPRESS_LZO;
063849ea 484 btrfs_set_opt(info->mount_opt, COMPRESS);
bedb2cca
AP
485 btrfs_clear_opt(info->mount_opt, NODATACOW);
486 btrfs_clear_opt(info->mount_opt, NODATASUM);
2b0ce2c2 487 btrfs_set_fs_incompat(info, COMPRESS_LZO);
063849ea
AH
488 } else if (strncmp(args[0].from, "no", 2) == 0) {
489 compress_type = "no";
063849ea
AH
490 btrfs_clear_opt(info->mount_opt, COMPRESS);
491 btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
492 compress_force = false;
261507a0
LZ
493 } else {
494 ret = -EINVAL;
495 goto out;
496 }
497
261507a0
LZ
498 if (compress_force) {
499 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
efe120a0 500 btrfs_info(root->fs_info, "force %s compression",
261507a0 501 compress_type);
a7e252af 502 } else if (btrfs_test_opt(root, COMPRESS)) {
261507a0
LZ
503 pr_info("btrfs: use %s compression\n",
504 compress_type);
a7e252af 505 }
a555f810 506 break;
e18e4809 507 case Opt_ssd:
efe120a0 508 btrfs_info(root->fs_info, "use ssd allocation scheme");
edf24abe 509 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 510 break;
451d7585 511 case Opt_ssd_spread:
efe120a0 512 btrfs_info(root->fs_info, "use spread ssd allocation scheme");
451d7585
CM
513 btrfs_set_opt(info->mount_opt, SSD);
514 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
515 break;
3b30c22f 516 case Opt_nossd:
efe120a0 517 btrfs_info(root->fs_info, "not using ssd allocation scheme");
c289811c 518 btrfs_set_opt(info->mount_opt, NOSSD);
3b30c22f 519 btrfs_clear_opt(info->mount_opt, SSD);
451d7585 520 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
3b30c22f 521 break;
842bef58
QW
522 case Opt_barrier:
523 if (btrfs_test_opt(root, NOBARRIER))
524 btrfs_info(root->fs_info, "turning on barriers");
525 btrfs_clear_opt(info->mount_opt, NOBARRIER);
526 break;
21ad10cf 527 case Opt_nobarrier:
efe120a0 528 btrfs_info(root->fs_info, "turning off barriers");
edf24abe 529 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 530 break;
4543df7e 531 case Opt_thread_pool:
2c334e87
WS
532 ret = match_int(&args[0], &intarg);
533 if (ret) {
534 goto out;
535 } else if (intarg > 0) {
4543df7e 536 info->thread_pool_size = intarg;
2c334e87
WS
537 } else {
538 ret = -EINVAL;
539 goto out;
540 }
4543df7e 541 break;
6f568d35 542 case Opt_max_inline:
edf24abe
CH
543 num = match_strdup(&args[0]);
544 if (num) {
91748467 545 info->max_inline = memparse(num, NULL);
edf24abe
CH
546 kfree(num);
547
15ada040
CM
548 if (info->max_inline) {
549 info->max_inline = max_t(u64,
550 info->max_inline,
551 root->sectorsize);
552 }
efe120a0 553 btrfs_info(root->fs_info, "max_inline at %llu",
c1c9ff7c 554 info->max_inline);
2c334e87
WS
555 } else {
556 ret = -ENOMEM;
557 goto out;
6f568d35
CM
558 }
559 break;
8f662a76 560 case Opt_alloc_start:
edf24abe
CH
561 num = match_strdup(&args[0]);
562 if (num) {
c018daec 563 mutex_lock(&info->chunk_mutex);
91748467 564 info->alloc_start = memparse(num, NULL);
c018daec 565 mutex_unlock(&info->chunk_mutex);
edf24abe 566 kfree(num);
efe120a0 567 btrfs_info(root->fs_info, "allocations start at %llu",
c1c9ff7c 568 info->alloc_start);
2c334e87
WS
569 } else {
570 ret = -ENOMEM;
571 goto out;
8f662a76
CM
572 }
573 break;
bd0330ad
QW
574 case Opt_acl:
575 root->fs_info->sb->s_flags |= MS_POSIXACL;
576 break;
33268eaf
JB
577 case Opt_noacl:
578 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
579 break;
3a5e1404 580 case Opt_notreelog:
efe120a0 581 btrfs_info(root->fs_info, "disabling tree log");
3a5e1404 582 btrfs_set_opt(info->mount_opt, NOTREELOG);
a88998f2
QW
583 break;
584 case Opt_treelog:
585 if (btrfs_test_opt(root, NOTREELOG))
586 btrfs_info(root->fs_info, "enabling tree log");
587 btrfs_clear_opt(info->mount_opt, NOTREELOG);
3a5e1404 588 break;
dccae999 589 case Opt_flushoncommit:
efe120a0 590 btrfs_info(root->fs_info, "turning on flush-on-commit");
dccae999
SW
591 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
592 break;
2c9ee856
QW
593 case Opt_noflushoncommit:
594 if (btrfs_test_opt(root, FLUSHONCOMMIT))
595 btrfs_info(root->fs_info, "turning off flush-on-commit");
596 btrfs_clear_opt(info->mount_opt, FLUSHONCOMMIT);
597 break;
97e728d4 598 case Opt_ratio:
2c334e87
WS
599 ret = match_int(&args[0], &intarg);
600 if (ret) {
601 goto out;
602 } else if (intarg >= 0) {
97e728d4 603 info->metadata_ratio = intarg;
efe120a0 604 btrfs_info(root->fs_info, "metadata ratio %d",
97e728d4 605 info->metadata_ratio);
2c334e87
WS
606 } else {
607 ret = -EINVAL;
608 goto out;
97e728d4
JB
609 }
610 break;
e244a0ae
CH
611 case Opt_discard:
612 btrfs_set_opt(info->mount_opt, DISCARD);
613 break;
e07a2ade
QW
614 case Opt_nodiscard:
615 btrfs_clear_opt(info->mount_opt, DISCARD);
616 break;
0af3d00b 617 case Opt_space_cache:
0af3d00b 618 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
0de90876 619 break;
f420ee1e
SB
620 case Opt_rescan_uuid_tree:
621 btrfs_set_opt(info->mount_opt, RESCAN_UUID_TREE);
622 break;
73bc1876 623 case Opt_no_space_cache:
efe120a0 624 btrfs_info(root->fs_info, "disabling disk space caching");
73bc1876
JB
625 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
626 break;
4b9465cb 627 case Opt_inode_cache:
efe120a0 628 btrfs_info(root->fs_info, "enabling inode map caching");
4b9465cb
CM
629 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
630 break;
88c2ba3b 631 case Opt_clear_cache:
efe120a0 632 btrfs_info(root->fs_info, "force clearing of disk cache");
88c2ba3b 633 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
0af3d00b 634 break;
4260f7c7
SW
635 case Opt_user_subvol_rm_allowed:
636 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
637 break;
91435650
CM
638 case Opt_enospc_debug:
639 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
640 break;
53036293
QW
641 case Opt_noenospc_debug:
642 btrfs_clear_opt(info->mount_opt, ENOSPC_DEBUG);
643 break;
4cb5300b 644 case Opt_defrag:
efe120a0 645 btrfs_info(root->fs_info, "enabling auto defrag");
4cb5300b
CM
646 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
647 break;
fc0ca9af
QW
648 case Opt_nodefrag:
649 if (btrfs_test_opt(root, AUTO_DEFRAG))
650 btrfs_info(root->fs_info, "disabling auto defrag");
651 btrfs_clear_opt(info->mount_opt, AUTO_DEFRAG);
652 break;
af31f5e5 653 case Opt_recovery:
efe120a0 654 btrfs_info(root->fs_info, "enabling auto recovery");
af31f5e5
CM
655 btrfs_set_opt(info->mount_opt, RECOVERY);
656 break;
9555c6c1
ID
657 case Opt_skip_balance:
658 btrfs_set_opt(info->mount_opt, SKIP_BALANCE);
659 break;
21adbd5c
SB
660#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
661 case Opt_check_integrity_including_extent_data:
efe120a0
FH
662 btrfs_info(root->fs_info,
663 "enabling check integrity including extent data");
21adbd5c
SB
664 btrfs_set_opt(info->mount_opt,
665 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA);
666 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
667 break;
668 case Opt_check_integrity:
efe120a0 669 btrfs_info(root->fs_info, "enabling check integrity");
21adbd5c
SB
670 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
671 break;
672 case Opt_check_integrity_print_mask:
2c334e87
WS
673 ret = match_int(&args[0], &intarg);
674 if (ret) {
675 goto out;
676 } else if (intarg >= 0) {
21adbd5c 677 info->check_integrity_print_mask = intarg;
efe120a0 678 btrfs_info(root->fs_info, "check_integrity_print_mask 0x%x",
21adbd5c 679 info->check_integrity_print_mask);
2c334e87
WS
680 } else {
681 ret = -EINVAL;
682 goto out;
21adbd5c
SB
683 }
684 break;
685#else
686 case Opt_check_integrity_including_extent_data:
687 case Opt_check_integrity:
688 case Opt_check_integrity_print_mask:
efe120a0
FH
689 btrfs_err(root->fs_info,
690 "support for check_integrity* not compiled in!");
21adbd5c
SB
691 ret = -EINVAL;
692 goto out;
693#endif
8c342930
JM
694 case Opt_fatal_errors:
695 if (strcmp(args[0].from, "panic") == 0)
696 btrfs_set_opt(info->mount_opt,
697 PANIC_ON_FATAL_ERROR);
698 else if (strcmp(args[0].from, "bug") == 0)
699 btrfs_clear_opt(info->mount_opt,
700 PANIC_ON_FATAL_ERROR);
701 else {
702 ret = -EINVAL;
703 goto out;
704 }
705 break;
8b87dc17
DS
706 case Opt_commit_interval:
707 intarg = 0;
708 ret = match_int(&args[0], &intarg);
709 if (ret < 0) {
efe120a0 710 btrfs_err(root->fs_info, "invalid commit interval");
8b87dc17
DS
711 ret = -EINVAL;
712 goto out;
713 }
714 if (intarg > 0) {
715 if (intarg > 300) {
efe120a0 716 btrfs_warn(root->fs_info, "excessive commit interval %d",
8b87dc17
DS
717 intarg);
718 }
719 info->commit_interval = intarg;
720 } else {
efe120a0 721 btrfs_info(root->fs_info, "using default commit interval %ds",
8b87dc17
DS
722 BTRFS_DEFAULT_COMMIT_INTERVAL);
723 info->commit_interval = BTRFS_DEFAULT_COMMIT_INTERVAL;
724 }
725 break;
a7a3f7ca 726 case Opt_err:
efe120a0 727 btrfs_info(root->fs_info, "unrecognized mount option '%s'", p);
a7a3f7ca
SW
728 ret = -EINVAL;
729 goto out;
95e05289 730 default:
be20aa9d 731 break;
95e05289
CM
732 }
733 }
a7a3f7ca 734out:
73bc1876 735 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
efe120a0 736 btrfs_info(root->fs_info, "disk space caching is enabled");
da495ecc 737 kfree(orig);
a7a3f7ca 738 return ret;
edf24abe
CH
739}
740
741/*
742 * Parse mount options that are required early in the mount process.
743 *
744 * All other options will be parsed on much later in the mount process and
745 * only when we need to allocate a new super block.
746 */
97288f2c 747static int btrfs_parse_early_options(const char *options, fmode_t flags,
73f73415 748 void *holder, char **subvol_name, u64 *subvol_objectid,
5e2a4b25 749 struct btrfs_fs_devices **fs_devices)
edf24abe
CH
750{
751 substring_t args[MAX_OPT_ARGS];
83c8c9bd 752 char *device_name, *opts, *orig, *p;
1493381f 753 char *num = NULL;
edf24abe
CH
754 int error = 0;
755
756 if (!options)
830c4adb 757 return 0;
edf24abe
CH
758
759 /*
760 * strsep changes the string, duplicate it because parse_options
761 * gets called twice
762 */
763 opts = kstrdup(options, GFP_KERNEL);
764 if (!opts)
765 return -ENOMEM;
3f3d0bc0 766 orig = opts;
edf24abe
CH
767
768 while ((p = strsep(&opts, ",")) != NULL) {
769 int token;
770 if (!*p)
771 continue;
772
773 token = match_token(p, tokens, args);
774 switch (token) {
775 case Opt_subvol:
a90e8b6f 776 kfree(*subvol_name);
edf24abe 777 *subvol_name = match_strdup(&args[0]);
2c334e87
WS
778 if (!*subvol_name) {
779 error = -ENOMEM;
780 goto out;
781 }
edf24abe 782 break;
73f73415 783 case Opt_subvolid:
1493381f
WS
784 num = match_strdup(&args[0]);
785 if (num) {
786 *subvol_objectid = memparse(num, NULL);
787 kfree(num);
4849f01d 788 /* we want the original fs_tree */
1493381f 789 if (!*subvol_objectid)
4849f01d
JB
790 *subvol_objectid =
791 BTRFS_FS_TREE_OBJECTID;
2c334e87
WS
792 } else {
793 error = -EINVAL;
794 goto out;
4849f01d 795 }
73f73415 796 break;
e15d0542 797 case Opt_subvolrootid:
5e2a4b25 798 printk(KERN_WARNING
efe120a0
FH
799 "BTRFS: 'subvolrootid' mount option is deprecated and has "
800 "no effect\n");
e15d0542 801 break;
43e570b0 802 case Opt_device:
83c8c9bd
JL
803 device_name = match_strdup(&args[0]);
804 if (!device_name) {
805 error = -ENOMEM;
806 goto out;
807 }
808 error = btrfs_scan_one_device(device_name,
43e570b0 809 flags, holder, fs_devices);
83c8c9bd 810 kfree(device_name);
43e570b0 811 if (error)
830c4adb 812 goto out;
43e570b0 813 break;
edf24abe
CH
814 default:
815 break;
816 }
817 }
818
830c4adb 819out:
3f3d0bc0 820 kfree(orig);
edf24abe 821 return error;
95e05289
CM
822}
823
73f73415
JB
824static struct dentry *get_default_root(struct super_block *sb,
825 u64 subvol_objectid)
826{
815745cf
AV
827 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
828 struct btrfs_root *root = fs_info->tree_root;
73f73415
JB
829 struct btrfs_root *new_root;
830 struct btrfs_dir_item *di;
831 struct btrfs_path *path;
832 struct btrfs_key location;
833 struct inode *inode;
73f73415
JB
834 u64 dir_id;
835 int new = 0;
836
837 /*
838 * We have a specific subvol we want to mount, just setup location and
839 * go look up the root.
840 */
841 if (subvol_objectid) {
842 location.objectid = subvol_objectid;
843 location.type = BTRFS_ROOT_ITEM_KEY;
844 location.offset = (u64)-1;
845 goto find_root;
846 }
847
848 path = btrfs_alloc_path();
849 if (!path)
850 return ERR_PTR(-ENOMEM);
851 path->leave_spinning = 1;
852
853 /*
854 * Find the "default" dir item which points to the root item that we
855 * will mount by default if we haven't been given a specific subvolume
856 * to mount.
857 */
815745cf 858 dir_id = btrfs_super_root_dir(fs_info->super_copy);
73f73415 859 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
b0839166
JL
860 if (IS_ERR(di)) {
861 btrfs_free_path(path);
fb4f6f91 862 return ERR_CAST(di);
b0839166 863 }
73f73415
JB
864 if (!di) {
865 /*
866 * Ok the default dir item isn't there. This is weird since
867 * it's always been there, but don't freak out, just try and
868 * mount to root most subvolume.
869 */
870 btrfs_free_path(path);
871 dir_id = BTRFS_FIRST_FREE_OBJECTID;
815745cf 872 new_root = fs_info->fs_root;
73f73415
JB
873 goto setup_root;
874 }
875
876 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
877 btrfs_free_path(path);
878
879find_root:
815745cf 880 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
73f73415 881 if (IS_ERR(new_root))
d0b678cb 882 return ERR_CAST(new_root);
73f73415 883
73f73415
JB
884 dir_id = btrfs_root_dirid(&new_root->root_item);
885setup_root:
886 location.objectid = dir_id;
887 location.type = BTRFS_INODE_ITEM_KEY;
888 location.offset = 0;
889
890 inode = btrfs_iget(sb, &location, new_root, &new);
4cbd1149
DC
891 if (IS_ERR(inode))
892 return ERR_CAST(inode);
73f73415
JB
893
894 /*
895 * If we're just mounting the root most subvol put the inode and return
896 * a reference to the dentry. We will have already gotten a reference
897 * to the inode in btrfs_fill_super so we're good to go.
898 */
899 if (!new && sb->s_root->d_inode == inode) {
900 iput(inode);
901 return dget(sb->s_root);
902 }
903
ba5b8958 904 return d_obtain_alias(inode);
73f73415
JB
905}
906
d397712b 907static int btrfs_fill_super(struct super_block *sb,
8a4b83cc 908 struct btrfs_fs_devices *fs_devices,
d397712b 909 void *data, int silent)
75dfe396 910{
d397712b 911 struct inode *inode;
815745cf 912 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
5d4f98a2 913 struct btrfs_key key;
39279cc3 914 int err;
a429e513 915
39279cc3
CM
916 sb->s_maxbytes = MAX_LFS_FILESIZE;
917 sb->s_magic = BTRFS_SUPER_MAGIC;
918 sb->s_op = &btrfs_super_ops;
af53d29a 919 sb->s_d_op = &btrfs_dentry_operations;
be6e8dc0 920 sb->s_export_op = &btrfs_export_ops;
5103e947 921 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 922 sb->s_time_gran = 1;
0eda294d 923#ifdef CONFIG_BTRFS_FS_POSIX_ACL
33268eaf 924 sb->s_flags |= MS_POSIXACL;
49cf6f45 925#endif
0c4d2d95 926 sb->s_flags |= MS_I_VERSION;
ad2b2c80
AV
927 err = open_ctree(sb, fs_devices, (char *)data);
928 if (err) {
efe120a0 929 printk(KERN_ERR "BTRFS: open_ctree failed\n");
ad2b2c80 930 return err;
a429e513
CM
931 }
932
5d4f98a2
YZ
933 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
934 key.type = BTRFS_INODE_ITEM_KEY;
935 key.offset = 0;
98c7089c 936 inode = btrfs_iget(sb, &key, fs_info->fs_root, NULL);
5d4f98a2
YZ
937 if (IS_ERR(inode)) {
938 err = PTR_ERR(inode);
39279cc3 939 goto fail_close;
f254e52c 940 }
f254e52c 941
48fde701
AV
942 sb->s_root = d_make_root(inode);
943 if (!sb->s_root) {
39279cc3
CM
944 err = -ENOMEM;
945 goto fail_close;
f254e52c 946 }
58176a96 947
6885f308 948 save_mount_options(sb, data);
90a887c9 949 cleancache_init_fs(sb);
59553edf 950 sb->s_flags |= MS_ACTIVE;
2619ba1f 951 return 0;
39279cc3
CM
952
953fail_close:
815745cf 954 close_ctree(fs_info->tree_root);
39279cc3 955 return err;
2619ba1f
CM
956}
957
6bf13c0c 958int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
959{
960 struct btrfs_trans_handle *trans;
815745cf
AV
961 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
962 struct btrfs_root *root = fs_info->tree_root;
2619ba1f 963
1abe9b8a 964 trace_btrfs_sync_fs(wait);
965
39279cc3 966 if (!wait) {
815745cf 967 filemap_flush(fs_info->btree_inode->i_mapping);
39279cc3
CM
968 return 0;
969 }
771ed689 970
b0244199 971 btrfs_wait_ordered_roots(fs_info, -1);
771ed689 972
d4edf39b 973 trans = btrfs_attach_transaction_barrier(root);
60376ce4 974 if (IS_ERR(trans)) {
354aa0fb
MX
975 /* no transaction, don't bother */
976 if (PTR_ERR(trans) == -ENOENT)
60376ce4 977 return 0;
98d5dc13 978 return PTR_ERR(trans);
60376ce4 979 }
bd7de2c9 980 return btrfs_commit_transaction(trans, root);
2c90e5d6
CM
981}
982
34c80b1d 983static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
a9572a15 984{
815745cf
AV
985 struct btrfs_fs_info *info = btrfs_sb(dentry->d_sb);
986 struct btrfs_root *root = info->tree_root;
200da64e 987 char *compress_type;
a9572a15
EP
988
989 if (btrfs_test_opt(root, DEGRADED))
990 seq_puts(seq, ",degraded");
991 if (btrfs_test_opt(root, NODATASUM))
992 seq_puts(seq, ",nodatasum");
993 if (btrfs_test_opt(root, NODATACOW))
994 seq_puts(seq, ",nodatacow");
995 if (btrfs_test_opt(root, NOBARRIER))
996 seq_puts(seq, ",nobarrier");
a9572a15 997 if (info->max_inline != 8192 * 1024)
c1c9ff7c 998 seq_printf(seq, ",max_inline=%llu", info->max_inline);
a9572a15 999 if (info->alloc_start != 0)
c1c9ff7c 1000 seq_printf(seq, ",alloc_start=%llu", info->alloc_start);
a9572a15
EP
1001 if (info->thread_pool_size != min_t(unsigned long,
1002 num_online_cpus() + 2, 8))
1003 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
200da64e
TI
1004 if (btrfs_test_opt(root, COMPRESS)) {
1005 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
1006 compress_type = "zlib";
1007 else
1008 compress_type = "lzo";
1009 if (btrfs_test_opt(root, FORCE_COMPRESS))
1010 seq_printf(seq, ",compress-force=%s", compress_type);
1011 else
1012 seq_printf(seq, ",compress=%s", compress_type);
1013 }
c289811c
CM
1014 if (btrfs_test_opt(root, NOSSD))
1015 seq_puts(seq, ",nossd");
451d7585
CM
1016 if (btrfs_test_opt(root, SSD_SPREAD))
1017 seq_puts(seq, ",ssd_spread");
1018 else if (btrfs_test_opt(root, SSD))
a9572a15 1019 seq_puts(seq, ",ssd");
3a5e1404 1020 if (btrfs_test_opt(root, NOTREELOG))
6b65c5c6 1021 seq_puts(seq, ",notreelog");
dccae999 1022 if (btrfs_test_opt(root, FLUSHONCOMMIT))
6b65c5c6 1023 seq_puts(seq, ",flushoncommit");
20a5239a
MW
1024 if (btrfs_test_opt(root, DISCARD))
1025 seq_puts(seq, ",discard");
a9572a15
EP
1026 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
1027 seq_puts(seq, ",noacl");
200da64e
TI
1028 if (btrfs_test_opt(root, SPACE_CACHE))
1029 seq_puts(seq, ",space_cache");
73bc1876 1030 else
8965593e 1031 seq_puts(seq, ",nospace_cache");
f420ee1e
SB
1032 if (btrfs_test_opt(root, RESCAN_UUID_TREE))
1033 seq_puts(seq, ",rescan_uuid_tree");
200da64e
TI
1034 if (btrfs_test_opt(root, CLEAR_CACHE))
1035 seq_puts(seq, ",clear_cache");
1036 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
1037 seq_puts(seq, ",user_subvol_rm_allowed");
0942caa3
DS
1038 if (btrfs_test_opt(root, ENOSPC_DEBUG))
1039 seq_puts(seq, ",enospc_debug");
1040 if (btrfs_test_opt(root, AUTO_DEFRAG))
1041 seq_puts(seq, ",autodefrag");
1042 if (btrfs_test_opt(root, INODE_MAP_CACHE))
1043 seq_puts(seq, ",inode_cache");
9555c6c1
ID
1044 if (btrfs_test_opt(root, SKIP_BALANCE))
1045 seq_puts(seq, ",skip_balance");
8507d216
WS
1046 if (btrfs_test_opt(root, RECOVERY))
1047 seq_puts(seq, ",recovery");
1048#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
1049 if (btrfs_test_opt(root, CHECK_INTEGRITY_INCLUDING_EXTENT_DATA))
1050 seq_puts(seq, ",check_int_data");
1051 else if (btrfs_test_opt(root, CHECK_INTEGRITY))
1052 seq_puts(seq, ",check_int");
1053 if (info->check_integrity_print_mask)
1054 seq_printf(seq, ",check_int_print_mask=%d",
1055 info->check_integrity_print_mask);
1056#endif
1057 if (info->metadata_ratio)
1058 seq_printf(seq, ",metadata_ratio=%d",
1059 info->metadata_ratio);
8c342930
JM
1060 if (btrfs_test_opt(root, PANIC_ON_FATAL_ERROR))
1061 seq_puts(seq, ",fatal_errors=panic");
8b87dc17
DS
1062 if (info->commit_interval != BTRFS_DEFAULT_COMMIT_INTERVAL)
1063 seq_printf(seq, ",commit=%d", info->commit_interval);
a9572a15
EP
1064 return 0;
1065}
1066
a061fc8d 1067static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 1068{
815745cf
AV
1069 struct btrfs_fs_info *p = data;
1070 struct btrfs_fs_info *fs_info = btrfs_sb(s);
4b82d6e4 1071
815745cf 1072 return fs_info->fs_devices == p->fs_devices;
4b82d6e4
Y
1073}
1074
450ba0ea
JB
1075static int btrfs_set_super(struct super_block *s, void *data)
1076{
6de1d09d
AV
1077 int err = set_anon_super(s, data);
1078 if (!err)
1079 s->s_fs_info = data;
1080 return err;
4b82d6e4
Y
1081}
1082
f9d9ef62
DS
1083/*
1084 * subvolumes are identified by ino 256
1085 */
1086static inline int is_subvolume_inode(struct inode *inode)
1087{
1088 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
1089 return 1;
1090 return 0;
1091}
1092
830c4adb
JB
1093/*
1094 * This will strip out the subvol=%s argument for an argument string and add
1095 * subvolid=0 to make sure we get the actual tree root for path walking to the
1096 * subvol we want.
1097 */
1098static char *setup_root_args(char *args)
1099{
f60d16a8
JM
1100 unsigned len = strlen(args) + 2 + 1;
1101 char *src, *dst, *buf;
830c4adb
JB
1102
1103 /*
f60d16a8
JM
1104 * We need the same args as before, but with this substitution:
1105 * s!subvol=[^,]+!subvolid=0!
830c4adb 1106 *
f60d16a8
JM
1107 * Since the replacement string is up to 2 bytes longer than the
1108 * original, allocate strlen(args) + 2 + 1 bytes.
830c4adb 1109 */
830c4adb 1110
f60d16a8 1111 src = strstr(args, "subvol=");
830c4adb 1112 /* This shouldn't happen, but just in case.. */
f60d16a8
JM
1113 if (!src)
1114 return NULL;
1115
1116 buf = dst = kmalloc(len, GFP_NOFS);
1117 if (!buf)
830c4adb 1118 return NULL;
830c4adb
JB
1119
1120 /*
f60d16a8
JM
1121 * If the subvol= arg is not at the start of the string,
1122 * copy whatever precedes it into buf.
830c4adb 1123 */
f60d16a8
JM
1124 if (src != args) {
1125 *src++ = '\0';
1126 strcpy(buf, args);
1127 dst += strlen(args);
830c4adb
JB
1128 }
1129
f60d16a8
JM
1130 strcpy(dst, "subvolid=0");
1131 dst += strlen("subvolid=0");
830c4adb
JB
1132
1133 /*
f60d16a8
JM
1134 * If there is a "," after the original subvol=... string,
1135 * copy that suffix into our buffer. Otherwise, we're done.
830c4adb 1136 */
f60d16a8
JM
1137 src = strchr(src, ',');
1138 if (src)
1139 strcpy(dst, src);
830c4adb 1140
f60d16a8 1141 return buf;
830c4adb
JB
1142}
1143
1144static struct dentry *mount_subvol(const char *subvol_name, int flags,
1145 const char *device_name, char *data)
1146{
830c4adb
JB
1147 struct dentry *root;
1148 struct vfsmount *mnt;
830c4adb 1149 char *newargs;
830c4adb
JB
1150
1151 newargs = setup_root_args(data);
1152 if (!newargs)
1153 return ERR_PTR(-ENOMEM);
1154 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
1155 newargs);
1156 kfree(newargs);
1157 if (IS_ERR(mnt))
1158 return ERR_CAST(mnt);
1159
ea441d11 1160 root = mount_subtree(mnt, subvol_name);
830c4adb 1161
ea441d11
AV
1162 if (!IS_ERR(root) && !is_subvolume_inode(root->d_inode)) {
1163 struct super_block *s = root->d_sb;
1164 dput(root);
1165 root = ERR_PTR(-EINVAL);
1166 deactivate_locked_super(s);
efe120a0 1167 printk(KERN_ERR "BTRFS: '%s' is not a valid subvolume\n",
f9d9ef62 1168 subvol_name);
f9d9ef62
DS
1169 }
1170
830c4adb
JB
1171 return root;
1172}
450ba0ea 1173
edf24abe
CH
1174/*
1175 * Find a superblock for the given device / mount point.
1176 *
1177 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
1178 * for multiple device setup. Make sure to keep it in sync.
1179 */
061dbc6b 1180static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
306e16ce 1181 const char *device_name, void *data)
4b82d6e4
Y
1182{
1183 struct block_device *bdev = NULL;
1184 struct super_block *s;
1185 struct dentry *root;
8a4b83cc 1186 struct btrfs_fs_devices *fs_devices = NULL;
450ba0ea 1187 struct btrfs_fs_info *fs_info = NULL;
97288f2c 1188 fmode_t mode = FMODE_READ;
73f73415
JB
1189 char *subvol_name = NULL;
1190 u64 subvol_objectid = 0;
4b82d6e4
Y
1191 int error = 0;
1192
97288f2c
CH
1193 if (!(flags & MS_RDONLY))
1194 mode |= FMODE_WRITE;
1195
1196 error = btrfs_parse_early_options(data, mode, fs_type,
73f73415 1197 &subvol_name, &subvol_objectid,
5e2a4b25 1198 &fs_devices);
f23c8af8
ID
1199 if (error) {
1200 kfree(subvol_name);
061dbc6b 1201 return ERR_PTR(error);
f23c8af8 1202 }
edf24abe 1203
830c4adb
JB
1204 if (subvol_name) {
1205 root = mount_subvol(subvol_name, flags, device_name, data);
1206 kfree(subvol_name);
1207 return root;
1208 }
1209
306e16ce 1210 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
8a4b83cc 1211 if (error)
830c4adb 1212 return ERR_PTR(error);
4b82d6e4 1213
450ba0ea
JB
1214 /*
1215 * Setup a dummy root and fs_info for test/set super. This is because
1216 * we don't actually fill this stuff out until open_ctree, but we need
1217 * it for searching for existing supers, so this lets us do that and
1218 * then open_ctree will properly initialize everything later.
1219 */
1220 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
04d21a24
ID
1221 if (!fs_info)
1222 return ERR_PTR(-ENOMEM);
1223
450ba0ea 1224 fs_info->fs_devices = fs_devices;
450ba0ea 1225
6c41761f
DS
1226 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
1227 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
1228 if (!fs_info->super_copy || !fs_info->super_for_commit) {
1229 error = -ENOMEM;
04d21a24
ID
1230 goto error_fs_info;
1231 }
1232
1233 error = btrfs_open_devices(fs_devices, mode, fs_type);
1234 if (error)
1235 goto error_fs_info;
1236
1237 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
1238 error = -EACCES;
6c41761f
DS
1239 goto error_close_devices;
1240 }
1241
dfe25020 1242 bdev = fs_devices->latest_bdev;
9249e17f
DH
1243 s = sget(fs_type, btrfs_test_super, btrfs_set_super, flags | MS_NOSEC,
1244 fs_info);
830c4adb
JB
1245 if (IS_ERR(s)) {
1246 error = PTR_ERR(s);
1247 goto error_close_devices;
1248 }
4b82d6e4
Y
1249
1250 if (s->s_root) {
2b82032c 1251 btrfs_close_devices(fs_devices);
6c41761f 1252 free_fs_info(fs_info);
59553edf
AV
1253 if ((flags ^ s->s_flags) & MS_RDONLY)
1254 error = -EBUSY;
4b82d6e4
Y
1255 } else {
1256 char b[BDEVNAME_SIZE];
1257
4b82d6e4 1258 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
815745cf 1259 btrfs_sb(s)->bdev_holder = fs_type;
8a4b83cc
CM
1260 error = btrfs_fill_super(s, fs_devices, data,
1261 flags & MS_SILENT ? 1 : 0);
4b82d6e4
Y
1262 }
1263
59553edf
AV
1264 root = !error ? get_default_root(s, subvol_objectid) : ERR_PTR(error);
1265 if (IS_ERR(root))
830c4adb 1266 deactivate_locked_super(s);
4b82d6e4 1267
061dbc6b 1268 return root;
4b82d6e4 1269
c146afad 1270error_close_devices:
8a4b83cc 1271 btrfs_close_devices(fs_devices);
04d21a24 1272error_fs_info:
6c41761f 1273 free_fs_info(fs_info);
061dbc6b 1274 return ERR_PTR(error);
4b82d6e4 1275}
2e635a27 1276
0d2450ab
ST
1277static void btrfs_set_max_workers(struct btrfs_workers *workers, int new_limit)
1278{
1279 spin_lock_irq(&workers->lock);
1280 workers->max_workers = new_limit;
1281 spin_unlock_irq(&workers->lock);
1282}
1283
1284static void btrfs_resize_thread_pool(struct btrfs_fs_info *fs_info,
1285 int new_pool_size, int old_pool_size)
1286{
1287 if (new_pool_size == old_pool_size)
1288 return;
1289
1290 fs_info->thread_pool_size = new_pool_size;
1291
efe120a0 1292 btrfs_info(fs_info, "resize thread pool %d -> %d",
0d2450ab
ST
1293 old_pool_size, new_pool_size);
1294
1295 btrfs_set_max_workers(&fs_info->generic_worker, new_pool_size);
1296 btrfs_set_max_workers(&fs_info->workers, new_pool_size);
1297 btrfs_set_max_workers(&fs_info->delalloc_workers, new_pool_size);
1298 btrfs_set_max_workers(&fs_info->submit_workers, new_pool_size);
1299 btrfs_set_max_workers(&fs_info->caching_workers, new_pool_size);
1300 btrfs_set_max_workers(&fs_info->fixup_workers, new_pool_size);
1301 btrfs_set_max_workers(&fs_info->endio_workers, new_pool_size);
1302 btrfs_set_max_workers(&fs_info->endio_meta_workers, new_pool_size);
1303 btrfs_set_max_workers(&fs_info->endio_meta_write_workers, new_pool_size);
1304 btrfs_set_max_workers(&fs_info->endio_write_workers, new_pool_size);
1305 btrfs_set_max_workers(&fs_info->endio_freespace_worker, new_pool_size);
1306 btrfs_set_max_workers(&fs_info->delayed_workers, new_pool_size);
1307 btrfs_set_max_workers(&fs_info->readahead_workers, new_pool_size);
ff023aac
SB
1308 btrfs_set_max_workers(&fs_info->scrub_wr_completion_workers,
1309 new_pool_size);
0d2450ab
ST
1310}
1311
f42a34b2 1312static inline void btrfs_remount_prepare(struct btrfs_fs_info *fs_info)
dc81cdc5
MX
1313{
1314 set_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
f42a34b2 1315}
dc81cdc5 1316
f42a34b2
MX
1317static inline void btrfs_remount_begin(struct btrfs_fs_info *fs_info,
1318 unsigned long old_opts, int flags)
1319{
dc81cdc5
MX
1320 if (btrfs_raw_test_opt(old_opts, AUTO_DEFRAG) &&
1321 (!btrfs_raw_test_opt(fs_info->mount_opt, AUTO_DEFRAG) ||
1322 (flags & MS_RDONLY))) {
1323 /* wait for any defraggers to finish */
1324 wait_event(fs_info->transaction_wait,
1325 (atomic_read(&fs_info->defrag_running) == 0));
1326 if (flags & MS_RDONLY)
1327 sync_filesystem(fs_info->sb);
1328 }
1329}
1330
1331static inline void btrfs_remount_cleanup(struct btrfs_fs_info *fs_info,
1332 unsigned long old_opts)
1333{
1334 /*
1335 * We need cleanup all defragable inodes if the autodefragment is
1336 * close or the fs is R/O.
1337 */
1338 if (btrfs_raw_test_opt(old_opts, AUTO_DEFRAG) &&
1339 (!btrfs_raw_test_opt(fs_info->mount_opt, AUTO_DEFRAG) ||
1340 (fs_info->sb->s_flags & MS_RDONLY))) {
1341 btrfs_cleanup_defrag_inodes(fs_info);
1342 }
1343
1344 clear_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
1345}
1346
c146afad
YZ
1347static int btrfs_remount(struct super_block *sb, int *flags, char *data)
1348{
815745cf
AV
1349 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1350 struct btrfs_root *root = fs_info->tree_root;
49b25e05
JM
1351 unsigned old_flags = sb->s_flags;
1352 unsigned long old_opts = fs_info->mount_opt;
1353 unsigned long old_compress_type = fs_info->compress_type;
1354 u64 old_max_inline = fs_info->max_inline;
1355 u64 old_alloc_start = fs_info->alloc_start;
1356 int old_thread_pool_size = fs_info->thread_pool_size;
1357 unsigned int old_metadata_ratio = fs_info->metadata_ratio;
c146afad
YZ
1358 int ret;
1359
f42a34b2 1360 btrfs_remount_prepare(fs_info);
dc81cdc5 1361
b288052e 1362 ret = btrfs_parse_options(root, data);
49b25e05
JM
1363 if (ret) {
1364 ret = -EINVAL;
1365 goto restore;
1366 }
b288052e 1367
f42a34b2 1368 btrfs_remount_begin(fs_info, old_opts, *flags);
0d2450ab
ST
1369 btrfs_resize_thread_pool(fs_info,
1370 fs_info->thread_pool_size, old_thread_pool_size);
1371
c146afad 1372 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
dc81cdc5 1373 goto out;
c146afad
YZ
1374
1375 if (*flags & MS_RDONLY) {
8dabb742
SB
1376 /*
1377 * this also happens on 'umount -rf' or on shutdown, when
1378 * the filesystem is busy.
1379 */
361c093d
SB
1380
1381 /* wait for the uuid_scan task to finish */
1382 down(&fs_info->uuid_tree_rescan_sem);
1383 /* avoid complains from lockdep et al. */
1384 up(&fs_info->uuid_tree_rescan_sem);
1385
c146afad
YZ
1386 sb->s_flags |= MS_RDONLY;
1387
8dabb742
SB
1388 btrfs_dev_replace_suspend_for_unmount(fs_info);
1389 btrfs_scrub_cancel(fs_info);
061594ef 1390 btrfs_pause_balance(fs_info);
8dabb742 1391
49b25e05
JM
1392 ret = btrfs_commit_super(root);
1393 if (ret)
1394 goto restore;
c146afad 1395 } else {
6ef3de9c
DS
1396 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) {
1397 btrfs_err(fs_info,
efe120a0 1398 "Remounting read-write after error is not allowed");
6ef3de9c
DS
1399 ret = -EINVAL;
1400 goto restore;
1401 }
8a3db184 1402 if (fs_info->fs_devices->rw_devices == 0) {
49b25e05
JM
1403 ret = -EACCES;
1404 goto restore;
8a3db184 1405 }
2b82032c 1406
292fd7fc
SB
1407 if (fs_info->fs_devices->missing_devices >
1408 fs_info->num_tolerated_disk_barrier_failures &&
1409 !(*flags & MS_RDONLY)) {
efe120a0
FH
1410 btrfs_warn(fs_info,
1411 "too many missing devices, writeable remount is not allowed");
292fd7fc
SB
1412 ret = -EACCES;
1413 goto restore;
1414 }
1415
8a3db184 1416 if (btrfs_super_log_root(fs_info->super_copy) != 0) {
49b25e05
JM
1417 ret = -EINVAL;
1418 goto restore;
8a3db184 1419 }
c146afad 1420
815745cf 1421 ret = btrfs_cleanup_fs_roots(fs_info);
49b25e05
JM
1422 if (ret)
1423 goto restore;
c146afad 1424
d68fc57b
YZ
1425 /* recover relocation */
1426 ret = btrfs_recover_relocation(root);
49b25e05
JM
1427 if (ret)
1428 goto restore;
c146afad 1429
2b6ba629
ID
1430 ret = btrfs_resume_balance_async(fs_info);
1431 if (ret)
1432 goto restore;
1433
8dabb742
SB
1434 ret = btrfs_resume_dev_replace_async(fs_info);
1435 if (ret) {
efe120a0 1436 btrfs_warn(fs_info, "failed to resume dev_replace");
8dabb742
SB
1437 goto restore;
1438 }
94aebfb2
JB
1439
1440 if (!fs_info->uuid_root) {
efe120a0 1441 btrfs_info(fs_info, "creating UUID tree");
94aebfb2
JB
1442 ret = btrfs_create_uuid_tree(fs_info);
1443 if (ret) {
efe120a0 1444 btrfs_warn(fs_info, "failed to create the UUID tree %d", ret);
94aebfb2
JB
1445 goto restore;
1446 }
1447 }
c146afad
YZ
1448 sb->s_flags &= ~MS_RDONLY;
1449 }
dc81cdc5
MX
1450out:
1451 btrfs_remount_cleanup(fs_info, old_opts);
c146afad 1452 return 0;
49b25e05
JM
1453
1454restore:
1455 /* We've hit an error - don't reset MS_RDONLY */
1456 if (sb->s_flags & MS_RDONLY)
1457 old_flags |= MS_RDONLY;
1458 sb->s_flags = old_flags;
1459 fs_info->mount_opt = old_opts;
1460 fs_info->compress_type = old_compress_type;
1461 fs_info->max_inline = old_max_inline;
c018daec 1462 mutex_lock(&fs_info->chunk_mutex);
49b25e05 1463 fs_info->alloc_start = old_alloc_start;
c018daec 1464 mutex_unlock(&fs_info->chunk_mutex);
0d2450ab
ST
1465 btrfs_resize_thread_pool(fs_info,
1466 old_thread_pool_size, fs_info->thread_pool_size);
49b25e05 1467 fs_info->metadata_ratio = old_metadata_ratio;
dc81cdc5 1468 btrfs_remount_cleanup(fs_info, old_opts);
49b25e05 1469 return ret;
c146afad
YZ
1470}
1471
bcd53741
AJ
1472/* Used to sort the devices by max_avail(descending sort) */
1473static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1474 const void *dev_info2)
1475{
1476 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1477 ((struct btrfs_device_info *)dev_info2)->max_avail)
1478 return -1;
1479 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1480 ((struct btrfs_device_info *)dev_info2)->max_avail)
1481 return 1;
1482 else
1483 return 0;
1484}
1485
1486/*
1487 * sort the devices by max_avail, in which max free extent size of each device
1488 * is stored.(Descending Sort)
1489 */
1490static inline void btrfs_descending_sort_devices(
1491 struct btrfs_device_info *devices,
1492 size_t nr_devices)
1493{
1494 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1495 btrfs_cmp_device_free_bytes, NULL);
1496}
1497
6d07bcec
MX
1498/*
1499 * The helper to calc the free space on the devices that can be used to store
1500 * file data.
1501 */
1502static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1503{
1504 struct btrfs_fs_info *fs_info = root->fs_info;
1505 struct btrfs_device_info *devices_info;
1506 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1507 struct btrfs_device *device;
1508 u64 skip_space;
1509 u64 type;
1510 u64 avail_space;
1511 u64 used_space;
1512 u64 min_stripe_size;
39fb26c3 1513 int min_stripes = 1, num_stripes = 1;
6d07bcec
MX
1514 int i = 0, nr_devices;
1515 int ret;
1516
b772a86e 1517 nr_devices = fs_info->fs_devices->open_devices;
6d07bcec
MX
1518 BUG_ON(!nr_devices);
1519
d9b0d9ba 1520 devices_info = kmalloc_array(nr_devices, sizeof(*devices_info),
6d07bcec
MX
1521 GFP_NOFS);
1522 if (!devices_info)
1523 return -ENOMEM;
1524
1525 /* calc min stripe number for data space alloction */
1526 type = btrfs_get_alloc_profile(root, 1);
39fb26c3 1527 if (type & BTRFS_BLOCK_GROUP_RAID0) {
6d07bcec 1528 min_stripes = 2;
39fb26c3
MX
1529 num_stripes = nr_devices;
1530 } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
6d07bcec 1531 min_stripes = 2;
39fb26c3
MX
1532 num_stripes = 2;
1533 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
6d07bcec 1534 min_stripes = 4;
39fb26c3
MX
1535 num_stripes = 4;
1536 }
6d07bcec
MX
1537
1538 if (type & BTRFS_BLOCK_GROUP_DUP)
1539 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1540 else
1541 min_stripe_size = BTRFS_STRIPE_LEN;
1542
b772a86e 1543 list_for_each_entry(device, &fs_devices->devices, dev_list) {
63a212ab
SB
1544 if (!device->in_fs_metadata || !device->bdev ||
1545 device->is_tgtdev_for_dev_replace)
6d07bcec
MX
1546 continue;
1547
1548 avail_space = device->total_bytes - device->bytes_used;
1549
1550 /* align with stripe_len */
1551 do_div(avail_space, BTRFS_STRIPE_LEN);
1552 avail_space *= BTRFS_STRIPE_LEN;
1553
1554 /*
1555 * In order to avoid overwritting the superblock on the drive,
1556 * btrfs starts at an offset of at least 1MB when doing chunk
1557 * allocation.
1558 */
1559 skip_space = 1024 * 1024;
1560
1561 /* user can set the offset in fs_info->alloc_start. */
1562 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1563 device->total_bytes)
1564 skip_space = max(fs_info->alloc_start, skip_space);
1565
1566 /*
1567 * btrfs can not use the free space in [0, skip_space - 1],
1568 * we must subtract it from the total. In order to implement
1569 * it, we account the used space in this range first.
1570 */
1571 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1572 &used_space);
1573 if (ret) {
1574 kfree(devices_info);
1575 return ret;
1576 }
1577
1578 /* calc the free space in [0, skip_space - 1] */
1579 skip_space -= used_space;
1580
1581 /*
1582 * we can use the free space in [0, skip_space - 1], subtract
1583 * it from the total.
1584 */
1585 if (avail_space && avail_space >= skip_space)
1586 avail_space -= skip_space;
1587 else
1588 avail_space = 0;
1589
1590 if (avail_space < min_stripe_size)
1591 continue;
1592
1593 devices_info[i].dev = device;
1594 devices_info[i].max_avail = avail_space;
1595
1596 i++;
1597 }
1598
1599 nr_devices = i;
1600
1601 btrfs_descending_sort_devices(devices_info, nr_devices);
1602
1603 i = nr_devices - 1;
1604 avail_space = 0;
1605 while (nr_devices >= min_stripes) {
39fb26c3
MX
1606 if (num_stripes > nr_devices)
1607 num_stripes = nr_devices;
1608
6d07bcec
MX
1609 if (devices_info[i].max_avail >= min_stripe_size) {
1610 int j;
1611 u64 alloc_size;
1612
39fb26c3 1613 avail_space += devices_info[i].max_avail * num_stripes;
6d07bcec 1614 alloc_size = devices_info[i].max_avail;
39fb26c3 1615 for (j = i + 1 - num_stripes; j <= i; j++)
6d07bcec
MX
1616 devices_info[j].max_avail -= alloc_size;
1617 }
1618 i--;
1619 nr_devices--;
1620 }
1621
1622 kfree(devices_info);
1623 *free_bytes = avail_space;
1624 return 0;
1625}
1626
8fd17795
CM
1627static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1628{
815745cf
AV
1629 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
1630 struct btrfs_super_block *disk_super = fs_info->super_copy;
1631 struct list_head *head = &fs_info->space_info;
bd4d1088
JB
1632 struct btrfs_space_info *found;
1633 u64 total_used = 0;
6d07bcec 1634 u64 total_free_data = 0;
db94535d 1635 int bits = dentry->d_sb->s_blocksize_bits;
815745cf 1636 __be32 *fsid = (__be32 *)fs_info->fsid;
6d07bcec 1637 int ret;
8fd17795 1638
6d07bcec 1639 /* holding chunk_muext to avoid allocating new chunks */
815745cf 1640 mutex_lock(&fs_info->chunk_mutex);
bd4d1088 1641 rcu_read_lock();
89a55897 1642 list_for_each_entry_rcu(found, head, list) {
6d07bcec
MX
1643 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1644 total_free_data += found->disk_total - found->disk_used;
1645 total_free_data -=
1646 btrfs_account_ro_block_groups_free_space(found);
1647 }
1648
b742bb82 1649 total_used += found->disk_used;
89a55897 1650 }
bd4d1088
JB
1651 rcu_read_unlock();
1652
8fd17795 1653 buf->f_namelen = BTRFS_NAME_LEN;
db94535d 1654 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
bd4d1088 1655 buf->f_bfree = buf->f_blocks - (total_used >> bits);
8fd17795
CM
1656 buf->f_bsize = dentry->d_sb->s_blocksize;
1657 buf->f_type = BTRFS_SUPER_MAGIC;
6d07bcec 1658 buf->f_bavail = total_free_data;
815745cf 1659 ret = btrfs_calc_avail_data_space(fs_info->tree_root, &total_free_data);
6d07bcec 1660 if (ret) {
815745cf 1661 mutex_unlock(&fs_info->chunk_mutex);
6d07bcec
MX
1662 return ret;
1663 }
1664 buf->f_bavail += total_free_data;
1665 buf->f_bavail = buf->f_bavail >> bits;
815745cf 1666 mutex_unlock(&fs_info->chunk_mutex);
d397712b 1667
9d03632e 1668 /* We treat it as constant endianness (it doesn't matter _which_)
d397712b 1669 because we want the fsid to come out the same whether mounted
9d03632e
DW
1670 on a big-endian or little-endian host */
1671 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1672 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
1673 /* Mask in the root object ID too, to disambiguate subvols */
1674 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1675 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1676
8fd17795
CM
1677 return 0;
1678}
b5133862 1679
aea52e19
AV
1680static void btrfs_kill_super(struct super_block *sb)
1681{
815745cf 1682 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
aea52e19 1683 kill_anon_super(sb);
d22ca7de 1684 free_fs_info(fs_info);
aea52e19
AV
1685}
1686
2e635a27
CM
1687static struct file_system_type btrfs_fs_type = {
1688 .owner = THIS_MODULE,
1689 .name = "btrfs",
061dbc6b 1690 .mount = btrfs_mount,
aea52e19 1691 .kill_sb = btrfs_kill_super,
2e635a27
CM
1692 .fs_flags = FS_REQUIRES_DEV,
1693};
7f78e035 1694MODULE_ALIAS_FS("btrfs");
a9218f6b 1695
d352ac68
CM
1696/*
1697 * used by btrfsctl to scan devices when no FS is mounted
1698 */
8a4b83cc
CM
1699static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1700 unsigned long arg)
1701{
1702 struct btrfs_ioctl_vol_args *vol;
1703 struct btrfs_fs_devices *fs_devices;
c071fcfd 1704 int ret = -ENOTTY;
8a4b83cc 1705
e441d54d
CM
1706 if (!capable(CAP_SYS_ADMIN))
1707 return -EPERM;
1708
dae7b665
LZ
1709 vol = memdup_user((void __user *)arg, sizeof(*vol));
1710 if (IS_ERR(vol))
1711 return PTR_ERR(vol);
c071fcfd 1712
8a4b83cc
CM
1713 switch (cmd) {
1714 case BTRFS_IOC_SCAN_DEV:
97288f2c 1715 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
8a4b83cc
CM
1716 &btrfs_fs_type, &fs_devices);
1717 break;
02db0844
JB
1718 case BTRFS_IOC_DEVICES_READY:
1719 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
1720 &btrfs_fs_type, &fs_devices);
1721 if (ret)
1722 break;
1723 ret = !(fs_devices->num_devices == fs_devices->total_devices);
1724 break;
8a4b83cc 1725 }
dae7b665 1726
8a4b83cc 1727 kfree(vol);
f819d837 1728 return ret;
8a4b83cc
CM
1729}
1730
0176260f 1731static int btrfs_freeze(struct super_block *sb)
ed0dab6b 1732{
354aa0fb
MX
1733 struct btrfs_trans_handle *trans;
1734 struct btrfs_root *root = btrfs_sb(sb)->tree_root;
1735
d4edf39b 1736 trans = btrfs_attach_transaction_barrier(root);
354aa0fb
MX
1737 if (IS_ERR(trans)) {
1738 /* no transaction, don't bother */
1739 if (PTR_ERR(trans) == -ENOENT)
1740 return 0;
1741 return PTR_ERR(trans);
1742 }
1743 return btrfs_commit_transaction(trans, root);
ed0dab6b
Y
1744}
1745
0176260f 1746static int btrfs_unfreeze(struct super_block *sb)
ed0dab6b 1747{
0176260f 1748 return 0;
ed0dab6b 1749}
2e635a27 1750
9c5085c1
JB
1751static int btrfs_show_devname(struct seq_file *m, struct dentry *root)
1752{
1753 struct btrfs_fs_info *fs_info = btrfs_sb(root->d_sb);
1754 struct btrfs_fs_devices *cur_devices;
1755 struct btrfs_device *dev, *first_dev = NULL;
1756 struct list_head *head;
1757 struct rcu_string *name;
1758
1759 mutex_lock(&fs_info->fs_devices->device_list_mutex);
1760 cur_devices = fs_info->fs_devices;
1761 while (cur_devices) {
1762 head = &cur_devices->devices;
1763 list_for_each_entry(dev, head, dev_list) {
aa9ddcd4
JB
1764 if (dev->missing)
1765 continue;
9c5085c1
JB
1766 if (!first_dev || dev->devid < first_dev->devid)
1767 first_dev = dev;
1768 }
1769 cur_devices = cur_devices->seed;
1770 }
1771
1772 if (first_dev) {
1773 rcu_read_lock();
1774 name = rcu_dereference(first_dev->name);
1775 seq_escape(m, name->str, " \t\n\\");
1776 rcu_read_unlock();
1777 } else {
1778 WARN_ON(1);
1779 }
1780 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
1781 return 0;
1782}
1783
b87221de 1784static const struct super_operations btrfs_super_ops = {
76dda93c 1785 .drop_inode = btrfs_drop_inode,
bd555975 1786 .evict_inode = btrfs_evict_inode,
e20d96d6 1787 .put_super = btrfs_put_super,
d5719762 1788 .sync_fs = btrfs_sync_fs,
a9572a15 1789 .show_options = btrfs_show_options,
9c5085c1 1790 .show_devname = btrfs_show_devname,
4730a4bc 1791 .write_inode = btrfs_write_inode,
2c90e5d6
CM
1792 .alloc_inode = btrfs_alloc_inode,
1793 .destroy_inode = btrfs_destroy_inode,
8fd17795 1794 .statfs = btrfs_statfs,
c146afad 1795 .remount_fs = btrfs_remount,
0176260f
LT
1796 .freeze_fs = btrfs_freeze,
1797 .unfreeze_fs = btrfs_unfreeze,
e20d96d6 1798};
a9218f6b
CM
1799
1800static const struct file_operations btrfs_ctl_fops = {
1801 .unlocked_ioctl = btrfs_control_ioctl,
1802 .compat_ioctl = btrfs_control_ioctl,
1803 .owner = THIS_MODULE,
6038f373 1804 .llseek = noop_llseek,
a9218f6b
CM
1805};
1806
1807static struct miscdevice btrfs_misc = {
578454ff 1808 .minor = BTRFS_MINOR,
a9218f6b
CM
1809 .name = "btrfs-control",
1810 .fops = &btrfs_ctl_fops
1811};
1812
578454ff
KS
1813MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1814MODULE_ALIAS("devname:btrfs-control");
1815
a9218f6b
CM
1816static int btrfs_interface_init(void)
1817{
1818 return misc_register(&btrfs_misc);
1819}
1820
b2950863 1821static void btrfs_interface_exit(void)
a9218f6b
CM
1822{
1823 if (misc_deregister(&btrfs_misc) < 0)
efe120a0 1824 printk(KERN_INFO "BTRFS: misc_deregister failed for control device\n");
a9218f6b
CM
1825}
1826
85965600
DS
1827static void btrfs_print_info(void)
1828{
1829 printk(KERN_INFO "Btrfs loaded"
1830#ifdef CONFIG_BTRFS_DEBUG
1831 ", debug=on"
1832#endif
79556c3d
SB
1833#ifdef CONFIG_BTRFS_ASSERT
1834 ", assert=on"
1835#endif
85965600
DS
1836#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
1837 ", integrity-checker=on"
1838#endif
1839 "\n");
1840}
1841
dc11dd5d
JB
1842static int btrfs_run_sanity_tests(void)
1843{
06ea65a3
JB
1844 int ret;
1845
294e30fe 1846 ret = btrfs_init_test_fs();
06ea65a3
JB
1847 if (ret)
1848 return ret;
294e30fe
JB
1849
1850 ret = btrfs_test_free_space_cache();
1851 if (ret)
1852 goto out;
1853 ret = btrfs_test_extent_buffer_operations();
1854 if (ret)
1855 goto out;
1856 ret = btrfs_test_extent_io();
aaedb55b
JB
1857 if (ret)
1858 goto out;
1859 ret = btrfs_test_inodes();
294e30fe
JB
1860out:
1861 btrfs_destroy_test_fs();
1862 return ret;
dc11dd5d
JB
1863}
1864
2e635a27
CM
1865static int __init init_btrfs_fs(void)
1866{
2c90e5d6 1867 int err;
58176a96 1868
63541927
FDBM
1869 btrfs_props_init();
1870
58176a96
JB
1871 err = btrfs_init_sysfs();
1872 if (err)
1873 return err;
1874
143bede5 1875 btrfs_init_compress();
d1310b2e 1876
261507a0
LZ
1877 err = btrfs_init_cachep();
1878 if (err)
1879 goto free_compress;
1880
d1310b2e 1881 err = extent_io_init();
2f4cbe64
WB
1882 if (err)
1883 goto free_cachep;
1884
d1310b2e
CM
1885 err = extent_map_init();
1886 if (err)
1887 goto free_extent_io;
1888
6352b91d 1889 err = ordered_data_init();
2f4cbe64
WB
1890 if (err)
1891 goto free_extent_map;
c8b97818 1892
6352b91d
MX
1893 err = btrfs_delayed_inode_init();
1894 if (err)
1895 goto free_ordered_data;
1896
9247f317 1897 err = btrfs_auto_defrag_init();
16cdcec7
MX
1898 if (err)
1899 goto free_delayed_inode;
1900
78a6184a 1901 err = btrfs_delayed_ref_init();
9247f317
MX
1902 if (err)
1903 goto free_auto_defrag;
1904
b9e9a6cb
WS
1905 err = btrfs_prelim_ref_init();
1906 if (err)
1907 goto free_prelim_ref;
1908
78a6184a
MX
1909 err = btrfs_interface_init();
1910 if (err)
1911 goto free_delayed_ref;
1912
e565d4b9
JS
1913 btrfs_init_lockdep();
1914
85965600 1915 btrfs_print_info();
dc11dd5d
JB
1916
1917 err = btrfs_run_sanity_tests();
1918 if (err)
1919 goto unregister_ioctl;
1920
1921 err = register_filesystem(&btrfs_fs_type);
1922 if (err)
1923 goto unregister_ioctl;
74255aa0 1924
2f4cbe64
WB
1925 return 0;
1926
a9218f6b
CM
1927unregister_ioctl:
1928 btrfs_interface_exit();
b9e9a6cb
WS
1929free_prelim_ref:
1930 btrfs_prelim_ref_exit();
78a6184a
MX
1931free_delayed_ref:
1932 btrfs_delayed_ref_exit();
9247f317
MX
1933free_auto_defrag:
1934 btrfs_auto_defrag_exit();
16cdcec7
MX
1935free_delayed_inode:
1936 btrfs_delayed_inode_exit();
6352b91d
MX
1937free_ordered_data:
1938 ordered_data_exit();
2f4cbe64
WB
1939free_extent_map:
1940 extent_map_exit();
d1310b2e
CM
1941free_extent_io:
1942 extent_io_exit();
2f4cbe64
WB
1943free_cachep:
1944 btrfs_destroy_cachep();
261507a0
LZ
1945free_compress:
1946 btrfs_exit_compress();
2f4cbe64
WB
1947 btrfs_exit_sysfs();
1948 return err;
2e635a27
CM
1949}
1950
1951static void __exit exit_btrfs_fs(void)
1952{
39279cc3 1953 btrfs_destroy_cachep();
78a6184a 1954 btrfs_delayed_ref_exit();
9247f317 1955 btrfs_auto_defrag_exit();
16cdcec7 1956 btrfs_delayed_inode_exit();
b9e9a6cb 1957 btrfs_prelim_ref_exit();
6352b91d 1958 ordered_data_exit();
a52d9a80 1959 extent_map_exit();
d1310b2e 1960 extent_io_exit();
a9218f6b 1961 btrfs_interface_exit();
2e635a27 1962 unregister_filesystem(&btrfs_fs_type);
58176a96 1963 btrfs_exit_sysfs();
8a4b83cc 1964 btrfs_cleanup_fs_uuids();
261507a0 1965 btrfs_exit_compress();
2e635a27
CM
1966}
1967
1968module_init(init_btrfs_fs)
1969module_exit(exit_btrfs_fs)
1970
1971MODULE_LICENSE("GPL");
This page took 0.413796 seconds and 5 git commands to generate.