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