2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #include <linux/blkdev.h>
20 #include <linux/module.h>
21 #include <linux/buffer_head.h>
23 #include <linux/pagemap.h>
24 #include <linux/highmem.h>
25 #include <linux/time.h>
26 #include <linux/init.h>
27 #include <linux/seq_file.h>
28 #include <linux/string.h>
29 #include <linux/backing-dev.h>
30 #include <linux/mount.h>
31 #include <linux/mpage.h>
32 #include <linux/swap.h>
33 #include <linux/writeback.h>
34 #include <linux/statfs.h>
35 #include <linux/compat.h>
36 #include <linux/parser.h>
37 #include <linux/ctype.h>
38 #include <linux/namei.h>
39 #include <linux/miscdevice.h>
40 #include <linux/magic.h>
41 #include <linux/slab.h>
42 #include <linux/cleancache.h>
43 #include <linux/ratelimit.h>
45 #include "delayed-inode.h"
48 #include "transaction.h"
49 #include "btrfs_inode.h"
51 #include "print-tree.h"
56 #include "compression.h"
58 #define CREATE_TRACE_POINTS
59 #include <trace/events/btrfs.h>
61 static const struct super_operations btrfs_super_ops
;
62 static struct file_system_type btrfs_fs_type
;
64 static const char *btrfs_decode_error(struct btrfs_fs_info
*fs_info
, int errno
,
71 errstr
= "IO failure";
74 errstr
= "Out of memory";
77 errstr
= "Readonly filesystem";
81 if (snprintf(nbuf
, 16, "error %d", -errno
) >= 0)
90 static void __save_error_info(struct btrfs_fs_info
*fs_info
)
93 * today we only save the error info into ram. Long term we'll
94 * also send it down to the disk
96 fs_info
->fs_state
= BTRFS_SUPER_FLAG_ERROR
;
100 * We move write_super stuff at umount in order to avoid deadlock
101 * for umount hold all lock.
103 static void save_error_info(struct btrfs_fs_info
*fs_info
)
105 __save_error_info(fs_info
);
108 /* btrfs handle error by forcing the filesystem readonly */
109 static void btrfs_handle_error(struct btrfs_fs_info
*fs_info
)
111 struct super_block
*sb
= fs_info
->sb
;
113 if (sb
->s_flags
& MS_RDONLY
)
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");
123 * __btrfs_std_error decodes expected errors from the caller and
124 * invokes the approciate error response.
126 void __btrfs_std_error(struct btrfs_fs_info
*fs_info
, const char *function
,
127 unsigned int line
, int errno
)
129 struct super_block
*sb
= fs_info
->sb
;
134 * Special case: if the error is EROFS, and we're already
135 * under MS_RDONLY, then it is safe here.
137 if (errno
== -EROFS
&& (sb
->s_flags
& MS_RDONLY
))
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
);
145 btrfs_handle_error(fs_info
);
148 static void btrfs_put_super(struct super_block
*sb
)
150 (void)close_ctree(btrfs_sb(sb
)->tree_root
);
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?
160 Opt_degraded
, Opt_subvol
, Opt_subvolid
, Opt_device
, Opt_nodatasum
,
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
,
163 Opt_compress_type
, Opt_compress_force
, Opt_compress_force_type
,
164 Opt_notreelog
, Opt_ratio
, Opt_flushoncommit
, Opt_discard
,
165 Opt_space_cache
, Opt_clear_cache
, Opt_user_subvol_rm_allowed
,
166 Opt_enospc_debug
, Opt_subvolrootid
, Opt_defrag
, Opt_inode_cache
,
167 Opt_no_space_cache
, Opt_recovery
, Opt_skip_balance
,
168 Opt_check_integrity
, Opt_check_integrity_including_extent_data
,
169 Opt_check_integrity_print_mask
,
173 static match_table_t tokens
= {
174 {Opt_degraded
, "degraded"},
175 {Opt_subvol
, "subvol=%s"},
176 {Opt_subvolid
, "subvolid=%d"},
177 {Opt_device
, "device=%s"},
178 {Opt_nodatasum
, "nodatasum"},
179 {Opt_nodatacow
, "nodatacow"},
180 {Opt_nobarrier
, "nobarrier"},
181 {Opt_max_inline
, "max_inline=%s"},
182 {Opt_alloc_start
, "alloc_start=%s"},
183 {Opt_thread_pool
, "thread_pool=%d"},
184 {Opt_compress
, "compress"},
185 {Opt_compress_type
, "compress=%s"},
186 {Opt_compress_force
, "compress-force"},
187 {Opt_compress_force_type
, "compress-force=%s"},
189 {Opt_ssd_spread
, "ssd_spread"},
190 {Opt_nossd
, "nossd"},
191 {Opt_noacl
, "noacl"},
192 {Opt_notreelog
, "notreelog"},
193 {Opt_flushoncommit
, "flushoncommit"},
194 {Opt_ratio
, "metadata_ratio=%d"},
195 {Opt_discard
, "discard"},
196 {Opt_space_cache
, "space_cache"},
197 {Opt_clear_cache
, "clear_cache"},
198 {Opt_user_subvol_rm_allowed
, "user_subvol_rm_allowed"},
199 {Opt_enospc_debug
, "enospc_debug"},
200 {Opt_subvolrootid
, "subvolrootid=%d"},
201 {Opt_defrag
, "autodefrag"},
202 {Opt_inode_cache
, "inode_cache"},
203 {Opt_no_space_cache
, "nospace_cache"},
204 {Opt_recovery
, "recovery"},
205 {Opt_skip_balance
, "skip_balance"},
206 {Opt_check_integrity
, "check_int"},
207 {Opt_check_integrity_including_extent_data
, "check_int_data"},
208 {Opt_check_integrity_print_mask
, "check_int_print_mask=%d"},
213 * Regular mount options parser. Everything that is needed only when
214 * reading in a new superblock is parsed here.
216 int btrfs_parse_options(struct btrfs_root
*root
, char *options
)
218 struct btrfs_fs_info
*info
= root
->fs_info
;
219 substring_t args
[MAX_OPT_ARGS
];
220 char *p
, *num
, *orig
= NULL
;
225 bool compress_force
= false;
227 cache_gen
= btrfs_super_cache_generation(root
->fs_info
->super_copy
);
229 btrfs_set_opt(info
->mount_opt
, SPACE_CACHE
);
235 * strsep changes the string, duplicate it because parse_options
238 options
= kstrdup(options
, GFP_NOFS
);
244 while ((p
= strsep(&options
, ",")) != NULL
) {
249 token
= match_token(p
, tokens
, args
);
252 printk(KERN_INFO
"btrfs: allowing degraded mounts\n");
253 btrfs_set_opt(info
->mount_opt
, DEGRADED
);
257 case Opt_subvolrootid
:
260 * These are parsed by btrfs_parse_early_options
261 * and can be happily ignored here.
265 printk(KERN_INFO
"btrfs: setting nodatasum\n");
266 btrfs_set_opt(info
->mount_opt
, NODATASUM
);
269 printk(KERN_INFO
"btrfs: setting nodatacow\n");
270 btrfs_set_opt(info
->mount_opt
, NODATACOW
);
271 btrfs_set_opt(info
->mount_opt
, NODATASUM
);
273 case Opt_compress_force
:
274 case Opt_compress_force_type
:
275 compress_force
= true;
277 case Opt_compress_type
:
278 if (token
== Opt_compress
||
279 token
== Opt_compress_force
||
280 strcmp(args
[0].from
, "zlib") == 0) {
281 compress_type
= "zlib";
282 info
->compress_type
= BTRFS_COMPRESS_ZLIB
;
283 } else if (strcmp(args
[0].from
, "lzo") == 0) {
284 compress_type
= "lzo";
285 info
->compress_type
= BTRFS_COMPRESS_LZO
;
291 btrfs_set_opt(info
->mount_opt
, COMPRESS
);
292 if (compress_force
) {
293 btrfs_set_opt(info
->mount_opt
, FORCE_COMPRESS
);
294 pr_info("btrfs: force %s compression\n",
297 pr_info("btrfs: use %s compression\n",
301 printk(KERN_INFO
"btrfs: use ssd allocation scheme\n");
302 btrfs_set_opt(info
->mount_opt
, SSD
);
305 printk(KERN_INFO
"btrfs: use spread ssd "
306 "allocation scheme\n");
307 btrfs_set_opt(info
->mount_opt
, SSD
);
308 btrfs_set_opt(info
->mount_opt
, SSD_SPREAD
);
311 printk(KERN_INFO
"btrfs: not using ssd allocation "
313 btrfs_set_opt(info
->mount_opt
, NOSSD
);
314 btrfs_clear_opt(info
->mount_opt
, SSD
);
315 btrfs_clear_opt(info
->mount_opt
, SSD_SPREAD
);
318 printk(KERN_INFO
"btrfs: turning off barriers\n");
319 btrfs_set_opt(info
->mount_opt
, NOBARRIER
);
321 case Opt_thread_pool
:
323 match_int(&args
[0], &intarg
);
325 info
->thread_pool_size
= intarg
;
326 printk(KERN_INFO
"btrfs: thread pool %d\n",
327 info
->thread_pool_size
);
331 num
= match_strdup(&args
[0]);
333 info
->max_inline
= memparse(num
, NULL
);
336 if (info
->max_inline
) {
337 info
->max_inline
= max_t(u64
,
341 printk(KERN_INFO
"btrfs: max_inline at %llu\n",
342 (unsigned long long)info
->max_inline
);
345 case Opt_alloc_start
:
346 num
= match_strdup(&args
[0]);
348 info
->alloc_start
= memparse(num
, NULL
);
351 "btrfs: allocations start at %llu\n",
352 (unsigned long long)info
->alloc_start
);
356 root
->fs_info
->sb
->s_flags
&= ~MS_POSIXACL
;
359 printk(KERN_INFO
"btrfs: disabling tree log\n");
360 btrfs_set_opt(info
->mount_opt
, NOTREELOG
);
362 case Opt_flushoncommit
:
363 printk(KERN_INFO
"btrfs: turning on flush-on-commit\n");
364 btrfs_set_opt(info
->mount_opt
, FLUSHONCOMMIT
);
368 match_int(&args
[0], &intarg
);
370 info
->metadata_ratio
= intarg
;
371 printk(KERN_INFO
"btrfs: metadata ratio %d\n",
372 info
->metadata_ratio
);
376 btrfs_set_opt(info
->mount_opt
, DISCARD
);
378 case Opt_space_cache
:
379 btrfs_set_opt(info
->mount_opt
, SPACE_CACHE
);
381 case Opt_no_space_cache
:
382 printk(KERN_INFO
"btrfs: disabling disk space caching\n");
383 btrfs_clear_opt(info
->mount_opt
, SPACE_CACHE
);
385 case Opt_inode_cache
:
386 printk(KERN_INFO
"btrfs: enabling inode map caching\n");
387 btrfs_set_opt(info
->mount_opt
, INODE_MAP_CACHE
);
389 case Opt_clear_cache
:
390 printk(KERN_INFO
"btrfs: force clearing of disk cache\n");
391 btrfs_set_opt(info
->mount_opt
, CLEAR_CACHE
);
393 case Opt_user_subvol_rm_allowed
:
394 btrfs_set_opt(info
->mount_opt
, USER_SUBVOL_RM_ALLOWED
);
396 case Opt_enospc_debug
:
397 btrfs_set_opt(info
->mount_opt
, ENOSPC_DEBUG
);
400 printk(KERN_INFO
"btrfs: enabling auto defrag");
401 btrfs_set_opt(info
->mount_opt
, AUTO_DEFRAG
);
404 printk(KERN_INFO
"btrfs: enabling auto recovery");
405 btrfs_set_opt(info
->mount_opt
, RECOVERY
);
407 case Opt_skip_balance
:
408 btrfs_set_opt(info
->mount_opt
, SKIP_BALANCE
);
410 #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
411 case Opt_check_integrity_including_extent_data
:
412 printk(KERN_INFO
"btrfs: enabling check integrity"
413 " including extent data\n");
414 btrfs_set_opt(info
->mount_opt
,
415 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA
);
416 btrfs_set_opt(info
->mount_opt
, CHECK_INTEGRITY
);
418 case Opt_check_integrity
:
419 printk(KERN_INFO
"btrfs: enabling check integrity\n");
420 btrfs_set_opt(info
->mount_opt
, CHECK_INTEGRITY
);
422 case Opt_check_integrity_print_mask
:
424 match_int(&args
[0], &intarg
);
426 info
->check_integrity_print_mask
= intarg
;
427 printk(KERN_INFO
"btrfs:"
428 " check_integrity_print_mask 0x%x\n",
429 info
->check_integrity_print_mask
);
433 case Opt_check_integrity_including_extent_data
:
434 case Opt_check_integrity
:
435 case Opt_check_integrity_print_mask
:
436 printk(KERN_ERR
"btrfs: support for check_integrity*"
437 " not compiled in!\n");
442 printk(KERN_INFO
"btrfs: unrecognized mount option "
451 if (!ret
&& btrfs_test_opt(root
, SPACE_CACHE
))
452 printk(KERN_INFO
"btrfs: disk space caching is enabled\n");
458 * Parse mount options that are required early in the mount process.
460 * All other options will be parsed on much later in the mount process and
461 * only when we need to allocate a new super block.
463 static int btrfs_parse_early_options(const char *options
, fmode_t flags
,
464 void *holder
, char **subvol_name
, u64
*subvol_objectid
,
465 u64
*subvol_rootid
, struct btrfs_fs_devices
**fs_devices
)
467 substring_t args
[MAX_OPT_ARGS
];
468 char *device_name
, *opts
, *orig
, *p
;
476 * strsep changes the string, duplicate it because parse_options
479 opts
= kstrdup(options
, GFP_KERNEL
);
484 while ((p
= strsep(&opts
, ",")) != NULL
) {
489 token
= match_token(p
, tokens
, args
);
493 *subvol_name
= match_strdup(&args
[0]);
497 error
= match_int(&args
[0], &intarg
);
499 /* we want the original fs_tree */
502 BTRFS_FS_TREE_OBJECTID
;
504 *subvol_objectid
= intarg
;
507 case Opt_subvolrootid
:
509 error
= match_int(&args
[0], &intarg
);
511 /* we want the original fs_tree */
514 BTRFS_FS_TREE_OBJECTID
;
516 *subvol_rootid
= intarg
;
520 device_name
= match_strdup(&args
[0]);
525 error
= btrfs_scan_one_device(device_name
,
526 flags
, holder
, fs_devices
);
541 static struct dentry
*get_default_root(struct super_block
*sb
,
544 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
545 struct btrfs_root
*root
= fs_info
->tree_root
;
546 struct btrfs_root
*new_root
;
547 struct btrfs_dir_item
*di
;
548 struct btrfs_path
*path
;
549 struct btrfs_key location
;
555 * We have a specific subvol we want to mount, just setup location and
556 * go look up the root.
558 if (subvol_objectid
) {
559 location
.objectid
= subvol_objectid
;
560 location
.type
= BTRFS_ROOT_ITEM_KEY
;
561 location
.offset
= (u64
)-1;
565 path
= btrfs_alloc_path();
567 return ERR_PTR(-ENOMEM
);
568 path
->leave_spinning
= 1;
571 * Find the "default" dir item which points to the root item that we
572 * will mount by default if we haven't been given a specific subvolume
575 dir_id
= btrfs_super_root_dir(fs_info
->super_copy
);
576 di
= btrfs_lookup_dir_item(NULL
, root
, path
, dir_id
, "default", 7, 0);
578 btrfs_free_path(path
);
583 * Ok the default dir item isn't there. This is weird since
584 * it's always been there, but don't freak out, just try and
585 * mount to root most subvolume.
587 btrfs_free_path(path
);
588 dir_id
= BTRFS_FIRST_FREE_OBJECTID
;
589 new_root
= fs_info
->fs_root
;
593 btrfs_dir_item_key_to_cpu(path
->nodes
[0], di
, &location
);
594 btrfs_free_path(path
);
597 new_root
= btrfs_read_fs_root_no_name(fs_info
, &location
);
598 if (IS_ERR(new_root
))
599 return ERR_CAST(new_root
);
601 if (btrfs_root_refs(&new_root
->root_item
) == 0)
602 return ERR_PTR(-ENOENT
);
604 dir_id
= btrfs_root_dirid(&new_root
->root_item
);
606 location
.objectid
= dir_id
;
607 location
.type
= BTRFS_INODE_ITEM_KEY
;
610 inode
= btrfs_iget(sb
, &location
, new_root
, &new);
612 return ERR_CAST(inode
);
615 * If we're just mounting the root most subvol put the inode and return
616 * a reference to the dentry. We will have already gotten a reference
617 * to the inode in btrfs_fill_super so we're good to go.
619 if (!new && sb
->s_root
->d_inode
== inode
) {
621 return dget(sb
->s_root
);
624 return d_obtain_alias(inode
);
627 static int btrfs_fill_super(struct super_block
*sb
,
628 struct btrfs_fs_devices
*fs_devices
,
629 void *data
, int silent
)
632 struct dentry
*root_dentry
;
633 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
634 struct btrfs_key key
;
637 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
638 sb
->s_magic
= BTRFS_SUPER_MAGIC
;
639 sb
->s_op
= &btrfs_super_ops
;
640 sb
->s_d_op
= &btrfs_dentry_operations
;
641 sb
->s_export_op
= &btrfs_export_ops
;
642 sb
->s_xattr
= btrfs_xattr_handlers
;
644 #ifdef CONFIG_BTRFS_FS_POSIX_ACL
645 sb
->s_flags
|= MS_POSIXACL
;
648 err
= open_ctree(sb
, fs_devices
, (char *)data
);
650 printk("btrfs: open_ctree failed\n");
654 key
.objectid
= BTRFS_FIRST_FREE_OBJECTID
;
655 key
.type
= BTRFS_INODE_ITEM_KEY
;
657 inode
= btrfs_iget(sb
, &key
, fs_info
->fs_root
, NULL
);
659 err
= PTR_ERR(inode
);
663 root_dentry
= d_alloc_root(inode
);
670 sb
->s_root
= root_dentry
;
672 save_mount_options(sb
, data
);
673 cleancache_init_fs(sb
);
674 sb
->s_flags
|= MS_ACTIVE
;
678 close_ctree(fs_info
->tree_root
);
682 int btrfs_sync_fs(struct super_block
*sb
, int wait
)
684 struct btrfs_trans_handle
*trans
;
685 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
686 struct btrfs_root
*root
= fs_info
->tree_root
;
689 trace_btrfs_sync_fs(wait
);
692 filemap_flush(fs_info
->btree_inode
->i_mapping
);
696 btrfs_start_delalloc_inodes(root
, 0);
697 btrfs_wait_ordered_extents(root
, 0, 0);
699 trans
= btrfs_start_transaction(root
, 0);
701 return PTR_ERR(trans
);
702 ret
= btrfs_commit_transaction(trans
, root
);
706 static int btrfs_show_options(struct seq_file
*seq
, struct dentry
*dentry
)
708 struct btrfs_fs_info
*info
= btrfs_sb(dentry
->d_sb
);
709 struct btrfs_root
*root
= info
->tree_root
;
712 if (btrfs_test_opt(root
, DEGRADED
))
713 seq_puts(seq
, ",degraded");
714 if (btrfs_test_opt(root
, NODATASUM
))
715 seq_puts(seq
, ",nodatasum");
716 if (btrfs_test_opt(root
, NODATACOW
))
717 seq_puts(seq
, ",nodatacow");
718 if (btrfs_test_opt(root
, NOBARRIER
))
719 seq_puts(seq
, ",nobarrier");
720 if (info
->max_inline
!= 8192 * 1024)
721 seq_printf(seq
, ",max_inline=%llu",
722 (unsigned long long)info
->max_inline
);
723 if (info
->alloc_start
!= 0)
724 seq_printf(seq
, ",alloc_start=%llu",
725 (unsigned long long)info
->alloc_start
);
726 if (info
->thread_pool_size
!= min_t(unsigned long,
727 num_online_cpus() + 2, 8))
728 seq_printf(seq
, ",thread_pool=%d", info
->thread_pool_size
);
729 if (btrfs_test_opt(root
, COMPRESS
)) {
730 if (info
->compress_type
== BTRFS_COMPRESS_ZLIB
)
731 compress_type
= "zlib";
733 compress_type
= "lzo";
734 if (btrfs_test_opt(root
, FORCE_COMPRESS
))
735 seq_printf(seq
, ",compress-force=%s", compress_type
);
737 seq_printf(seq
, ",compress=%s", compress_type
);
739 if (btrfs_test_opt(root
, NOSSD
))
740 seq_puts(seq
, ",nossd");
741 if (btrfs_test_opt(root
, SSD_SPREAD
))
742 seq_puts(seq
, ",ssd_spread");
743 else if (btrfs_test_opt(root
, SSD
))
744 seq_puts(seq
, ",ssd");
745 if (btrfs_test_opt(root
, NOTREELOG
))
746 seq_puts(seq
, ",notreelog");
747 if (btrfs_test_opt(root
, FLUSHONCOMMIT
))
748 seq_puts(seq
, ",flushoncommit");
749 if (btrfs_test_opt(root
, DISCARD
))
750 seq_puts(seq
, ",discard");
751 if (!(root
->fs_info
->sb
->s_flags
& MS_POSIXACL
))
752 seq_puts(seq
, ",noacl");
753 if (btrfs_test_opt(root
, SPACE_CACHE
))
754 seq_puts(seq
, ",space_cache");
756 seq_puts(seq
, ",nospace_cache");
757 if (btrfs_test_opt(root
, CLEAR_CACHE
))
758 seq_puts(seq
, ",clear_cache");
759 if (btrfs_test_opt(root
, USER_SUBVOL_RM_ALLOWED
))
760 seq_puts(seq
, ",user_subvol_rm_allowed");
761 if (btrfs_test_opt(root
, ENOSPC_DEBUG
))
762 seq_puts(seq
, ",enospc_debug");
763 if (btrfs_test_opt(root
, AUTO_DEFRAG
))
764 seq_puts(seq
, ",autodefrag");
765 if (btrfs_test_opt(root
, INODE_MAP_CACHE
))
766 seq_puts(seq
, ",inode_cache");
767 if (btrfs_test_opt(root
, SKIP_BALANCE
))
768 seq_puts(seq
, ",skip_balance");
772 static int btrfs_test_super(struct super_block
*s
, void *data
)
774 struct btrfs_fs_info
*p
= data
;
775 struct btrfs_fs_info
*fs_info
= btrfs_sb(s
);
777 return fs_info
->fs_devices
== p
->fs_devices
;
780 static int btrfs_set_super(struct super_block
*s
, void *data
)
782 int err
= set_anon_super(s
, data
);
789 * subvolumes are identified by ino 256
791 static inline int is_subvolume_inode(struct inode
*inode
)
793 if (inode
&& inode
->i_ino
== BTRFS_FIRST_FREE_OBJECTID
)
799 * This will strip out the subvol=%s argument for an argument string and add
800 * subvolid=0 to make sure we get the actual tree root for path walking to the
803 static char *setup_root_args(char *args
)
806 unsigned len
= strlen(args
) + 2;
811 * We need the same args as before, but minus
819 * which is a difference of 2 characters, so we allocate strlen(args) +
822 ret
= kzalloc(len
* sizeof(char), GFP_NOFS
);
825 pos
= strstr(args
, "subvol=");
827 /* This shouldn't happen, but just in case.. */
834 * The subvol=<> arg is not at the front of the string, copy everybody
835 * up to that into ret.
840 copied
+= strlen(args
);
844 strncpy(ret
+ copied
, "subvolid=0", len
- copied
);
846 /* Length of subvolid=0 */
850 * If there is no , after the subvol= option then we know there's no
851 * other options and we can just return.
853 pos
= strchr(pos
, ',');
857 /* Copy the rest of the arguments into our buffer */
858 strncpy(ret
+ copied
, pos
, len
- copied
);
859 copied
+= strlen(pos
);
864 static struct dentry
*mount_subvol(const char *subvol_name
, int flags
,
865 const char *device_name
, char *data
)
868 struct vfsmount
*mnt
;
871 newargs
= setup_root_args(data
);
873 return ERR_PTR(-ENOMEM
);
874 mnt
= vfs_kern_mount(&btrfs_fs_type
, flags
, device_name
,
878 return ERR_CAST(mnt
);
880 root
= mount_subtree(mnt
, subvol_name
);
882 if (!IS_ERR(root
) && !is_subvolume_inode(root
->d_inode
)) {
883 struct super_block
*s
= root
->d_sb
;
885 root
= ERR_PTR(-EINVAL
);
886 deactivate_locked_super(s
);
887 printk(KERN_ERR
"btrfs: '%s' is not a valid subvolume\n",
895 * Find a superblock for the given device / mount point.
897 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
898 * for multiple device setup. Make sure to keep it in sync.
900 static struct dentry
*btrfs_mount(struct file_system_type
*fs_type
, int flags
,
901 const char *device_name
, void *data
)
903 struct block_device
*bdev
= NULL
;
904 struct super_block
*s
;
906 struct btrfs_fs_devices
*fs_devices
= NULL
;
907 struct btrfs_fs_info
*fs_info
= NULL
;
908 fmode_t mode
= FMODE_READ
;
909 char *subvol_name
= NULL
;
910 u64 subvol_objectid
= 0;
911 u64 subvol_rootid
= 0;
914 if (!(flags
& MS_RDONLY
))
917 error
= btrfs_parse_early_options(data
, mode
, fs_type
,
918 &subvol_name
, &subvol_objectid
,
919 &subvol_rootid
, &fs_devices
);
922 return ERR_PTR(error
);
926 root
= mount_subvol(subvol_name
, flags
, device_name
, data
);
931 error
= btrfs_scan_one_device(device_name
, mode
, fs_type
, &fs_devices
);
933 return ERR_PTR(error
);
936 * Setup a dummy root and fs_info for test/set super. This is because
937 * we don't actually fill this stuff out until open_ctree, but we need
938 * it for searching for existing supers, so this lets us do that and
939 * then open_ctree will properly initialize everything later.
941 fs_info
= kzalloc(sizeof(struct btrfs_fs_info
), GFP_NOFS
);
943 return ERR_PTR(-ENOMEM
);
945 fs_info
->fs_devices
= fs_devices
;
947 fs_info
->super_copy
= kzalloc(BTRFS_SUPER_INFO_SIZE
, GFP_NOFS
);
948 fs_info
->super_for_commit
= kzalloc(BTRFS_SUPER_INFO_SIZE
, GFP_NOFS
);
949 if (!fs_info
->super_copy
|| !fs_info
->super_for_commit
) {
954 error
= btrfs_open_devices(fs_devices
, mode
, fs_type
);
958 if (!(flags
& MS_RDONLY
) && fs_devices
->rw_devices
== 0) {
960 goto error_close_devices
;
963 bdev
= fs_devices
->latest_bdev
;
964 s
= sget(fs_type
, btrfs_test_super
, btrfs_set_super
, fs_info
);
967 goto error_close_devices
;
971 btrfs_close_devices(fs_devices
);
972 free_fs_info(fs_info
);
973 if ((flags
^ s
->s_flags
) & MS_RDONLY
)
976 char b
[BDEVNAME_SIZE
];
978 s
->s_flags
= flags
| MS_NOSEC
;
979 strlcpy(s
->s_id
, bdevname(bdev
, b
), sizeof(s
->s_id
));
980 btrfs_sb(s
)->bdev_holder
= fs_type
;
981 error
= btrfs_fill_super(s
, fs_devices
, data
,
982 flags
& MS_SILENT
? 1 : 0);
985 root
= !error
? get_default_root(s
, subvol_objectid
) : ERR_PTR(error
);
987 deactivate_locked_super(s
);
992 btrfs_close_devices(fs_devices
);
994 free_fs_info(fs_info
);
995 return ERR_PTR(error
);
998 static int btrfs_remount(struct super_block
*sb
, int *flags
, char *data
)
1000 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
1001 struct btrfs_root
*root
= fs_info
->tree_root
;
1004 ret
= btrfs_parse_options(root
, data
);
1008 if ((*flags
& MS_RDONLY
) == (sb
->s_flags
& MS_RDONLY
))
1011 if (*flags
& MS_RDONLY
) {
1012 sb
->s_flags
|= MS_RDONLY
;
1014 ret
= btrfs_commit_super(root
);
1017 if (fs_info
->fs_devices
->rw_devices
== 0)
1020 if (btrfs_super_log_root(fs_info
->super_copy
) != 0)
1023 ret
= btrfs_cleanup_fs_roots(fs_info
);
1026 /* recover relocation */
1027 ret
= btrfs_recover_relocation(root
);
1030 sb
->s_flags
&= ~MS_RDONLY
;
1036 /* Used to sort the devices by max_avail(descending sort) */
1037 static int btrfs_cmp_device_free_bytes(const void *dev_info1
,
1038 const void *dev_info2
)
1040 if (((struct btrfs_device_info
*)dev_info1
)->max_avail
>
1041 ((struct btrfs_device_info
*)dev_info2
)->max_avail
)
1043 else if (((struct btrfs_device_info
*)dev_info1
)->max_avail
<
1044 ((struct btrfs_device_info
*)dev_info2
)->max_avail
)
1051 * sort the devices by max_avail, in which max free extent size of each device
1052 * is stored.(Descending Sort)
1054 static inline void btrfs_descending_sort_devices(
1055 struct btrfs_device_info
*devices
,
1058 sort(devices
, nr_devices
, sizeof(struct btrfs_device_info
),
1059 btrfs_cmp_device_free_bytes
, NULL
);
1063 * The helper to calc the free space on the devices that can be used to store
1066 static int btrfs_calc_avail_data_space(struct btrfs_root
*root
, u64
*free_bytes
)
1068 struct btrfs_fs_info
*fs_info
= root
->fs_info
;
1069 struct btrfs_device_info
*devices_info
;
1070 struct btrfs_fs_devices
*fs_devices
= fs_info
->fs_devices
;
1071 struct btrfs_device
*device
;
1076 u64 min_stripe_size
;
1077 int min_stripes
= 1, num_stripes
= 1;
1078 int i
= 0, nr_devices
;
1081 nr_devices
= fs_info
->fs_devices
->open_devices
;
1082 BUG_ON(!nr_devices
);
1084 devices_info
= kmalloc(sizeof(*devices_info
) * nr_devices
,
1089 /* calc min stripe number for data space alloction */
1090 type
= btrfs_get_alloc_profile(root
, 1);
1091 if (type
& BTRFS_BLOCK_GROUP_RAID0
) {
1093 num_stripes
= nr_devices
;
1094 } else if (type
& BTRFS_BLOCK_GROUP_RAID1
) {
1097 } else if (type
& BTRFS_BLOCK_GROUP_RAID10
) {
1102 if (type
& BTRFS_BLOCK_GROUP_DUP
)
1103 min_stripe_size
= 2 * BTRFS_STRIPE_LEN
;
1105 min_stripe_size
= BTRFS_STRIPE_LEN
;
1107 list_for_each_entry(device
, &fs_devices
->devices
, dev_list
) {
1108 if (!device
->in_fs_metadata
|| !device
->bdev
)
1111 avail_space
= device
->total_bytes
- device
->bytes_used
;
1113 /* align with stripe_len */
1114 do_div(avail_space
, BTRFS_STRIPE_LEN
);
1115 avail_space
*= BTRFS_STRIPE_LEN
;
1118 * In order to avoid overwritting the superblock on the drive,
1119 * btrfs starts at an offset of at least 1MB when doing chunk
1122 skip_space
= 1024 * 1024;
1124 /* user can set the offset in fs_info->alloc_start. */
1125 if (fs_info
->alloc_start
+ BTRFS_STRIPE_LEN
<=
1126 device
->total_bytes
)
1127 skip_space
= max(fs_info
->alloc_start
, skip_space
);
1130 * btrfs can not use the free space in [0, skip_space - 1],
1131 * we must subtract it from the total. In order to implement
1132 * it, we account the used space in this range first.
1134 ret
= btrfs_account_dev_extents_size(device
, 0, skip_space
- 1,
1137 kfree(devices_info
);
1141 /* calc the free space in [0, skip_space - 1] */
1142 skip_space
-= used_space
;
1145 * we can use the free space in [0, skip_space - 1], subtract
1146 * it from the total.
1148 if (avail_space
&& avail_space
>= skip_space
)
1149 avail_space
-= skip_space
;
1153 if (avail_space
< min_stripe_size
)
1156 devices_info
[i
].dev
= device
;
1157 devices_info
[i
].max_avail
= avail_space
;
1164 btrfs_descending_sort_devices(devices_info
, nr_devices
);
1168 while (nr_devices
>= min_stripes
) {
1169 if (num_stripes
> nr_devices
)
1170 num_stripes
= nr_devices
;
1172 if (devices_info
[i
].max_avail
>= min_stripe_size
) {
1176 avail_space
+= devices_info
[i
].max_avail
* num_stripes
;
1177 alloc_size
= devices_info
[i
].max_avail
;
1178 for (j
= i
+ 1 - num_stripes
; j
<= i
; j
++)
1179 devices_info
[j
].max_avail
-= alloc_size
;
1185 kfree(devices_info
);
1186 *free_bytes
= avail_space
;
1190 static int btrfs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
1192 struct btrfs_fs_info
*fs_info
= btrfs_sb(dentry
->d_sb
);
1193 struct btrfs_super_block
*disk_super
= fs_info
->super_copy
;
1194 struct list_head
*head
= &fs_info
->space_info
;
1195 struct btrfs_space_info
*found
;
1197 u64 total_free_data
= 0;
1198 int bits
= dentry
->d_sb
->s_blocksize_bits
;
1199 __be32
*fsid
= (__be32
*)fs_info
->fsid
;
1202 /* holding chunk_muext to avoid allocating new chunks */
1203 mutex_lock(&fs_info
->chunk_mutex
);
1205 list_for_each_entry_rcu(found
, head
, list
) {
1206 if (found
->flags
& BTRFS_BLOCK_GROUP_DATA
) {
1207 total_free_data
+= found
->disk_total
- found
->disk_used
;
1209 btrfs_account_ro_block_groups_free_space(found
);
1212 total_used
+= found
->disk_used
;
1216 buf
->f_namelen
= BTRFS_NAME_LEN
;
1217 buf
->f_blocks
= btrfs_super_total_bytes(disk_super
) >> bits
;
1218 buf
->f_bfree
= buf
->f_blocks
- (total_used
>> bits
);
1219 buf
->f_bsize
= dentry
->d_sb
->s_blocksize
;
1220 buf
->f_type
= BTRFS_SUPER_MAGIC
;
1221 buf
->f_bavail
= total_free_data
;
1222 ret
= btrfs_calc_avail_data_space(fs_info
->tree_root
, &total_free_data
);
1224 mutex_unlock(&fs_info
->chunk_mutex
);
1227 buf
->f_bavail
+= total_free_data
;
1228 buf
->f_bavail
= buf
->f_bavail
>> bits
;
1229 mutex_unlock(&fs_info
->chunk_mutex
);
1231 /* We treat it as constant endianness (it doesn't matter _which_)
1232 because we want the fsid to come out the same whether mounted
1233 on a big-endian or little-endian host */
1234 buf
->f_fsid
.val
[0] = be32_to_cpu(fsid
[0]) ^ be32_to_cpu(fsid
[2]);
1235 buf
->f_fsid
.val
[1] = be32_to_cpu(fsid
[1]) ^ be32_to_cpu(fsid
[3]);
1236 /* Mask in the root object ID too, to disambiguate subvols */
1237 buf
->f_fsid
.val
[0] ^= BTRFS_I(dentry
->d_inode
)->root
->objectid
>> 32;
1238 buf
->f_fsid
.val
[1] ^= BTRFS_I(dentry
->d_inode
)->root
->objectid
;
1243 static void btrfs_kill_super(struct super_block
*sb
)
1245 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
1246 kill_anon_super(sb
);
1247 free_fs_info(fs_info
);
1250 static struct file_system_type btrfs_fs_type
= {
1251 .owner
= THIS_MODULE
,
1253 .mount
= btrfs_mount
,
1254 .kill_sb
= btrfs_kill_super
,
1255 .fs_flags
= FS_REQUIRES_DEV
,
1259 * used by btrfsctl to scan devices when no FS is mounted
1261 static long btrfs_control_ioctl(struct file
*file
, unsigned int cmd
,
1264 struct btrfs_ioctl_vol_args
*vol
;
1265 struct btrfs_fs_devices
*fs_devices
;
1268 if (!capable(CAP_SYS_ADMIN
))
1271 vol
= memdup_user((void __user
*)arg
, sizeof(*vol
));
1273 return PTR_ERR(vol
);
1276 case BTRFS_IOC_SCAN_DEV
:
1277 ret
= btrfs_scan_one_device(vol
->name
, FMODE_READ
,
1278 &btrfs_fs_type
, &fs_devices
);
1286 static int btrfs_freeze(struct super_block
*sb
)
1288 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
1289 mutex_lock(&fs_info
->transaction_kthread_mutex
);
1290 mutex_lock(&fs_info
->cleaner_mutex
);
1294 static int btrfs_unfreeze(struct super_block
*sb
)
1296 struct btrfs_fs_info
*fs_info
= btrfs_sb(sb
);
1297 mutex_unlock(&fs_info
->cleaner_mutex
);
1298 mutex_unlock(&fs_info
->transaction_kthread_mutex
);
1302 static void btrfs_fs_dirty_inode(struct inode
*inode
, int flags
)
1306 ret
= btrfs_dirty_inode(inode
);
1308 printk_ratelimited(KERN_ERR
"btrfs: fail to dirty inode %Lu "
1309 "error %d\n", btrfs_ino(inode
), ret
);
1312 static const struct super_operations btrfs_super_ops
= {
1313 .drop_inode
= btrfs_drop_inode
,
1314 .evict_inode
= btrfs_evict_inode
,
1315 .put_super
= btrfs_put_super
,
1316 .sync_fs
= btrfs_sync_fs
,
1317 .show_options
= btrfs_show_options
,
1318 .write_inode
= btrfs_write_inode
,
1319 .dirty_inode
= btrfs_fs_dirty_inode
,
1320 .alloc_inode
= btrfs_alloc_inode
,
1321 .destroy_inode
= btrfs_destroy_inode
,
1322 .statfs
= btrfs_statfs
,
1323 .remount_fs
= btrfs_remount
,
1324 .freeze_fs
= btrfs_freeze
,
1325 .unfreeze_fs
= btrfs_unfreeze
,
1328 static const struct file_operations btrfs_ctl_fops
= {
1329 .unlocked_ioctl
= btrfs_control_ioctl
,
1330 .compat_ioctl
= btrfs_control_ioctl
,
1331 .owner
= THIS_MODULE
,
1332 .llseek
= noop_llseek
,
1335 static struct miscdevice btrfs_misc
= {
1336 .minor
= BTRFS_MINOR
,
1337 .name
= "btrfs-control",
1338 .fops
= &btrfs_ctl_fops
1341 MODULE_ALIAS_MISCDEV(BTRFS_MINOR
);
1342 MODULE_ALIAS("devname:btrfs-control");
1344 static int btrfs_interface_init(void)
1346 return misc_register(&btrfs_misc
);
1349 static void btrfs_interface_exit(void)
1351 if (misc_deregister(&btrfs_misc
) < 0)
1352 printk(KERN_INFO
"misc_deregister failed for control device");
1355 static int __init
init_btrfs_fs(void)
1359 err
= btrfs_init_sysfs();
1363 err
= btrfs_init_compress();
1367 err
= btrfs_init_cachep();
1371 err
= extent_io_init();
1375 err
= extent_map_init();
1377 goto free_extent_io
;
1379 err
= btrfs_delayed_inode_init();
1381 goto free_extent_map
;
1383 err
= btrfs_interface_init();
1385 goto free_delayed_inode
;
1387 err
= register_filesystem(&btrfs_fs_type
);
1389 goto unregister_ioctl
;
1391 printk(KERN_INFO
"%s loaded\n", BTRFS_BUILD_VERSION
);
1395 btrfs_interface_exit();
1397 btrfs_delayed_inode_exit();
1403 btrfs_destroy_cachep();
1405 btrfs_exit_compress();
1411 static void __exit
exit_btrfs_fs(void)
1413 btrfs_destroy_cachep();
1414 btrfs_delayed_inode_exit();
1417 btrfs_interface_exit();
1418 unregister_filesystem(&btrfs_fs_type
);
1420 btrfs_cleanup_fs_uuids();
1421 btrfs_exit_compress();
1424 module_init(init_btrfs_fs
)
1425 module_exit(exit_btrfs_fs
)
1427 MODULE_LICENSE("GPL");