blob: 266d1f35465d163c42db88e1a100819e3b6bd435 [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,
Josef Bacik73bc1872011-10-03 14:07:49 -0400167 Opt_inode_cache, Opt_no_space_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 Bacik73bc1872011-10-03 14:07:49 -0400200 {Opt_no_space_cache, "no_space_cache"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400201 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400202};
203
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400204/*
205 * Regular mount options parser. Everything that is needed only when
206 * reading in a new superblock is parsed here.
207 */
208int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400209{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400210 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400211 substring_t args[MAX_OPT_ARGS];
Josef Bacik73bc1872011-10-03 14:07:49 -0400212 char *p, *num, *orig = NULL;
213 u64 cache_gen;
Chris Mason4543df72008-06-11 21:47:56 -0400214 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000215 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800216 char *compress_type;
217 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500218
Josef Bacik73bc1872011-10-03 14:07:49 -0400219 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
220 if (cache_gen)
221 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
222
Chris Mason95e05282007-08-29 09:11:44 -0400223 if (!options)
Josef Bacik73bc1872011-10-03 14:07:49 -0400224 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400225
Chris Masonbe20aa92007-12-17 20:14:01 -0500226 /*
227 * strsep changes the string, duplicate it because parse_options
228 * gets called twice
229 */
230 options = kstrdup(options, GFP_NOFS);
231 if (!options)
232 return -ENOMEM;
233
Josef Bacikda495ec2010-02-25 20:38:35 +0000234 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500235
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400236 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400237 int token;
238 if (!*p)
239 continue;
240
241 token = match_token(p, tokens, args);
242 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400243 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400244 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
245 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400246 break;
Chris Mason95e05282007-08-29 09:11:44 -0400247 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000248 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000249 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400250 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400251 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400252 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400253 * and can be happily ignored here.
254 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500255 break;
256 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400257 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400258 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500259 break;
260 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400261 printk(KERN_INFO "btrfs: setting nodatacow\n");
262 btrfs_set_opt(info->mount_opt, NODATACOW);
263 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400264 break;
Chris Masona555f812010-01-28 16:18:15 -0500265 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800266 case Opt_compress_force_type:
267 compress_force = true;
268 case Opt_compress:
269 case Opt_compress_type:
270 if (token == Opt_compress ||
271 token == Opt_compress_force ||
272 strcmp(args[0].from, "zlib") == 0) {
273 compress_type = "zlib";
274 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800275 } else if (strcmp(args[0].from, "lzo") == 0) {
276 compress_type = "lzo";
277 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800278 } else {
279 ret = -EINVAL;
280 goto out;
281 }
282
Chris Masona555f812010-01-28 16:18:15 -0500283 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800284 if (compress_force) {
285 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
286 pr_info("btrfs: force %s compression\n",
287 compress_type);
288 } else
289 pr_info("btrfs: use %s compression\n",
290 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500291 break;
Chris Masone18e4802008-01-18 10:54:22 -0500292 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400293 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
294 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500295 break;
Chris Mason451d7582009-06-09 20:28:34 -0400296 case Opt_ssd_spread:
297 printk(KERN_INFO "btrfs: use spread ssd "
298 "allocation scheme\n");
299 btrfs_set_opt(info->mount_opt, SSD);
300 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
301 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400302 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400303 printk(KERN_INFO "btrfs: not using ssd allocation "
304 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400305 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400306 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400307 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400308 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500309 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400310 printk(KERN_INFO "btrfs: turning off barriers\n");
311 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500312 break;
Chris Mason4543df72008-06-11 21:47:56 -0400313 case Opt_thread_pool:
314 intarg = 0;
315 match_int(&args[0], &intarg);
316 if (intarg) {
317 info->thread_pool_size = intarg;
318 printk(KERN_INFO "btrfs: thread pool %d\n",
319 info->thread_pool_size);
320 }
321 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500322 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400323 num = match_strdup(&args[0]);
324 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000325 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400326 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500327
Chris Mason15ada042008-06-11 16:51:38 -0400328 if (info->max_inline) {
329 info->max_inline = max_t(u64,
330 info->max_inline,
331 root->sectorsize);
332 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400333 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700334 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500335 }
336 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500337 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400338 num = match_strdup(&args[0]);
339 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000340 info->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400341 kfree(num);
342 printk(KERN_INFO
343 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700344 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500345 }
346 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400347 case Opt_noacl:
348 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
349 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400350 case Opt_notreelog:
351 printk(KERN_INFO "btrfs: disabling tree log\n");
352 btrfs_set_opt(info->mount_opt, NOTREELOG);
353 break;
Sage Weildccae992009-04-02 16:59:01 -0400354 case Opt_flushoncommit:
355 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
356 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
357 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400358 case Opt_ratio:
359 intarg = 0;
360 match_int(&args[0], &intarg);
361 if (intarg) {
362 info->metadata_ratio = intarg;
363 printk(KERN_INFO "btrfs: metadata ratio %d\n",
364 info->metadata_ratio);
365 }
366 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400367 case Opt_discard:
368 btrfs_set_opt(info->mount_opt, DISCARD);
369 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400370 case Opt_space_cache:
Josef Bacik0af3d002010-06-21 14:48:16 -0400371 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000372 break;
Josef Bacik73bc1872011-10-03 14:07:49 -0400373 case Opt_no_space_cache:
374 printk(KERN_INFO "btrfs: disabling disk space caching\n");
375 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
376 break;
Chris Mason4b9465c2011-06-03 09:36:29 -0400377 case Opt_inode_cache:
378 printk(KERN_INFO "btrfs: enabling inode map caching\n");
379 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
380 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400381 case Opt_clear_cache:
382 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
383 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400384 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400385 case Opt_user_subvol_rm_allowed:
386 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
387 break;
Chris Mason91435652011-02-16 13:10:41 -0500388 case Opt_enospc_debug:
389 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
390 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400391 case Opt_defrag:
392 printk(KERN_INFO "btrfs: enabling auto defrag");
393 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
394 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000395 case Opt_err:
396 printk(KERN_INFO "btrfs: unrecognized mount option "
397 "'%s'\n", p);
398 ret = -EINVAL;
399 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400400 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500401 break;
Chris Mason95e05282007-08-29 09:11:44 -0400402 }
403 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000404out:
Josef Bacik73bc1872011-10-03 14:07:49 -0400405 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
406 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacikda495ec2010-02-25 20:38:35 +0000407 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000408 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400409}
410
411/*
412 * Parse mount options that are required early in the mount process.
413 *
414 * All other options will be parsed on much later in the mount process and
415 * only when we need to allocate a new super block.
416 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500417static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000418 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000419 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400420{
421 substring_t args[MAX_OPT_ARGS];
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800422 char *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400423 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000424 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400425
426 if (!options)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400427 return 0;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400428
429 /*
430 * strsep changes the string, duplicate it because parse_options
431 * gets called twice
432 */
433 opts = kstrdup(options, GFP_KERNEL);
434 if (!opts)
435 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800436 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400437
438 while ((p = strsep(&opts, ",")) != NULL) {
439 int token;
440 if (!*p)
441 continue;
442
443 token = match_token(p, tokens, args);
444 switch (token) {
445 case Opt_subvol:
446 *subvol_name = match_strdup(&args[0]);
447 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000448 case Opt_subvolid:
449 intarg = 0;
Josef Bacik4849f01d2009-12-14 19:18:38 +0000450 error = match_int(&args[0], &intarg);
451 if (!error) {
452 /* we want the original fs_tree */
453 if (!intarg)
454 *subvol_objectid =
455 BTRFS_FS_TREE_OBJECTID;
456 else
457 *subvol_objectid = intarg;
458 }
Josef Bacik73f73412009-12-04 17:38:27 +0000459 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000460 case Opt_subvolrootid:
461 intarg = 0;
462 error = match_int(&args[0], &intarg);
463 if (!error) {
464 /* we want the original fs_tree */
465 if (!intarg)
466 *subvol_rootid =
467 BTRFS_FS_TREE_OBJECTID;
468 else
469 *subvol_rootid = intarg;
470 }
471 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400472 case Opt_device:
473 error = btrfs_scan_one_device(match_strdup(&args[0]),
474 flags, holder, fs_devices);
475 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400476 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400477 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400478 default:
479 break;
480 }
481 }
482
Josef Bacik830c4ad2011-07-25 15:55:42 -0400483out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800484 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400485 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400486}
487
Josef Bacik73f73412009-12-04 17:38:27 +0000488static struct dentry *get_default_root(struct super_block *sb,
489 u64 subvol_objectid)
490{
491 struct btrfs_root *root = sb->s_fs_info;
492 struct btrfs_root *new_root;
493 struct btrfs_dir_item *di;
494 struct btrfs_path *path;
495 struct btrfs_key location;
496 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000497 u64 dir_id;
498 int new = 0;
499
500 /*
501 * We have a specific subvol we want to mount, just setup location and
502 * go look up the root.
503 */
504 if (subvol_objectid) {
505 location.objectid = subvol_objectid;
506 location.type = BTRFS_ROOT_ITEM_KEY;
507 location.offset = (u64)-1;
508 goto find_root;
509 }
510
511 path = btrfs_alloc_path();
512 if (!path)
513 return ERR_PTR(-ENOMEM);
514 path->leave_spinning = 1;
515
516 /*
517 * Find the "default" dir item which points to the root item that we
518 * will mount by default if we haven't been given a specific subvolume
519 * to mount.
520 */
521 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
522 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000523 if (IS_ERR(di)) {
524 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000525 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000526 }
Josef Bacik73f73412009-12-04 17:38:27 +0000527 if (!di) {
528 /*
529 * Ok the default dir item isn't there. This is weird since
530 * it's always been there, but don't freak out, just try and
531 * mount to root most subvolume.
532 */
533 btrfs_free_path(path);
534 dir_id = BTRFS_FIRST_FREE_OBJECTID;
535 new_root = root->fs_info->fs_root;
536 goto setup_root;
537 }
538
539 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
540 btrfs_free_path(path);
541
542find_root:
543 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
544 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400545 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000546
547 if (btrfs_root_refs(&new_root->root_item) == 0)
548 return ERR_PTR(-ENOENT);
549
550 dir_id = btrfs_root_dirid(&new_root->root_item);
551setup_root:
552 location.objectid = dir_id;
553 location.type = BTRFS_INODE_ITEM_KEY;
554 location.offset = 0;
555
556 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000557 if (IS_ERR(inode))
558 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000559
560 /*
561 * If we're just mounting the root most subvol put the inode and return
562 * a reference to the dentry. We will have already gotten a reference
563 * to the inode in btrfs_fill_super so we're good to go.
564 */
565 if (!new && sb->s_root->d_inode == inode) {
566 iput(inode);
567 return dget(sb->s_root);
568 }
569
Josef Bacikba5b8952011-07-25 15:40:35 -0400570 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000571}
572
Chris Masond3977122009-01-05 21:25:51 -0500573static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400574 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500575 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400576{
Chris Masond3977122009-01-05 21:25:51 -0500577 struct inode *inode;
578 struct dentry *root_dentry;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400579 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400580 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400581 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400582
583 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400584 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400585 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500586 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530587 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500588 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400589 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400590#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400591 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400592#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400593
Chris Masondfe25022008-05-13 13:46:40 -0400594 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400595
Yane58ca022008-04-01 11:21:34 -0400596 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400597 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400598 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400599 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400600 sb->s_fs_info = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400601
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400602 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
603 key.type = BTRFS_INODE_ITEM_KEY;
604 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000605 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400606 if (IS_ERR(inode)) {
607 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400608 goto fail_close;
609 }
Chris Mason2e635a22007-03-21 11:12:56 -0400610
Chris Masone20d96d2007-03-22 12:13:20 -0400611 root_dentry = d_alloc_root(inode);
612 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400613 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400614 err = -ENOMEM;
615 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400616 }
Josef Bacik58176a92007-08-29 15:47:34 -0400617
Chris Masone20d96d2007-03-22 12:13:20 -0400618 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500619
Chris Mason6885f302008-02-20 16:11:05 -0500620 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600621 cleancache_init_fs(sb);
Chris Mason2e635a22007-03-21 11:12:56 -0400622 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400623
Chris Mason39279cc2007-06-12 06:35:45 -0400624fail_close:
625 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400626 return err;
627}
628
Sage Weil6bf13c02008-06-10 10:07:39 -0400629int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400630{
631 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400632 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400633 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400634
liubo1abe9b82011-03-24 11:18:59 +0000635 trace_btrfs_sync_fs(wait);
636
Chris Masond561c022007-03-23 19:47:49 -0400637 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400638 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400639 return 0;
640 }
Chris Mason771ed682008-11-06 22:02:51 -0500641
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000642 btrfs_start_delalloc_inodes(root, 0);
643 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500644
Yan, Zhenga22285a2010-05-16 10:48:46 -0400645 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000646 if (IS_ERR(trans))
647 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400648 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400649 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400650}
651
Eric Parisa9572a12009-04-02 16:46:06 -0400652static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
653{
654 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
655 struct btrfs_fs_info *info = root->fs_info;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000656 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400657
658 if (btrfs_test_opt(root, DEGRADED))
659 seq_puts(seq, ",degraded");
660 if (btrfs_test_opt(root, NODATASUM))
661 seq_puts(seq, ",nodatasum");
662 if (btrfs_test_opt(root, NODATACOW))
663 seq_puts(seq, ",nodatacow");
664 if (btrfs_test_opt(root, NOBARRIER))
665 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400666 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700667 seq_printf(seq, ",max_inline=%llu",
668 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400669 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700670 seq_printf(seq, ",alloc_start=%llu",
671 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400672 if (info->thread_pool_size != min_t(unsigned long,
673 num_online_cpus() + 2, 8))
674 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000675 if (btrfs_test_opt(root, COMPRESS)) {
676 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
677 compress_type = "zlib";
678 else
679 compress_type = "lzo";
680 if (btrfs_test_opt(root, FORCE_COMPRESS))
681 seq_printf(seq, ",compress-force=%s", compress_type);
682 else
683 seq_printf(seq, ",compress=%s", compress_type);
684 }
Chris Masonc2898112009-06-10 09:51:32 -0400685 if (btrfs_test_opt(root, NOSSD))
686 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400687 if (btrfs_test_opt(root, SSD_SPREAD))
688 seq_puts(seq, ",ssd_spread");
689 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400690 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400691 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400692 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400693 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400694 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000695 if (btrfs_test_opt(root, DISCARD))
696 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400697 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
698 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000699 if (btrfs_test_opt(root, SPACE_CACHE))
700 seq_puts(seq, ",space_cache");
Josef Bacik73bc1872011-10-03 14:07:49 -0400701 else
702 seq_puts(seq, ",no_space_cache");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000703 if (btrfs_test_opt(root, CLEAR_CACHE))
704 seq_puts(seq, ",clear_cache");
705 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
706 seq_puts(seq, ",user_subvol_rm_allowed");
David Sterba0942caa2011-06-28 15:10:37 +0000707 if (btrfs_test_opt(root, ENOSPC_DEBUG))
708 seq_puts(seq, ",enospc_debug");
709 if (btrfs_test_opt(root, AUTO_DEFRAG))
710 seq_puts(seq, ",autodefrag");
711 if (btrfs_test_opt(root, INODE_MAP_CACHE))
712 seq_puts(seq, ",inode_cache");
Eric Parisa9572a12009-04-02 16:46:06 -0400713 return 0;
714}
715
Chris Masona061fc82008-05-07 11:43:44 -0400716static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400717{
Josef Bacik450ba0e2010-11-19 14:59:15 -0500718 struct btrfs_root *test_root = data;
Chris Masona061fc82008-05-07 11:43:44 -0400719 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400720
Ian Kent619c8c72010-11-22 02:21:38 +0000721 /*
722 * If this super block is going away, return false as it
723 * can't match as an existing super block.
724 */
725 if (!atomic_read(&s->s_active))
726 return 0;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500727 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400728}
729
Josef Bacik450ba0e2010-11-19 14:59:15 -0500730static int btrfs_set_super(struct super_block *s, void *data)
731{
732 s->s_fs_info = data;
733
734 return set_anon_super(s, data);
735}
736
Josef Bacik830c4ad2011-07-25 15:55:42 -0400737/*
738 * This will strip out the subvol=%s argument for an argument string and add
739 * subvolid=0 to make sure we get the actual tree root for path walking to the
740 * subvol we want.
741 */
742static char *setup_root_args(char *args)
743{
744 unsigned copied = 0;
745 unsigned len = strlen(args) + 2;
746 char *pos;
747 char *ret;
748
749 /*
750 * We need the same args as before, but minus
751 *
752 * subvol=a
753 *
754 * and add
755 *
756 * subvolid=0
757 *
758 * which is a difference of 2 characters, so we allocate strlen(args) +
759 * 2 characters.
760 */
761 ret = kzalloc(len * sizeof(char), GFP_NOFS);
762 if (!ret)
763 return NULL;
764 pos = strstr(args, "subvol=");
765
766 /* This shouldn't happen, but just in case.. */
767 if (!pos) {
768 kfree(ret);
769 return NULL;
770 }
771
772 /*
773 * The subvol=<> arg is not at the front of the string, copy everybody
774 * up to that into ret.
775 */
776 if (pos != args) {
777 *pos = '\0';
778 strcpy(ret, args);
779 copied += strlen(args);
780 pos++;
781 }
782
783 strncpy(ret + copied, "subvolid=0", len - copied);
784
785 /* Length of subvolid=0 */
786 copied += 10;
787
788 /*
789 * If there is no , after the subvol= option then we know there's no
790 * other options and we can just return.
791 */
792 pos = strchr(pos, ',');
793 if (!pos)
794 return ret;
795
796 /* Copy the rest of the arguments into our buffer */
797 strncpy(ret + copied, pos, len - copied);
798 copied += strlen(pos);
799
800 return ret;
801}
802
803static struct dentry *mount_subvol(const char *subvol_name, int flags,
804 const char *device_name, char *data)
805{
806 struct super_block *s;
807 struct dentry *root;
808 struct vfsmount *mnt;
809 struct mnt_namespace *ns_private;
810 char *newargs;
811 struct path path;
812 int error;
813
814 newargs = setup_root_args(data);
815 if (!newargs)
816 return ERR_PTR(-ENOMEM);
817 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
818 newargs);
819 kfree(newargs);
820 if (IS_ERR(mnt))
821 return ERR_CAST(mnt);
822
823 ns_private = create_mnt_ns(mnt);
824 if (IS_ERR(ns_private)) {
825 mntput(mnt);
826 return ERR_CAST(ns_private);
827 }
828
829 /*
830 * This will trigger the automount of the subvol so we can just
831 * drop the mnt we have here and return the dentry that we
832 * found.
833 */
834 error = vfs_path_lookup(mnt->mnt_root, mnt, subvol_name,
835 LOOKUP_FOLLOW, &path);
836 put_mnt_ns(ns_private);
837 if (error)
838 return ERR_PTR(error);
839
840 /* Get a ref to the sb and the dentry we found and return it */
841 s = path.mnt->mnt_sb;
842 atomic_inc(&s->s_active);
843 root = dget(path.dentry);
844 path_put(&path);
845 down_write(&s->s_umount);
846
847 return root;
848}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500849
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400850/*
851 * Find a superblock for the given device / mount point.
852 *
853 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
854 * for multiple device setup. Make sure to keep it in sync.
855 */
Al Viro061dbc62010-07-26 16:21:33 +0400856static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200857 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400858{
859 struct block_device *bdev = NULL;
860 struct super_block *s;
861 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400862 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500863 struct btrfs_root *tree_root = NULL;
864 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500865 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000866 char *subvol_name = NULL;
867 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000868 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400869 int error = 0;
870
Christoph Hellwig97288f22008-12-02 06:36:09 -0500871 if (!(flags & MS_RDONLY))
872 mode |= FMODE_WRITE;
873
874 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000875 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000876 &subvol_rootid, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400877 if (error)
Al Viro061dbc62010-07-26 16:21:33 +0400878 return ERR_PTR(error);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400879
Josef Bacik830c4ad2011-07-25 15:55:42 -0400880 if (subvol_name) {
881 root = mount_subvol(subvol_name, flags, device_name, data);
882 kfree(subvol_name);
883 return root;
884 }
885
David Sterba306e16c2011-04-19 14:29:38 +0200886 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400887 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400888 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400889
Christoph Hellwig97288f22008-12-02 06:36:09 -0500890 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400891 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400892 return ERR_PTR(error);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400893
Yan Zheng2b820322008-11-17 21:11:30 -0500894 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
895 error = -EACCES;
896 goto error_close_devices;
897 }
898
Josef Bacik450ba0e2010-11-19 14:59:15 -0500899 /*
900 * Setup a dummy root and fs_info for test/set super. This is because
901 * we don't actually fill this stuff out until open_ctree, but we need
902 * it for searching for existing supers, so this lets us do that and
903 * then open_ctree will properly initialize everything later.
904 */
905 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
906 tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
907 if (!fs_info || !tree_root) {
908 error = -ENOMEM;
909 goto error_close_devices;
910 }
911 fs_info->tree_root = tree_root;
912 fs_info->fs_devices = fs_devices;
913 tree_root->fs_info = fs_info;
914
Chris Masondfe25022008-05-13 13:46:40 -0400915 bdev = fs_devices->latest_bdev;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500916 s = sget(fs_type, btrfs_test_super, btrfs_set_super, tree_root);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400917 if (IS_ERR(s)) {
918 error = PTR_ERR(s);
919 goto error_close_devices;
920 }
Yan4b82d6e2007-08-29 09:11:44 -0400921
922 if (s->s_root) {
923 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400924 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400925 return ERR_PTR(-EBUSY);
Yan4b82d6e2007-08-29 09:11:44 -0400926 }
927
Yan Zheng2b820322008-11-17 21:11:30 -0500928 btrfs_close_devices(fs_devices);
Ian Kentbdc924b2010-12-27 16:33:15 +0800929 kfree(fs_info);
930 kfree(tree_root);
Yan4b82d6e2007-08-29 09:11:44 -0400931 } else {
932 char b[BDEVNAME_SIZE];
933
Al Viro9e1f1de2011-06-03 18:24:58 -0400934 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -0400935 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400936 error = btrfs_fill_super(s, fs_devices, data,
937 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400938 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400939 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400940 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400941 }
942
Chris Mason788f20e2008-04-28 15:29:42 -0400943 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400944 s->s_flags |= MS_ACTIVE;
945 }
946
Josef Bacik830c4ad2011-07-25 15:55:42 -0400947 root = get_default_root(s, subvol_objectid);
948 if (IS_ERR(root)) {
949 deactivate_locked_super(s);
950 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400951 }
952
Al Viro061dbc62010-07-26 16:21:33 +0400953 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400954
Yan Zhengc146afa2008-11-12 14:34:12 -0500955error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400956 btrfs_close_devices(fs_devices);
Josef Bacik450ba0e2010-11-19 14:59:15 -0500957 kfree(fs_info);
958 kfree(tree_root);
Al Viro061dbc62010-07-26 16:21:33 +0400959 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400960}
Chris Mason2e635a22007-03-21 11:12:56 -0400961
Yan Zhengc146afa2008-11-12 14:34:12 -0500962static int btrfs_remount(struct super_block *sb, int *flags, char *data)
963{
964 struct btrfs_root *root = btrfs_sb(sb);
965 int ret;
966
Chris Masonb2880522009-02-12 09:37:35 -0500967 ret = btrfs_parse_options(root, data);
968 if (ret)
969 return -EINVAL;
970
Yan Zhengc146afa2008-11-12 14:34:12 -0500971 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
972 return 0;
973
974 if (*flags & MS_RDONLY) {
975 sb->s_flags |= MS_RDONLY;
976
977 ret = btrfs_commit_super(root);
978 WARN_ON(ret);
979 } else {
Yan Zheng2b820322008-11-17 21:11:30 -0500980 if (root->fs_info->fs_devices->rw_devices == 0)
981 return -EACCES;
982
Yan Zhengc146afa2008-11-12 14:34:12 -0500983 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
984 return -EINVAL;
985
Yan, Zhengd68fc572010-05-16 10:49:58 -0400986 ret = btrfs_cleanup_fs_roots(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -0500987 WARN_ON(ret);
988
Yan, Zhengd68fc572010-05-16 10:49:58 -0400989 /* recover relocation */
990 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -0500991 WARN_ON(ret);
992
993 sb->s_flags &= ~MS_RDONLY;
994 }
995
996 return 0;
997}
998
Arne Jansenbcd53742011-04-12 10:43:21 +0200999/* Used to sort the devices by max_avail(descending sort) */
1000static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1001 const void *dev_info2)
1002{
1003 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1004 ((struct btrfs_device_info *)dev_info2)->max_avail)
1005 return -1;
1006 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1007 ((struct btrfs_device_info *)dev_info2)->max_avail)
1008 return 1;
1009 else
1010 return 0;
1011}
1012
1013/*
1014 * sort the devices by max_avail, in which max free extent size of each device
1015 * is stored.(Descending Sort)
1016 */
1017static inline void btrfs_descending_sort_devices(
1018 struct btrfs_device_info *devices,
1019 size_t nr_devices)
1020{
1021 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1022 btrfs_cmp_device_free_bytes, NULL);
1023}
1024
Miao Xie6d07bce2011-01-05 10:07:31 +00001025/*
1026 * The helper to calc the free space on the devices that can be used to store
1027 * file data.
1028 */
1029static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1030{
1031 struct btrfs_fs_info *fs_info = root->fs_info;
1032 struct btrfs_device_info *devices_info;
1033 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1034 struct btrfs_device *device;
1035 u64 skip_space;
1036 u64 type;
1037 u64 avail_space;
1038 u64 used_space;
1039 u64 min_stripe_size;
1040 int min_stripes = 1;
1041 int i = 0, nr_devices;
1042 int ret;
1043
1044 nr_devices = fs_info->fs_devices->rw_devices;
1045 BUG_ON(!nr_devices);
1046
1047 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1048 GFP_NOFS);
1049 if (!devices_info)
1050 return -ENOMEM;
1051
1052 /* calc min stripe number for data space alloction */
1053 type = btrfs_get_alloc_profile(root, 1);
1054 if (type & BTRFS_BLOCK_GROUP_RAID0)
1055 min_stripes = 2;
1056 else if (type & BTRFS_BLOCK_GROUP_RAID1)
1057 min_stripes = 2;
1058 else if (type & BTRFS_BLOCK_GROUP_RAID10)
1059 min_stripes = 4;
1060
1061 if (type & BTRFS_BLOCK_GROUP_DUP)
1062 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1063 else
1064 min_stripe_size = BTRFS_STRIPE_LEN;
1065
1066 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
1067 if (!device->in_fs_metadata)
1068 continue;
1069
1070 avail_space = device->total_bytes - device->bytes_used;
1071
1072 /* align with stripe_len */
1073 do_div(avail_space, BTRFS_STRIPE_LEN);
1074 avail_space *= BTRFS_STRIPE_LEN;
1075
1076 /*
1077 * In order to avoid overwritting the superblock on the drive,
1078 * btrfs starts at an offset of at least 1MB when doing chunk
1079 * allocation.
1080 */
1081 skip_space = 1024 * 1024;
1082
1083 /* user can set the offset in fs_info->alloc_start. */
1084 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1085 device->total_bytes)
1086 skip_space = max(fs_info->alloc_start, skip_space);
1087
1088 /*
1089 * btrfs can not use the free space in [0, skip_space - 1],
1090 * we must subtract it from the total. In order to implement
1091 * it, we account the used space in this range first.
1092 */
1093 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1094 &used_space);
1095 if (ret) {
1096 kfree(devices_info);
1097 return ret;
1098 }
1099
1100 /* calc the free space in [0, skip_space - 1] */
1101 skip_space -= used_space;
1102
1103 /*
1104 * we can use the free space in [0, skip_space - 1], subtract
1105 * it from the total.
1106 */
1107 if (avail_space && avail_space >= skip_space)
1108 avail_space -= skip_space;
1109 else
1110 avail_space = 0;
1111
1112 if (avail_space < min_stripe_size)
1113 continue;
1114
1115 devices_info[i].dev = device;
1116 devices_info[i].max_avail = avail_space;
1117
1118 i++;
1119 }
1120
1121 nr_devices = i;
1122
1123 btrfs_descending_sort_devices(devices_info, nr_devices);
1124
1125 i = nr_devices - 1;
1126 avail_space = 0;
1127 while (nr_devices >= min_stripes) {
1128 if (devices_info[i].max_avail >= min_stripe_size) {
1129 int j;
1130 u64 alloc_size;
1131
1132 avail_space += devices_info[i].max_avail * min_stripes;
1133 alloc_size = devices_info[i].max_avail;
1134 for (j = i + 1 - min_stripes; j <= i; j++)
1135 devices_info[j].max_avail -= alloc_size;
1136 }
1137 i--;
1138 nr_devices--;
1139 }
1140
1141 kfree(devices_info);
1142 *free_bytes = avail_space;
1143 return 0;
1144}
1145
Chris Mason8fd17792007-04-19 21:01:03 -04001146static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1147{
1148 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -04001149 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001150 struct list_head *head = &root->fs_info->space_info;
1151 struct btrfs_space_info *found;
1152 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001153 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001154 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +01001155 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001156 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001157
Miao Xie6d07bce2011-01-05 10:07:31 +00001158 /* holding chunk_muext to avoid allocating new chunks */
1159 mutex_lock(&root->fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001160 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001161 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001162 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1163 total_free_data += found->disk_total - found->disk_used;
1164 total_free_data -=
1165 btrfs_account_ro_block_groups_free_space(found);
1166 }
1167
Yan, Zhengb742bb82010-05-16 10:46:24 -04001168 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001169 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001170 rcu_read_unlock();
1171
Chris Mason8fd17792007-04-19 21:01:03 -04001172 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001173 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001174 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001175 buf->f_bsize = dentry->d_sb->s_blocksize;
1176 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001177 buf->f_bavail = total_free_data;
1178 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1179 if (ret) {
1180 mutex_unlock(&root->fs_info->chunk_mutex);
1181 return ret;
1182 }
1183 buf->f_bavail += total_free_data;
1184 buf->f_bavail = buf->f_bavail >> bits;
1185 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001186
David Woodhouse9d036322008-08-18 12:01:52 +01001187 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001188 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001189 on a big-endian or little-endian host */
1190 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1191 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001192 /* Mask in the root object ID too, to disambiguate subvols */
1193 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1194 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1195
Chris Mason8fd17792007-04-19 21:01:03 -04001196 return 0;
1197}
Chris Masonb5133862007-04-24 11:52:22 -04001198
Chris Mason2e635a22007-03-21 11:12:56 -04001199static struct file_system_type btrfs_fs_type = {
1200 .owner = THIS_MODULE,
1201 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001202 .mount = btrfs_mount,
Chris Masona061fc82008-05-07 11:43:44 -04001203 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001204 .fs_flags = FS_REQUIRES_DEV,
1205};
Chris Masona9218f62008-03-24 15:02:04 -04001206
Chris Masond352ac62008-09-29 15:18:18 -04001207/*
1208 * used by btrfsctl to scan devices when no FS is mounted
1209 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001210static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1211 unsigned long arg)
1212{
1213 struct btrfs_ioctl_vol_args *vol;
1214 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001215 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001216
Chris Masone441d542009-01-05 16:57:23 -05001217 if (!capable(CAP_SYS_ADMIN))
1218 return -EPERM;
1219
Li Zefandae7b662009-04-08 15:06:54 +08001220 vol = memdup_user((void __user *)arg, sizeof(*vol));
1221 if (IS_ERR(vol))
1222 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001223
Chris Mason8a4b83c2008-03-24 15:02:07 -04001224 switch (cmd) {
1225 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001226 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001227 &btrfs_fs_type, &fs_devices);
1228 break;
1229 }
Li Zefandae7b662009-04-08 15:06:54 +08001230
Chris Mason8a4b83c2008-03-24 15:02:07 -04001231 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001232 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001233}
1234
Linus Torvalds01762602009-01-10 06:09:52 -08001235static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001236{
1237 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001238 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1239 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001240 return 0;
Yaned0dab62008-01-22 12:46:56 -05001241}
1242
Linus Torvalds01762602009-01-10 06:09:52 -08001243static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001244{
1245 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001246 mutex_unlock(&root->fs_info->cleaner_mutex);
1247 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001248 return 0;
Yaned0dab62008-01-22 12:46:56 -05001249}
Chris Mason2e635a22007-03-21 11:12:56 -04001250
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001251static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001252 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001253 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001254 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001255 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001256 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001257 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -04001258 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001259 .alloc_inode = btrfs_alloc_inode,
1260 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001261 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001262 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001263 .freeze_fs = btrfs_freeze,
1264 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001265};
Chris Masona9218f62008-03-24 15:02:04 -04001266
1267static const struct file_operations btrfs_ctl_fops = {
1268 .unlocked_ioctl = btrfs_control_ioctl,
1269 .compat_ioctl = btrfs_control_ioctl,
1270 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001271 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001272};
1273
1274static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001275 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001276 .name = "btrfs-control",
1277 .fops = &btrfs_ctl_fops
1278};
1279
Kay Sievers578454f2010-05-20 18:07:20 +02001280MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1281MODULE_ALIAS("devname:btrfs-control");
1282
Chris Masona9218f62008-03-24 15:02:04 -04001283static int btrfs_interface_init(void)
1284{
1285 return misc_register(&btrfs_misc);
1286}
1287
Christoph Hellwigb2950862008-12-02 09:54:17 -05001288static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001289{
1290 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001291 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001292}
1293
Chris Mason2e635a22007-03-21 11:12:56 -04001294static int __init init_btrfs_fs(void)
1295{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001296 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001297
1298 err = btrfs_init_sysfs();
1299 if (err)
1300 return err;
1301
Li Zefan261507a02010-12-17 14:21:50 +08001302 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001303 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001304 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001305
Li Zefan261507a02010-12-17 14:21:50 +08001306 err = btrfs_init_cachep();
1307 if (err)
1308 goto free_compress;
1309
Chris Masond1310b22008-01-24 16:13:08 -05001310 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001311 if (err)
1312 goto free_cachep;
1313
Chris Masond1310b22008-01-24 16:13:08 -05001314 err = extent_map_init();
1315 if (err)
1316 goto free_extent_io;
1317
Miao Xie16cdcec2011-04-22 18:12:22 +08001318 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001319 if (err)
1320 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001321
Miao Xie16cdcec2011-04-22 18:12:22 +08001322 err = btrfs_interface_init();
1323 if (err)
1324 goto free_delayed_inode;
1325
Chris Masona9218f62008-03-24 15:02:04 -04001326 err = register_filesystem(&btrfs_fs_type);
1327 if (err)
1328 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001329
1330 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001331 return 0;
1332
Chris Masona9218f62008-03-24 15:02:04 -04001333unregister_ioctl:
1334 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001335free_delayed_inode:
1336 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001337free_extent_map:
1338 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001339free_extent_io:
1340 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001341free_cachep:
1342 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001343free_compress:
1344 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001345free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001346 btrfs_exit_sysfs();
1347 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001348}
1349
1350static void __exit exit_btrfs_fs(void)
1351{
Chris Mason39279cc2007-06-12 06:35:45 -04001352 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001353 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001354 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001355 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001356 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001357 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001358 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001359 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001360 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001361}
1362
1363module_init(init_btrfs_fs)
1364module_exit(exit_btrfs_fs)
1365
1366MODULE_LICENSE("GPL");