Btrfs: recover balance on mount
[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>
830c4adb 43#include <linux/mnt_namespace.h>
22c44fe6 44#include <linux/ratelimit.h>
4b4e25f2 45#include "compat.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"
c5739bba 51#include "ioctl.h"
3a686375 52#include "print-tree.h"
5103e947 53#include "xattr.h"
8a4b83cc 54#include "volumes.h"
b3c3da71 55#include "version.h"
be6e8dc0 56#include "export.h"
c8b97818 57#include "compression.h"
2e635a27 58
1abe9b8a 59#define CREATE_TRACE_POINTS
60#include <trace/events/btrfs.h>
61
b87221de 62static const struct super_operations btrfs_super_ops;
830c4adb 63static struct file_system_type btrfs_fs_type;
75dfe396 64
acce952b 65static const char *btrfs_decode_error(struct btrfs_fs_info *fs_info, int errno,
66 char nbuf[16])
67{
68 char *errstr = NULL;
69
70 switch (errno) {
71 case -EIO:
72 errstr = "IO failure";
73 break;
74 case -ENOMEM:
75 errstr = "Out of memory";
76 break;
77 case -EROFS:
78 errstr = "Readonly filesystem";
79 break;
80 default:
81 if (nbuf) {
82 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
83 errstr = nbuf;
84 }
85 break;
86 }
87
88 return errstr;
89}
90
91static void __save_error_info(struct btrfs_fs_info *fs_info)
92{
93 /*
94 * today we only save the error info into ram. Long term we'll
95 * also send it down to the disk
96 */
97 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
98}
99
100/* NOTE:
101 * We move write_super stuff at umount in order to avoid deadlock
102 * for umount hold all lock.
103 */
104static void save_error_info(struct btrfs_fs_info *fs_info)
105{
106 __save_error_info(fs_info);
107}
108
109/* btrfs handle error by forcing the filesystem readonly */
110static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
111{
112 struct super_block *sb = fs_info->sb;
113
114 if (sb->s_flags & MS_RDONLY)
115 return;
116
117 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
118 sb->s_flags |= MS_RDONLY;
119 printk(KERN_INFO "btrfs is forced readonly\n");
120 }
121}
122
123/*
124 * __btrfs_std_error decodes expected errors from the caller and
125 * invokes the approciate error response.
126 */
127void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
128 unsigned int line, int errno)
129{
130 struct super_block *sb = fs_info->sb;
131 char nbuf[16];
132 const char *errstr;
133
134 /*
135 * Special case: if the error is EROFS, and we're already
136 * under MS_RDONLY, then it is safe here.
137 */
138 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
139 return;
140
141 errstr = btrfs_decode_error(fs_info, errno, nbuf);
142 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
143 sb->s_id, function, line, errstr);
144 save_error_info(fs_info);
145
146 btrfs_handle_error(fs_info);
147}
148
d397712b 149static void btrfs_put_super(struct super_block *sb)
b18c6685 150{
39279cc3 151 struct btrfs_root *root = btrfs_sb(sb);
b18c6685 152 int ret;
b18c6685 153
39279cc3 154 ret = close_ctree(root);
39279cc3 155 sb->s_fs_info = NULL;
559af821
AK
156
157 (void)ret; /* FIXME: need to fix VFS to return error? */
75dfe396
CM
158}
159
95e05289 160enum {
73f73415 161 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
287a0ab9
JB
162 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
163 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
261507a0
LZ
164 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
165 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
91435650 166 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
4b9465cb 167 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag,
af31f5e5 168 Opt_inode_cache, Opt_no_space_cache, Opt_recovery, Opt_err,
95e05289
CM
169};
170
171static match_table_t tokens = {
dfe25020 172 {Opt_degraded, "degraded"},
95e05289 173 {Opt_subvol, "subvol=%s"},
73f73415 174 {Opt_subvolid, "subvolid=%d"},
43e570b0 175 {Opt_device, "device=%s"},
b6cda9bc 176 {Opt_nodatasum, "nodatasum"},
be20aa9d 177 {Opt_nodatacow, "nodatacow"},
21ad10cf 178 {Opt_nobarrier, "nobarrier"},
6f568d35 179 {Opt_max_inline, "max_inline=%s"},
8f662a76 180 {Opt_alloc_start, "alloc_start=%s"},
4543df7e 181 {Opt_thread_pool, "thread_pool=%d"},
c8b97818 182 {Opt_compress, "compress"},
261507a0 183 {Opt_compress_type, "compress=%s"},
a555f810 184 {Opt_compress_force, "compress-force"},
261507a0 185 {Opt_compress_force_type, "compress-force=%s"},
e18e4809 186 {Opt_ssd, "ssd"},
451d7585 187 {Opt_ssd_spread, "ssd_spread"},
3b30c22f 188 {Opt_nossd, "nossd"},
33268eaf 189 {Opt_noacl, "noacl"},
3a5e1404 190 {Opt_notreelog, "notreelog"},
dccae999 191 {Opt_flushoncommit, "flushoncommit"},
97e728d4 192 {Opt_ratio, "metadata_ratio=%d"},
e244a0ae 193 {Opt_discard, "discard"},
0af3d00b 194 {Opt_space_cache, "space_cache"},
88c2ba3b 195 {Opt_clear_cache, "clear_cache"},
4260f7c7 196 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
91435650 197 {Opt_enospc_debug, "enospc_debug"},
e15d0542 198 {Opt_subvolrootid, "subvolrootid=%d"},
4cb5300b 199 {Opt_defrag, "autodefrag"},
4b9465cb 200 {Opt_inode_cache, "inode_cache"},
8965593e 201 {Opt_no_space_cache, "nospace_cache"},
af31f5e5 202 {Opt_recovery, "recovery"},
33268eaf 203 {Opt_err, NULL},
95e05289
CM
204};
205
edf24abe
CH
206/*
207 * Regular mount options parser. Everything that is needed only when
208 * reading in a new superblock is parsed here.
209 */
210int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 211{
edf24abe 212 struct btrfs_fs_info *info = root->fs_info;
95e05289 213 substring_t args[MAX_OPT_ARGS];
73bc1876
JB
214 char *p, *num, *orig = NULL;
215 u64 cache_gen;
4543df7e 216 int intarg;
a7a3f7ca 217 int ret = 0;
261507a0
LZ
218 char *compress_type;
219 bool compress_force = false;
b6cda9bc 220
6c41761f 221 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
73bc1876
JB
222 if (cache_gen)
223 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
224
95e05289 225 if (!options)
73bc1876 226 goto out;
95e05289 227
be20aa9d
CM
228 /*
229 * strsep changes the string, duplicate it because parse_options
230 * gets called twice
231 */
232 options = kstrdup(options, GFP_NOFS);
233 if (!options)
234 return -ENOMEM;
235
da495ecc 236 orig = options;
be20aa9d 237
edf24abe 238 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
239 int token;
240 if (!*p)
241 continue;
242
243 token = match_token(p, tokens, args);
244 switch (token) {
dfe25020 245 case Opt_degraded:
edf24abe
CH
246 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
247 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 248 break;
95e05289 249 case Opt_subvol:
73f73415 250 case Opt_subvolid:
e15d0542 251 case Opt_subvolrootid:
43e570b0 252 case Opt_device:
edf24abe 253 /*
43e570b0 254 * These are parsed by btrfs_parse_early_options
edf24abe
CH
255 * and can be happily ignored here.
256 */
b6cda9bc
CM
257 break;
258 case Opt_nodatasum:
067c28ad 259 printk(KERN_INFO "btrfs: setting nodatasum\n");
edf24abe 260 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d
CM
261 break;
262 case Opt_nodatacow:
edf24abe
CH
263 printk(KERN_INFO "btrfs: setting nodatacow\n");
264 btrfs_set_opt(info->mount_opt, NODATACOW);
265 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 266 break;
a555f810 267 case Opt_compress_force:
261507a0
LZ
268 case Opt_compress_force_type:
269 compress_force = true;
270 case Opt_compress:
271 case Opt_compress_type:
272 if (token == Opt_compress ||
273 token == Opt_compress_force ||
274 strcmp(args[0].from, "zlib") == 0) {
275 compress_type = "zlib";
276 info->compress_type = BTRFS_COMPRESS_ZLIB;
a6fa6fae
LZ
277 } else if (strcmp(args[0].from, "lzo") == 0) {
278 compress_type = "lzo";
279 info->compress_type = BTRFS_COMPRESS_LZO;
261507a0
LZ
280 } else {
281 ret = -EINVAL;
282 goto out;
283 }
284
a555f810 285 btrfs_set_opt(info->mount_opt, COMPRESS);
261507a0
LZ
286 if (compress_force) {
287 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
288 pr_info("btrfs: force %s compression\n",
289 compress_type);
290 } else
291 pr_info("btrfs: use %s compression\n",
292 compress_type);
a555f810 293 break;
e18e4809 294 case Opt_ssd:
edf24abe
CH
295 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
296 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 297 break;
451d7585
CM
298 case Opt_ssd_spread:
299 printk(KERN_INFO "btrfs: use spread ssd "
300 "allocation scheme\n");
301 btrfs_set_opt(info->mount_opt, SSD);
302 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
303 break;
3b30c22f 304 case Opt_nossd:
451d7585
CM
305 printk(KERN_INFO "btrfs: not using ssd allocation "
306 "scheme\n");
c289811c 307 btrfs_set_opt(info->mount_opt, NOSSD);
3b30c22f 308 btrfs_clear_opt(info->mount_opt, SSD);
451d7585 309 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
3b30c22f 310 break;
21ad10cf 311 case Opt_nobarrier:
edf24abe
CH
312 printk(KERN_INFO "btrfs: turning off barriers\n");
313 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 314 break;
4543df7e
CM
315 case Opt_thread_pool:
316 intarg = 0;
317 match_int(&args[0], &intarg);
318 if (intarg) {
319 info->thread_pool_size = intarg;
320 printk(KERN_INFO "btrfs: thread pool %d\n",
321 info->thread_pool_size);
322 }
323 break;
6f568d35 324 case Opt_max_inline:
edf24abe
CH
325 num = match_strdup(&args[0]);
326 if (num) {
91748467 327 info->max_inline = memparse(num, NULL);
edf24abe
CH
328 kfree(num);
329
15ada040
CM
330 if (info->max_inline) {
331 info->max_inline = max_t(u64,
332 info->max_inline,
333 root->sectorsize);
334 }
edf24abe 335 printk(KERN_INFO "btrfs: max_inline at %llu\n",
21380931 336 (unsigned long long)info->max_inline);
6f568d35
CM
337 }
338 break;
8f662a76 339 case Opt_alloc_start:
edf24abe
CH
340 num = match_strdup(&args[0]);
341 if (num) {
91748467 342 info->alloc_start = memparse(num, NULL);
edf24abe
CH
343 kfree(num);
344 printk(KERN_INFO
345 "btrfs: allocations start at %llu\n",
21380931 346 (unsigned long long)info->alloc_start);
8f662a76
CM
347 }
348 break;
33268eaf
JB
349 case Opt_noacl:
350 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
351 break;
3a5e1404
SW
352 case Opt_notreelog:
353 printk(KERN_INFO "btrfs: disabling tree log\n");
354 btrfs_set_opt(info->mount_opt, NOTREELOG);
355 break;
dccae999
SW
356 case Opt_flushoncommit:
357 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
358 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
359 break;
97e728d4
JB
360 case Opt_ratio:
361 intarg = 0;
362 match_int(&args[0], &intarg);
363 if (intarg) {
364 info->metadata_ratio = intarg;
365 printk(KERN_INFO "btrfs: metadata ratio %d\n",
366 info->metadata_ratio);
367 }
368 break;
e244a0ae
CH
369 case Opt_discard:
370 btrfs_set_opt(info->mount_opt, DISCARD);
371 break;
0af3d00b 372 case Opt_space_cache:
0af3d00b 373 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
0de90876 374 break;
73bc1876
JB
375 case Opt_no_space_cache:
376 printk(KERN_INFO "btrfs: disabling disk space caching\n");
377 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
378 break;
4b9465cb
CM
379 case Opt_inode_cache:
380 printk(KERN_INFO "btrfs: enabling inode map caching\n");
381 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
382 break;
88c2ba3b
JB
383 case Opt_clear_cache:
384 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
385 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
0af3d00b 386 break;
4260f7c7
SW
387 case Opt_user_subvol_rm_allowed:
388 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
389 break;
91435650
CM
390 case Opt_enospc_debug:
391 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
392 break;
4cb5300b
CM
393 case Opt_defrag:
394 printk(KERN_INFO "btrfs: enabling auto defrag");
395 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
396 break;
af31f5e5
CM
397 case Opt_recovery:
398 printk(KERN_INFO "btrfs: enabling auto recovery");
399 btrfs_set_opt(info->mount_opt, RECOVERY);
400 break;
a7a3f7ca
SW
401 case Opt_err:
402 printk(KERN_INFO "btrfs: unrecognized mount option "
403 "'%s'\n", p);
404 ret = -EINVAL;
405 goto out;
95e05289 406 default:
be20aa9d 407 break;
95e05289
CM
408 }
409 }
a7a3f7ca 410out:
73bc1876
JB
411 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
412 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
da495ecc 413 kfree(orig);
a7a3f7ca 414 return ret;
edf24abe
CH
415}
416
417/*
418 * Parse mount options that are required early in the mount process.
419 *
420 * All other options will be parsed on much later in the mount process and
421 * only when we need to allocate a new super block.
422 */
97288f2c 423static int btrfs_parse_early_options(const char *options, fmode_t flags,
73f73415 424 void *holder, char **subvol_name, u64 *subvol_objectid,
e15d0542 425 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
edf24abe
CH
426{
427 substring_t args[MAX_OPT_ARGS];
83c8c9bd 428 char *device_name, *opts, *orig, *p;
edf24abe 429 int error = 0;
73f73415 430 int intarg;
edf24abe
CH
431
432 if (!options)
830c4adb 433 return 0;
edf24abe
CH
434
435 /*
436 * strsep changes the string, duplicate it because parse_options
437 * gets called twice
438 */
439 opts = kstrdup(options, GFP_KERNEL);
440 if (!opts)
441 return -ENOMEM;
3f3d0bc0 442 orig = opts;
edf24abe
CH
443
444 while ((p = strsep(&opts, ",")) != NULL) {
445 int token;
446 if (!*p)
447 continue;
448
449 token = match_token(p, tokens, args);
450 switch (token) {
451 case Opt_subvol:
a90e8b6f 452 kfree(*subvol_name);
edf24abe
CH
453 *subvol_name = match_strdup(&args[0]);
454 break;
73f73415
JB
455 case Opt_subvolid:
456 intarg = 0;
4849f01d
JB
457 error = match_int(&args[0], &intarg);
458 if (!error) {
459 /* we want the original fs_tree */
460 if (!intarg)
461 *subvol_objectid =
462 BTRFS_FS_TREE_OBJECTID;
463 else
464 *subvol_objectid = intarg;
465 }
73f73415 466 break;
e15d0542
XZ
467 case Opt_subvolrootid:
468 intarg = 0;
469 error = match_int(&args[0], &intarg);
470 if (!error) {
471 /* we want the original fs_tree */
472 if (!intarg)
473 *subvol_rootid =
474 BTRFS_FS_TREE_OBJECTID;
475 else
476 *subvol_rootid = intarg;
477 }
478 break;
43e570b0 479 case Opt_device:
83c8c9bd
JL
480 device_name = match_strdup(&args[0]);
481 if (!device_name) {
482 error = -ENOMEM;
483 goto out;
484 }
485 error = btrfs_scan_one_device(device_name,
43e570b0 486 flags, holder, fs_devices);
83c8c9bd 487 kfree(device_name);
43e570b0 488 if (error)
830c4adb 489 goto out;
43e570b0 490 break;
edf24abe
CH
491 default:
492 break;
493 }
494 }
495
830c4adb 496out:
3f3d0bc0 497 kfree(orig);
edf24abe 498 return error;
95e05289
CM
499}
500
73f73415
JB
501static struct dentry *get_default_root(struct super_block *sb,
502 u64 subvol_objectid)
503{
504 struct btrfs_root *root = sb->s_fs_info;
505 struct btrfs_root *new_root;
506 struct btrfs_dir_item *di;
507 struct btrfs_path *path;
508 struct btrfs_key location;
509 struct inode *inode;
73f73415
JB
510 u64 dir_id;
511 int new = 0;
512
513 /*
514 * We have a specific subvol we want to mount, just setup location and
515 * go look up the root.
516 */
517 if (subvol_objectid) {
518 location.objectid = subvol_objectid;
519 location.type = BTRFS_ROOT_ITEM_KEY;
520 location.offset = (u64)-1;
521 goto find_root;
522 }
523
524 path = btrfs_alloc_path();
525 if (!path)
526 return ERR_PTR(-ENOMEM);
527 path->leave_spinning = 1;
528
529 /*
530 * Find the "default" dir item which points to the root item that we
531 * will mount by default if we haven't been given a specific subvolume
532 * to mount.
533 */
6c41761f 534 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
73f73415 535 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
b0839166
JL
536 if (IS_ERR(di)) {
537 btrfs_free_path(path);
fb4f6f91 538 return ERR_CAST(di);
b0839166 539 }
73f73415
JB
540 if (!di) {
541 /*
542 * Ok the default dir item isn't there. This is weird since
543 * it's always been there, but don't freak out, just try and
544 * mount to root most subvolume.
545 */
546 btrfs_free_path(path);
547 dir_id = BTRFS_FIRST_FREE_OBJECTID;
548 new_root = root->fs_info->fs_root;
549 goto setup_root;
550 }
551
552 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
553 btrfs_free_path(path);
554
555find_root:
556 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
557 if (IS_ERR(new_root))
d0b678cb 558 return ERR_CAST(new_root);
73f73415
JB
559
560 if (btrfs_root_refs(&new_root->root_item) == 0)
561 return ERR_PTR(-ENOENT);
562
563 dir_id = btrfs_root_dirid(&new_root->root_item);
564setup_root:
565 location.objectid = dir_id;
566 location.type = BTRFS_INODE_ITEM_KEY;
567 location.offset = 0;
568
569 inode = btrfs_iget(sb, &location, new_root, &new);
4cbd1149
DC
570 if (IS_ERR(inode))
571 return ERR_CAST(inode);
73f73415
JB
572
573 /*
574 * If we're just mounting the root most subvol put the inode and return
575 * a reference to the dentry. We will have already gotten a reference
576 * to the inode in btrfs_fill_super so we're good to go.
577 */
578 if (!new && sb->s_root->d_inode == inode) {
579 iput(inode);
580 return dget(sb->s_root);
581 }
582
ba5b8958 583 return d_obtain_alias(inode);
73f73415
JB
584}
585
d397712b 586static int btrfs_fill_super(struct super_block *sb,
8a4b83cc 587 struct btrfs_fs_devices *fs_devices,
d397712b 588 void *data, int silent)
75dfe396 589{
d397712b
CM
590 struct inode *inode;
591 struct dentry *root_dentry;
39279cc3 592 struct btrfs_root *tree_root;
5d4f98a2 593 struct btrfs_key key;
39279cc3 594 int err;
a429e513 595
39279cc3
CM
596 sb->s_maxbytes = MAX_LFS_FILESIZE;
597 sb->s_magic = BTRFS_SUPER_MAGIC;
598 sb->s_op = &btrfs_super_ops;
af53d29a 599 sb->s_d_op = &btrfs_dentry_operations;
be6e8dc0 600 sb->s_export_op = &btrfs_export_ops;
5103e947 601 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 602 sb->s_time_gran = 1;
0eda294d 603#ifdef CONFIG_BTRFS_FS_POSIX_ACL
33268eaf 604 sb->s_flags |= MS_POSIXACL;
49cf6f45 605#endif
a429e513 606
dfe25020 607 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 608
e58ca020 609 if (IS_ERR(tree_root)) {
39279cc3 610 printk("btrfs: open_ctree failed\n");
e58ca020 611 return PTR_ERR(tree_root);
a429e513 612 }
39279cc3 613 sb->s_fs_info = tree_root;
a429e513 614
5d4f98a2
YZ
615 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
616 key.type = BTRFS_INODE_ITEM_KEY;
617 key.offset = 0;
73f73415 618 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
5d4f98a2
YZ
619 if (IS_ERR(inode)) {
620 err = PTR_ERR(inode);
39279cc3 621 goto fail_close;
f254e52c 622 }
f254e52c 623
39279cc3
CM
624 root_dentry = d_alloc_root(inode);
625 if (!root_dentry) {
626 iput(inode);
627 err = -ENOMEM;
628 goto fail_close;
f254e52c 629 }
58176a96 630
39279cc3 631 sb->s_root = root_dentry;
6885f308 632
6885f308 633 save_mount_options(sb, data);
90a887c9 634 cleancache_init_fs(sb);
2619ba1f 635 return 0;
39279cc3
CM
636
637fail_close:
638 close_ctree(tree_root);
639 return err;
2619ba1f
CM
640}
641
6bf13c0c 642int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
643{
644 struct btrfs_trans_handle *trans;
dccae999 645 struct btrfs_root *root = btrfs_sb(sb);
c5739bba 646 int ret;
2619ba1f 647
1abe9b8a 648 trace_btrfs_sync_fs(wait);
649
39279cc3
CM
650 if (!wait) {
651 filemap_flush(root->fs_info->btree_inode->i_mapping);
652 return 0;
653 }
771ed689 654
24bbcf04
YZ
655 btrfs_start_delalloc_inodes(root, 0);
656 btrfs_wait_ordered_extents(root, 0, 0);
771ed689 657
a22285a6 658 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
659 if (IS_ERR(trans))
660 return PTR_ERR(trans);
c5739bba 661 ret = btrfs_commit_transaction(trans, root);
54aa1f4d 662 return ret;
2c90e5d6
CM
663}
664
a9572a15
EP
665static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
666{
667 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
668 struct btrfs_fs_info *info = root->fs_info;
200da64e 669 char *compress_type;
a9572a15
EP
670
671 if (btrfs_test_opt(root, DEGRADED))
672 seq_puts(seq, ",degraded");
673 if (btrfs_test_opt(root, NODATASUM))
674 seq_puts(seq, ",nodatasum");
675 if (btrfs_test_opt(root, NODATACOW))
676 seq_puts(seq, ",nodatacow");
677 if (btrfs_test_opt(root, NOBARRIER))
678 seq_puts(seq, ",nobarrier");
a9572a15 679 if (info->max_inline != 8192 * 1024)
21380931
JB
680 seq_printf(seq, ",max_inline=%llu",
681 (unsigned long long)info->max_inline);
a9572a15 682 if (info->alloc_start != 0)
21380931
JB
683 seq_printf(seq, ",alloc_start=%llu",
684 (unsigned long long)info->alloc_start);
a9572a15
EP
685 if (info->thread_pool_size != min_t(unsigned long,
686 num_online_cpus() + 2, 8))
687 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
200da64e
TI
688 if (btrfs_test_opt(root, COMPRESS)) {
689 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
690 compress_type = "zlib";
691 else
692 compress_type = "lzo";
693 if (btrfs_test_opt(root, FORCE_COMPRESS))
694 seq_printf(seq, ",compress-force=%s", compress_type);
695 else
696 seq_printf(seq, ",compress=%s", compress_type);
697 }
c289811c
CM
698 if (btrfs_test_opt(root, NOSSD))
699 seq_puts(seq, ",nossd");
451d7585
CM
700 if (btrfs_test_opt(root, SSD_SPREAD))
701 seq_puts(seq, ",ssd_spread");
702 else if (btrfs_test_opt(root, SSD))
a9572a15 703 seq_puts(seq, ",ssd");
3a5e1404 704 if (btrfs_test_opt(root, NOTREELOG))
6b65c5c6 705 seq_puts(seq, ",notreelog");
dccae999 706 if (btrfs_test_opt(root, FLUSHONCOMMIT))
6b65c5c6 707 seq_puts(seq, ",flushoncommit");
20a5239a
MW
708 if (btrfs_test_opt(root, DISCARD))
709 seq_puts(seq, ",discard");
a9572a15
EP
710 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
711 seq_puts(seq, ",noacl");
200da64e
TI
712 if (btrfs_test_opt(root, SPACE_CACHE))
713 seq_puts(seq, ",space_cache");
73bc1876 714 else
8965593e 715 seq_puts(seq, ",nospace_cache");
200da64e
TI
716 if (btrfs_test_opt(root, CLEAR_CACHE))
717 seq_puts(seq, ",clear_cache");
718 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
719 seq_puts(seq, ",user_subvol_rm_allowed");
0942caa3
DS
720 if (btrfs_test_opt(root, ENOSPC_DEBUG))
721 seq_puts(seq, ",enospc_debug");
722 if (btrfs_test_opt(root, AUTO_DEFRAG))
723 seq_puts(seq, ",autodefrag");
724 if (btrfs_test_opt(root, INODE_MAP_CACHE))
725 seq_puts(seq, ",inode_cache");
a9572a15
EP
726 return 0;
727}
728
a061fc8d 729static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 730{
450ba0ea 731 struct btrfs_root *test_root = data;
a061fc8d 732 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 733
619c8c76
IK
734 /*
735 * If this super block is going away, return false as it
736 * can't match as an existing super block.
737 */
738 if (!atomic_read(&s->s_active))
739 return 0;
450ba0ea 740 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
4b82d6e4
Y
741}
742
450ba0ea
JB
743static int btrfs_set_super(struct super_block *s, void *data)
744{
745 s->s_fs_info = data;
746
747 return set_anon_super(s, data);
4b82d6e4
Y
748}
749
f9d9ef62
DS
750/*
751 * subvolumes are identified by ino 256
752 */
753static inline int is_subvolume_inode(struct inode *inode)
754{
755 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
756 return 1;
757 return 0;
758}
759
830c4adb
JB
760/*
761 * This will strip out the subvol=%s argument for an argument string and add
762 * subvolid=0 to make sure we get the actual tree root for path walking to the
763 * subvol we want.
764 */
765static char *setup_root_args(char *args)
766{
767 unsigned copied = 0;
768 unsigned len = strlen(args) + 2;
769 char *pos;
770 char *ret;
771
772 /*
773 * We need the same args as before, but minus
774 *
775 * subvol=a
776 *
777 * and add
778 *
779 * subvolid=0
780 *
781 * which is a difference of 2 characters, so we allocate strlen(args) +
782 * 2 characters.
783 */
784 ret = kzalloc(len * sizeof(char), GFP_NOFS);
785 if (!ret)
786 return NULL;
787 pos = strstr(args, "subvol=");
788
789 /* This shouldn't happen, but just in case.. */
790 if (!pos) {
791 kfree(ret);
792 return NULL;
793 }
794
795 /*
796 * The subvol=<> arg is not at the front of the string, copy everybody
797 * up to that into ret.
798 */
799 if (pos != args) {
800 *pos = '\0';
801 strcpy(ret, args);
802 copied += strlen(args);
803 pos++;
804 }
805
806 strncpy(ret + copied, "subvolid=0", len - copied);
807
808 /* Length of subvolid=0 */
809 copied += 10;
810
811 /*
812 * If there is no , after the subvol= option then we know there's no
813 * other options and we can just return.
814 */
815 pos = strchr(pos, ',');
816 if (!pos)
817 return ret;
818
819 /* Copy the rest of the arguments into our buffer */
820 strncpy(ret + copied, pos, len - copied);
821 copied += strlen(pos);
822
823 return ret;
824}
825
826static struct dentry *mount_subvol(const char *subvol_name, int flags,
827 const char *device_name, char *data)
828{
829 struct super_block *s;
830 struct dentry *root;
831 struct vfsmount *mnt;
832 struct mnt_namespace *ns_private;
833 char *newargs;
834 struct path path;
835 int error;
836
837 newargs = setup_root_args(data);
838 if (!newargs)
839 return ERR_PTR(-ENOMEM);
840 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
841 newargs);
842 kfree(newargs);
843 if (IS_ERR(mnt))
844 return ERR_CAST(mnt);
845
846 ns_private = create_mnt_ns(mnt);
847 if (IS_ERR(ns_private)) {
848 mntput(mnt);
849 return ERR_CAST(ns_private);
850 }
851
852 /*
853 * This will trigger the automount of the subvol so we can just
854 * drop the mnt we have here and return the dentry that we
855 * found.
856 */
857 error = vfs_path_lookup(mnt->mnt_root, mnt, subvol_name,
858 LOOKUP_FOLLOW, &path);
859 put_mnt_ns(ns_private);
860 if (error)
861 return ERR_PTR(error);
862
f9d9ef62
DS
863 if (!is_subvolume_inode(path.dentry->d_inode)) {
864 path_put(&path);
865 mntput(mnt);
866 error = -EINVAL;
867 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
868 subvol_name);
869 return ERR_PTR(-EINVAL);
870 }
871
830c4adb
JB
872 /* Get a ref to the sb and the dentry we found and return it */
873 s = path.mnt->mnt_sb;
874 atomic_inc(&s->s_active);
875 root = dget(path.dentry);
876 path_put(&path);
877 down_write(&s->s_umount);
878
879 return root;
880}
450ba0ea 881
edf24abe
CH
882/*
883 * Find a superblock for the given device / mount point.
884 *
885 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
886 * for multiple device setup. Make sure to keep it in sync.
887 */
061dbc6b 888static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
306e16ce 889 const char *device_name, void *data)
4b82d6e4
Y
890{
891 struct block_device *bdev = NULL;
892 struct super_block *s;
893 struct dentry *root;
8a4b83cc 894 struct btrfs_fs_devices *fs_devices = NULL;
450ba0ea 895 struct btrfs_fs_info *fs_info = NULL;
97288f2c 896 fmode_t mode = FMODE_READ;
73f73415
JB
897 char *subvol_name = NULL;
898 u64 subvol_objectid = 0;
e15d0542 899 u64 subvol_rootid = 0;
4b82d6e4
Y
900 int error = 0;
901
97288f2c
CH
902 if (!(flags & MS_RDONLY))
903 mode |= FMODE_WRITE;
904
905 error = btrfs_parse_early_options(data, mode, fs_type,
73f73415 906 &subvol_name, &subvol_objectid,
e15d0542 907 &subvol_rootid, &fs_devices);
f23c8af8
ID
908 if (error) {
909 kfree(subvol_name);
061dbc6b 910 return ERR_PTR(error);
f23c8af8 911 }
edf24abe 912
830c4adb
JB
913 if (subvol_name) {
914 root = mount_subvol(subvol_name, flags, device_name, data);
915 kfree(subvol_name);
916 return root;
917 }
918
306e16ce 919 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
8a4b83cc 920 if (error)
830c4adb 921 return ERR_PTR(error);
4b82d6e4 922
450ba0ea
JB
923 /*
924 * Setup a dummy root and fs_info for test/set super. This is because
925 * we don't actually fill this stuff out until open_ctree, but we need
926 * it for searching for existing supers, so this lets us do that and
927 * then open_ctree will properly initialize everything later.
928 */
929 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
04d21a24
ID
930 if (!fs_info)
931 return ERR_PTR(-ENOMEM);
932
933 fs_info->tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
934 if (!fs_info->tree_root) {
450ba0ea 935 error = -ENOMEM;
04d21a24 936 goto error_fs_info;
450ba0ea 937 }
04d21a24 938 fs_info->tree_root->fs_info = fs_info;
450ba0ea 939 fs_info->fs_devices = fs_devices;
450ba0ea 940
6c41761f
DS
941 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
942 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
943 if (!fs_info->super_copy || !fs_info->super_for_commit) {
944 error = -ENOMEM;
04d21a24
ID
945 goto error_fs_info;
946 }
947
948 error = btrfs_open_devices(fs_devices, mode, fs_type);
949 if (error)
950 goto error_fs_info;
951
952 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
953 error = -EACCES;
6c41761f
DS
954 goto error_close_devices;
955 }
956
dfe25020 957 bdev = fs_devices->latest_bdev;
04d21a24
ID
958 s = sget(fs_type, btrfs_test_super, btrfs_set_super,
959 fs_info->tree_root);
830c4adb
JB
960 if (IS_ERR(s)) {
961 error = PTR_ERR(s);
962 goto error_close_devices;
963 }
4b82d6e4
Y
964
965 if (s->s_root) {
966 if ((flags ^ s->s_flags) & MS_RDONLY) {
6f5bbff9 967 deactivate_locked_super(s);
04d21a24
ID
968 error = -EBUSY;
969 goto error_close_devices;
4b82d6e4
Y
970 }
971
2b82032c 972 btrfs_close_devices(fs_devices);
6c41761f 973 free_fs_info(fs_info);
4b82d6e4
Y
974 } else {
975 char b[BDEVNAME_SIZE];
976
9e1f1de0 977 s->s_flags = flags | MS_NOSEC;
4b82d6e4 978 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
5f524444 979 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
8a4b83cc
CM
980 error = btrfs_fill_super(s, fs_devices, data,
981 flags & MS_SILENT ? 1 : 0);
4b82d6e4 982 if (error) {
6f5bbff9 983 deactivate_locked_super(s);
830c4adb 984 return ERR_PTR(error);
4b82d6e4
Y
985 }
986
987 s->s_flags |= MS_ACTIVE;
988 }
989
830c4adb
JB
990 root = get_default_root(s, subvol_objectid);
991 if (IS_ERR(root)) {
992 deactivate_locked_super(s);
993 return root;
4b82d6e4
Y
994 }
995
061dbc6b 996 return root;
4b82d6e4 997
c146afad 998error_close_devices:
8a4b83cc 999 btrfs_close_devices(fs_devices);
04d21a24 1000error_fs_info:
6c41761f 1001 free_fs_info(fs_info);
061dbc6b 1002 return ERR_PTR(error);
4b82d6e4 1003}
2e635a27 1004
c146afad
YZ
1005static int btrfs_remount(struct super_block *sb, int *flags, char *data)
1006{
1007 struct btrfs_root *root = btrfs_sb(sb);
1008 int ret;
1009
b288052e
CM
1010 ret = btrfs_parse_options(root, data);
1011 if (ret)
1012 return -EINVAL;
1013
c146afad
YZ
1014 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
1015 return 0;
1016
1017 if (*flags & MS_RDONLY) {
1018 sb->s_flags |= MS_RDONLY;
1019
1020 ret = btrfs_commit_super(root);
1021 WARN_ON(ret);
1022 } else {
2b82032c
YZ
1023 if (root->fs_info->fs_devices->rw_devices == 0)
1024 return -EACCES;
1025
6c41761f 1026 if (btrfs_super_log_root(root->fs_info->super_copy) != 0)
c146afad
YZ
1027 return -EINVAL;
1028
d68fc57b 1029 ret = btrfs_cleanup_fs_roots(root->fs_info);
c146afad
YZ
1030 WARN_ON(ret);
1031
d68fc57b
YZ
1032 /* recover relocation */
1033 ret = btrfs_recover_relocation(root);
c146afad
YZ
1034 WARN_ON(ret);
1035
1036 sb->s_flags &= ~MS_RDONLY;
1037 }
1038
1039 return 0;
1040}
1041
bcd53741
AJ
1042/* Used to sort the devices by max_avail(descending sort) */
1043static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1044 const void *dev_info2)
1045{
1046 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1047 ((struct btrfs_device_info *)dev_info2)->max_avail)
1048 return -1;
1049 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1050 ((struct btrfs_device_info *)dev_info2)->max_avail)
1051 return 1;
1052 else
1053 return 0;
1054}
1055
1056/*
1057 * sort the devices by max_avail, in which max free extent size of each device
1058 * is stored.(Descending Sort)
1059 */
1060static inline void btrfs_descending_sort_devices(
1061 struct btrfs_device_info *devices,
1062 size_t nr_devices)
1063{
1064 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1065 btrfs_cmp_device_free_bytes, NULL);
1066}
1067
6d07bcec
MX
1068/*
1069 * The helper to calc the free space on the devices that can be used to store
1070 * file data.
1071 */
1072static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1073{
1074 struct btrfs_fs_info *fs_info = root->fs_info;
1075 struct btrfs_device_info *devices_info;
1076 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1077 struct btrfs_device *device;
1078 u64 skip_space;
1079 u64 type;
1080 u64 avail_space;
1081 u64 used_space;
1082 u64 min_stripe_size;
39fb26c3 1083 int min_stripes = 1, num_stripes = 1;
6d07bcec
MX
1084 int i = 0, nr_devices;
1085 int ret;
1086
b772a86e 1087 nr_devices = fs_info->fs_devices->open_devices;
6d07bcec
MX
1088 BUG_ON(!nr_devices);
1089
1090 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1091 GFP_NOFS);
1092 if (!devices_info)
1093 return -ENOMEM;
1094
1095 /* calc min stripe number for data space alloction */
1096 type = btrfs_get_alloc_profile(root, 1);
39fb26c3 1097 if (type & BTRFS_BLOCK_GROUP_RAID0) {
6d07bcec 1098 min_stripes = 2;
39fb26c3
MX
1099 num_stripes = nr_devices;
1100 } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
6d07bcec 1101 min_stripes = 2;
39fb26c3
MX
1102 num_stripes = 2;
1103 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
6d07bcec 1104 min_stripes = 4;
39fb26c3
MX
1105 num_stripes = 4;
1106 }
6d07bcec
MX
1107
1108 if (type & BTRFS_BLOCK_GROUP_DUP)
1109 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1110 else
1111 min_stripe_size = BTRFS_STRIPE_LEN;
1112
b772a86e
LZ
1113 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1114 if (!device->in_fs_metadata || !device->bdev)
6d07bcec
MX
1115 continue;
1116
1117 avail_space = device->total_bytes - device->bytes_used;
1118
1119 /* align with stripe_len */
1120 do_div(avail_space, BTRFS_STRIPE_LEN);
1121 avail_space *= BTRFS_STRIPE_LEN;
1122
1123 /*
1124 * In order to avoid overwritting the superblock on the drive,
1125 * btrfs starts at an offset of at least 1MB when doing chunk
1126 * allocation.
1127 */
1128 skip_space = 1024 * 1024;
1129
1130 /* user can set the offset in fs_info->alloc_start. */
1131 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1132 device->total_bytes)
1133 skip_space = max(fs_info->alloc_start, skip_space);
1134
1135 /*
1136 * btrfs can not use the free space in [0, skip_space - 1],
1137 * we must subtract it from the total. In order to implement
1138 * it, we account the used space in this range first.
1139 */
1140 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1141 &used_space);
1142 if (ret) {
1143 kfree(devices_info);
1144 return ret;
1145 }
1146
1147 /* calc the free space in [0, skip_space - 1] */
1148 skip_space -= used_space;
1149
1150 /*
1151 * we can use the free space in [0, skip_space - 1], subtract
1152 * it from the total.
1153 */
1154 if (avail_space && avail_space >= skip_space)
1155 avail_space -= skip_space;
1156 else
1157 avail_space = 0;
1158
1159 if (avail_space < min_stripe_size)
1160 continue;
1161
1162 devices_info[i].dev = device;
1163 devices_info[i].max_avail = avail_space;
1164
1165 i++;
1166 }
1167
1168 nr_devices = i;
1169
1170 btrfs_descending_sort_devices(devices_info, nr_devices);
1171
1172 i = nr_devices - 1;
1173 avail_space = 0;
1174 while (nr_devices >= min_stripes) {
39fb26c3
MX
1175 if (num_stripes > nr_devices)
1176 num_stripes = nr_devices;
1177
6d07bcec
MX
1178 if (devices_info[i].max_avail >= min_stripe_size) {
1179 int j;
1180 u64 alloc_size;
1181
39fb26c3 1182 avail_space += devices_info[i].max_avail * num_stripes;
6d07bcec 1183 alloc_size = devices_info[i].max_avail;
39fb26c3 1184 for (j = i + 1 - num_stripes; j <= i; j++)
6d07bcec
MX
1185 devices_info[j].max_avail -= alloc_size;
1186 }
1187 i--;
1188 nr_devices--;
1189 }
1190
1191 kfree(devices_info);
1192 *free_bytes = avail_space;
1193 return 0;
1194}
1195
8fd17795
CM
1196static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1197{
1198 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
6c41761f 1199 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
bd4d1088
JB
1200 struct list_head *head = &root->fs_info->space_info;
1201 struct btrfs_space_info *found;
1202 u64 total_used = 0;
6d07bcec 1203 u64 total_free_data = 0;
db94535d 1204 int bits = dentry->d_sb->s_blocksize_bits;
9d03632e 1205 __be32 *fsid = (__be32 *)root->fs_info->fsid;
6d07bcec 1206 int ret;
8fd17795 1207
6d07bcec
MX
1208 /* holding chunk_muext to avoid allocating new chunks */
1209 mutex_lock(&root->fs_info->chunk_mutex);
bd4d1088 1210 rcu_read_lock();
89a55897 1211 list_for_each_entry_rcu(found, head, list) {
6d07bcec
MX
1212 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1213 total_free_data += found->disk_total - found->disk_used;
1214 total_free_data -=
1215 btrfs_account_ro_block_groups_free_space(found);
1216 }
1217
b742bb82 1218 total_used += found->disk_used;
89a55897 1219 }
bd4d1088
JB
1220 rcu_read_unlock();
1221
8fd17795 1222 buf->f_namelen = BTRFS_NAME_LEN;
db94535d 1223 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
bd4d1088 1224 buf->f_bfree = buf->f_blocks - (total_used >> bits);
8fd17795
CM
1225 buf->f_bsize = dentry->d_sb->s_blocksize;
1226 buf->f_type = BTRFS_SUPER_MAGIC;
6d07bcec
MX
1227 buf->f_bavail = total_free_data;
1228 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1229 if (ret) {
1230 mutex_unlock(&root->fs_info->chunk_mutex);
1231 return ret;
1232 }
1233 buf->f_bavail += total_free_data;
1234 buf->f_bavail = buf->f_bavail >> bits;
1235 mutex_unlock(&root->fs_info->chunk_mutex);
d397712b 1236
9d03632e 1237 /* We treat it as constant endianness (it doesn't matter _which_)
d397712b 1238 because we want the fsid to come out the same whether mounted
9d03632e
DW
1239 on a big-endian or little-endian host */
1240 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1241 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
1242 /* Mask in the root object ID too, to disambiguate subvols */
1243 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1244 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1245
8fd17795
CM
1246 return 0;
1247}
b5133862 1248
2e635a27
CM
1249static struct file_system_type btrfs_fs_type = {
1250 .owner = THIS_MODULE,
1251 .name = "btrfs",
061dbc6b 1252 .mount = btrfs_mount,
a061fc8d 1253 .kill_sb = kill_anon_super,
2e635a27
CM
1254 .fs_flags = FS_REQUIRES_DEV,
1255};
a9218f6b 1256
d352ac68
CM
1257/*
1258 * used by btrfsctl to scan devices when no FS is mounted
1259 */
8a4b83cc
CM
1260static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1261 unsigned long arg)
1262{
1263 struct btrfs_ioctl_vol_args *vol;
1264 struct btrfs_fs_devices *fs_devices;
c071fcfd 1265 int ret = -ENOTTY;
8a4b83cc 1266
e441d54d
CM
1267 if (!capable(CAP_SYS_ADMIN))
1268 return -EPERM;
1269
dae7b665
LZ
1270 vol = memdup_user((void __user *)arg, sizeof(*vol));
1271 if (IS_ERR(vol))
1272 return PTR_ERR(vol);
c071fcfd 1273
8a4b83cc
CM
1274 switch (cmd) {
1275 case BTRFS_IOC_SCAN_DEV:
97288f2c 1276 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
8a4b83cc
CM
1277 &btrfs_fs_type, &fs_devices);
1278 break;
1279 }
dae7b665 1280
8a4b83cc 1281 kfree(vol);
f819d837 1282 return ret;
8a4b83cc
CM
1283}
1284
0176260f 1285static int btrfs_freeze(struct super_block *sb)
ed0dab6b
Y
1286{
1287 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
1288 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1289 mutex_lock(&root->fs_info->cleaner_mutex);
0176260f 1290 return 0;
ed0dab6b
Y
1291}
1292
0176260f 1293static int btrfs_unfreeze(struct super_block *sb)
ed0dab6b
Y
1294{
1295 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
1296 mutex_unlock(&root->fs_info->cleaner_mutex);
1297 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
0176260f 1298 return 0;
ed0dab6b 1299}
2e635a27 1300
22c44fe6
JB
1301static void btrfs_fs_dirty_inode(struct inode *inode, int flags)
1302{
1303 int ret;
1304
1305 ret = btrfs_dirty_inode(inode);
1306 if (ret)
1307 printk_ratelimited(KERN_ERR "btrfs: fail to dirty inode %Lu "
1308 "error %d\n", btrfs_ino(inode), ret);
1309}
1310
b87221de 1311static const struct super_operations btrfs_super_ops = {
76dda93c 1312 .drop_inode = btrfs_drop_inode,
bd555975 1313 .evict_inode = btrfs_evict_inode,
e20d96d6 1314 .put_super = btrfs_put_super,
d5719762 1315 .sync_fs = btrfs_sync_fs,
a9572a15 1316 .show_options = btrfs_show_options,
4730a4bc 1317 .write_inode = btrfs_write_inode,
22c44fe6 1318 .dirty_inode = btrfs_fs_dirty_inode,
2c90e5d6
CM
1319 .alloc_inode = btrfs_alloc_inode,
1320 .destroy_inode = btrfs_destroy_inode,
8fd17795 1321 .statfs = btrfs_statfs,
c146afad 1322 .remount_fs = btrfs_remount,
0176260f
LT
1323 .freeze_fs = btrfs_freeze,
1324 .unfreeze_fs = btrfs_unfreeze,
e20d96d6 1325};
a9218f6b
CM
1326
1327static const struct file_operations btrfs_ctl_fops = {
1328 .unlocked_ioctl = btrfs_control_ioctl,
1329 .compat_ioctl = btrfs_control_ioctl,
1330 .owner = THIS_MODULE,
6038f373 1331 .llseek = noop_llseek,
a9218f6b
CM
1332};
1333
1334static struct miscdevice btrfs_misc = {
578454ff 1335 .minor = BTRFS_MINOR,
a9218f6b
CM
1336 .name = "btrfs-control",
1337 .fops = &btrfs_ctl_fops
1338};
1339
578454ff
KS
1340MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1341MODULE_ALIAS("devname:btrfs-control");
1342
a9218f6b
CM
1343static int btrfs_interface_init(void)
1344{
1345 return misc_register(&btrfs_misc);
1346}
1347
b2950863 1348static void btrfs_interface_exit(void)
a9218f6b
CM
1349{
1350 if (misc_deregister(&btrfs_misc) < 0)
d397712b 1351 printk(KERN_INFO "misc_deregister failed for control device");
a9218f6b
CM
1352}
1353
2e635a27
CM
1354static int __init init_btrfs_fs(void)
1355{
2c90e5d6 1356 int err;
58176a96
JB
1357
1358 err = btrfs_init_sysfs();
1359 if (err)
1360 return err;
1361
261507a0 1362 err = btrfs_init_compress();
2c90e5d6 1363 if (err)
a74a4b97 1364 goto free_sysfs;
d1310b2e 1365
261507a0
LZ
1366 err = btrfs_init_cachep();
1367 if (err)
1368 goto free_compress;
1369
d1310b2e 1370 err = extent_io_init();
2f4cbe64
WB
1371 if (err)
1372 goto free_cachep;
1373
d1310b2e
CM
1374 err = extent_map_init();
1375 if (err)
1376 goto free_extent_io;
1377
16cdcec7 1378 err = btrfs_delayed_inode_init();
2f4cbe64
WB
1379 if (err)
1380 goto free_extent_map;
c8b97818 1381
16cdcec7
MX
1382 err = btrfs_interface_init();
1383 if (err)
1384 goto free_delayed_inode;
1385
a9218f6b
CM
1386 err = register_filesystem(&btrfs_fs_type);
1387 if (err)
1388 goto unregister_ioctl;
b3c3da71
CM
1389
1390 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
2f4cbe64
WB
1391 return 0;
1392
a9218f6b
CM
1393unregister_ioctl:
1394 btrfs_interface_exit();
16cdcec7
MX
1395free_delayed_inode:
1396 btrfs_delayed_inode_exit();
2f4cbe64
WB
1397free_extent_map:
1398 extent_map_exit();
d1310b2e
CM
1399free_extent_io:
1400 extent_io_exit();
2f4cbe64
WB
1401free_cachep:
1402 btrfs_destroy_cachep();
261507a0
LZ
1403free_compress:
1404 btrfs_exit_compress();
a74a4b97 1405free_sysfs:
2f4cbe64
WB
1406 btrfs_exit_sysfs();
1407 return err;
2e635a27
CM
1408}
1409
1410static void __exit exit_btrfs_fs(void)
1411{
39279cc3 1412 btrfs_destroy_cachep();
16cdcec7 1413 btrfs_delayed_inode_exit();
a52d9a80 1414 extent_map_exit();
d1310b2e 1415 extent_io_exit();
a9218f6b 1416 btrfs_interface_exit();
2e635a27 1417 unregister_filesystem(&btrfs_fs_type);
58176a96 1418 btrfs_exit_sysfs();
8a4b83cc 1419 btrfs_cleanup_fs_uuids();
261507a0 1420 btrfs_exit_compress();
2e635a27
CM
1421}
1422
1423module_init(init_btrfs_fs)
1424module_exit(exit_btrfs_fs)
1425
1426MODULE_LICENSE("GPL");
This page took 0.284431 seconds and 5 git commands to generate.