blob: 5429b1fa0bfc228a66e898089b6617d6be83d14f [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];
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800422 char *device_name, *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:
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800473 device_name = match_strdup(&args[0]);
474 if (!device_name) {
475 error = -ENOMEM;
476 goto out;
477 }
478 error = btrfs_scan_one_device(device_name,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400479 flags, holder, fs_devices);
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800480 kfree(device_name);
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400481 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400482 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400483 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400484 default:
485 break;
486 }
487 }
488
Josef Bacik830c4ad2011-07-25 15:55:42 -0400489out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800490 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400491 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400492}
493
Josef Bacik73f73412009-12-04 17:38:27 +0000494static struct dentry *get_default_root(struct super_block *sb,
495 u64 subvol_objectid)
496{
497 struct btrfs_root *root = sb->s_fs_info;
498 struct btrfs_root *new_root;
499 struct btrfs_dir_item *di;
500 struct btrfs_path *path;
501 struct btrfs_key location;
502 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000503 u64 dir_id;
504 int new = 0;
505
506 /*
507 * We have a specific subvol we want to mount, just setup location and
508 * go look up the root.
509 */
510 if (subvol_objectid) {
511 location.objectid = subvol_objectid;
512 location.type = BTRFS_ROOT_ITEM_KEY;
513 location.offset = (u64)-1;
514 goto find_root;
515 }
516
517 path = btrfs_alloc_path();
518 if (!path)
519 return ERR_PTR(-ENOMEM);
520 path->leave_spinning = 1;
521
522 /*
523 * Find the "default" dir item which points to the root item that we
524 * will mount by default if we haven't been given a specific subvolume
525 * to mount.
526 */
527 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
528 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000529 if (IS_ERR(di)) {
530 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000531 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000532 }
Josef Bacik73f73412009-12-04 17:38:27 +0000533 if (!di) {
534 /*
535 * Ok the default dir item isn't there. This is weird since
536 * it's always been there, but don't freak out, just try and
537 * mount to root most subvolume.
538 */
539 btrfs_free_path(path);
540 dir_id = BTRFS_FIRST_FREE_OBJECTID;
541 new_root = root->fs_info->fs_root;
542 goto setup_root;
543 }
544
545 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
546 btrfs_free_path(path);
547
548find_root:
549 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
550 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400551 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000552
553 if (btrfs_root_refs(&new_root->root_item) == 0)
554 return ERR_PTR(-ENOENT);
555
556 dir_id = btrfs_root_dirid(&new_root->root_item);
557setup_root:
558 location.objectid = dir_id;
559 location.type = BTRFS_INODE_ITEM_KEY;
560 location.offset = 0;
561
562 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000563 if (IS_ERR(inode))
564 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000565
566 /*
567 * If we're just mounting the root most subvol put the inode and return
568 * a reference to the dentry. We will have already gotten a reference
569 * to the inode in btrfs_fill_super so we're good to go.
570 */
571 if (!new && sb->s_root->d_inode == inode) {
572 iput(inode);
573 return dget(sb->s_root);
574 }
575
Josef Bacikba5b8952011-07-25 15:40:35 -0400576 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000577}
578
Chris Masond3977122009-01-05 21:25:51 -0500579static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400580 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500581 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400582{
Chris Masond3977122009-01-05 21:25:51 -0500583 struct inode *inode;
584 struct dentry *root_dentry;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400585 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400586 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400587 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400588
589 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400590 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400591 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500592 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530593 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500594 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400595 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400596#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400597 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400598#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400599
Chris Masondfe25022008-05-13 13:46:40 -0400600 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400601
Yane58ca022008-04-01 11:21:34 -0400602 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400603 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400604 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400605 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400606 sb->s_fs_info = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400607
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400608 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
609 key.type = BTRFS_INODE_ITEM_KEY;
610 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000611 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400612 if (IS_ERR(inode)) {
613 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400614 goto fail_close;
615 }
Chris Mason2e635a22007-03-21 11:12:56 -0400616
Chris Masone20d96d2007-03-22 12:13:20 -0400617 root_dentry = d_alloc_root(inode);
618 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400619 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400620 err = -ENOMEM;
621 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400622 }
Josef Bacik58176a92007-08-29 15:47:34 -0400623
Chris Masone20d96d2007-03-22 12:13:20 -0400624 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500625
Chris Mason6885f302008-02-20 16:11:05 -0500626 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600627 cleancache_init_fs(sb);
Chris Mason2e635a22007-03-21 11:12:56 -0400628 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400629
Chris Mason39279cc2007-06-12 06:35:45 -0400630fail_close:
631 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400632 return err;
633}
634
Sage Weil6bf13c02008-06-10 10:07:39 -0400635int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400636{
637 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400638 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400639 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400640
liubo1abe9b82011-03-24 11:18:59 +0000641 trace_btrfs_sync_fs(wait);
642
Chris Masond561c022007-03-23 19:47:49 -0400643 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400644 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400645 return 0;
646 }
Chris Mason771ed682008-11-06 22:02:51 -0500647
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000648 btrfs_start_delalloc_inodes(root, 0);
649 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500650
Yan, Zhenga22285a2010-05-16 10:48:46 -0400651 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000652 if (IS_ERR(trans))
653 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400654 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400655 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400656}
657
Eric Parisa9572a12009-04-02 16:46:06 -0400658static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
659{
660 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
661 struct btrfs_fs_info *info = root->fs_info;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000662 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400663
664 if (btrfs_test_opt(root, DEGRADED))
665 seq_puts(seq, ",degraded");
666 if (btrfs_test_opt(root, NODATASUM))
667 seq_puts(seq, ",nodatasum");
668 if (btrfs_test_opt(root, NODATACOW))
669 seq_puts(seq, ",nodatacow");
670 if (btrfs_test_opt(root, NOBARRIER))
671 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400672 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700673 seq_printf(seq, ",max_inline=%llu",
674 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400675 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700676 seq_printf(seq, ",alloc_start=%llu",
677 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400678 if (info->thread_pool_size != min_t(unsigned long,
679 num_online_cpus() + 2, 8))
680 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000681 if (btrfs_test_opt(root, COMPRESS)) {
682 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
683 compress_type = "zlib";
684 else
685 compress_type = "lzo";
686 if (btrfs_test_opt(root, FORCE_COMPRESS))
687 seq_printf(seq, ",compress-force=%s", compress_type);
688 else
689 seq_printf(seq, ",compress=%s", compress_type);
690 }
Chris Masonc2898112009-06-10 09:51:32 -0400691 if (btrfs_test_opt(root, NOSSD))
692 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400693 if (btrfs_test_opt(root, SSD_SPREAD))
694 seq_puts(seq, ",ssd_spread");
695 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400696 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400697 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400698 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400699 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400700 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000701 if (btrfs_test_opt(root, DISCARD))
702 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400703 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
704 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000705 if (btrfs_test_opt(root, SPACE_CACHE))
706 seq_puts(seq, ",space_cache");
Josef Bacik73bc1872011-10-03 14:07:49 -0400707 else
708 seq_puts(seq, ",no_space_cache");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000709 if (btrfs_test_opt(root, CLEAR_CACHE))
710 seq_puts(seq, ",clear_cache");
711 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
712 seq_puts(seq, ",user_subvol_rm_allowed");
David Sterba0942caa2011-06-28 15:10:37 +0000713 if (btrfs_test_opt(root, ENOSPC_DEBUG))
714 seq_puts(seq, ",enospc_debug");
715 if (btrfs_test_opt(root, AUTO_DEFRAG))
716 seq_puts(seq, ",autodefrag");
717 if (btrfs_test_opt(root, INODE_MAP_CACHE))
718 seq_puts(seq, ",inode_cache");
Eric Parisa9572a12009-04-02 16:46:06 -0400719 return 0;
720}
721
Chris Masona061fc82008-05-07 11:43:44 -0400722static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400723{
Josef Bacik450ba0e2010-11-19 14:59:15 -0500724 struct btrfs_root *test_root = data;
Chris Masona061fc82008-05-07 11:43:44 -0400725 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400726
Ian Kent619c8c72010-11-22 02:21:38 +0000727 /*
728 * If this super block is going away, return false as it
729 * can't match as an existing super block.
730 */
731 if (!atomic_read(&s->s_active))
732 return 0;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500733 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400734}
735
Josef Bacik450ba0e2010-11-19 14:59:15 -0500736static int btrfs_set_super(struct super_block *s, void *data)
737{
738 s->s_fs_info = data;
739
740 return set_anon_super(s, data);
741}
742
Josef Bacik830c4ad2011-07-25 15:55:42 -0400743/*
David Sterbaf9d9ef62011-09-29 13:11:33 +0200744 * subvolumes are identified by ino 256
745 */
746static inline int is_subvolume_inode(struct inode *inode)
747{
748 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
749 return 1;
750 return 0;
751}
752
753/*
Josef Bacik830c4ad2011-07-25 15:55:42 -0400754 * This will strip out the subvol=%s argument for an argument string and add
755 * subvolid=0 to make sure we get the actual tree root for path walking to the
756 * subvol we want.
757 */
758static char *setup_root_args(char *args)
759{
760 unsigned copied = 0;
761 unsigned len = strlen(args) + 2;
762 char *pos;
763 char *ret;
764
765 /*
766 * We need the same args as before, but minus
767 *
768 * subvol=a
769 *
770 * and add
771 *
772 * subvolid=0
773 *
774 * which is a difference of 2 characters, so we allocate strlen(args) +
775 * 2 characters.
776 */
777 ret = kzalloc(len * sizeof(char), GFP_NOFS);
778 if (!ret)
779 return NULL;
780 pos = strstr(args, "subvol=");
781
782 /* This shouldn't happen, but just in case.. */
783 if (!pos) {
784 kfree(ret);
785 return NULL;
786 }
787
788 /*
789 * The subvol=<> arg is not at the front of the string, copy everybody
790 * up to that into ret.
791 */
792 if (pos != args) {
793 *pos = '\0';
794 strcpy(ret, args);
795 copied += strlen(args);
796 pos++;
797 }
798
799 strncpy(ret + copied, "subvolid=0", len - copied);
800
801 /* Length of subvolid=0 */
802 copied += 10;
803
804 /*
805 * If there is no , after the subvol= option then we know there's no
806 * other options and we can just return.
807 */
808 pos = strchr(pos, ',');
809 if (!pos)
810 return ret;
811
812 /* Copy the rest of the arguments into our buffer */
813 strncpy(ret + copied, pos, len - copied);
814 copied += strlen(pos);
815
816 return ret;
817}
818
819static struct dentry *mount_subvol(const char *subvol_name, int flags,
820 const char *device_name, char *data)
821{
822 struct super_block *s;
823 struct dentry *root;
824 struct vfsmount *mnt;
825 struct mnt_namespace *ns_private;
826 char *newargs;
827 struct path path;
828 int error;
829
830 newargs = setup_root_args(data);
831 if (!newargs)
832 return ERR_PTR(-ENOMEM);
833 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
834 newargs);
835 kfree(newargs);
836 if (IS_ERR(mnt))
837 return ERR_CAST(mnt);
838
839 ns_private = create_mnt_ns(mnt);
840 if (IS_ERR(ns_private)) {
841 mntput(mnt);
842 return ERR_CAST(ns_private);
843 }
844
845 /*
846 * This will trigger the automount of the subvol so we can just
847 * drop the mnt we have here and return the dentry that we
848 * found.
849 */
850 error = vfs_path_lookup(mnt->mnt_root, mnt, subvol_name,
851 LOOKUP_FOLLOW, &path);
852 put_mnt_ns(ns_private);
853 if (error)
854 return ERR_PTR(error);
855
David Sterbaf9d9ef62011-09-29 13:11:33 +0200856 if (!is_subvolume_inode(path.dentry->d_inode)) {
857 path_put(&path);
858 mntput(mnt);
859 error = -EINVAL;
860 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
861 subvol_name);
862 return ERR_PTR(-EINVAL);
863 }
864
Josef Bacik830c4ad2011-07-25 15:55:42 -0400865 /* Get a ref to the sb and the dentry we found and return it */
866 s = path.mnt->mnt_sb;
867 atomic_inc(&s->s_active);
868 root = dget(path.dentry);
869 path_put(&path);
870 down_write(&s->s_umount);
871
872 return root;
873}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500874
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400875/*
876 * Find a superblock for the given device / mount point.
877 *
878 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
879 * for multiple device setup. Make sure to keep it in sync.
880 */
Al Viro061dbc62010-07-26 16:21:33 +0400881static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200882 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400883{
884 struct block_device *bdev = NULL;
885 struct super_block *s;
886 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400887 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500888 struct btrfs_root *tree_root = NULL;
889 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500890 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000891 char *subvol_name = NULL;
892 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000893 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400894 int error = 0;
895
Christoph Hellwig97288f22008-12-02 06:36:09 -0500896 if (!(flags & MS_RDONLY))
897 mode |= FMODE_WRITE;
898
899 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000900 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000901 &subvol_rootid, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400902 if (error)
Al Viro061dbc62010-07-26 16:21:33 +0400903 return ERR_PTR(error);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400904
Josef Bacik830c4ad2011-07-25 15:55:42 -0400905 if (subvol_name) {
906 root = mount_subvol(subvol_name, flags, device_name, data);
907 kfree(subvol_name);
908 return root;
909 }
910
David Sterba306e16c2011-04-19 14:29:38 +0200911 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400912 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400913 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400914
Christoph Hellwig97288f22008-12-02 06:36:09 -0500915 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400916 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400917 return ERR_PTR(error);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400918
Yan Zheng2b820322008-11-17 21:11:30 -0500919 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
920 error = -EACCES;
921 goto error_close_devices;
922 }
923
Josef Bacik450ba0e2010-11-19 14:59:15 -0500924 /*
925 * Setup a dummy root and fs_info for test/set super. This is because
926 * we don't actually fill this stuff out until open_ctree, but we need
927 * it for searching for existing supers, so this lets us do that and
928 * then open_ctree will properly initialize everything later.
929 */
930 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
931 tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
932 if (!fs_info || !tree_root) {
933 error = -ENOMEM;
934 goto error_close_devices;
935 }
936 fs_info->tree_root = tree_root;
937 fs_info->fs_devices = fs_devices;
938 tree_root->fs_info = fs_info;
939
Chris Masondfe25022008-05-13 13:46:40 -0400940 bdev = fs_devices->latest_bdev;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500941 s = sget(fs_type, btrfs_test_super, btrfs_set_super, tree_root);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400942 if (IS_ERR(s)) {
943 error = PTR_ERR(s);
944 goto error_close_devices;
945 }
Yan4b82d6e2007-08-29 09:11:44 -0400946
947 if (s->s_root) {
948 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400949 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400950 return ERR_PTR(-EBUSY);
Yan4b82d6e2007-08-29 09:11:44 -0400951 }
952
Yan Zheng2b820322008-11-17 21:11:30 -0500953 btrfs_close_devices(fs_devices);
Ian Kentbdc924b2010-12-27 16:33:15 +0800954 kfree(fs_info);
955 kfree(tree_root);
Yan4b82d6e2007-08-29 09:11:44 -0400956 } else {
957 char b[BDEVNAME_SIZE];
958
Al Viro9e1f1de2011-06-03 18:24:58 -0400959 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -0400960 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Ilya Dryomov5f524442011-10-13 00:20:43 +0300961 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400962 error = btrfs_fill_super(s, fs_devices, data,
963 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400964 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400965 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400966 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400967 }
968
969 s->s_flags |= MS_ACTIVE;
970 }
971
Josef Bacik830c4ad2011-07-25 15:55:42 -0400972 root = get_default_root(s, subvol_objectid);
973 if (IS_ERR(root)) {
974 deactivate_locked_super(s);
975 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400976 }
977
Al Viro061dbc62010-07-26 16:21:33 +0400978 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400979
Yan Zhengc146afa2008-11-12 14:34:12 -0500980error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400981 btrfs_close_devices(fs_devices);
Josef Bacik450ba0e2010-11-19 14:59:15 -0500982 kfree(fs_info);
983 kfree(tree_root);
Al Viro061dbc62010-07-26 16:21:33 +0400984 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400985}
Chris Mason2e635a22007-03-21 11:12:56 -0400986
Yan Zhengc146afa2008-11-12 14:34:12 -0500987static int btrfs_remount(struct super_block *sb, int *flags, char *data)
988{
989 struct btrfs_root *root = btrfs_sb(sb);
990 int ret;
991
Chris Masonb2880522009-02-12 09:37:35 -0500992 ret = btrfs_parse_options(root, data);
993 if (ret)
994 return -EINVAL;
995
Yan Zhengc146afa2008-11-12 14:34:12 -0500996 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
997 return 0;
998
999 if (*flags & MS_RDONLY) {
1000 sb->s_flags |= MS_RDONLY;
1001
1002 ret = btrfs_commit_super(root);
1003 WARN_ON(ret);
1004 } else {
Yan Zheng2b820322008-11-17 21:11:30 -05001005 if (root->fs_info->fs_devices->rw_devices == 0)
1006 return -EACCES;
1007
Yan Zhengc146afa2008-11-12 14:34:12 -05001008 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
1009 return -EINVAL;
1010
Yan, Zhengd68fc572010-05-16 10:49:58 -04001011 ret = btrfs_cleanup_fs_roots(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05001012 WARN_ON(ret);
1013
Yan, Zhengd68fc572010-05-16 10:49:58 -04001014 /* recover relocation */
1015 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -05001016 WARN_ON(ret);
1017
1018 sb->s_flags &= ~MS_RDONLY;
1019 }
1020
1021 return 0;
1022}
1023
Arne Jansenbcd53742011-04-12 10:43:21 +02001024/* Used to sort the devices by max_avail(descending sort) */
1025static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1026 const void *dev_info2)
1027{
1028 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1029 ((struct btrfs_device_info *)dev_info2)->max_avail)
1030 return -1;
1031 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1032 ((struct btrfs_device_info *)dev_info2)->max_avail)
1033 return 1;
1034 else
1035 return 0;
1036}
1037
1038/*
1039 * sort the devices by max_avail, in which max free extent size of each device
1040 * is stored.(Descending Sort)
1041 */
1042static inline void btrfs_descending_sort_devices(
1043 struct btrfs_device_info *devices,
1044 size_t nr_devices)
1045{
1046 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1047 btrfs_cmp_device_free_bytes, NULL);
1048}
1049
Miao Xie6d07bce2011-01-05 10:07:31 +00001050/*
1051 * The helper to calc the free space on the devices that can be used to store
1052 * file data.
1053 */
1054static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1055{
1056 struct btrfs_fs_info *fs_info = root->fs_info;
1057 struct btrfs_device_info *devices_info;
1058 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1059 struct btrfs_device *device;
1060 u64 skip_space;
1061 u64 type;
1062 u64 avail_space;
1063 u64 used_space;
1064 u64 min_stripe_size;
1065 int min_stripes = 1;
1066 int i = 0, nr_devices;
1067 int ret;
1068
1069 nr_devices = fs_info->fs_devices->rw_devices;
1070 BUG_ON(!nr_devices);
1071
1072 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1073 GFP_NOFS);
1074 if (!devices_info)
1075 return -ENOMEM;
1076
1077 /* calc min stripe number for data space alloction */
1078 type = btrfs_get_alloc_profile(root, 1);
1079 if (type & BTRFS_BLOCK_GROUP_RAID0)
1080 min_stripes = 2;
1081 else if (type & BTRFS_BLOCK_GROUP_RAID1)
1082 min_stripes = 2;
1083 else if (type & BTRFS_BLOCK_GROUP_RAID10)
1084 min_stripes = 4;
1085
1086 if (type & BTRFS_BLOCK_GROUP_DUP)
1087 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1088 else
1089 min_stripe_size = BTRFS_STRIPE_LEN;
1090
1091 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
1092 if (!device->in_fs_metadata)
1093 continue;
1094
1095 avail_space = device->total_bytes - device->bytes_used;
1096
1097 /* align with stripe_len */
1098 do_div(avail_space, BTRFS_STRIPE_LEN);
1099 avail_space *= BTRFS_STRIPE_LEN;
1100
1101 /*
1102 * In order to avoid overwritting the superblock on the drive,
1103 * btrfs starts at an offset of at least 1MB when doing chunk
1104 * allocation.
1105 */
1106 skip_space = 1024 * 1024;
1107
1108 /* user can set the offset in fs_info->alloc_start. */
1109 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1110 device->total_bytes)
1111 skip_space = max(fs_info->alloc_start, skip_space);
1112
1113 /*
1114 * btrfs can not use the free space in [0, skip_space - 1],
1115 * we must subtract it from the total. In order to implement
1116 * it, we account the used space in this range first.
1117 */
1118 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1119 &used_space);
1120 if (ret) {
1121 kfree(devices_info);
1122 return ret;
1123 }
1124
1125 /* calc the free space in [0, skip_space - 1] */
1126 skip_space -= used_space;
1127
1128 /*
1129 * we can use the free space in [0, skip_space - 1], subtract
1130 * it from the total.
1131 */
1132 if (avail_space && avail_space >= skip_space)
1133 avail_space -= skip_space;
1134 else
1135 avail_space = 0;
1136
1137 if (avail_space < min_stripe_size)
1138 continue;
1139
1140 devices_info[i].dev = device;
1141 devices_info[i].max_avail = avail_space;
1142
1143 i++;
1144 }
1145
1146 nr_devices = i;
1147
1148 btrfs_descending_sort_devices(devices_info, nr_devices);
1149
1150 i = nr_devices - 1;
1151 avail_space = 0;
1152 while (nr_devices >= min_stripes) {
1153 if (devices_info[i].max_avail >= min_stripe_size) {
1154 int j;
1155 u64 alloc_size;
1156
1157 avail_space += devices_info[i].max_avail * min_stripes;
1158 alloc_size = devices_info[i].max_avail;
1159 for (j = i + 1 - min_stripes; j <= i; j++)
1160 devices_info[j].max_avail -= alloc_size;
1161 }
1162 i--;
1163 nr_devices--;
1164 }
1165
1166 kfree(devices_info);
1167 *free_bytes = avail_space;
1168 return 0;
1169}
1170
Chris Mason8fd17792007-04-19 21:01:03 -04001171static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1172{
1173 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -04001174 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001175 struct list_head *head = &root->fs_info->space_info;
1176 struct btrfs_space_info *found;
1177 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001178 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001179 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +01001180 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001181 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001182
Miao Xie6d07bce2011-01-05 10:07:31 +00001183 /* holding chunk_muext to avoid allocating new chunks */
1184 mutex_lock(&root->fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001185 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001186 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001187 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1188 total_free_data += found->disk_total - found->disk_used;
1189 total_free_data -=
1190 btrfs_account_ro_block_groups_free_space(found);
1191 }
1192
Yan, Zhengb742bb82010-05-16 10:46:24 -04001193 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001194 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001195 rcu_read_unlock();
1196
Chris Mason8fd17792007-04-19 21:01:03 -04001197 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001198 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001199 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001200 buf->f_bsize = dentry->d_sb->s_blocksize;
1201 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001202 buf->f_bavail = total_free_data;
1203 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1204 if (ret) {
1205 mutex_unlock(&root->fs_info->chunk_mutex);
1206 return ret;
1207 }
1208 buf->f_bavail += total_free_data;
1209 buf->f_bavail = buf->f_bavail >> bits;
1210 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001211
David Woodhouse9d036322008-08-18 12:01:52 +01001212 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001213 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001214 on a big-endian or little-endian host */
1215 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1216 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001217 /* Mask in the root object ID too, to disambiguate subvols */
1218 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1219 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1220
Chris Mason8fd17792007-04-19 21:01:03 -04001221 return 0;
1222}
Chris Masonb5133862007-04-24 11:52:22 -04001223
Chris Mason2e635a22007-03-21 11:12:56 -04001224static struct file_system_type btrfs_fs_type = {
1225 .owner = THIS_MODULE,
1226 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001227 .mount = btrfs_mount,
Chris Masona061fc82008-05-07 11:43:44 -04001228 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001229 .fs_flags = FS_REQUIRES_DEV,
1230};
Chris Masona9218f62008-03-24 15:02:04 -04001231
Chris Masond352ac62008-09-29 15:18:18 -04001232/*
1233 * used by btrfsctl to scan devices when no FS is mounted
1234 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001235static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1236 unsigned long arg)
1237{
1238 struct btrfs_ioctl_vol_args *vol;
1239 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001240 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001241
Chris Masone441d542009-01-05 16:57:23 -05001242 if (!capable(CAP_SYS_ADMIN))
1243 return -EPERM;
1244
Li Zefandae7b662009-04-08 15:06:54 +08001245 vol = memdup_user((void __user *)arg, sizeof(*vol));
1246 if (IS_ERR(vol))
1247 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001248
Chris Mason8a4b83c2008-03-24 15:02:07 -04001249 switch (cmd) {
1250 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001251 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001252 &btrfs_fs_type, &fs_devices);
1253 break;
1254 }
Li Zefandae7b662009-04-08 15:06:54 +08001255
Chris Mason8a4b83c2008-03-24 15:02:07 -04001256 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001257 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001258}
1259
Linus Torvalds01762602009-01-10 06:09:52 -08001260static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001261{
1262 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001263 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1264 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001265 return 0;
Yaned0dab62008-01-22 12:46:56 -05001266}
1267
Linus Torvalds01762602009-01-10 06:09:52 -08001268static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001269{
1270 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001271 mutex_unlock(&root->fs_info->cleaner_mutex);
1272 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001273 return 0;
Yaned0dab62008-01-22 12:46:56 -05001274}
Chris Mason2e635a22007-03-21 11:12:56 -04001275
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001276static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001277 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001278 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001279 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001280 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001281 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001282 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -04001283 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001284 .alloc_inode = btrfs_alloc_inode,
1285 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001286 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001287 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001288 .freeze_fs = btrfs_freeze,
1289 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001290};
Chris Masona9218f62008-03-24 15:02:04 -04001291
1292static const struct file_operations btrfs_ctl_fops = {
1293 .unlocked_ioctl = btrfs_control_ioctl,
1294 .compat_ioctl = btrfs_control_ioctl,
1295 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001296 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001297};
1298
1299static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001300 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001301 .name = "btrfs-control",
1302 .fops = &btrfs_ctl_fops
1303};
1304
Kay Sievers578454f2010-05-20 18:07:20 +02001305MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1306MODULE_ALIAS("devname:btrfs-control");
1307
Chris Masona9218f62008-03-24 15:02:04 -04001308static int btrfs_interface_init(void)
1309{
1310 return misc_register(&btrfs_misc);
1311}
1312
Christoph Hellwigb2950862008-12-02 09:54:17 -05001313static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001314{
1315 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001316 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001317}
1318
Chris Mason2e635a22007-03-21 11:12:56 -04001319static int __init init_btrfs_fs(void)
1320{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001321 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001322
1323 err = btrfs_init_sysfs();
1324 if (err)
1325 return err;
1326
Li Zefan261507a02010-12-17 14:21:50 +08001327 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001328 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001329 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001330
Li Zefan261507a02010-12-17 14:21:50 +08001331 err = btrfs_init_cachep();
1332 if (err)
1333 goto free_compress;
1334
Chris Masond1310b22008-01-24 16:13:08 -05001335 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001336 if (err)
1337 goto free_cachep;
1338
Chris Masond1310b22008-01-24 16:13:08 -05001339 err = extent_map_init();
1340 if (err)
1341 goto free_extent_io;
1342
Miao Xie16cdcec2011-04-22 18:12:22 +08001343 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001344 if (err)
1345 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001346
Miao Xie16cdcec2011-04-22 18:12:22 +08001347 err = btrfs_interface_init();
1348 if (err)
1349 goto free_delayed_inode;
1350
Chris Masona9218f62008-03-24 15:02:04 -04001351 err = register_filesystem(&btrfs_fs_type);
1352 if (err)
1353 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001354
1355 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001356 return 0;
1357
Chris Masona9218f62008-03-24 15:02:04 -04001358unregister_ioctl:
1359 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001360free_delayed_inode:
1361 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001362free_extent_map:
1363 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001364free_extent_io:
1365 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001366free_cachep:
1367 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001368free_compress:
1369 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001370free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001371 btrfs_exit_sysfs();
1372 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001373}
1374
1375static void __exit exit_btrfs_fs(void)
1376{
Chris Mason39279cc2007-06-12 06:35:45 -04001377 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001378 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001379 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001380 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001381 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001382 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001383 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001384 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001385 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001386}
1387
1388module_init(init_btrfs_fs)
1389module_exit(exit_btrfs_fs)
1390
1391MODULE_LICENSE("GPL");