blob: 063b521e3ded270510ea4b95f97e5d1821efa2ce [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Yan4b82d6e2007-08-29 09:11:44 -040019#include <linux/blkdev.h>
Chris Mason2e635a22007-03-21 11:12:56 -040020#include <linux/module.h>
Chris Masone20d96d2007-03-22 12:13:20 -040021#include <linux/buffer_head.h>
Chris Mason2e635a22007-03-21 11:12:56 -040022#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/highmem.h>
25#include <linux/time.h>
26#include <linux/init.h>
Eric Parisa9572a12009-04-02 16:46:06 -040027#include <linux/seq_file.h>
Chris Mason2e635a22007-03-21 11:12:56 -040028#include <linux/string.h>
Chris Mason2e635a22007-03-21 11:12:56 -040029#include <linux/backing-dev.h>
Yan4b82d6e2007-08-29 09:11:44 -040030#include <linux/mount.h>
Chris Masondee26a92007-03-26 16:00:06 -040031#include <linux/mpage.h>
Chris Mason75dfe392007-03-29 11:56:46 -040032#include <linux/swap.h>
33#include <linux/writeback.h>
Chris Mason8fd17792007-04-19 21:01:03 -040034#include <linux/statfs.h>
Chris Mason08607c12007-06-08 15:33:54 -040035#include <linux/compat.h>
Chris Mason95e05282007-08-29 09:11:44 -040036#include <linux/parser.h>
Chris Masonc59f8952007-12-17 20:14:04 -050037#include <linux/ctype.h>
Chris Mason6da6aba2007-12-18 16:15:09 -050038#include <linux/namei.h>
Chris Masona9218f62008-03-24 15:02:04 -040039#include <linux/miscdevice.h>
Qinghuang Feng1bcbf312009-01-15 13:51:03 -080040#include <linux/magic.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060042#include <linux/cleancache.h>
Josef Bacik830c4ad2011-07-25 15:55:42 -040043#include <linux/mnt_namespace.h>
Josef Bacik22c44fe2011-11-30 10:45:38 -050044#include <linux/ratelimit.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050045#include "compat.h"
Miao Xie16cdcec2011-04-22 18:12:22 +080046#include "delayed-inode.h"
Chris Mason2e635a22007-03-21 11:12:56 -040047#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040048#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040049#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040050#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040051#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040052#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050053#include "xattr.h"
Chris Mason8a4b83c2008-03-24 15:02:07 -040054#include "volumes.h"
Chris Masonb3c3da72008-07-23 12:12:13 -040055#include "version.h"
Balaji Raobe6e8dc2008-07-21 02:01:56 +053056#include "export.h"
Chris Masonc8b97812008-10-29 14:49:59 -040057#include "compression.h"
Chris Mason2e635a22007-03-21 11:12:56 -040058
liubo1abe9b82011-03-24 11:18:59 +000059#define CREATE_TRACE_POINTS
60#include <trace/events/btrfs.h>
61
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070062static const struct super_operations btrfs_super_ops;
Josef Bacik830c4ad2011-07-25 15:55:42 -040063static struct file_system_type btrfs_fs_type;
Chris Masone20d96d2007-03-22 12:13:20 -040064
liuboacce9522011-01-06 19:30:25 +080065static const char *btrfs_decode_error(struct btrfs_fs_info *fs_info, int errno,
66 char nbuf[16])
67{
68 char *errstr = NULL;
69
70 switch (errno) {
71 case -EIO:
72 errstr = "IO failure";
73 break;
74 case -ENOMEM:
75 errstr = "Out of memory";
76 break;
77 case -EROFS:
78 errstr = "Readonly filesystem";
79 break;
80 default:
81 if (nbuf) {
82 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
83 errstr = nbuf;
84 }
85 break;
86 }
87
88 return errstr;
89}
90
91static void __save_error_info(struct btrfs_fs_info *fs_info)
92{
93 /*
94 * today we only save the error info into ram. Long term we'll
95 * also send it down to the disk
96 */
97 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
98}
99
100/* NOTE:
101 * We move write_super stuff at umount in order to avoid deadlock
102 * for umount hold all lock.
103 */
104static void save_error_info(struct btrfs_fs_info *fs_info)
105{
106 __save_error_info(fs_info);
107}
108
109/* btrfs handle error by forcing the filesystem readonly */
110static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
111{
112 struct super_block *sb = fs_info->sb;
113
114 if (sb->s_flags & MS_RDONLY)
115 return;
116
117 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
118 sb->s_flags |= MS_RDONLY;
119 printk(KERN_INFO "btrfs is forced readonly\n");
120 }
121}
122
123/*
124 * __btrfs_std_error decodes expected errors from the caller and
125 * invokes the approciate error response.
126 */
127void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
128 unsigned int line, int errno)
129{
130 struct super_block *sb = fs_info->sb;
131 char nbuf[16];
132 const char *errstr;
133
134 /*
135 * Special case: if the error is EROFS, and we're already
136 * under MS_RDONLY, then it is safe here.
137 */
138 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
139 return;
140
141 errstr = btrfs_decode_error(fs_info, errno, nbuf);
142 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
143 sb->s_id, function, line, errstr);
144 save_error_info(fs_info);
145
146 btrfs_handle_error(fs_info);
147}
148
Chris Masond3977122009-01-05 21:25:51 -0500149static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -0400150{
151 struct btrfs_root *root = btrfs_sb(sb);
152 int ret;
153
154 ret = close_ctree(root);
Chris Masone20d96d2007-03-22 12:13:20 -0400155 sb->s_fs_info = NULL;
Andi Kleen559af822010-10-29 15:14:37 -0400156
157 (void)ret; /* FIXME: need to fix VFS to return error? */
Chris Masone20d96d2007-03-22 12:13:20 -0400158}
Chris Mason2e635a22007-03-21 11:12:56 -0400159
Chris Mason95e05282007-08-29 09:11:44 -0400160enum {
Josef Bacik73f73412009-12-04 17:38:27 +0000161 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
Josef Bacik287a0ab2010-03-19 18:07:23 +0000162 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
163 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
Li Zefan261507a02010-12-17 14:21:50 +0800164 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
165 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
Chris Mason91435652011-02-16 13:10:41 -0500166 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200167 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_inode_cache,
168 Opt_no_space_cache, Opt_recovery, Opt_skip_balance,
169 Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -0400170};
171
172static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -0400173 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -0400174 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +0000175 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400176 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -0500177 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -0500178 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -0500179 {Opt_nobarrier, "nobarrier"},
Chris Mason6f568d32008-01-29 16:03:38 -0500180 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -0500181 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -0400182 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -0400183 {Opt_compress, "compress"},
Li Zefan261507a02010-12-17 14:21:50 +0800184 {Opt_compress_type, "compress=%s"},
Chris Masona555f812010-01-28 16:18:15 -0500185 {Opt_compress_force, "compress-force"},
Li Zefan261507a02010-12-17 14:21:50 +0800186 {Opt_compress_force_type, "compress-force=%s"},
Chris Masone18e4802008-01-18 10:54:22 -0500187 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -0400188 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -0400189 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400190 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -0400191 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -0400192 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -0400193 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400194 {Opt_discard, "discard"},
Josef Bacik0af3d002010-06-21 14:48:16 -0400195 {Opt_space_cache, "space_cache"},
Josef Bacik88c2ba32010-09-21 14:21:34 -0400196 {Opt_clear_cache, "clear_cache"},
Sage Weil4260f7c2010-10-29 15:46:43 -0400197 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
Chris Mason91435652011-02-16 13:10:41 -0500198 {Opt_enospc_debug, "enospc_debug"},
Xin Zhonge15d0542011-04-06 07:33:51 +0000199 {Opt_subvolrootid, "subvolrootid=%d"},
Chris Mason4cb53002011-05-24 15:35:30 -0400200 {Opt_defrag, "autodefrag"},
Chris Mason4b9465c2011-06-03 09:36:29 -0400201 {Opt_inode_cache, "inode_cache"},
David Sterba89655932011-11-11 10:14:57 -0500202 {Opt_no_space_cache, "nospace_cache"},
Chris Masonaf31f5e2011-11-03 15:17:42 -0400203 {Opt_recovery, "recovery"},
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200204 {Opt_skip_balance, "skip_balance"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400205 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400206};
207
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400208/*
209 * Regular mount options parser. Everything that is needed only when
210 * reading in a new superblock is parsed here.
211 */
212int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400213{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400214 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400215 substring_t args[MAX_OPT_ARGS];
Josef Bacik73bc1872011-10-03 14:07:49 -0400216 char *p, *num, *orig = NULL;
217 u64 cache_gen;
Chris Mason4543df72008-06-11 21:47:56 -0400218 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000219 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800220 char *compress_type;
221 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500222
David Sterba6c417612011-04-13 15:41:04 +0200223 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -0400224 if (cache_gen)
225 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
226
Chris Mason95e05282007-08-29 09:11:44 -0400227 if (!options)
Josef Bacik73bc1872011-10-03 14:07:49 -0400228 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400229
Chris Masonbe20aa92007-12-17 20:14:01 -0500230 /*
231 * strsep changes the string, duplicate it because parse_options
232 * gets called twice
233 */
234 options = kstrdup(options, GFP_NOFS);
235 if (!options)
236 return -ENOMEM;
237
Josef Bacikda495ec2010-02-25 20:38:35 +0000238 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500239
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400240 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400241 int token;
242 if (!*p)
243 continue;
244
245 token = match_token(p, tokens, args);
246 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400247 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400248 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
249 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400250 break;
Chris Mason95e05282007-08-29 09:11:44 -0400251 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000252 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000253 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400254 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400255 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400256 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400257 * and can be happily ignored here.
258 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500259 break;
260 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400261 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400262 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500263 break;
264 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400265 printk(KERN_INFO "btrfs: setting nodatacow\n");
266 btrfs_set_opt(info->mount_opt, NODATACOW);
267 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400268 break;
Chris Masona555f812010-01-28 16:18:15 -0500269 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800270 case Opt_compress_force_type:
271 compress_force = true;
272 case Opt_compress:
273 case Opt_compress_type:
274 if (token == Opt_compress ||
275 token == Opt_compress_force ||
276 strcmp(args[0].from, "zlib") == 0) {
277 compress_type = "zlib";
278 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800279 } else if (strcmp(args[0].from, "lzo") == 0) {
280 compress_type = "lzo";
281 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800282 } else {
283 ret = -EINVAL;
284 goto out;
285 }
286
Chris Masona555f812010-01-28 16:18:15 -0500287 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800288 if (compress_force) {
289 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
290 pr_info("btrfs: force %s compression\n",
291 compress_type);
292 } else
293 pr_info("btrfs: use %s compression\n",
294 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500295 break;
Chris Masone18e4802008-01-18 10:54:22 -0500296 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400297 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
298 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500299 break;
Chris Mason451d7582009-06-09 20:28:34 -0400300 case Opt_ssd_spread:
301 printk(KERN_INFO "btrfs: use spread ssd "
302 "allocation scheme\n");
303 btrfs_set_opt(info->mount_opt, SSD);
304 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
305 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400306 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400307 printk(KERN_INFO "btrfs: not using ssd allocation "
308 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400309 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400310 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400311 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400312 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500313 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400314 printk(KERN_INFO "btrfs: turning off barriers\n");
315 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500316 break;
Chris Mason4543df72008-06-11 21:47:56 -0400317 case Opt_thread_pool:
318 intarg = 0;
319 match_int(&args[0], &intarg);
320 if (intarg) {
321 info->thread_pool_size = intarg;
322 printk(KERN_INFO "btrfs: thread pool %d\n",
323 info->thread_pool_size);
324 }
325 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500326 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400327 num = match_strdup(&args[0]);
328 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000329 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400330 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500331
Chris Mason15ada042008-06-11 16:51:38 -0400332 if (info->max_inline) {
333 info->max_inline = max_t(u64,
334 info->max_inline,
335 root->sectorsize);
336 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400337 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700338 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500339 }
340 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500341 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400342 num = match_strdup(&args[0]);
343 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000344 info->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400345 kfree(num);
346 printk(KERN_INFO
347 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700348 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500349 }
350 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400351 case Opt_noacl:
352 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
353 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400354 case Opt_notreelog:
355 printk(KERN_INFO "btrfs: disabling tree log\n");
356 btrfs_set_opt(info->mount_opt, NOTREELOG);
357 break;
Sage Weildccae992009-04-02 16:59:01 -0400358 case Opt_flushoncommit:
359 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
360 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
361 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400362 case Opt_ratio:
363 intarg = 0;
364 match_int(&args[0], &intarg);
365 if (intarg) {
366 info->metadata_ratio = intarg;
367 printk(KERN_INFO "btrfs: metadata ratio %d\n",
368 info->metadata_ratio);
369 }
370 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400371 case Opt_discard:
372 btrfs_set_opt(info->mount_opt, DISCARD);
373 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400374 case Opt_space_cache:
Josef Bacik0af3d002010-06-21 14:48:16 -0400375 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000376 break;
Josef Bacik73bc1872011-10-03 14:07:49 -0400377 case Opt_no_space_cache:
378 printk(KERN_INFO "btrfs: disabling disk space caching\n");
379 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
380 break;
Chris Mason4b9465c2011-06-03 09:36:29 -0400381 case Opt_inode_cache:
382 printk(KERN_INFO "btrfs: enabling inode map caching\n");
383 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
384 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400385 case Opt_clear_cache:
386 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
387 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400388 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400389 case Opt_user_subvol_rm_allowed:
390 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
391 break;
Chris Mason91435652011-02-16 13:10:41 -0500392 case Opt_enospc_debug:
393 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
394 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400395 case Opt_defrag:
396 printk(KERN_INFO "btrfs: enabling auto defrag");
397 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
398 break;
Chris Masonaf31f5e2011-11-03 15:17:42 -0400399 case Opt_recovery:
400 printk(KERN_INFO "btrfs: enabling auto recovery");
401 btrfs_set_opt(info->mount_opt, RECOVERY);
402 break;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200403 case Opt_skip_balance:
404 btrfs_set_opt(info->mount_opt, SKIP_BALANCE);
405 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000406 case Opt_err:
407 printk(KERN_INFO "btrfs: unrecognized mount option "
408 "'%s'\n", p);
409 ret = -EINVAL;
410 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400411 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500412 break;
Chris Mason95e05282007-08-29 09:11:44 -0400413 }
414 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000415out:
Josef Bacik73bc1872011-10-03 14:07:49 -0400416 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
417 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacikda495ec2010-02-25 20:38:35 +0000418 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000419 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400420}
421
422/*
423 * Parse mount options that are required early in the mount process.
424 *
425 * All other options will be parsed on much later in the mount process and
426 * only when we need to allocate a new super block.
427 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500428static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000429 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000430 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400431{
432 substring_t args[MAX_OPT_ARGS];
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800433 char *device_name, *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400434 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000435 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400436
437 if (!options)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400438 return 0;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400439
440 /*
441 * strsep changes the string, duplicate it because parse_options
442 * gets called twice
443 */
444 opts = kstrdup(options, GFP_KERNEL);
445 if (!opts)
446 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800447 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400448
449 while ((p = strsep(&opts, ",")) != NULL) {
450 int token;
451 if (!*p)
452 continue;
453
454 token = match_token(p, tokens, args);
455 switch (token) {
456 case Opt_subvol:
Ilya Dryomova90e8b62011-11-08 16:47:55 +0200457 kfree(*subvol_name);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400458 *subvol_name = match_strdup(&args[0]);
459 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000460 case Opt_subvolid:
461 intarg = 0;
Josef Bacik4849f01d2009-12-14 19:18:38 +0000462 error = match_int(&args[0], &intarg);
463 if (!error) {
464 /* we want the original fs_tree */
465 if (!intarg)
466 *subvol_objectid =
467 BTRFS_FS_TREE_OBJECTID;
468 else
469 *subvol_objectid = intarg;
470 }
Josef Bacik73f73412009-12-04 17:38:27 +0000471 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000472 case Opt_subvolrootid:
473 intarg = 0;
474 error = match_int(&args[0], &intarg);
475 if (!error) {
476 /* we want the original fs_tree */
477 if (!intarg)
478 *subvol_rootid =
479 BTRFS_FS_TREE_OBJECTID;
480 else
481 *subvol_rootid = intarg;
482 }
483 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400484 case Opt_device:
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800485 device_name = match_strdup(&args[0]);
486 if (!device_name) {
487 error = -ENOMEM;
488 goto out;
489 }
490 error = btrfs_scan_one_device(device_name,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400491 flags, holder, fs_devices);
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800492 kfree(device_name);
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400493 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400494 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400495 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400496 default:
497 break;
498 }
499 }
500
Josef Bacik830c4ad2011-07-25 15:55:42 -0400501out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800502 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400503 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400504}
505
Josef Bacik73f73412009-12-04 17:38:27 +0000506static struct dentry *get_default_root(struct super_block *sb,
507 u64 subvol_objectid)
508{
509 struct btrfs_root *root = sb->s_fs_info;
510 struct btrfs_root *new_root;
511 struct btrfs_dir_item *di;
512 struct btrfs_path *path;
513 struct btrfs_key location;
514 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000515 u64 dir_id;
516 int new = 0;
517
518 /*
519 * We have a specific subvol we want to mount, just setup location and
520 * go look up the root.
521 */
522 if (subvol_objectid) {
523 location.objectid = subvol_objectid;
524 location.type = BTRFS_ROOT_ITEM_KEY;
525 location.offset = (u64)-1;
526 goto find_root;
527 }
528
529 path = btrfs_alloc_path();
530 if (!path)
531 return ERR_PTR(-ENOMEM);
532 path->leave_spinning = 1;
533
534 /*
535 * Find the "default" dir item which points to the root item that we
536 * will mount by default if we haven't been given a specific subvolume
537 * to mount.
538 */
David Sterba6c417612011-04-13 15:41:04 +0200539 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik73f73412009-12-04 17:38:27 +0000540 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000541 if (IS_ERR(di)) {
542 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000543 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000544 }
Josef Bacik73f73412009-12-04 17:38:27 +0000545 if (!di) {
546 /*
547 * Ok the default dir item isn't there. This is weird since
548 * it's always been there, but don't freak out, just try and
549 * mount to root most subvolume.
550 */
551 btrfs_free_path(path);
552 dir_id = BTRFS_FIRST_FREE_OBJECTID;
553 new_root = root->fs_info->fs_root;
554 goto setup_root;
555 }
556
557 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
558 btrfs_free_path(path);
559
560find_root:
561 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
562 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400563 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000564
565 if (btrfs_root_refs(&new_root->root_item) == 0)
566 return ERR_PTR(-ENOENT);
567
568 dir_id = btrfs_root_dirid(&new_root->root_item);
569setup_root:
570 location.objectid = dir_id;
571 location.type = BTRFS_INODE_ITEM_KEY;
572 location.offset = 0;
573
574 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000575 if (IS_ERR(inode))
576 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000577
578 /*
579 * If we're just mounting the root most subvol put the inode and return
580 * a reference to the dentry. We will have already gotten a reference
581 * to the inode in btrfs_fill_super so we're good to go.
582 */
583 if (!new && sb->s_root->d_inode == inode) {
584 iput(inode);
585 return dget(sb->s_root);
586 }
587
Josef Bacikba5b8952011-07-25 15:40:35 -0400588 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000589}
590
Chris Masond3977122009-01-05 21:25:51 -0500591static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400592 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500593 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400594{
Chris Masond3977122009-01-05 21:25:51 -0500595 struct inode *inode;
596 struct dentry *root_dentry;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400597 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400598 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400599 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400600
601 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400602 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400603 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500604 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530605 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500606 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400607 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400608#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400609 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400610#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400611
Chris Masondfe25022008-05-13 13:46:40 -0400612 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400613
Yane58ca022008-04-01 11:21:34 -0400614 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400615 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400616 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400617 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400618 sb->s_fs_info = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400619
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400620 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
621 key.type = BTRFS_INODE_ITEM_KEY;
622 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000623 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400624 if (IS_ERR(inode)) {
625 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400626 goto fail_close;
627 }
Chris Mason2e635a22007-03-21 11:12:56 -0400628
Chris Masone20d96d2007-03-22 12:13:20 -0400629 root_dentry = d_alloc_root(inode);
630 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400631 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400632 err = -ENOMEM;
633 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400634 }
Josef Bacik58176a92007-08-29 15:47:34 -0400635
Chris Masone20d96d2007-03-22 12:13:20 -0400636 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500637
Chris Mason6885f302008-02-20 16:11:05 -0500638 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600639 cleancache_init_fs(sb);
Chris Mason2e635a22007-03-21 11:12:56 -0400640 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400641
Chris Mason39279cc2007-06-12 06:35:45 -0400642fail_close:
643 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400644 return err;
645}
646
Sage Weil6bf13c02008-06-10 10:07:39 -0400647int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400648{
649 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400650 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400651 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400652
liubo1abe9b82011-03-24 11:18:59 +0000653 trace_btrfs_sync_fs(wait);
654
Chris Masond561c022007-03-23 19:47:49 -0400655 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400656 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400657 return 0;
658 }
Chris Mason771ed682008-11-06 22:02:51 -0500659
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000660 btrfs_start_delalloc_inodes(root, 0);
661 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500662
Yan, Zhenga22285a2010-05-16 10:48:46 -0400663 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000664 if (IS_ERR(trans))
665 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400666 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400667 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400668}
669
Eric Parisa9572a12009-04-02 16:46:06 -0400670static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
671{
672 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
673 struct btrfs_fs_info *info = root->fs_info;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000674 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400675
676 if (btrfs_test_opt(root, DEGRADED))
677 seq_puts(seq, ",degraded");
678 if (btrfs_test_opt(root, NODATASUM))
679 seq_puts(seq, ",nodatasum");
680 if (btrfs_test_opt(root, NODATACOW))
681 seq_puts(seq, ",nodatacow");
682 if (btrfs_test_opt(root, NOBARRIER))
683 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400684 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700685 seq_printf(seq, ",max_inline=%llu",
686 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400687 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700688 seq_printf(seq, ",alloc_start=%llu",
689 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400690 if (info->thread_pool_size != min_t(unsigned long,
691 num_online_cpus() + 2, 8))
692 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000693 if (btrfs_test_opt(root, COMPRESS)) {
694 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
695 compress_type = "zlib";
696 else
697 compress_type = "lzo";
698 if (btrfs_test_opt(root, FORCE_COMPRESS))
699 seq_printf(seq, ",compress-force=%s", compress_type);
700 else
701 seq_printf(seq, ",compress=%s", compress_type);
702 }
Chris Masonc2898112009-06-10 09:51:32 -0400703 if (btrfs_test_opt(root, NOSSD))
704 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400705 if (btrfs_test_opt(root, SSD_SPREAD))
706 seq_puts(seq, ",ssd_spread");
707 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400708 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400709 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400710 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400711 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400712 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000713 if (btrfs_test_opt(root, DISCARD))
714 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400715 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
716 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000717 if (btrfs_test_opt(root, SPACE_CACHE))
718 seq_puts(seq, ",space_cache");
Josef Bacik73bc1872011-10-03 14:07:49 -0400719 else
David Sterba89655932011-11-11 10:14:57 -0500720 seq_puts(seq, ",nospace_cache");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000721 if (btrfs_test_opt(root, CLEAR_CACHE))
722 seq_puts(seq, ",clear_cache");
723 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
724 seq_puts(seq, ",user_subvol_rm_allowed");
David Sterba0942caa2011-06-28 15:10:37 +0000725 if (btrfs_test_opt(root, ENOSPC_DEBUG))
726 seq_puts(seq, ",enospc_debug");
727 if (btrfs_test_opt(root, AUTO_DEFRAG))
728 seq_puts(seq, ",autodefrag");
729 if (btrfs_test_opt(root, INODE_MAP_CACHE))
730 seq_puts(seq, ",inode_cache");
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200731 if (btrfs_test_opt(root, SKIP_BALANCE))
732 seq_puts(seq, ",skip_balance");
Eric Parisa9572a12009-04-02 16:46:06 -0400733 return 0;
734}
735
Chris Masona061fc82008-05-07 11:43:44 -0400736static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400737{
Josef Bacik450ba0e2010-11-19 14:59:15 -0500738 struct btrfs_root *test_root = data;
Chris Masona061fc82008-05-07 11:43:44 -0400739 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400740
Ian Kent619c8c72010-11-22 02:21:38 +0000741 /*
742 * If this super block is going away, return false as it
743 * can't match as an existing super block.
744 */
745 if (!atomic_read(&s->s_active))
746 return 0;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500747 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400748}
749
Josef Bacik450ba0e2010-11-19 14:59:15 -0500750static int btrfs_set_super(struct super_block *s, void *data)
751{
752 s->s_fs_info = data;
753
754 return set_anon_super(s, data);
755}
756
Josef Bacik830c4ad2011-07-25 15:55:42 -0400757/*
David Sterbaf9d9ef62011-09-29 13:11:33 +0200758 * subvolumes are identified by ino 256
759 */
760static inline int is_subvolume_inode(struct inode *inode)
761{
762 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
763 return 1;
764 return 0;
765}
766
767/*
Josef Bacik830c4ad2011-07-25 15:55:42 -0400768 * This will strip out the subvol=%s argument for an argument string and add
769 * subvolid=0 to make sure we get the actual tree root for path walking to the
770 * subvol we want.
771 */
772static char *setup_root_args(char *args)
773{
774 unsigned copied = 0;
775 unsigned len = strlen(args) + 2;
776 char *pos;
777 char *ret;
778
779 /*
780 * We need the same args as before, but minus
781 *
782 * subvol=a
783 *
784 * and add
785 *
786 * subvolid=0
787 *
788 * which is a difference of 2 characters, so we allocate strlen(args) +
789 * 2 characters.
790 */
791 ret = kzalloc(len * sizeof(char), GFP_NOFS);
792 if (!ret)
793 return NULL;
794 pos = strstr(args, "subvol=");
795
796 /* This shouldn't happen, but just in case.. */
797 if (!pos) {
798 kfree(ret);
799 return NULL;
800 }
801
802 /*
803 * The subvol=<> arg is not at the front of the string, copy everybody
804 * up to that into ret.
805 */
806 if (pos != args) {
807 *pos = '\0';
808 strcpy(ret, args);
809 copied += strlen(args);
810 pos++;
811 }
812
813 strncpy(ret + copied, "subvolid=0", len - copied);
814
815 /* Length of subvolid=0 */
816 copied += 10;
817
818 /*
819 * If there is no , after the subvol= option then we know there's no
820 * other options and we can just return.
821 */
822 pos = strchr(pos, ',');
823 if (!pos)
824 return ret;
825
826 /* Copy the rest of the arguments into our buffer */
827 strncpy(ret + copied, pos, len - copied);
828 copied += strlen(pos);
829
830 return ret;
831}
832
833static struct dentry *mount_subvol(const char *subvol_name, int flags,
834 const char *device_name, char *data)
835{
836 struct super_block *s;
837 struct dentry *root;
838 struct vfsmount *mnt;
839 struct mnt_namespace *ns_private;
840 char *newargs;
841 struct path path;
842 int error;
843
844 newargs = setup_root_args(data);
845 if (!newargs)
846 return ERR_PTR(-ENOMEM);
847 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
848 newargs);
849 kfree(newargs);
850 if (IS_ERR(mnt))
851 return ERR_CAST(mnt);
852
853 ns_private = create_mnt_ns(mnt);
854 if (IS_ERR(ns_private)) {
855 mntput(mnt);
856 return ERR_CAST(ns_private);
857 }
858
859 /*
860 * This will trigger the automount of the subvol so we can just
861 * drop the mnt we have here and return the dentry that we
862 * found.
863 */
864 error = vfs_path_lookup(mnt->mnt_root, mnt, subvol_name,
865 LOOKUP_FOLLOW, &path);
866 put_mnt_ns(ns_private);
867 if (error)
868 return ERR_PTR(error);
869
David Sterbaf9d9ef62011-09-29 13:11:33 +0200870 if (!is_subvolume_inode(path.dentry->d_inode)) {
871 path_put(&path);
872 mntput(mnt);
873 error = -EINVAL;
874 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
875 subvol_name);
876 return ERR_PTR(-EINVAL);
877 }
878
Josef Bacik830c4ad2011-07-25 15:55:42 -0400879 /* Get a ref to the sb and the dentry we found and return it */
880 s = path.mnt->mnt_sb;
881 atomic_inc(&s->s_active);
882 root = dget(path.dentry);
883 path_put(&path);
884 down_write(&s->s_umount);
885
886 return root;
887}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500888
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400889/*
890 * Find a superblock for the given device / mount point.
891 *
892 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
893 * for multiple device setup. Make sure to keep it in sync.
894 */
Al Viro061dbc62010-07-26 16:21:33 +0400895static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200896 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400897{
898 struct block_device *bdev = NULL;
899 struct super_block *s;
900 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400901 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500902 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500903 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000904 char *subvol_name = NULL;
905 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000906 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400907 int error = 0;
908
Christoph Hellwig97288f22008-12-02 06:36:09 -0500909 if (!(flags & MS_RDONLY))
910 mode |= FMODE_WRITE;
911
912 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000913 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000914 &subvol_rootid, &fs_devices);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200915 if (error) {
916 kfree(subvol_name);
Al Viro061dbc62010-07-26 16:21:33 +0400917 return ERR_PTR(error);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200918 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400919
Josef Bacik830c4ad2011-07-25 15:55:42 -0400920 if (subvol_name) {
921 root = mount_subvol(subvol_name, flags, device_name, data);
922 kfree(subvol_name);
923 return root;
924 }
925
David Sterba306e16c2011-04-19 14:29:38 +0200926 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400927 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400928 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400929
Josef Bacik450ba0e2010-11-19 14:59:15 -0500930 /*
931 * Setup a dummy root and fs_info for test/set super. This is because
932 * we don't actually fill this stuff out until open_ctree, but we need
933 * it for searching for existing supers, so this lets us do that and
934 * then open_ctree will properly initialize everything later.
935 */
936 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200937 if (!fs_info)
938 return ERR_PTR(-ENOMEM);
939
940 fs_info->tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
941 if (!fs_info->tree_root) {
slyich@gmail.com45ea6092011-11-07 16:08:01 -0500942 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200943 goto error_fs_info;
slyich@gmail.com45ea6092011-11-07 16:08:01 -0500944 }
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200945 fs_info->tree_root->fs_info = fs_info;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500946 fs_info->fs_devices = fs_devices;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500947
David Sterba6c417612011-04-13 15:41:04 +0200948 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
949 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
950 if (!fs_info->super_copy || !fs_info->super_for_commit) {
951 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200952 goto error_fs_info;
953 }
954
955 error = btrfs_open_devices(fs_devices, mode, fs_type);
956 if (error)
957 goto error_fs_info;
958
959 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
960 error = -EACCES;
David Sterba6c417612011-04-13 15:41:04 +0200961 goto error_close_devices;
962 }
963
Chris Masondfe25022008-05-13 13:46:40 -0400964 bdev = fs_devices->latest_bdev;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200965 s = sget(fs_type, btrfs_test_super, btrfs_set_super,
966 fs_info->tree_root);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400967 if (IS_ERR(s)) {
968 error = PTR_ERR(s);
969 goto error_close_devices;
970 }
Yan4b82d6e2007-08-29 09:11:44 -0400971
972 if (s->s_root) {
973 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400974 deactivate_locked_super(s);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200975 error = -EBUSY;
976 goto error_close_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400977 }
978
Yan Zheng2b820322008-11-17 21:11:30 -0500979 btrfs_close_devices(fs_devices);
David Sterba6c417612011-04-13 15:41:04 +0200980 free_fs_info(fs_info);
Yan4b82d6e2007-08-29 09:11:44 -0400981 } else {
982 char b[BDEVNAME_SIZE];
983
Al Viro9e1f1de2011-06-03 18:24:58 -0400984 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -0400985 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Ilya Dryomov5f524442011-10-13 00:20:43 +0300986 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400987 error = btrfs_fill_super(s, fs_devices, data,
988 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400989 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400990 deactivate_locked_super(s);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400991 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400992 }
993
994 s->s_flags |= MS_ACTIVE;
995 }
996
Josef Bacik830c4ad2011-07-25 15:55:42 -0400997 root = get_default_root(s, subvol_objectid);
998 if (IS_ERR(root)) {
999 deactivate_locked_super(s);
1000 return root;
Yan4b82d6e2007-08-29 09:11:44 -04001001 }
1002
Al Viro061dbc62010-07-26 16:21:33 +04001003 return root;
Yan4b82d6e2007-08-29 09:11:44 -04001004
Yan Zhengc146afa2008-11-12 14:34:12 -05001005error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -04001006 btrfs_close_devices(fs_devices);
Ilya Dryomov04d21a22011-11-09 14:41:22 +02001007error_fs_info:
David Sterba6c417612011-04-13 15:41:04 +02001008 free_fs_info(fs_info);
Al Viro061dbc62010-07-26 16:21:33 +04001009 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -04001010}
Chris Mason2e635a22007-03-21 11:12:56 -04001011
Yan Zhengc146afa2008-11-12 14:34:12 -05001012static int btrfs_remount(struct super_block *sb, int *flags, char *data)
1013{
1014 struct btrfs_root *root = btrfs_sb(sb);
1015 int ret;
1016
Chris Masonb2880522009-02-12 09:37:35 -05001017 ret = btrfs_parse_options(root, data);
1018 if (ret)
1019 return -EINVAL;
1020
Yan Zhengc146afa2008-11-12 14:34:12 -05001021 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
1022 return 0;
1023
1024 if (*flags & MS_RDONLY) {
1025 sb->s_flags |= MS_RDONLY;
1026
1027 ret = btrfs_commit_super(root);
1028 WARN_ON(ret);
1029 } else {
Yan Zheng2b820322008-11-17 21:11:30 -05001030 if (root->fs_info->fs_devices->rw_devices == 0)
1031 return -EACCES;
1032
David Sterba6c417612011-04-13 15:41:04 +02001033 if (btrfs_super_log_root(root->fs_info->super_copy) != 0)
Yan Zhengc146afa2008-11-12 14:34:12 -05001034 return -EINVAL;
1035
Yan, Zhengd68fc572010-05-16 10:49:58 -04001036 ret = btrfs_cleanup_fs_roots(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05001037 WARN_ON(ret);
1038
Yan, Zhengd68fc572010-05-16 10:49:58 -04001039 /* recover relocation */
1040 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -05001041 WARN_ON(ret);
1042
1043 sb->s_flags &= ~MS_RDONLY;
1044 }
1045
1046 return 0;
1047}
1048
Arne Jansenbcd53742011-04-12 10:43:21 +02001049/* Used to sort the devices by max_avail(descending sort) */
1050static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1051 const void *dev_info2)
1052{
1053 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1054 ((struct btrfs_device_info *)dev_info2)->max_avail)
1055 return -1;
1056 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1057 ((struct btrfs_device_info *)dev_info2)->max_avail)
1058 return 1;
1059 else
1060 return 0;
1061}
1062
1063/*
1064 * sort the devices by max_avail, in which max free extent size of each device
1065 * is stored.(Descending Sort)
1066 */
1067static inline void btrfs_descending_sort_devices(
1068 struct btrfs_device_info *devices,
1069 size_t nr_devices)
1070{
1071 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1072 btrfs_cmp_device_free_bytes, NULL);
1073}
1074
Miao Xie6d07bce2011-01-05 10:07:31 +00001075/*
1076 * The helper to calc the free space on the devices that can be used to store
1077 * file data.
1078 */
1079static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1080{
1081 struct btrfs_fs_info *fs_info = root->fs_info;
1082 struct btrfs_device_info *devices_info;
1083 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1084 struct btrfs_device *device;
1085 u64 skip_space;
1086 u64 type;
1087 u64 avail_space;
1088 u64 used_space;
1089 u64 min_stripe_size;
Miao Xie39fb26c2011-12-14 20:12:02 -05001090 int min_stripes = 1, num_stripes = 1;
Miao Xie6d07bce2011-01-05 10:07:31 +00001091 int i = 0, nr_devices;
1092 int ret;
1093
Li Zefanb772a862011-11-28 16:43:00 +08001094 nr_devices = fs_info->fs_devices->open_devices;
Miao Xie6d07bce2011-01-05 10:07:31 +00001095 BUG_ON(!nr_devices);
1096
1097 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1098 GFP_NOFS);
1099 if (!devices_info)
1100 return -ENOMEM;
1101
1102 /* calc min stripe number for data space alloction */
1103 type = btrfs_get_alloc_profile(root, 1);
Miao Xie39fb26c2011-12-14 20:12:02 -05001104 if (type & BTRFS_BLOCK_GROUP_RAID0) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001105 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001106 num_stripes = nr_devices;
1107 } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001108 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001109 num_stripes = 2;
1110 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001111 min_stripes = 4;
Miao Xie39fb26c2011-12-14 20:12:02 -05001112 num_stripes = 4;
1113 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001114
1115 if (type & BTRFS_BLOCK_GROUP_DUP)
1116 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1117 else
1118 min_stripe_size = BTRFS_STRIPE_LEN;
1119
Li Zefanb772a862011-11-28 16:43:00 +08001120 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1121 if (!device->in_fs_metadata || !device->bdev)
Miao Xie6d07bce2011-01-05 10:07:31 +00001122 continue;
1123
1124 avail_space = device->total_bytes - device->bytes_used;
1125
1126 /* align with stripe_len */
1127 do_div(avail_space, BTRFS_STRIPE_LEN);
1128 avail_space *= BTRFS_STRIPE_LEN;
1129
1130 /*
1131 * In order to avoid overwritting the superblock on the drive,
1132 * btrfs starts at an offset of at least 1MB when doing chunk
1133 * allocation.
1134 */
1135 skip_space = 1024 * 1024;
1136
1137 /* user can set the offset in fs_info->alloc_start. */
1138 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1139 device->total_bytes)
1140 skip_space = max(fs_info->alloc_start, skip_space);
1141
1142 /*
1143 * btrfs can not use the free space in [0, skip_space - 1],
1144 * we must subtract it from the total. In order to implement
1145 * it, we account the used space in this range first.
1146 */
1147 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1148 &used_space);
1149 if (ret) {
1150 kfree(devices_info);
1151 return ret;
1152 }
1153
1154 /* calc the free space in [0, skip_space - 1] */
1155 skip_space -= used_space;
1156
1157 /*
1158 * we can use the free space in [0, skip_space - 1], subtract
1159 * it from the total.
1160 */
1161 if (avail_space && avail_space >= skip_space)
1162 avail_space -= skip_space;
1163 else
1164 avail_space = 0;
1165
1166 if (avail_space < min_stripe_size)
1167 continue;
1168
1169 devices_info[i].dev = device;
1170 devices_info[i].max_avail = avail_space;
1171
1172 i++;
1173 }
1174
1175 nr_devices = i;
1176
1177 btrfs_descending_sort_devices(devices_info, nr_devices);
1178
1179 i = nr_devices - 1;
1180 avail_space = 0;
1181 while (nr_devices >= min_stripes) {
Miao Xie39fb26c2011-12-14 20:12:02 -05001182 if (num_stripes > nr_devices)
1183 num_stripes = nr_devices;
1184
Miao Xie6d07bce2011-01-05 10:07:31 +00001185 if (devices_info[i].max_avail >= min_stripe_size) {
1186 int j;
1187 u64 alloc_size;
1188
Miao Xie39fb26c2011-12-14 20:12:02 -05001189 avail_space += devices_info[i].max_avail * num_stripes;
Miao Xie6d07bce2011-01-05 10:07:31 +00001190 alloc_size = devices_info[i].max_avail;
Miao Xie39fb26c2011-12-14 20:12:02 -05001191 for (j = i + 1 - num_stripes; j <= i; j++)
Miao Xie6d07bce2011-01-05 10:07:31 +00001192 devices_info[j].max_avail -= alloc_size;
1193 }
1194 i--;
1195 nr_devices--;
1196 }
1197
1198 kfree(devices_info);
1199 *free_bytes = avail_space;
1200 return 0;
1201}
1202
Chris Mason8fd17792007-04-19 21:01:03 -04001203static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1204{
1205 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
David Sterba6c417612011-04-13 15:41:04 +02001206 struct btrfs_super_block *disk_super = root->fs_info->super_copy;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001207 struct list_head *head = &root->fs_info->space_info;
1208 struct btrfs_space_info *found;
1209 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001210 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001211 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +01001212 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001213 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001214
Miao Xie6d07bce2011-01-05 10:07:31 +00001215 /* holding chunk_muext to avoid allocating new chunks */
1216 mutex_lock(&root->fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001217 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001218 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001219 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1220 total_free_data += found->disk_total - found->disk_used;
1221 total_free_data -=
1222 btrfs_account_ro_block_groups_free_space(found);
1223 }
1224
Yan, Zhengb742bb82010-05-16 10:46:24 -04001225 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001226 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001227 rcu_read_unlock();
1228
Chris Mason8fd17792007-04-19 21:01:03 -04001229 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001230 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001231 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001232 buf->f_bsize = dentry->d_sb->s_blocksize;
1233 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001234 buf->f_bavail = total_free_data;
1235 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1236 if (ret) {
1237 mutex_unlock(&root->fs_info->chunk_mutex);
1238 return ret;
1239 }
1240 buf->f_bavail += total_free_data;
1241 buf->f_bavail = buf->f_bavail >> bits;
1242 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001243
David Woodhouse9d036322008-08-18 12:01:52 +01001244 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001245 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001246 on a big-endian or little-endian host */
1247 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1248 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001249 /* Mask in the root object ID too, to disambiguate subvols */
1250 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1251 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1252
Chris Mason8fd17792007-04-19 21:01:03 -04001253 return 0;
1254}
Chris Masonb5133862007-04-24 11:52:22 -04001255
Chris Mason2e635a22007-03-21 11:12:56 -04001256static struct file_system_type btrfs_fs_type = {
1257 .owner = THIS_MODULE,
1258 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001259 .mount = btrfs_mount,
Chris Masona061fc82008-05-07 11:43:44 -04001260 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001261 .fs_flags = FS_REQUIRES_DEV,
1262};
Chris Masona9218f62008-03-24 15:02:04 -04001263
Chris Masond352ac62008-09-29 15:18:18 -04001264/*
1265 * used by btrfsctl to scan devices when no FS is mounted
1266 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001267static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1268 unsigned long arg)
1269{
1270 struct btrfs_ioctl_vol_args *vol;
1271 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001272 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001273
Chris Masone441d542009-01-05 16:57:23 -05001274 if (!capable(CAP_SYS_ADMIN))
1275 return -EPERM;
1276
Li Zefandae7b662009-04-08 15:06:54 +08001277 vol = memdup_user((void __user *)arg, sizeof(*vol));
1278 if (IS_ERR(vol))
1279 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001280
Chris Mason8a4b83c2008-03-24 15:02:07 -04001281 switch (cmd) {
1282 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001283 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001284 &btrfs_fs_type, &fs_devices);
1285 break;
1286 }
Li Zefandae7b662009-04-08 15:06:54 +08001287
Chris Mason8a4b83c2008-03-24 15:02:07 -04001288 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001289 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001290}
1291
Linus Torvalds01762602009-01-10 06:09:52 -08001292static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001293{
1294 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001295 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1296 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001297 return 0;
Yaned0dab62008-01-22 12:46:56 -05001298}
1299
Linus Torvalds01762602009-01-10 06:09:52 -08001300static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001301{
1302 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -04001303 mutex_unlock(&root->fs_info->cleaner_mutex);
1304 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001305 return 0;
Yaned0dab62008-01-22 12:46:56 -05001306}
Chris Mason2e635a22007-03-21 11:12:56 -04001307
Josef Bacik22c44fe2011-11-30 10:45:38 -05001308static void btrfs_fs_dirty_inode(struct inode *inode, int flags)
1309{
1310 int ret;
1311
1312 ret = btrfs_dirty_inode(inode);
1313 if (ret)
1314 printk_ratelimited(KERN_ERR "btrfs: fail to dirty inode %Lu "
1315 "error %d\n", btrfs_ino(inode), ret);
1316}
1317
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001318static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001319 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001320 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001321 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001322 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001323 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001324 .write_inode = btrfs_write_inode,
Josef Bacik22c44fe2011-11-30 10:45:38 -05001325 .dirty_inode = btrfs_fs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001326 .alloc_inode = btrfs_alloc_inode,
1327 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001328 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001329 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001330 .freeze_fs = btrfs_freeze,
1331 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001332};
Chris Masona9218f62008-03-24 15:02:04 -04001333
1334static const struct file_operations btrfs_ctl_fops = {
1335 .unlocked_ioctl = btrfs_control_ioctl,
1336 .compat_ioctl = btrfs_control_ioctl,
1337 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001338 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001339};
1340
1341static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001342 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001343 .name = "btrfs-control",
1344 .fops = &btrfs_ctl_fops
1345};
1346
Kay Sievers578454f2010-05-20 18:07:20 +02001347MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1348MODULE_ALIAS("devname:btrfs-control");
1349
Chris Masona9218f62008-03-24 15:02:04 -04001350static int btrfs_interface_init(void)
1351{
1352 return misc_register(&btrfs_misc);
1353}
1354
Christoph Hellwigb2950862008-12-02 09:54:17 -05001355static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001356{
1357 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001358 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001359}
1360
Chris Mason2e635a22007-03-21 11:12:56 -04001361static int __init init_btrfs_fs(void)
1362{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001363 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001364
1365 err = btrfs_init_sysfs();
1366 if (err)
1367 return err;
1368
Li Zefan261507a02010-12-17 14:21:50 +08001369 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001370 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001371 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001372
Li Zefan261507a02010-12-17 14:21:50 +08001373 err = btrfs_init_cachep();
1374 if (err)
1375 goto free_compress;
1376
Chris Masond1310b22008-01-24 16:13:08 -05001377 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001378 if (err)
1379 goto free_cachep;
1380
Chris Masond1310b22008-01-24 16:13:08 -05001381 err = extent_map_init();
1382 if (err)
1383 goto free_extent_io;
1384
Miao Xie16cdcec2011-04-22 18:12:22 +08001385 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001386 if (err)
1387 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001388
Miao Xie16cdcec2011-04-22 18:12:22 +08001389 err = btrfs_interface_init();
1390 if (err)
1391 goto free_delayed_inode;
1392
Chris Masona9218f62008-03-24 15:02:04 -04001393 err = register_filesystem(&btrfs_fs_type);
1394 if (err)
1395 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001396
1397 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001398 return 0;
1399
Chris Masona9218f62008-03-24 15:02:04 -04001400unregister_ioctl:
1401 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001402free_delayed_inode:
1403 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001404free_extent_map:
1405 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001406free_extent_io:
1407 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001408free_cachep:
1409 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001410free_compress:
1411 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001412free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001413 btrfs_exit_sysfs();
1414 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001415}
1416
1417static void __exit exit_btrfs_fs(void)
1418{
Chris Mason39279cc2007-06-12 06:35:45 -04001419 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001420 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001421 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001422 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001423 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001424 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001425 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001426 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001427 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001428}
1429
1430module_init(init_btrfs_fs)
1431module_exit(exit_btrfs_fs)
1432
1433MODULE_LICENSE("GPL");