blob: 5239003d453eed85ef82b6c2f9a5412f9607a922 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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
Yan4b82d6e2007-08-29 09:11:44 -040019#include <linux/blkdev.h>
Chris Mason2e635a22007-03-21 11:12:56 -040020#include <linux/module.h>
Chris Masone20d96d2007-03-22 12:13:20 -040021#include <linux/buffer_head.h>
Chris Mason2e635a22007-03-21 11:12:56 -040022#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/highmem.h>
25#include <linux/time.h>
26#include <linux/init.h>
Eric Parisa9572a12009-04-02 16:46:06 -040027#include <linux/seq_file.h>
Chris Mason2e635a22007-03-21 11:12:56 -040028#include <linux/string.h>
Chris Mason2e635a22007-03-21 11:12:56 -040029#include <linux/backing-dev.h>
Yan4b82d6e2007-08-29 09:11:44 -040030#include <linux/mount.h>
Chris Masondee26a92007-03-26 16:00:06 -040031#include <linux/mpage.h>
Chris Mason75dfe392007-03-29 11:56:46 -040032#include <linux/swap.h>
33#include <linux/writeback.h>
Chris Mason8fd17792007-04-19 21:01:03 -040034#include <linux/statfs.h>
Chris Mason08607c12007-06-08 15:33:54 -040035#include <linux/compat.h>
Chris Mason95e05282007-08-29 09:11:44 -040036#include <linux/parser.h>
Chris Masonc59f8952007-12-17 20:14:04 -050037#include <linux/ctype.h>
Chris Mason6da6aba2007-12-18 16:15:09 -050038#include <linux/namei.h>
Chris Masona9218f62008-03-24 15:02:04 -040039#include <linux/miscdevice.h>
Qinghuang Feng1bcbf312009-01-15 13:51:03 -080040#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060042#include <linux/cleancache.h>
Josef Bacik830c4ad2011-07-25 15:55:42 -040043#include <linux/mnt_namespace.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050044#include <linux/ratelimit.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050045#include "compat.h"
Miao Xie16cdcec2011-04-22 18:12:22 +080046#include "delayed-inode.h"
Chris Mason2e635a22007-03-21 11:12:56 -040047#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040048#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040049#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040050#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040051#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040052#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050053#include "xattr.h"
Chris Mason8a4b83c2008-03-24 15:02:07 -040054#include "volumes.h"
Chris Masonb3c3da72008-07-23 12:12:13 -040055#include "version.h"
Balaji Raobe6e8dc2008-07-21 02:01:56 +053056#include "export.h"
Chris Masonc8b97812008-10-29 14:49:59 -040057#include "compression.h"
Chris Mason2e635a22007-03-21 11:12:56 -040058
liubo1abe9b82011-03-24 11:18:59 +000059#define CREATE_TRACE_POINTS
60#include <trace/events/btrfs.h>
61
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070062static const struct super_operations btrfs_super_ops;
Josef Bacik830c4ad2011-07-25 15:55:42 -040063static struct file_system_type btrfs_fs_type;
Chris Masone20d96d2007-03-22 12:13:20 -040064
liuboacce9522011-01-06 19:30:25 +080065static 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
Chris Masond3977122009-01-05 21:25:51 -0500149static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -0400150{
151 struct btrfs_root *root = btrfs_sb(sb);
152 int ret;
153
154 ret = close_ctree(root);
Chris Masone20d96d2007-03-22 12:13:20 -0400155 sb->s_fs_info = NULL;
Andi Kleen559af822010-10-29 15:14:37 -0400156
157 (void)ret; /* FIXME: need to fix VFS to return error? */
Chris Masone20d96d2007-03-22 12:13:20 -0400158}
Chris Mason2e635a22007-03-21 11:12:56 -0400159
Chris Mason95e05282007-08-29 09:11:44 -0400160enum {
Josef Bacik73f73412009-12-04 17:38:27 +0000161 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
Josef Bacik287a0ab2010-03-19 18:07:23 +0000162 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,
Li Zefan261507a02010-12-17 14:21:50 +0800164 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
165 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
Chris Mason91435652011-02-16 13:10:41 -0500166 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200167 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_inode_cache,
168 Opt_no_space_cache, Opt_recovery, Opt_skip_balance,
Stefan Behrens21adbd52011-11-09 13:44:05 +0100169 Opt_check_integrity, Opt_check_integrity_including_extent_data,
170 Opt_check_integrity_print_mask,
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200171 Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -0400172};
173
174static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -0400175 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -0400176 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +0000177 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400178 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -0500179 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -0500180 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -0500181 {Opt_nobarrier, "nobarrier"},
Chris Mason6f568d32008-01-29 16:03:38 -0500182 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -0500183 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -0400184 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -0400185 {Opt_compress, "compress"},
Li Zefan261507a02010-12-17 14:21:50 +0800186 {Opt_compress_type, "compress=%s"},
Chris Masona555f812010-01-28 16:18:15 -0500187 {Opt_compress_force, "compress-force"},
Li Zefan261507a02010-12-17 14:21:50 +0800188 {Opt_compress_force_type, "compress-force=%s"},
Chris Masone18e4802008-01-18 10:54:22 -0500189 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -0400190 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -0400191 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400192 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -0400193 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -0400194 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -0400195 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400196 {Opt_discard, "discard"},
Josef Bacik0af3d002010-06-21 14:48:16 -0400197 {Opt_space_cache, "space_cache"},
Josef Bacik88c2ba32010-09-21 14:21:34 -0400198 {Opt_clear_cache, "clear_cache"},
Sage Weil4260f7c2010-10-29 15:46:43 -0400199 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
Chris Mason91435652011-02-16 13:10:41 -0500200 {Opt_enospc_debug, "enospc_debug"},
Xin Zhonge15d0542011-04-06 07:33:51 +0000201 {Opt_subvolrootid, "subvolrootid=%d"},
Chris Mason4cb53002011-05-24 15:35:30 -0400202 {Opt_defrag, "autodefrag"},
Chris Mason4b9465c2011-06-03 09:36:29 -0400203 {Opt_inode_cache, "inode_cache"},
David Sterba89655932011-11-11 10:14:57 -0500204 {Opt_no_space_cache, "nospace_cache"},
Chris Masonaf31f5e2011-11-03 15:17:42 -0400205 {Opt_recovery, "recovery"},
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200206 {Opt_skip_balance, "skip_balance"},
Stefan Behrens21adbd52011-11-09 13:44:05 +0100207 {Opt_check_integrity, "check_int"},
208 {Opt_check_integrity_including_extent_data, "check_int_data"},
209 {Opt_check_integrity_print_mask, "check_int_print_mask=%d"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400210 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400211};
212
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400213/*
214 * Regular mount options parser. Everything that is needed only when
215 * reading in a new superblock is parsed here.
216 */
217int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400218{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400219 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400220 substring_t args[MAX_OPT_ARGS];
Josef Bacik73bc1872011-10-03 14:07:49 -0400221 char *p, *num, *orig = NULL;
222 u64 cache_gen;
Chris Mason4543df72008-06-11 21:47:56 -0400223 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000224 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800225 char *compress_type;
226 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500227
David Sterba6c417612011-04-13 15:41:04 +0200228 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -0400229 if (cache_gen)
230 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
231
Chris Mason95e05282007-08-29 09:11:44 -0400232 if (!options)
Josef Bacik73bc1872011-10-03 14:07:49 -0400233 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400234
Chris Masonbe20aa92007-12-17 20:14:01 -0500235 /*
236 * strsep changes the string, duplicate it because parse_options
237 * gets called twice
238 */
239 options = kstrdup(options, GFP_NOFS);
240 if (!options)
241 return -ENOMEM;
242
Josef Bacikda495ec2010-02-25 20:38:35 +0000243 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500244
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400245 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400246 int token;
247 if (!*p)
248 continue;
249
250 token = match_token(p, tokens, args);
251 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400252 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400253 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
254 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400255 break;
Chris Mason95e05282007-08-29 09:11:44 -0400256 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000257 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000258 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400259 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400260 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400261 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400262 * and can be happily ignored here.
263 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500264 break;
265 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400266 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400267 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500268 break;
269 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400270 printk(KERN_INFO "btrfs: setting nodatacow\n");
271 btrfs_set_opt(info->mount_opt, NODATACOW);
272 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400273 break;
Chris Masona555f812010-01-28 16:18:15 -0500274 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800275 case Opt_compress_force_type:
276 compress_force = true;
277 case Opt_compress:
278 case Opt_compress_type:
279 if (token == Opt_compress ||
280 token == Opt_compress_force ||
281 strcmp(args[0].from, "zlib") == 0) {
282 compress_type = "zlib";
283 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800284 } else if (strcmp(args[0].from, "lzo") == 0) {
285 compress_type = "lzo";
286 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800287 } else {
288 ret = -EINVAL;
289 goto out;
290 }
291
Chris Masona555f812010-01-28 16:18:15 -0500292 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800293 if (compress_force) {
294 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
295 pr_info("btrfs: force %s compression\n",
296 compress_type);
297 } else
298 pr_info("btrfs: use %s compression\n",
299 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500300 break;
Chris Masone18e4802008-01-18 10:54:22 -0500301 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400302 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
303 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500304 break;
Chris Mason451d7582009-06-09 20:28:34 -0400305 case Opt_ssd_spread:
306 printk(KERN_INFO "btrfs: use spread ssd "
307 "allocation scheme\n");
308 btrfs_set_opt(info->mount_opt, SSD);
309 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
310 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400311 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400312 printk(KERN_INFO "btrfs: not using ssd allocation "
313 "scheme\n");
Chris Masonc289811c2009-06-10 09:51:32 -0400314 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400315 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400316 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400317 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500318 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400319 printk(KERN_INFO "btrfs: turning off barriers\n");
320 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500321 break;
Chris Mason4543df72008-06-11 21:47:56 -0400322 case Opt_thread_pool:
323 intarg = 0;
324 match_int(&args[0], &intarg);
325 if (intarg) {
326 info->thread_pool_size = intarg;
327 printk(KERN_INFO "btrfs: thread pool %d\n",
328 info->thread_pool_size);
329 }
330 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500331 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400332 num = match_strdup(&args[0]);
333 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000334 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400335 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500336
Chris Mason15ada042008-06-11 16:51:38 -0400337 if (info->max_inline) {
338 info->max_inline = max_t(u64,
339 info->max_inline,
340 root->sectorsize);
341 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400342 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700343 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500344 }
345 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500346 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400347 num = match_strdup(&args[0]);
348 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000349 info->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400350 kfree(num);
351 printk(KERN_INFO
352 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700353 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500354 }
355 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400356 case Opt_noacl:
357 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
358 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400359 case Opt_notreelog:
360 printk(KERN_INFO "btrfs: disabling tree log\n");
361 btrfs_set_opt(info->mount_opt, NOTREELOG);
362 break;
Sage Weildccae992009-04-02 16:59:01 -0400363 case Opt_flushoncommit:
364 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
365 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
366 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400367 case Opt_ratio:
368 intarg = 0;
369 match_int(&args[0], &intarg);
370 if (intarg) {
371 info->metadata_ratio = intarg;
372 printk(KERN_INFO "btrfs: metadata ratio %d\n",
373 info->metadata_ratio);
374 }
375 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400376 case Opt_discard:
377 btrfs_set_opt(info->mount_opt, DISCARD);
378 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400379 case Opt_space_cache:
Josef Bacik0af3d002010-06-21 14:48:16 -0400380 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000381 break;
Josef Bacik73bc1872011-10-03 14:07:49 -0400382 case Opt_no_space_cache:
383 printk(KERN_INFO "btrfs: disabling disk space caching\n");
384 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
385 break;
Chris Mason4b9465c2011-06-03 09:36:29 -0400386 case Opt_inode_cache:
387 printk(KERN_INFO "btrfs: enabling inode map caching\n");
388 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
389 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400390 case Opt_clear_cache:
391 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
392 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400393 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400394 case Opt_user_subvol_rm_allowed:
395 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
396 break;
Chris Mason91435652011-02-16 13:10:41 -0500397 case Opt_enospc_debug:
398 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
399 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400400 case Opt_defrag:
401 printk(KERN_INFO "btrfs: enabling auto defrag");
402 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
403 break;
Chris Masonaf31f5e2011-11-03 15:17:42 -0400404 case Opt_recovery:
405 printk(KERN_INFO "btrfs: enabling auto recovery");
406 btrfs_set_opt(info->mount_opt, RECOVERY);
407 break;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200408 case Opt_skip_balance:
409 btrfs_set_opt(info->mount_opt, SKIP_BALANCE);
410 break;
Stefan Behrens21adbd52011-11-09 13:44:05 +0100411#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
412 case Opt_check_integrity_including_extent_data:
413 printk(KERN_INFO "btrfs: enabling check integrity"
414 " including extent data\n");
415 btrfs_set_opt(info->mount_opt,
416 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA);
417 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
418 break;
419 case Opt_check_integrity:
420 printk(KERN_INFO "btrfs: enabling check integrity\n");
421 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
422 break;
423 case Opt_check_integrity_print_mask:
424 intarg = 0;
425 match_int(&args[0], &intarg);
426 if (intarg) {
427 info->check_integrity_print_mask = intarg;
428 printk(KERN_INFO "btrfs:"
429 " check_integrity_print_mask 0x%x\n",
430 info->check_integrity_print_mask);
431 }
432 break;
433#else
434 case Opt_check_integrity_including_extent_data:
435 case Opt_check_integrity:
436 case Opt_check_integrity_print_mask:
437 printk(KERN_ERR "btrfs: support for check_integrity*"
438 " not compiled in!\n");
439 ret = -EINVAL;
440 goto out;
441#endif
Sage Weila7a3f7c2009-11-07 06:19:16 +0000442 case Opt_err:
443 printk(KERN_INFO "btrfs: unrecognized mount option "
444 "'%s'\n", p);
445 ret = -EINVAL;
446 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400447 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500448 break;
Chris Mason95e05282007-08-29 09:11:44 -0400449 }
450 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000451out:
Josef Bacik73bc1872011-10-03 14:07:49 -0400452 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
453 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacikda495ec2010-02-25 20:38:35 +0000454 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000455 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400456}
457
458/*
459 * Parse mount options that are required early in the mount process.
460 *
461 * All other options will be parsed on much later in the mount process and
462 * only when we need to allocate a new super block.
463 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500464static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000465 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000466 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400467{
468 substring_t args[MAX_OPT_ARGS];
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800469 char *device_name, *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400470 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000471 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400472
473 if (!options)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400474 return 0;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400475
476 /*
477 * strsep changes the string, duplicate it because parse_options
478 * gets called twice
479 */
480 opts = kstrdup(options, GFP_KERNEL);
481 if (!opts)
482 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800483 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400484
485 while ((p = strsep(&opts, ",")) != NULL) {
486 int token;
487 if (!*p)
488 continue;
489
490 token = match_token(p, tokens, args);
491 switch (token) {
492 case Opt_subvol:
Ilya Dryomova90e8b62011-11-08 16:47:55 +0200493 kfree(*subvol_name);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400494 *subvol_name = match_strdup(&args[0]);
495 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000496 case Opt_subvolid:
497 intarg = 0;
Josef Bacik4849f012009-12-14 19:18:38 +0000498 error = match_int(&args[0], &intarg);
499 if (!error) {
500 /* we want the original fs_tree */
501 if (!intarg)
502 *subvol_objectid =
503 BTRFS_FS_TREE_OBJECTID;
504 else
505 *subvol_objectid = intarg;
506 }
Josef Bacik73f73412009-12-04 17:38:27 +0000507 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000508 case Opt_subvolrootid:
509 intarg = 0;
510 error = match_int(&args[0], &intarg);
511 if (!error) {
512 /* we want the original fs_tree */
513 if (!intarg)
514 *subvol_rootid =
515 BTRFS_FS_TREE_OBJECTID;
516 else
517 *subvol_rootid = intarg;
518 }
519 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400520 case Opt_device:
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800521 device_name = match_strdup(&args[0]);
522 if (!device_name) {
523 error = -ENOMEM;
524 goto out;
525 }
526 error = btrfs_scan_one_device(device_name,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400527 flags, holder, fs_devices);
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800528 kfree(device_name);
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400529 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400530 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400531 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400532 default:
533 break;
534 }
535 }
536
Josef Bacik830c4ad2011-07-25 15:55:42 -0400537out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800538 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400539 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400540}
541
Josef Bacik73f73412009-12-04 17:38:27 +0000542static struct dentry *get_default_root(struct super_block *sb,
543 u64 subvol_objectid)
544{
545 struct btrfs_root *root = sb->s_fs_info;
546 struct btrfs_root *new_root;
547 struct btrfs_dir_item *di;
548 struct btrfs_path *path;
549 struct btrfs_key location;
550 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000551 u64 dir_id;
552 int new = 0;
553
554 /*
555 * We have a specific subvol we want to mount, just setup location and
556 * go look up the root.
557 */
558 if (subvol_objectid) {
559 location.objectid = subvol_objectid;
560 location.type = BTRFS_ROOT_ITEM_KEY;
561 location.offset = (u64)-1;
562 goto find_root;
563 }
564
565 path = btrfs_alloc_path();
566 if (!path)
567 return ERR_PTR(-ENOMEM);
568 path->leave_spinning = 1;
569
570 /*
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
573 * to mount.
574 */
David Sterba6c417612011-04-13 15:41:04 +0200575 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik73f73412009-12-04 17:38:27 +0000576 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000577 if (IS_ERR(di)) {
578 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000579 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000580 }
Josef Bacik73f73412009-12-04 17:38:27 +0000581 if (!di) {
582 /*
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.
586 */
587 btrfs_free_path(path);
588 dir_id = BTRFS_FIRST_FREE_OBJECTID;
589 new_root = root->fs_info->fs_root;
590 goto setup_root;
591 }
592
593 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
594 btrfs_free_path(path);
595
596find_root:
597 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
598 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400599 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000600
601 if (btrfs_root_refs(&new_root->root_item) == 0)
602 return ERR_PTR(-ENOENT);
603
604 dir_id = btrfs_root_dirid(&new_root->root_item);
605setup_root:
606 location.objectid = dir_id;
607 location.type = BTRFS_INODE_ITEM_KEY;
608 location.offset = 0;
609
610 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000611 if (IS_ERR(inode))
612 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000613
614 /*
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.
618 */
619 if (!new && sb->s_root->d_inode == inode) {
620 iput(inode);
621 return dget(sb->s_root);
622 }
623
Josef Bacikba5b8952011-07-25 15:40:35 -0400624 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000625}
626
Chris Masond3977122009-01-05 21:25:51 -0500627static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400628 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500629 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400630{
Chris Masond3977122009-01-05 21:25:51 -0500631 struct inode *inode;
632 struct dentry *root_dentry;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400633 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400634 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400635 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400636
637 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400638 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400639 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500640 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530641 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500642 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400643 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400644#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400645 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400646#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400647
Chris Masondfe25022008-05-13 13:46:40 -0400648 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400649
Yane58ca022008-04-01 11:21:34 -0400650 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400651 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400652 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400653 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400654 sb->s_fs_info = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400655
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400656 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
657 key.type = BTRFS_INODE_ITEM_KEY;
658 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000659 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400660 if (IS_ERR(inode)) {
661 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400662 goto fail_close;
663 }
Chris Mason2e635a22007-03-21 11:12:56 -0400664
Chris Masone20d96d2007-03-22 12:13:20 -0400665 root_dentry = d_alloc_root(inode);
666 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400667 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400668 err = -ENOMEM;
669 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400670 }
Josef Bacik58176a92007-08-29 15:47:34 -0400671
Chris Masone20d96d2007-03-22 12:13:20 -0400672 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500673
Chris Mason6885f302008-02-20 16:11:05 -0500674 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600675 cleancache_init_fs(sb);
Chris Mason2e635a22007-03-21 11:12:56 -0400676 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400677
Chris Mason39279cc2007-06-12 06:35:45 -0400678fail_close:
679 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400680 return err;
681}
682
Sage Weil6bf13c02008-06-10 10:07:39 -0400683int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400684{
685 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400686 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400687 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400688
liubo1abe9b82011-03-24 11:18:59 +0000689 trace_btrfs_sync_fs(wait);
690
Chris Masond561c022007-03-23 19:47:49 -0400691 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400692 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400693 return 0;
694 }
Chris Mason771ed682008-11-06 22:02:51 -0500695
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000696 btrfs_start_delalloc_inodes(root, 0);
697 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500698
Yan, Zhenga22285a2010-05-16 10:48:46 -0400699 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000700 if (IS_ERR(trans))
701 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400702 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400703 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400704}
705
Eric Parisa9572a12009-04-02 16:46:06 -0400706static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
707{
708 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
709 struct btrfs_fs_info *info = root->fs_info;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000710 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400711
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");
Eric Parisa9572a12009-04-02 16:46:06 -0400720 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700721 seq_printf(seq, ",max_inline=%llu",
722 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400723 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700724 seq_printf(seq, ",alloc_start=%llu",
725 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400726 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);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000729 if (btrfs_test_opt(root, COMPRESS)) {
730 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
731 compress_type = "zlib";
732 else
733 compress_type = "lzo";
734 if (btrfs_test_opt(root, FORCE_COMPRESS))
735 seq_printf(seq, ",compress-force=%s", compress_type);
736 else
737 seq_printf(seq, ",compress=%s", compress_type);
738 }
Chris Masonc289811c2009-06-10 09:51:32 -0400739 if (btrfs_test_opt(root, NOSSD))
740 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400741 if (btrfs_test_opt(root, SSD_SPREAD))
742 seq_puts(seq, ",ssd_spread");
743 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400744 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400745 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400746 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400747 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400748 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000749 if (btrfs_test_opt(root, DISCARD))
750 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400751 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
752 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000753 if (btrfs_test_opt(root, SPACE_CACHE))
754 seq_puts(seq, ",space_cache");
Josef Bacik73bc1872011-10-03 14:07:49 -0400755 else
David Sterba89655932011-11-11 10:14:57 -0500756 seq_puts(seq, ",nospace_cache");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000757 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");
David Sterba0942caa2011-06-28 15:10:37 +0000761 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");
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200767 if (btrfs_test_opt(root, SKIP_BALANCE))
768 seq_puts(seq, ",skip_balance");
Eric Parisa9572a12009-04-02 16:46:06 -0400769 return 0;
770}
771
Chris Masona061fc82008-05-07 11:43:44 -0400772static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400773{
Josef Bacik450ba0e2010-11-19 14:59:15 -0500774 struct btrfs_root *test_root = data;
Chris Masona061fc82008-05-07 11:43:44 -0400775 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400776
Ian Kent619c8c72010-11-22 02:21:38 +0000777 /*
778 * If this super block is going away, return false as it
779 * can't match as an existing super block.
780 */
781 if (!atomic_read(&s->s_active))
782 return 0;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500783 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400784}
785
Josef Bacik450ba0e2010-11-19 14:59:15 -0500786static int btrfs_set_super(struct super_block *s, void *data)
787{
788 s->s_fs_info = data;
789
790 return set_anon_super(s, data);
791}
792
Josef Bacik830c4ad2011-07-25 15:55:42 -0400793/*
David Sterbaf9d9ef62011-09-29 13:11:33 +0200794 * subvolumes are identified by ino 256
795 */
796static inline int is_subvolume_inode(struct inode *inode)
797{
798 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
799 return 1;
800 return 0;
801}
802
803/*
Josef Bacik830c4ad2011-07-25 15:55:42 -0400804 * This will strip out the subvol=%s argument for an argument string and add
805 * subvolid=0 to make sure we get the actual tree root for path walking to the
806 * subvol we want.
807 */
808static char *setup_root_args(char *args)
809{
810 unsigned copied = 0;
811 unsigned len = strlen(args) + 2;
812 char *pos;
813 char *ret;
814
815 /*
816 * We need the same args as before, but minus
817 *
818 * subvol=a
819 *
820 * and add
821 *
822 * subvolid=0
823 *
824 * which is a difference of 2 characters, so we allocate strlen(args) +
825 * 2 characters.
826 */
827 ret = kzalloc(len * sizeof(char), GFP_NOFS);
828 if (!ret)
829 return NULL;
830 pos = strstr(args, "subvol=");
831
832 /* This shouldn't happen, but just in case.. */
833 if (!pos) {
834 kfree(ret);
835 return NULL;
836 }
837
838 /*
839 * The subvol=<> arg is not at the front of the string, copy everybody
840 * up to that into ret.
841 */
842 if (pos != args) {
843 *pos = '\0';
844 strcpy(ret, args);
845 copied += strlen(args);
846 pos++;
847 }
848
849 strncpy(ret + copied, "subvolid=0", len - copied);
850
851 /* Length of subvolid=0 */
852 copied += 10;
853
854 /*
855 * If there is no , after the subvol= option then we know there's no
856 * other options and we can just return.
857 */
858 pos = strchr(pos, ',');
859 if (!pos)
860 return ret;
861
862 /* Copy the rest of the arguments into our buffer */
863 strncpy(ret + copied, pos, len - copied);
864 copied += strlen(pos);
865
866 return ret;
867}
868
869static struct dentry *mount_subvol(const char *subvol_name, int flags,
870 const char *device_name, char *data)
871{
Josef Bacik830c4ad2011-07-25 15:55:42 -0400872 struct dentry *root;
873 struct vfsmount *mnt;
Josef Bacik830c4ad2011-07-25 15:55:42 -0400874 char *newargs;
Josef Bacik830c4ad2011-07-25 15:55:42 -0400875
876 newargs = setup_root_args(data);
877 if (!newargs)
878 return ERR_PTR(-ENOMEM);
879 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
880 newargs);
881 kfree(newargs);
882 if (IS_ERR(mnt))
883 return ERR_CAST(mnt);
884
Al Viroea441d12011-11-16 21:43:59 -0500885 root = mount_subtree(mnt, subvol_name);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400886
Al Viroea441d12011-11-16 21:43:59 -0500887 if (!IS_ERR(root) && !is_subvolume_inode(root->d_inode)) {
888 struct super_block *s = root->d_sb;
889 dput(root);
890 root = ERR_PTR(-EINVAL);
891 deactivate_locked_super(s);
David Sterbaf9d9ef62011-09-29 13:11:33 +0200892 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
893 subvol_name);
David Sterbaf9d9ef62011-09-29 13:11:33 +0200894 }
895
Josef Bacik830c4ad2011-07-25 15:55:42 -0400896 return root;
897}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500898
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400899/*
900 * Find a superblock for the given device / mount point.
901 *
902 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
903 * for multiple device setup. Make sure to keep it in sync.
904 */
Al Viro061dbc62010-07-26 16:21:33 +0400905static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200906 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400907{
908 struct block_device *bdev = NULL;
909 struct super_block *s;
910 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400911 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500912 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500913 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000914 char *subvol_name = NULL;
915 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000916 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400917 int error = 0;
918
Christoph Hellwig97288f22008-12-02 06:36:09 -0500919 if (!(flags & MS_RDONLY))
920 mode |= FMODE_WRITE;
921
922 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000923 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000924 &subvol_rootid, &fs_devices);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200925 if (error) {
926 kfree(subvol_name);
Al Viro061dbc62010-07-26 16:21:33 +0400927 return ERR_PTR(error);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200928 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400929
Josef Bacik830c4ad2011-07-25 15:55:42 -0400930 if (subvol_name) {
931 root = mount_subvol(subvol_name, flags, device_name, data);
932 kfree(subvol_name);
933 return root;
934 }
935
David Sterba306e16c2011-04-19 14:29:38 +0200936 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400937 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400938 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400939
Josef Bacik450ba0e2010-11-19 14:59:15 -0500940 /*
941 * Setup a dummy root and fs_info for test/set super. This is because
942 * we don't actually fill this stuff out until open_ctree, but we need
943 * it for searching for existing supers, so this lets us do that and
944 * then open_ctree will properly initialize everything later.
945 */
946 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200947 if (!fs_info)
948 return ERR_PTR(-ENOMEM);
949
950 fs_info->tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
951 if (!fs_info->tree_root) {
slyich@gmail.com45ea6092011-11-07 16:08:01 -0500952 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200953 goto error_fs_info;
slyich@gmail.com45ea6092011-11-07 16:08:01 -0500954 }
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200955 fs_info->tree_root->fs_info = fs_info;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500956 fs_info->fs_devices = fs_devices;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500957
David Sterba6c417612011-04-13 15:41:04 +0200958 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
959 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
960 if (!fs_info->super_copy || !fs_info->super_for_commit) {
961 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200962 goto error_fs_info;
963 }
964
965 error = btrfs_open_devices(fs_devices, mode, fs_type);
966 if (error)
967 goto error_fs_info;
968
969 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
970 error = -EACCES;
David Sterba6c417612011-04-13 15:41:04 +0200971 goto error_close_devices;
972 }
973
Chris Masondfe25022008-05-13 13:46:40 -0400974 bdev = fs_devices->latest_bdev;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200975 s = sget(fs_type, btrfs_test_super, btrfs_set_super,
976 fs_info->tree_root);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400977 if (IS_ERR(s)) {
978 error = PTR_ERR(s);
979 goto error_close_devices;
980 }
Yan4b82d6e2007-08-29 09:11:44 -0400981
982 if (s->s_root) {
983 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400984 deactivate_locked_super(s);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200985 error = -EBUSY;
986 goto error_close_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400987 }
988
Yan Zheng2b820322008-11-17 21:11:30 -0500989 btrfs_close_devices(fs_devices);
David Sterba6c417612011-04-13 15:41:04 +0200990 free_fs_info(fs_info);
Yan4b82d6e2007-08-29 09:11:44 -0400991 } else {
992 char b[BDEVNAME_SIZE];
993
Al Viro9e1f1de2011-06-03 18:24:58 -0400994 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -0400995 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Ilya Dryomov5f524442011-10-13 00:20:43 +0300996 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400997 error = btrfs_fill_super(s, fs_devices, data,
998 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400999 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -04001000 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -04001001 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -04001002 }
1003
1004 s->s_flags |= MS_ACTIVE;
1005 }
1006
Josef Bacik830c4ad2011-07-25 15:55:42 -04001007 root = get_default_root(s, subvol_objectid);
1008 if (IS_ERR(root)) {
1009 deactivate_locked_super(s);
1010 return root;
Yan4b82d6e2007-08-29 09:11:44 -04001011 }
1012
Al Viro061dbc62010-07-26 16:21:33 +04001013 return root;
Yan4b82d6e2007-08-29 09:11:44 -04001014
Yan Zhengc146afa2008-11-12 14:34:12 -05001015error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -04001016 btrfs_close_devices(fs_devices);
Ilya Dryomov04d21a22011-11-09 14:41:22 +02001017error_fs_info:
David Sterba6c417612011-04-13 15:41:04 +02001018 free_fs_info(fs_info);
Al Viro061dbc62010-07-26 16:21:33 +04001019 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -04001020}
Chris Mason2e635a22007-03-21 11:12:56 -04001021
Yan Zhengc146afa2008-11-12 14:34:12 -05001022static int btrfs_remount(struct super_block *sb, int *flags, char *data)
1023{
1024 struct btrfs_root *root = btrfs_sb(sb);
1025 int ret;
1026
Chris Masonb2880522009-02-12 09:37:35 -05001027 ret = btrfs_parse_options(root, data);
1028 if (ret)
1029 return -EINVAL;
1030
Yan Zhengc146afa2008-11-12 14:34:12 -05001031 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
1032 return 0;
1033
1034 if (*flags & MS_RDONLY) {
1035 sb->s_flags |= MS_RDONLY;
1036
1037 ret = btrfs_commit_super(root);
1038 WARN_ON(ret);
1039 } else {
Yan Zheng2b820322008-11-17 21:11:30 -05001040 if (root->fs_info->fs_devices->rw_devices == 0)
1041 return -EACCES;
1042
David Sterba6c417612011-04-13 15:41:04 +02001043 if (btrfs_super_log_root(root->fs_info->super_copy) != 0)
Yan Zhengc146afa2008-11-12 14:34:12 -05001044 return -EINVAL;
1045
Yan, Zhengd68fc572010-05-16 10:49:58 -04001046 ret = btrfs_cleanup_fs_roots(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05001047 WARN_ON(ret);
1048
Yan, Zhengd68fc572010-05-16 10:49:58 -04001049 /* recover relocation */
1050 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -05001051 WARN_ON(ret);
1052
1053 sb->s_flags &= ~MS_RDONLY;
1054 }
1055
1056 return 0;
1057}
1058
Arne Jansenbcd53742011-04-12 10:43:21 +02001059/* Used to sort the devices by max_avail(descending sort) */
1060static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1061 const void *dev_info2)
1062{
1063 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1064 ((struct btrfs_device_info *)dev_info2)->max_avail)
1065 return -1;
1066 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1067 ((struct btrfs_device_info *)dev_info2)->max_avail)
1068 return 1;
1069 else
1070 return 0;
1071}
1072
1073/*
1074 * sort the devices by max_avail, in which max free extent size of each device
1075 * is stored.(Descending Sort)
1076 */
1077static inline void btrfs_descending_sort_devices(
1078 struct btrfs_device_info *devices,
1079 size_t nr_devices)
1080{
1081 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1082 btrfs_cmp_device_free_bytes, NULL);
1083}
1084
Miao Xie6d07bce2011-01-05 10:07:31 +00001085/*
1086 * The helper to calc the free space on the devices that can be used to store
1087 * file data.
1088 */
1089static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1090{
1091 struct btrfs_fs_info *fs_info = root->fs_info;
1092 struct btrfs_device_info *devices_info;
1093 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1094 struct btrfs_device *device;
1095 u64 skip_space;
1096 u64 type;
1097 u64 avail_space;
1098 u64 used_space;
1099 u64 min_stripe_size;
Miao Xie39fb26c2011-12-14 20:12:02 -05001100 int min_stripes = 1, num_stripes = 1;
Miao Xie6d07bce2011-01-05 10:07:31 +00001101 int i = 0, nr_devices;
1102 int ret;
1103
Li Zefanb772a862011-11-28 16:43:00 +08001104 nr_devices = fs_info->fs_devices->open_devices;
Miao Xie6d07bce2011-01-05 10:07:31 +00001105 BUG_ON(!nr_devices);
1106
1107 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1108 GFP_NOFS);
1109 if (!devices_info)
1110 return -ENOMEM;
1111
1112 /* calc min stripe number for data space alloction */
1113 type = btrfs_get_alloc_profile(root, 1);
Miao Xie39fb26c2011-12-14 20:12:02 -05001114 if (type & BTRFS_BLOCK_GROUP_RAID0) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001115 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001116 num_stripes = nr_devices;
1117 } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001118 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001119 num_stripes = 2;
1120 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001121 min_stripes = 4;
Miao Xie39fb26c2011-12-14 20:12:02 -05001122 num_stripes = 4;
1123 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001124
1125 if (type & BTRFS_BLOCK_GROUP_DUP)
1126 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1127 else
1128 min_stripe_size = BTRFS_STRIPE_LEN;
1129
Li Zefanb772a862011-11-28 16:43:00 +08001130 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1131 if (!device->in_fs_metadata || !device->bdev)
Miao Xie6d07bce2011-01-05 10:07:31 +00001132 continue;
1133
1134 avail_space = device->total_bytes - device->bytes_used;
1135
1136 /* align with stripe_len */
1137 do_div(avail_space, BTRFS_STRIPE_LEN);
1138 avail_space *= BTRFS_STRIPE_LEN;
1139
1140 /*
1141 * In order to avoid overwritting the superblock on the drive,
1142 * btrfs starts at an offset of at least 1MB when doing chunk
1143 * allocation.
1144 */
1145 skip_space = 1024 * 1024;
1146
1147 /* user can set the offset in fs_info->alloc_start. */
1148 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1149 device->total_bytes)
1150 skip_space = max(fs_info->alloc_start, skip_space);
1151
1152 /*
1153 * btrfs can not use the free space in [0, skip_space - 1],
1154 * we must subtract it from the total. In order to implement
1155 * it, we account the used space in this range first.
1156 */
1157 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1158 &used_space);
1159 if (ret) {
1160 kfree(devices_info);
1161 return ret;
1162 }
1163
1164 /* calc the free space in [0, skip_space - 1] */
1165 skip_space -= used_space;
1166
1167 /*
1168 * we can use the free space in [0, skip_space - 1], subtract
1169 * it from the total.
1170 */
1171 if (avail_space && avail_space >= skip_space)
1172 avail_space -= skip_space;
1173 else
1174 avail_space = 0;
1175
1176 if (avail_space < min_stripe_size)
1177 continue;
1178
1179 devices_info[i].dev = device;
1180 devices_info[i].max_avail = avail_space;
1181
1182 i++;
1183 }
1184
1185 nr_devices = i;
1186
1187 btrfs_descending_sort_devices(devices_info, nr_devices);
1188
1189 i = nr_devices - 1;
1190 avail_space = 0;
1191 while (nr_devices >= min_stripes) {
Miao Xie39fb26c2011-12-14 20:12:02 -05001192 if (num_stripes > nr_devices)
1193 num_stripes = nr_devices;
1194
Miao Xie6d07bce2011-01-05 10:07:31 +00001195 if (devices_info[i].max_avail >= min_stripe_size) {
1196 int j;
1197 u64 alloc_size;
1198
Miao Xie39fb26c2011-12-14 20:12:02 -05001199 avail_space += devices_info[i].max_avail * num_stripes;
Miao Xie6d07bce2011-01-05 10:07:31 +00001200 alloc_size = devices_info[i].max_avail;
Miao Xie39fb26c2011-12-14 20:12:02 -05001201 for (j = i + 1 - num_stripes; j <= i; j++)
Miao Xie6d07bce2011-01-05 10:07:31 +00001202 devices_info[j].max_avail -= alloc_size;
1203 }
1204 i--;
1205 nr_devices--;
1206 }
1207
1208 kfree(devices_info);
1209 *free_bytes = avail_space;
1210 return 0;
1211}
1212
Chris Mason8fd17792007-04-19 21:01:03 -04001213static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1214{
1215 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
David Sterba6c417612011-04-13 15:41:04 +02001216 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001217 struct list_head *head = &root->fs_info->space_info;
1218 struct btrfs_space_info *found;
1219 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001220 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001221 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d03632e2008-08-18 12:01:52 +01001222 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001223 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001224
Miao Xie6d07bce2011-01-05 10:07:31 +00001225 /* holding chunk_muext to avoid allocating new chunks */
1226 mutex_lock(&root->fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001227 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001228 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001229 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1230 total_free_data += found->disk_total - found->disk_used;
1231 total_free_data -=
1232 btrfs_account_ro_block_groups_free_space(found);
1233 }
1234
Yan, Zhengb742bb82010-05-16 10:46:24 -04001235 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001236 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001237 rcu_read_unlock();
1238
Chris Mason8fd17792007-04-19 21:01:03 -04001239 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001240 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001241 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001242 buf->f_bsize = dentry->d_sb->s_blocksize;
1243 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001244 buf->f_bavail = total_free_data;
1245 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1246 if (ret) {
1247 mutex_unlock(&root->fs_info->chunk_mutex);
1248 return ret;
1249 }
1250 buf->f_bavail += total_free_data;
1251 buf->f_bavail = buf->f_bavail >> bits;
1252 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001253
David Woodhouse9d03632e2008-08-18 12:01:52 +01001254 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001255 because we want the fsid to come out the same whether mounted
David Woodhouse9d03632e2008-08-18 12:01:52 +01001256 on a big-endian or little-endian host */
1257 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1258 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001259 /* Mask in the root object ID too, to disambiguate subvols */
1260 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1261 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1262
Chris Mason8fd17792007-04-19 21:01:03 -04001263 return 0;
1264}
Chris Masonb5133862007-04-24 11:52:22 -04001265
Chris Mason2e635a22007-03-21 11:12:56 -04001266static struct file_system_type btrfs_fs_type = {
1267 .owner = THIS_MODULE,
1268 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001269 .mount = btrfs_mount,
Chris Masona061fc82008-05-07 11:43:44 -04001270 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001271 .fs_flags = FS_REQUIRES_DEV,
1272};
Chris Masona9218f62008-03-24 15:02:04 -04001273
Chris Masond352ac62008-09-29 15:18:18 -04001274/*
1275 * used by btrfsctl to scan devices when no FS is mounted
1276 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001277static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1278 unsigned long arg)
1279{
1280 struct btrfs_ioctl_vol_args *vol;
1281 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001282 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001283
Chris Masone441d542009-01-05 16:57:23 -05001284 if (!capable(CAP_SYS_ADMIN))
1285 return -EPERM;
1286
Li Zefandae7b662009-04-08 15:06:54 +08001287 vol = memdup_user((void __user *)arg, sizeof(*vol));
1288 if (IS_ERR(vol))
1289 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001290
Chris Mason8a4b83c2008-03-24 15:02:07 -04001291 switch (cmd) {
1292 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001293 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001294 &btrfs_fs_type, &fs_devices);
1295 break;
1296 }
Li Zefandae7b662009-04-08 15:06:54 +08001297
Chris Mason8a4b83c2008-03-24 15:02:07 -04001298 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001299 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001300}
1301
Linus Torvalds01762602009-01-10 06:09:52 -08001302static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001303{
1304 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001305 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1306 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001307 return 0;
Yaned0dab62008-01-22 12:46:56 -05001308}
1309
Linus Torvalds01762602009-01-10 06:09:52 -08001310static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001311{
1312 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001313 mutex_unlock(&root->fs_info->cleaner_mutex);
1314 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001315 return 0;
Yaned0dab62008-01-22 12:46:56 -05001316}
Chris Mason2e635a22007-03-21 11:12:56 -04001317
Josef Bacik22c44fe2011-11-30 10:45:38 -05001318static void btrfs_fs_dirty_inode(struct inode *inode, int flags)
1319{
1320 int ret;
1321
1322 ret = btrfs_dirty_inode(inode);
1323 if (ret)
1324 printk_ratelimited(KERN_ERR "btrfs: fail to dirty inode %Lu "
1325 "error %d\n", btrfs_ino(inode), ret);
1326}
1327
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001328static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001329 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001330 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001331 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001332 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001333 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001334 .write_inode = btrfs_write_inode,
Josef Bacik22c44fe2011-11-30 10:45:38 -05001335 .dirty_inode = btrfs_fs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001336 .alloc_inode = btrfs_alloc_inode,
1337 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001338 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001339 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001340 .freeze_fs = btrfs_freeze,
1341 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001342};
Chris Masona9218f62008-03-24 15:02:04 -04001343
1344static const struct file_operations btrfs_ctl_fops = {
1345 .unlocked_ioctl = btrfs_control_ioctl,
1346 .compat_ioctl = btrfs_control_ioctl,
1347 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001348 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001349};
1350
1351static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001352 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001353 .name = "btrfs-control",
1354 .fops = &btrfs_ctl_fops
1355};
1356
Kay Sievers578454f2010-05-20 18:07:20 +02001357MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1358MODULE_ALIAS("devname:btrfs-control");
1359
Chris Masona9218f62008-03-24 15:02:04 -04001360static int btrfs_interface_init(void)
1361{
1362 return misc_register(&btrfs_misc);
1363}
1364
Christoph Hellwigb2950862008-12-02 09:54:17 -05001365static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001366{
1367 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001368 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001369}
1370
Chris Mason2e635a22007-03-21 11:12:56 -04001371static int __init init_btrfs_fs(void)
1372{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001373 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001374
1375 err = btrfs_init_sysfs();
1376 if (err)
1377 return err;
1378
Li Zefan261507a02010-12-17 14:21:50 +08001379 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001380 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001381 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001382
Li Zefan261507a02010-12-17 14:21:50 +08001383 err = btrfs_init_cachep();
1384 if (err)
1385 goto free_compress;
1386
Chris Masond1310b22008-01-24 16:13:08 -05001387 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001388 if (err)
1389 goto free_cachep;
1390
Chris Masond1310b22008-01-24 16:13:08 -05001391 err = extent_map_init();
1392 if (err)
1393 goto free_extent_io;
1394
Miao Xie16cdcec2011-04-22 18:12:22 +08001395 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001396 if (err)
1397 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001398
Miao Xie16cdcec2011-04-22 18:12:22 +08001399 err = btrfs_interface_init();
1400 if (err)
1401 goto free_delayed_inode;
1402
Chris Masona9218f62008-03-24 15:02:04 -04001403 err = register_filesystem(&btrfs_fs_type);
1404 if (err)
1405 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001406
Jan Schmidte565d4b2012-03-23 17:14:20 +01001407 btrfs_init_lockdep();
1408
Chris Masonb3c3da72008-07-23 12:12:13 -04001409 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001410 return 0;
1411
Chris Masona9218f62008-03-24 15:02:04 -04001412unregister_ioctl:
1413 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001414free_delayed_inode:
1415 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001416free_extent_map:
1417 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001418free_extent_io:
1419 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001420free_cachep:
1421 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001422free_compress:
1423 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001424free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001425 btrfs_exit_sysfs();
1426 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001427}
1428
1429static void __exit exit_btrfs_fs(void)
1430{
Chris Mason39279cc2007-06-12 06:35:45 -04001431 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001432 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001433 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001434 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001435 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001436 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001437 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001438 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001439 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001440}
1441
1442module_init(init_btrfs_fs)
1443module_exit(exit_btrfs_fs)
1444
1445MODULE_LICENSE("GPL");