blob: 934789f7fd3341408dea71619e2563ffd2a078ab [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050044#include "compat.h"
Miao Xie16cdcec2011-04-22 18:12:22 +080045#include "delayed-inode.h"
Chris Mason2e635a22007-03-21 11:12:56 -040046#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040047#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040048#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040049#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040050#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040051#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050052#include "xattr.h"
Chris Mason8a4b83c2008-03-24 15:02:07 -040053#include "volumes.h"
Chris Masonb3c3da72008-07-23 12:12:13 -040054#include "version.h"
Balaji Raobe6e8dc2008-07-21 02:01:56 +053055#include "export.h"
Chris Masonc8b97812008-10-29 14:49:59 -040056#include "compression.h"
Chris Mason2e635a22007-03-21 11:12:56 -040057
liubo1abe9b82011-03-24 11:18:59 +000058#define CREATE_TRACE_POINTS
59#include <trace/events/btrfs.h>
60
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070061static const struct super_operations btrfs_super_ops;
Josef Bacik830c4ad2011-07-25 15:55:42 -040062static struct file_system_type btrfs_fs_type;
Chris Masone20d96d2007-03-22 12:13:20 -040063
liuboacce9522011-01-06 19:30:25 +080064static const char *btrfs_decode_error(struct btrfs_fs_info *fs_info, int errno,
65 char nbuf[16])
66{
67 char *errstr = NULL;
68
69 switch (errno) {
70 case -EIO:
71 errstr = "IO failure";
72 break;
73 case -ENOMEM:
74 errstr = "Out of memory";
75 break;
76 case -EROFS:
77 errstr = "Readonly filesystem";
78 break;
79 default:
80 if (nbuf) {
81 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
82 errstr = nbuf;
83 }
84 break;
85 }
86
87 return errstr;
88}
89
90static void __save_error_info(struct btrfs_fs_info *fs_info)
91{
92 /*
93 * today we only save the error info into ram. Long term we'll
94 * also send it down to the disk
95 */
96 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
97}
98
99/* NOTE:
100 * We move write_super stuff at umount in order to avoid deadlock
101 * for umount hold all lock.
102 */
103static void save_error_info(struct btrfs_fs_info *fs_info)
104{
105 __save_error_info(fs_info);
106}
107
108/* btrfs handle error by forcing the filesystem readonly */
109static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
110{
111 struct super_block *sb = fs_info->sb;
112
113 if (sb->s_flags & MS_RDONLY)
114 return;
115
116 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
117 sb->s_flags |= MS_RDONLY;
118 printk(KERN_INFO "btrfs is forced readonly\n");
119 }
120}
121
122/*
123 * __btrfs_std_error decodes expected errors from the caller and
124 * invokes the approciate error response.
125 */
126void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
127 unsigned int line, int errno)
128{
129 struct super_block *sb = fs_info->sb;
130 char nbuf[16];
131 const char *errstr;
132
133 /*
134 * Special case: if the error is EROFS, and we're already
135 * under MS_RDONLY, then it is safe here.
136 */
137 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
138 return;
139
140 errstr = btrfs_decode_error(fs_info, errno, nbuf);
141 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
142 sb->s_id, function, line, errstr);
143 save_error_info(fs_info);
144
145 btrfs_handle_error(fs_info);
146}
147
Chris Masond3977122009-01-05 21:25:51 -0500148static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -0400149{
150 struct btrfs_root *root = btrfs_sb(sb);
151 int ret;
152
153 ret = close_ctree(root);
Chris Masone20d96d2007-03-22 12:13:20 -0400154 sb->s_fs_info = NULL;
Andi Kleen559af822010-10-29 15:14:37 -0400155
156 (void)ret; /* FIXME: need to fix VFS to return error? */
Chris Masone20d96d2007-03-22 12:13:20 -0400157}
Chris Mason2e635a22007-03-21 11:12:56 -0400158
Chris Mason95e05282007-08-29 09:11:44 -0400159enum {
Josef Bacik73f73412009-12-04 17:38:27 +0000160 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
Josef Bacik287a0ab2010-03-19 18:07:23 +0000161 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,
Li Zefan261507a02010-12-17 14:21:50 +0800163 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
164 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
Chris Mason91435652011-02-16 13:10:41 -0500165 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
Chris Mason4b9465c2011-06-03 09:36:29 -0400166 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag,
167 Opt_inode_cache, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -0400168};
169
170static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -0400171 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -0400172 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +0000173 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400174 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -0500175 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -0500176 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -0500177 {Opt_nobarrier, "nobarrier"},
Chris Mason6f568d32008-01-29 16:03:38 -0500178 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -0500179 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -0400180 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -0400181 {Opt_compress, "compress"},
Li Zefan261507a02010-12-17 14:21:50 +0800182 {Opt_compress_type, "compress=%s"},
Chris Masona555f812010-01-28 16:18:15 -0500183 {Opt_compress_force, "compress-force"},
Li Zefan261507a02010-12-17 14:21:50 +0800184 {Opt_compress_force_type, "compress-force=%s"},
Chris Masone18e4802008-01-18 10:54:22 -0500185 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -0400186 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -0400187 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400188 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -0400189 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -0400190 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -0400191 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400192 {Opt_discard, "discard"},
Josef Bacik0af3d002010-06-21 14:48:16 -0400193 {Opt_space_cache, "space_cache"},
Josef Bacik88c2ba32010-09-21 14:21:34 -0400194 {Opt_clear_cache, "clear_cache"},
Sage Weil4260f7c2010-10-29 15:46:43 -0400195 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
Chris Mason91435652011-02-16 13:10:41 -0500196 {Opt_enospc_debug, "enospc_debug"},
Xin Zhonge15d0542011-04-06 07:33:51 +0000197 {Opt_subvolrootid, "subvolrootid=%d"},
Chris Mason4cb53002011-05-24 15:35:30 -0400198 {Opt_defrag, "autodefrag"},
Chris Mason4b9465c2011-06-03 09:36:29 -0400199 {Opt_inode_cache, "inode_cache"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400200 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400201};
202
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400203/*
204 * Regular mount options parser. Everything that is needed only when
205 * reading in a new superblock is parsed here.
206 */
207int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400208{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400209 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400210 substring_t args[MAX_OPT_ARGS];
Josef Bacikda495ec2010-02-25 20:38:35 +0000211 char *p, *num, *orig;
Chris Mason4543df72008-06-11 21:47:56 -0400212 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000213 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800214 char *compress_type;
215 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500216
Chris Mason95e05282007-08-29 09:11:44 -0400217 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400218 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400219
Chris Masonbe20aa92007-12-17 20:14:01 -0500220 /*
221 * strsep changes the string, duplicate it because parse_options
222 * gets called twice
223 */
224 options = kstrdup(options, GFP_NOFS);
225 if (!options)
226 return -ENOMEM;
227
Josef Bacikda495ec2010-02-25 20:38:35 +0000228 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500229
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400230 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400231 int token;
232 if (!*p)
233 continue;
234
235 token = match_token(p, tokens, args);
236 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400237 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400238 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
239 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400240 break;
Chris Mason95e05282007-08-29 09:11:44 -0400241 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000242 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000243 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400244 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400245 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400246 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400247 * and can be happily ignored here.
248 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500249 break;
250 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400251 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400252 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500253 break;
254 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400255 printk(KERN_INFO "btrfs: setting nodatacow\n");
256 btrfs_set_opt(info->mount_opt, NODATACOW);
257 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400258 break;
Chris Masona555f812010-01-28 16:18:15 -0500259 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800260 case Opt_compress_force_type:
261 compress_force = true;
262 case Opt_compress:
263 case Opt_compress_type:
264 if (token == Opt_compress ||
265 token == Opt_compress_force ||
266 strcmp(args[0].from, "zlib") == 0) {
267 compress_type = "zlib";
268 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800269 } else if (strcmp(args[0].from, "lzo") == 0) {
270 compress_type = "lzo";
271 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800272 } else {
273 ret = -EINVAL;
274 goto out;
275 }
276
Chris Masona555f812010-01-28 16:18:15 -0500277 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800278 if (compress_force) {
279 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
280 pr_info("btrfs: force %s compression\n",
281 compress_type);
282 } else
283 pr_info("btrfs: use %s compression\n",
284 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500285 break;
Chris Masone18e4802008-01-18 10:54:22 -0500286 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400287 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
288 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500289 break;
Chris Mason451d7582009-06-09 20:28:34 -0400290 case Opt_ssd_spread:
291 printk(KERN_INFO "btrfs: use spread ssd "
292 "allocation scheme\n");
293 btrfs_set_opt(info->mount_opt, SSD);
294 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
295 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400296 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400297 printk(KERN_INFO "btrfs: not using ssd allocation "
298 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400299 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400300 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400301 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400302 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500303 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400304 printk(KERN_INFO "btrfs: turning off barriers\n");
305 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500306 break;
Chris Mason4543df72008-06-11 21:47:56 -0400307 case Opt_thread_pool:
308 intarg = 0;
309 match_int(&args[0], &intarg);
310 if (intarg) {
311 info->thread_pool_size = intarg;
312 printk(KERN_INFO "btrfs: thread pool %d\n",
313 info->thread_pool_size);
314 }
315 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500316 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400317 num = match_strdup(&args[0]);
318 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000319 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400320 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500321
Chris Mason15ada042008-06-11 16:51:38 -0400322 if (info->max_inline) {
323 info->max_inline = max_t(u64,
324 info->max_inline,
325 root->sectorsize);
326 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400327 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700328 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500329 }
330 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500331 case Opt_alloc_start:
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->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400335 kfree(num);
336 printk(KERN_INFO
337 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700338 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500339 }
340 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400341 case Opt_noacl:
342 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
343 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400344 case Opt_notreelog:
345 printk(KERN_INFO "btrfs: disabling tree log\n");
346 btrfs_set_opt(info->mount_opt, NOTREELOG);
347 break;
Sage Weildccae992009-04-02 16:59:01 -0400348 case Opt_flushoncommit:
349 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
350 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
351 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400352 case Opt_ratio:
353 intarg = 0;
354 match_int(&args[0], &intarg);
355 if (intarg) {
356 info->metadata_ratio = intarg;
357 printk(KERN_INFO "btrfs: metadata ratio %d\n",
358 info->metadata_ratio);
359 }
360 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400361 case Opt_discard:
362 btrfs_set_opt(info->mount_opt, DISCARD);
363 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400364 case Opt_space_cache:
365 printk(KERN_INFO "btrfs: enabling disk space caching\n");
366 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000367 break;
Chris Mason4b9465c2011-06-03 09:36:29 -0400368 case Opt_inode_cache:
369 printk(KERN_INFO "btrfs: enabling inode map caching\n");
370 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
371 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400372 case Opt_clear_cache:
373 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
374 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400375 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400376 case Opt_user_subvol_rm_allowed:
377 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
378 break;
Chris Mason91435652011-02-16 13:10:41 -0500379 case Opt_enospc_debug:
380 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
381 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400382 case Opt_defrag:
383 printk(KERN_INFO "btrfs: enabling auto defrag");
384 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
385 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000386 case Opt_err:
387 printk(KERN_INFO "btrfs: unrecognized mount option "
388 "'%s'\n", p);
389 ret = -EINVAL;
390 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400391 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500392 break;
Chris Mason95e05282007-08-29 09:11:44 -0400393 }
394 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000395out:
Josef Bacikda495ec2010-02-25 20:38:35 +0000396 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000397 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400398}
399
400/*
401 * Parse mount options that are required early in the mount process.
402 *
403 * All other options will be parsed on much later in the mount process and
404 * only when we need to allocate a new super block.
405 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500406static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000407 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000408 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400409{
410 substring_t args[MAX_OPT_ARGS];
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800411 char *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400412 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000413 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400414
415 if (!options)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400416 return 0;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400417
418 /*
419 * strsep changes the string, duplicate it because parse_options
420 * gets called twice
421 */
422 opts = kstrdup(options, GFP_KERNEL);
423 if (!opts)
424 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800425 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400426
427 while ((p = strsep(&opts, ",")) != NULL) {
428 int token;
429 if (!*p)
430 continue;
431
432 token = match_token(p, tokens, args);
433 switch (token) {
434 case Opt_subvol:
435 *subvol_name = match_strdup(&args[0]);
436 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000437 case Opt_subvolid:
438 intarg = 0;
Josef Bacik4849f01d2009-12-14 19:18:38 +0000439 error = match_int(&args[0], &intarg);
440 if (!error) {
441 /* we want the original fs_tree */
442 if (!intarg)
443 *subvol_objectid =
444 BTRFS_FS_TREE_OBJECTID;
445 else
446 *subvol_objectid = intarg;
447 }
Josef Bacik73f73412009-12-04 17:38:27 +0000448 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000449 case Opt_subvolrootid:
450 intarg = 0;
451 error = match_int(&args[0], &intarg);
452 if (!error) {
453 /* we want the original fs_tree */
454 if (!intarg)
455 *subvol_rootid =
456 BTRFS_FS_TREE_OBJECTID;
457 else
458 *subvol_rootid = intarg;
459 }
460 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400461 case Opt_device:
462 error = btrfs_scan_one_device(match_strdup(&args[0]),
463 flags, holder, fs_devices);
464 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400465 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400466 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400467 default:
468 break;
469 }
470 }
471
Josef Bacik830c4ad2011-07-25 15:55:42 -0400472out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800473 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400474 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400475}
476
Josef Bacik73f73412009-12-04 17:38:27 +0000477static struct dentry *get_default_root(struct super_block *sb,
478 u64 subvol_objectid)
479{
480 struct btrfs_root *root = sb->s_fs_info;
481 struct btrfs_root *new_root;
482 struct btrfs_dir_item *di;
483 struct btrfs_path *path;
484 struct btrfs_key location;
485 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000486 u64 dir_id;
487 int new = 0;
488
489 /*
490 * We have a specific subvol we want to mount, just setup location and
491 * go look up the root.
492 */
493 if (subvol_objectid) {
494 location.objectid = subvol_objectid;
495 location.type = BTRFS_ROOT_ITEM_KEY;
496 location.offset = (u64)-1;
497 goto find_root;
498 }
499
500 path = btrfs_alloc_path();
501 if (!path)
502 return ERR_PTR(-ENOMEM);
503 path->leave_spinning = 1;
504
505 /*
506 * Find the "default" dir item which points to the root item that we
507 * will mount by default if we haven't been given a specific subvolume
508 * to mount.
509 */
510 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
511 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000512 if (IS_ERR(di)) {
513 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000514 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000515 }
Josef Bacik73f73412009-12-04 17:38:27 +0000516 if (!di) {
517 /*
518 * Ok the default dir item isn't there. This is weird since
519 * it's always been there, but don't freak out, just try and
520 * mount to root most subvolume.
521 */
522 btrfs_free_path(path);
523 dir_id = BTRFS_FIRST_FREE_OBJECTID;
524 new_root = root->fs_info->fs_root;
525 goto setup_root;
526 }
527
528 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
529 btrfs_free_path(path);
530
531find_root:
532 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
533 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400534 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000535
536 if (btrfs_root_refs(&new_root->root_item) == 0)
537 return ERR_PTR(-ENOENT);
538
539 dir_id = btrfs_root_dirid(&new_root->root_item);
540setup_root:
541 location.objectid = dir_id;
542 location.type = BTRFS_INODE_ITEM_KEY;
543 location.offset = 0;
544
545 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000546 if (IS_ERR(inode))
547 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000548
549 /*
550 * If we're just mounting the root most subvol put the inode and return
551 * a reference to the dentry. We will have already gotten a reference
552 * to the inode in btrfs_fill_super so we're good to go.
553 */
554 if (!new && sb->s_root->d_inode == inode) {
555 iput(inode);
556 return dget(sb->s_root);
557 }
558
Josef Bacikba5b8952011-07-25 15:40:35 -0400559 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000560}
561
Chris Masond3977122009-01-05 21:25:51 -0500562static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400563 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500564 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400565{
Chris Masond3977122009-01-05 21:25:51 -0500566 struct inode *inode;
567 struct dentry *root_dentry;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400568 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400569 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400570 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400571
572 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400573 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400574 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500575 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530576 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500577 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400578 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400579#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400580 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400581#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400582
Chris Masondfe25022008-05-13 13:46:40 -0400583 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400584
Yane58ca022008-04-01 11:21:34 -0400585 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400586 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400587 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400588 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400589 sb->s_fs_info = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400590
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400591 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
592 key.type = BTRFS_INODE_ITEM_KEY;
593 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000594 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400595 if (IS_ERR(inode)) {
596 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400597 goto fail_close;
598 }
Chris Mason2e635a22007-03-21 11:12:56 -0400599
Chris Masone20d96d2007-03-22 12:13:20 -0400600 root_dentry = d_alloc_root(inode);
601 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400602 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400603 err = -ENOMEM;
604 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400605 }
Josef Bacik58176a92007-08-29 15:47:34 -0400606
Chris Masone20d96d2007-03-22 12:13:20 -0400607 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500608
Chris Mason6885f302008-02-20 16:11:05 -0500609 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600610 cleancache_init_fs(sb);
Chris Mason2e635a22007-03-21 11:12:56 -0400611 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400612
Chris Mason39279cc2007-06-12 06:35:45 -0400613fail_close:
614 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400615 return err;
616}
617
Sage Weil6bf13c02008-06-10 10:07:39 -0400618int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400619{
620 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400621 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400622 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400623
liubo1abe9b82011-03-24 11:18:59 +0000624 trace_btrfs_sync_fs(wait);
625
Chris Masond561c022007-03-23 19:47:49 -0400626 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400627 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400628 return 0;
629 }
Chris Mason771ed682008-11-06 22:02:51 -0500630
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000631 btrfs_start_delalloc_inodes(root, 0);
632 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500633
Yan, Zhenga22285a2010-05-16 10:48:46 -0400634 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000635 if (IS_ERR(trans))
636 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400637 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400638 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400639}
640
Eric Parisa9572a12009-04-02 16:46:06 -0400641static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
642{
643 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
644 struct btrfs_fs_info *info = root->fs_info;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000645 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400646
647 if (btrfs_test_opt(root, DEGRADED))
648 seq_puts(seq, ",degraded");
649 if (btrfs_test_opt(root, NODATASUM))
650 seq_puts(seq, ",nodatasum");
651 if (btrfs_test_opt(root, NODATACOW))
652 seq_puts(seq, ",nodatacow");
653 if (btrfs_test_opt(root, NOBARRIER))
654 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400655 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700656 seq_printf(seq, ",max_inline=%llu",
657 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400658 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700659 seq_printf(seq, ",alloc_start=%llu",
660 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400661 if (info->thread_pool_size != min_t(unsigned long,
662 num_online_cpus() + 2, 8))
663 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000664 if (btrfs_test_opt(root, COMPRESS)) {
665 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
666 compress_type = "zlib";
667 else
668 compress_type = "lzo";
669 if (btrfs_test_opt(root, FORCE_COMPRESS))
670 seq_printf(seq, ",compress-force=%s", compress_type);
671 else
672 seq_printf(seq, ",compress=%s", compress_type);
673 }
Chris Masonc2898112009-06-10 09:51:32 -0400674 if (btrfs_test_opt(root, NOSSD))
675 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400676 if (btrfs_test_opt(root, SSD_SPREAD))
677 seq_puts(seq, ",ssd_spread");
678 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400679 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400680 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400681 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400682 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400683 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000684 if (btrfs_test_opt(root, DISCARD))
685 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400686 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
687 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000688 if (btrfs_test_opt(root, SPACE_CACHE))
689 seq_puts(seq, ",space_cache");
690 if (btrfs_test_opt(root, CLEAR_CACHE))
691 seq_puts(seq, ",clear_cache");
692 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
693 seq_puts(seq, ",user_subvol_rm_allowed");
David Sterba0942caa2011-06-28 15:10:37 +0000694 if (btrfs_test_opt(root, ENOSPC_DEBUG))
695 seq_puts(seq, ",enospc_debug");
696 if (btrfs_test_opt(root, AUTO_DEFRAG))
697 seq_puts(seq, ",autodefrag");
698 if (btrfs_test_opt(root, INODE_MAP_CACHE))
699 seq_puts(seq, ",inode_cache");
Eric Parisa9572a12009-04-02 16:46:06 -0400700 return 0;
701}
702
Chris Masona061fc82008-05-07 11:43:44 -0400703static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400704{
Josef Bacik450ba0e2010-11-19 14:59:15 -0500705 struct btrfs_root *test_root = data;
Chris Masona061fc82008-05-07 11:43:44 -0400706 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400707
Ian Kent619c8c72010-11-22 02:21:38 +0000708 /*
709 * If this super block is going away, return false as it
710 * can't match as an existing super block.
711 */
712 if (!atomic_read(&s->s_active))
713 return 0;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500714 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400715}
716
Josef Bacik450ba0e2010-11-19 14:59:15 -0500717static int btrfs_set_super(struct super_block *s, void *data)
718{
719 s->s_fs_info = data;
720
721 return set_anon_super(s, data);
722}
723
Josef Bacik830c4ad2011-07-25 15:55:42 -0400724/*
725 * This will strip out the subvol=%s argument for an argument string and add
726 * subvolid=0 to make sure we get the actual tree root for path walking to the
727 * subvol we want.
728 */
729static char *setup_root_args(char *args)
730{
731 unsigned copied = 0;
732 unsigned len = strlen(args) + 2;
733 char *pos;
734 char *ret;
735
736 /*
737 * We need the same args as before, but minus
738 *
739 * subvol=a
740 *
741 * and add
742 *
743 * subvolid=0
744 *
745 * which is a difference of 2 characters, so we allocate strlen(args) +
746 * 2 characters.
747 */
748 ret = kzalloc(len * sizeof(char), GFP_NOFS);
749 if (!ret)
750 return NULL;
751 pos = strstr(args, "subvol=");
752
753 /* This shouldn't happen, but just in case.. */
754 if (!pos) {
755 kfree(ret);
756 return NULL;
757 }
758
759 /*
760 * The subvol=<> arg is not at the front of the string, copy everybody
761 * up to that into ret.
762 */
763 if (pos != args) {
764 *pos = '\0';
765 strcpy(ret, args);
766 copied += strlen(args);
767 pos++;
768 }
769
770 strncpy(ret + copied, "subvolid=0", len - copied);
771
772 /* Length of subvolid=0 */
773 copied += 10;
774
775 /*
776 * If there is no , after the subvol= option then we know there's no
777 * other options and we can just return.
778 */
779 pos = strchr(pos, ',');
780 if (!pos)
781 return ret;
782
783 /* Copy the rest of the arguments into our buffer */
784 strncpy(ret + copied, pos, len - copied);
785 copied += strlen(pos);
786
787 return ret;
788}
789
790static struct dentry *mount_subvol(const char *subvol_name, int flags,
791 const char *device_name, char *data)
792{
793 struct super_block *s;
794 struct dentry *root;
795 struct vfsmount *mnt;
796 struct mnt_namespace *ns_private;
797 char *newargs;
798 struct path path;
799 int error;
800
801 newargs = setup_root_args(data);
802 if (!newargs)
803 return ERR_PTR(-ENOMEM);
804 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
805 newargs);
806 kfree(newargs);
807 if (IS_ERR(mnt))
808 return ERR_CAST(mnt);
809
810 ns_private = create_mnt_ns(mnt);
811 if (IS_ERR(ns_private)) {
812 mntput(mnt);
813 return ERR_CAST(ns_private);
814 }
815
816 /*
817 * This will trigger the automount of the subvol so we can just
818 * drop the mnt we have here and return the dentry that we
819 * found.
820 */
821 error = vfs_path_lookup(mnt->mnt_root, mnt, subvol_name,
822 LOOKUP_FOLLOW, &path);
823 put_mnt_ns(ns_private);
824 if (error)
825 return ERR_PTR(error);
826
827 /* Get a ref to the sb and the dentry we found and return it */
828 s = path.mnt->mnt_sb;
829 atomic_inc(&s->s_active);
830 root = dget(path.dentry);
831 path_put(&path);
832 down_write(&s->s_umount);
833
834 return root;
835}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500836
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400837/*
838 * Find a superblock for the given device / mount point.
839 *
840 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
841 * for multiple device setup. Make sure to keep it in sync.
842 */
Al Viro061dbc62010-07-26 16:21:33 +0400843static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200844 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400845{
846 struct block_device *bdev = NULL;
847 struct super_block *s;
848 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400849 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500850 struct btrfs_root *tree_root = NULL;
851 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500852 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000853 char *subvol_name = NULL;
854 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000855 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400856 int error = 0;
857
Christoph Hellwig97288f22008-12-02 06:36:09 -0500858 if (!(flags & MS_RDONLY))
859 mode |= FMODE_WRITE;
860
861 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000862 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000863 &subvol_rootid, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400864 if (error)
Al Viro061dbc62010-07-26 16:21:33 +0400865 return ERR_PTR(error);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400866
Josef Bacik830c4ad2011-07-25 15:55:42 -0400867 if (subvol_name) {
868 root = mount_subvol(subvol_name, flags, device_name, data);
869 kfree(subvol_name);
870 return root;
871 }
872
David Sterba306e16c2011-04-19 14:29:38 +0200873 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400874 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400875 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400876
Christoph Hellwig97288f22008-12-02 06:36:09 -0500877 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400878 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400879 return ERR_PTR(error);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400880
Yan Zheng2b820322008-11-17 21:11:30 -0500881 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
882 error = -EACCES;
883 goto error_close_devices;
884 }
885
Josef Bacik450ba0e2010-11-19 14:59:15 -0500886 /*
887 * Setup a dummy root and fs_info for test/set super. This is because
888 * we don't actually fill this stuff out until open_ctree, but we need
889 * it for searching for existing supers, so this lets us do that and
890 * then open_ctree will properly initialize everything later.
891 */
892 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
893 tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
894 if (!fs_info || !tree_root) {
895 error = -ENOMEM;
896 goto error_close_devices;
897 }
898 fs_info->tree_root = tree_root;
899 fs_info->fs_devices = fs_devices;
900 tree_root->fs_info = fs_info;
901
Chris Masondfe25022008-05-13 13:46:40 -0400902 bdev = fs_devices->latest_bdev;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500903 s = sget(fs_type, btrfs_test_super, btrfs_set_super, tree_root);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400904 if (IS_ERR(s)) {
905 error = PTR_ERR(s);
906 goto error_close_devices;
907 }
Yan4b82d6e2007-08-29 09:11:44 -0400908
909 if (s->s_root) {
910 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400911 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400912 return ERR_PTR(-EBUSY);
Yan4b82d6e2007-08-29 09:11:44 -0400913 }
914
Yan Zheng2b820322008-11-17 21:11:30 -0500915 btrfs_close_devices(fs_devices);
Ian Kentbdc924b2010-12-27 16:33:15 +0800916 kfree(fs_info);
917 kfree(tree_root);
Yan4b82d6e2007-08-29 09:11:44 -0400918 } else {
919 char b[BDEVNAME_SIZE];
920
Al Viro9e1f1de2011-06-03 18:24:58 -0400921 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -0400922 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400923 error = btrfs_fill_super(s, fs_devices, data,
924 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400925 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400926 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400927 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400928 }
929
Chris Mason788f20e2008-04-28 15:29:42 -0400930 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400931 s->s_flags |= MS_ACTIVE;
932 }
933
Josef Bacik830c4ad2011-07-25 15:55:42 -0400934 root = get_default_root(s, subvol_objectid);
935 if (IS_ERR(root)) {
936 deactivate_locked_super(s);
937 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400938 }
939
Al Viro061dbc62010-07-26 16:21:33 +0400940 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400941
Yan Zhengc146afa2008-11-12 14:34:12 -0500942error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400943 btrfs_close_devices(fs_devices);
Josef Bacik450ba0e2010-11-19 14:59:15 -0500944 kfree(fs_info);
945 kfree(tree_root);
Al Viro061dbc62010-07-26 16:21:33 +0400946 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400947}
Chris Mason2e635a22007-03-21 11:12:56 -0400948
Yan Zhengc146afa2008-11-12 14:34:12 -0500949static int btrfs_remount(struct super_block *sb, int *flags, char *data)
950{
951 struct btrfs_root *root = btrfs_sb(sb);
952 int ret;
953
Chris Masonb2880522009-02-12 09:37:35 -0500954 ret = btrfs_parse_options(root, data);
955 if (ret)
956 return -EINVAL;
957
Yan Zhengc146afa2008-11-12 14:34:12 -0500958 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
959 return 0;
960
961 if (*flags & MS_RDONLY) {
962 sb->s_flags |= MS_RDONLY;
963
964 ret = btrfs_commit_super(root);
965 WARN_ON(ret);
966 } else {
Yan Zheng2b820322008-11-17 21:11:30 -0500967 if (root->fs_info->fs_devices->rw_devices == 0)
968 return -EACCES;
969
Yan Zhengc146afa2008-11-12 14:34:12 -0500970 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
971 return -EINVAL;
972
Yan, Zhengd68fc572010-05-16 10:49:58 -0400973 ret = btrfs_cleanup_fs_roots(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -0500974 WARN_ON(ret);
975
Yan, Zhengd68fc572010-05-16 10:49:58 -0400976 /* recover relocation */
977 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -0500978 WARN_ON(ret);
979
980 sb->s_flags &= ~MS_RDONLY;
981 }
982
983 return 0;
984}
985
Arne Jansenbcd53742011-04-12 10:43:21 +0200986/* Used to sort the devices by max_avail(descending sort) */
987static int btrfs_cmp_device_free_bytes(const void *dev_info1,
988 const void *dev_info2)
989{
990 if (((struct btrfs_device_info *)dev_info1)->max_avail >
991 ((struct btrfs_device_info *)dev_info2)->max_avail)
992 return -1;
993 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
994 ((struct btrfs_device_info *)dev_info2)->max_avail)
995 return 1;
996 else
997 return 0;
998}
999
1000/*
1001 * sort the devices by max_avail, in which max free extent size of each device
1002 * is stored.(Descending Sort)
1003 */
1004static inline void btrfs_descending_sort_devices(
1005 struct btrfs_device_info *devices,
1006 size_t nr_devices)
1007{
1008 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1009 btrfs_cmp_device_free_bytes, NULL);
1010}
1011
Miao Xie6d07bce2011-01-05 10:07:31 +00001012/*
1013 * The helper to calc the free space on the devices that can be used to store
1014 * file data.
1015 */
1016static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1017{
1018 struct btrfs_fs_info *fs_info = root->fs_info;
1019 struct btrfs_device_info *devices_info;
1020 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1021 struct btrfs_device *device;
1022 u64 skip_space;
1023 u64 type;
1024 u64 avail_space;
1025 u64 used_space;
1026 u64 min_stripe_size;
1027 int min_stripes = 1;
1028 int i = 0, nr_devices;
1029 int ret;
1030
1031 nr_devices = fs_info->fs_devices->rw_devices;
1032 BUG_ON(!nr_devices);
1033
1034 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1035 GFP_NOFS);
1036 if (!devices_info)
1037 return -ENOMEM;
1038
1039 /* calc min stripe number for data space alloction */
1040 type = btrfs_get_alloc_profile(root, 1);
1041 if (type & BTRFS_BLOCK_GROUP_RAID0)
1042 min_stripes = 2;
1043 else if (type & BTRFS_BLOCK_GROUP_RAID1)
1044 min_stripes = 2;
1045 else if (type & BTRFS_BLOCK_GROUP_RAID10)
1046 min_stripes = 4;
1047
1048 if (type & BTRFS_BLOCK_GROUP_DUP)
1049 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1050 else
1051 min_stripe_size = BTRFS_STRIPE_LEN;
1052
1053 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
1054 if (!device->in_fs_metadata)
1055 continue;
1056
1057 avail_space = device->total_bytes - device->bytes_used;
1058
1059 /* align with stripe_len */
1060 do_div(avail_space, BTRFS_STRIPE_LEN);
1061 avail_space *= BTRFS_STRIPE_LEN;
1062
1063 /*
1064 * In order to avoid overwritting the superblock on the drive,
1065 * btrfs starts at an offset of at least 1MB when doing chunk
1066 * allocation.
1067 */
1068 skip_space = 1024 * 1024;
1069
1070 /* user can set the offset in fs_info->alloc_start. */
1071 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1072 device->total_bytes)
1073 skip_space = max(fs_info->alloc_start, skip_space);
1074
1075 /*
1076 * btrfs can not use the free space in [0, skip_space - 1],
1077 * we must subtract it from the total. In order to implement
1078 * it, we account the used space in this range first.
1079 */
1080 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1081 &used_space);
1082 if (ret) {
1083 kfree(devices_info);
1084 return ret;
1085 }
1086
1087 /* calc the free space in [0, skip_space - 1] */
1088 skip_space -= used_space;
1089
1090 /*
1091 * we can use the free space in [0, skip_space - 1], subtract
1092 * it from the total.
1093 */
1094 if (avail_space && avail_space >= skip_space)
1095 avail_space -= skip_space;
1096 else
1097 avail_space = 0;
1098
1099 if (avail_space < min_stripe_size)
1100 continue;
1101
1102 devices_info[i].dev = device;
1103 devices_info[i].max_avail = avail_space;
1104
1105 i++;
1106 }
1107
1108 nr_devices = i;
1109
1110 btrfs_descending_sort_devices(devices_info, nr_devices);
1111
1112 i = nr_devices - 1;
1113 avail_space = 0;
1114 while (nr_devices >= min_stripes) {
1115 if (devices_info[i].max_avail >= min_stripe_size) {
1116 int j;
1117 u64 alloc_size;
1118
1119 avail_space += devices_info[i].max_avail * min_stripes;
1120 alloc_size = devices_info[i].max_avail;
1121 for (j = i + 1 - min_stripes; j <= i; j++)
1122 devices_info[j].max_avail -= alloc_size;
1123 }
1124 i--;
1125 nr_devices--;
1126 }
1127
1128 kfree(devices_info);
1129 *free_bytes = avail_space;
1130 return 0;
1131}
1132
Chris Mason8fd17792007-04-19 21:01:03 -04001133static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1134{
1135 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -04001136 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001137 struct list_head *head = &root->fs_info->space_info;
1138 struct btrfs_space_info *found;
1139 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001140 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001141 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +01001142 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001143 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001144
Miao Xie6d07bce2011-01-05 10:07:31 +00001145 /* holding chunk_muext to avoid allocating new chunks */
1146 mutex_lock(&root->fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001147 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001148 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001149 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1150 total_free_data += found->disk_total - found->disk_used;
1151 total_free_data -=
1152 btrfs_account_ro_block_groups_free_space(found);
1153 }
1154
Yan, Zhengb742bb82010-05-16 10:46:24 -04001155 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001156 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001157 rcu_read_unlock();
1158
Chris Mason8fd17792007-04-19 21:01:03 -04001159 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001160 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001161 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001162 buf->f_bsize = dentry->d_sb->s_blocksize;
1163 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001164 buf->f_bavail = total_free_data;
1165 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1166 if (ret) {
1167 mutex_unlock(&root->fs_info->chunk_mutex);
1168 return ret;
1169 }
1170 buf->f_bavail += total_free_data;
1171 buf->f_bavail = buf->f_bavail >> bits;
1172 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001173
David Woodhouse9d036322008-08-18 12:01:52 +01001174 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001175 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001176 on a big-endian or little-endian host */
1177 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1178 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001179 /* Mask in the root object ID too, to disambiguate subvols */
1180 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1181 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1182
Chris Mason8fd17792007-04-19 21:01:03 -04001183 return 0;
1184}
Chris Masonb5133862007-04-24 11:52:22 -04001185
Chris Mason2e635a22007-03-21 11:12:56 -04001186static struct file_system_type btrfs_fs_type = {
1187 .owner = THIS_MODULE,
1188 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001189 .mount = btrfs_mount,
Chris Masona061fc82008-05-07 11:43:44 -04001190 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001191 .fs_flags = FS_REQUIRES_DEV,
1192};
Chris Masona9218f62008-03-24 15:02:04 -04001193
Chris Masond352ac62008-09-29 15:18:18 -04001194/*
1195 * used by btrfsctl to scan devices when no FS is mounted
1196 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001197static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1198 unsigned long arg)
1199{
1200 struct btrfs_ioctl_vol_args *vol;
1201 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001202 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001203
Chris Masone441d542009-01-05 16:57:23 -05001204 if (!capable(CAP_SYS_ADMIN))
1205 return -EPERM;
1206
Li Zefandae7b662009-04-08 15:06:54 +08001207 vol = memdup_user((void __user *)arg, sizeof(*vol));
1208 if (IS_ERR(vol))
1209 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001210
Chris Mason8a4b83c2008-03-24 15:02:07 -04001211 switch (cmd) {
1212 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001213 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001214 &btrfs_fs_type, &fs_devices);
1215 break;
1216 }
Li Zefandae7b662009-04-08 15:06:54 +08001217
Chris Mason8a4b83c2008-03-24 15:02:07 -04001218 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001219 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001220}
1221
Linus Torvalds01762602009-01-10 06:09:52 -08001222static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001223{
1224 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001225 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1226 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001227 return 0;
Yaned0dab62008-01-22 12:46:56 -05001228}
1229
Linus Torvalds01762602009-01-10 06:09:52 -08001230static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001231{
1232 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001233 mutex_unlock(&root->fs_info->cleaner_mutex);
1234 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001235 return 0;
Yaned0dab62008-01-22 12:46:56 -05001236}
Chris Mason2e635a22007-03-21 11:12:56 -04001237
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001238static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001239 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001240 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001241 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001242 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001243 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001244 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -04001245 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001246 .alloc_inode = btrfs_alloc_inode,
1247 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001248 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001249 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001250 .freeze_fs = btrfs_freeze,
1251 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001252};
Chris Masona9218f62008-03-24 15:02:04 -04001253
1254static const struct file_operations btrfs_ctl_fops = {
1255 .unlocked_ioctl = btrfs_control_ioctl,
1256 .compat_ioctl = btrfs_control_ioctl,
1257 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001258 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001259};
1260
1261static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001262 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001263 .name = "btrfs-control",
1264 .fops = &btrfs_ctl_fops
1265};
1266
Kay Sievers578454f2010-05-20 18:07:20 +02001267MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1268MODULE_ALIAS("devname:btrfs-control");
1269
Chris Masona9218f62008-03-24 15:02:04 -04001270static int btrfs_interface_init(void)
1271{
1272 return misc_register(&btrfs_misc);
1273}
1274
Christoph Hellwigb2950862008-12-02 09:54:17 -05001275static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001276{
1277 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001278 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001279}
1280
Chris Mason2e635a22007-03-21 11:12:56 -04001281static int __init init_btrfs_fs(void)
1282{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001283 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001284
1285 err = btrfs_init_sysfs();
1286 if (err)
1287 return err;
1288
Li Zefan261507a02010-12-17 14:21:50 +08001289 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001290 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001291 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001292
Li Zefan261507a02010-12-17 14:21:50 +08001293 err = btrfs_init_cachep();
1294 if (err)
1295 goto free_compress;
1296
Chris Masond1310b22008-01-24 16:13:08 -05001297 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001298 if (err)
1299 goto free_cachep;
1300
Chris Masond1310b22008-01-24 16:13:08 -05001301 err = extent_map_init();
1302 if (err)
1303 goto free_extent_io;
1304
Miao Xie16cdcec2011-04-22 18:12:22 +08001305 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001306 if (err)
1307 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001308
Miao Xie16cdcec2011-04-22 18:12:22 +08001309 err = btrfs_interface_init();
1310 if (err)
1311 goto free_delayed_inode;
1312
Chris Masona9218f62008-03-24 15:02:04 -04001313 err = register_filesystem(&btrfs_fs_type);
1314 if (err)
1315 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001316
1317 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001318 return 0;
1319
Chris Masona9218f62008-03-24 15:02:04 -04001320unregister_ioctl:
1321 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001322free_delayed_inode:
1323 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001324free_extent_map:
1325 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001326free_extent_io:
1327 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001328free_cachep:
1329 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001330free_compress:
1331 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001332free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001333 btrfs_exit_sysfs();
1334 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001335}
1336
1337static void __exit exit_btrfs_fs(void)
1338{
Chris Mason39279cc2007-06-12 06:35:45 -04001339 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001340 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001341 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001342 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001343 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001344 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001345 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001346 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001347 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001348}
1349
1350module_init(init_btrfs_fs)
1351module_exit(exit_btrfs_fs)
1352
1353MODULE_LICENSE("GPL");