blob: ae7963b2d5277c0a9e2eba1c7e4e12edf772572c [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 Bacik22c44fe2011-11-30 10:45:38 -050043#include <linux/ratelimit.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;
Jeff Mahoney8c342932011-10-03 23:22:31 -040079 case -EEXIST:
80 errstr = "Object already exists";
81 break;
liuboacce9522011-01-06 19:30:25 +080082 default:
83 if (nbuf) {
84 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
85 errstr = nbuf;
86 }
87 break;
88 }
89
90 return errstr;
91}
92
93static void __save_error_info(struct btrfs_fs_info *fs_info)
94{
95 /*
96 * today we only save the error info into ram. Long term we'll
97 * also send it down to the disk
98 */
99 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
100}
101
102/* NOTE:
103 * We move write_super stuff at umount in order to avoid deadlock
104 * for umount hold all lock.
105 */
106static void save_error_info(struct btrfs_fs_info *fs_info)
107{
108 __save_error_info(fs_info);
109}
110
111/* btrfs handle error by forcing the filesystem readonly */
112static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
113{
114 struct super_block *sb = fs_info->sb;
115
116 if (sb->s_flags & MS_RDONLY)
117 return;
118
119 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
120 sb->s_flags |= MS_RDONLY;
121 printk(KERN_INFO "btrfs is forced readonly\n");
122 }
123}
124
125/*
126 * __btrfs_std_error decodes expected errors from the caller and
127 * invokes the approciate error response.
128 */
129void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
130 unsigned int line, int errno)
131{
132 struct super_block *sb = fs_info->sb;
133 char nbuf[16];
134 const char *errstr;
135
136 /*
137 * Special case: if the error is EROFS, and we're already
138 * under MS_RDONLY, then it is safe here.
139 */
140 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
141 return;
142
143 errstr = btrfs_decode_error(fs_info, errno, nbuf);
144 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
145 sb->s_id, function, line, errstr);
146 save_error_info(fs_info);
147
148 btrfs_handle_error(fs_info);
149}
150
Jeff Mahoney8c342932011-10-03 23:22:31 -0400151/*
152 * __btrfs_panic decodes unexpected, fatal errors from the caller,
153 * issues an alert, and either panics or BUGs, depending on mount options.
154 */
155void __btrfs_panic(struct btrfs_fs_info *fs_info, const char *function,
156 unsigned int line, int errno, const char *fmt, ...)
157{
158 char nbuf[16];
159 char *s_id = "<unknown>";
160 const char *errstr;
161 struct va_format vaf = { .fmt = fmt };
162 va_list args;
163
164 if (fs_info)
165 s_id = fs_info->sb->s_id;
166
167 va_start(args, fmt);
168 vaf.va = &args;
169
170 errstr = btrfs_decode_error(fs_info, errno, nbuf);
171 if (fs_info->mount_opt & BTRFS_MOUNT_PANIC_ON_FATAL_ERROR)
172 panic(KERN_CRIT "BTRFS panic (device %s) in %s:%d: %pV (%s)\n",
173 s_id, function, line, &vaf, errstr);
174
175 printk(KERN_CRIT "BTRFS panic (device %s) in %s:%d: %pV (%s)\n",
176 s_id, function, line, &vaf, errstr);
177 va_end(args);
178 /* Caller calls BUG() */
179}
180
Chris Masond3977122009-01-05 21:25:51 -0500181static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -0400182{
Al Viro815745c2011-11-17 15:40:49 -0500183 (void)close_ctree(btrfs_sb(sb)->tree_root);
Al Viroaea52e12011-11-17 01:22:46 -0500184 /* FIXME: need to fix VFS to return error? */
185 /* AV: return it _where_? ->put_super() can be triggered by any number
186 * of async events, up to and including delivery of SIGKILL to the
187 * last process that kept it busy. Or segfault in the aforementioned
188 * process... Whom would you report that to?
189 */
Chris Masone20d96d2007-03-22 12:13:20 -0400190}
Chris Mason2e635a22007-03-21 11:12:56 -0400191
Chris Mason95e05282007-08-29 09:11:44 -0400192enum {
Josef Bacik73f73412009-12-04 17:38:27 +0000193 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
Josef Bacik287a0ab2010-03-19 18:07:23 +0000194 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
195 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
Li Zefan261507a02010-12-17 14:21:50 +0800196 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
197 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
Chris Mason91435652011-02-16 13:10:41 -0500198 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200199 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_inode_cache,
200 Opt_no_space_cache, Opt_recovery, Opt_skip_balance,
Stefan Behrens21adbd52011-11-09 13:44:05 +0100201 Opt_check_integrity, Opt_check_integrity_including_extent_data,
Jeff Mahoney8c342932011-10-03 23:22:31 -0400202 Opt_check_integrity_print_mask, Opt_fatal_errors,
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200203 Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -0400204};
205
206static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -0400207 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -0400208 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +0000209 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400210 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -0500211 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -0500212 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -0500213 {Opt_nobarrier, "nobarrier"},
Chris Mason6f568d32008-01-29 16:03:38 -0500214 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -0500215 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -0400216 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -0400217 {Opt_compress, "compress"},
Li Zefan261507a02010-12-17 14:21:50 +0800218 {Opt_compress_type, "compress=%s"},
Chris Masona555f812010-01-28 16:18:15 -0500219 {Opt_compress_force, "compress-force"},
Li Zefan261507a02010-12-17 14:21:50 +0800220 {Opt_compress_force_type, "compress-force=%s"},
Chris Masone18e4802008-01-18 10:54:22 -0500221 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -0400222 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -0400223 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400224 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -0400225 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -0400226 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -0400227 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400228 {Opt_discard, "discard"},
Josef Bacik0af3d002010-06-21 14:48:16 -0400229 {Opt_space_cache, "space_cache"},
Josef Bacik88c2ba32010-09-21 14:21:34 -0400230 {Opt_clear_cache, "clear_cache"},
Sage Weil4260f7c2010-10-29 15:46:43 -0400231 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
Chris Mason91435652011-02-16 13:10:41 -0500232 {Opt_enospc_debug, "enospc_debug"},
Xin Zhonge15d0542011-04-06 07:33:51 +0000233 {Opt_subvolrootid, "subvolrootid=%d"},
Chris Mason4cb53002011-05-24 15:35:30 -0400234 {Opt_defrag, "autodefrag"},
Chris Mason4b9465c2011-06-03 09:36:29 -0400235 {Opt_inode_cache, "inode_cache"},
David Sterba89655932011-11-11 10:14:57 -0500236 {Opt_no_space_cache, "nospace_cache"},
Chris Masonaf31f5e2011-11-03 15:17:42 -0400237 {Opt_recovery, "recovery"},
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200238 {Opt_skip_balance, "skip_balance"},
Stefan Behrens21adbd52011-11-09 13:44:05 +0100239 {Opt_check_integrity, "check_int"},
240 {Opt_check_integrity_including_extent_data, "check_int_data"},
241 {Opt_check_integrity_print_mask, "check_int_print_mask=%d"},
Jeff Mahoney8c342932011-10-03 23:22:31 -0400242 {Opt_fatal_errors, "fatal_errors=%s"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400243 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400244};
245
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400246/*
247 * Regular mount options parser. Everything that is needed only when
248 * reading in a new superblock is parsed here.
249 */
250int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400251{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400252 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400253 substring_t args[MAX_OPT_ARGS];
Josef Bacik73bc1872011-10-03 14:07:49 -0400254 char *p, *num, *orig = NULL;
255 u64 cache_gen;
Chris Mason4543df72008-06-11 21:47:56 -0400256 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000257 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800258 char *compress_type;
259 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500260
David Sterba6c417612011-04-13 15:41:04 +0200261 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -0400262 if (cache_gen)
263 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
264
Chris Mason95e05282007-08-29 09:11:44 -0400265 if (!options)
Josef Bacik73bc1872011-10-03 14:07:49 -0400266 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400267
Chris Masonbe20aa92007-12-17 20:14:01 -0500268 /*
269 * strsep changes the string, duplicate it because parse_options
270 * gets called twice
271 */
272 options = kstrdup(options, GFP_NOFS);
273 if (!options)
274 return -ENOMEM;
275
Josef Bacikda495ec2010-02-25 20:38:35 +0000276 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500277
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400278 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400279 int token;
280 if (!*p)
281 continue;
282
283 token = match_token(p, tokens, args);
284 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400285 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400286 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
287 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400288 break;
Chris Mason95e05282007-08-29 09:11:44 -0400289 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000290 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000291 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400292 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400293 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400294 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400295 * and can be happily ignored here.
296 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500297 break;
298 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400299 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400300 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500301 break;
302 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400303 printk(KERN_INFO "btrfs: setting nodatacow\n");
304 btrfs_set_opt(info->mount_opt, NODATACOW);
305 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400306 break;
Chris Masona555f812010-01-28 16:18:15 -0500307 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800308 case Opt_compress_force_type:
309 compress_force = true;
310 case Opt_compress:
311 case Opt_compress_type:
312 if (token == Opt_compress ||
313 token == Opt_compress_force ||
314 strcmp(args[0].from, "zlib") == 0) {
315 compress_type = "zlib";
316 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800317 } else if (strcmp(args[0].from, "lzo") == 0) {
318 compress_type = "lzo";
319 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800320 } else {
321 ret = -EINVAL;
322 goto out;
323 }
324
Chris Masona555f812010-01-28 16:18:15 -0500325 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800326 if (compress_force) {
327 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
328 pr_info("btrfs: force %s compression\n",
329 compress_type);
330 } else
331 pr_info("btrfs: use %s compression\n",
332 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500333 break;
Chris Masone18e4802008-01-18 10:54:22 -0500334 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400335 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
336 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500337 break;
Chris Mason451d7582009-06-09 20:28:34 -0400338 case Opt_ssd_spread:
339 printk(KERN_INFO "btrfs: use spread ssd "
340 "allocation scheme\n");
341 btrfs_set_opt(info->mount_opt, SSD);
342 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
343 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400344 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400345 printk(KERN_INFO "btrfs: not using ssd allocation "
346 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400347 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400348 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400349 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400350 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500351 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400352 printk(KERN_INFO "btrfs: turning off barriers\n");
353 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500354 break;
Chris Mason4543df72008-06-11 21:47:56 -0400355 case Opt_thread_pool:
356 intarg = 0;
357 match_int(&args[0], &intarg);
358 if (intarg) {
359 info->thread_pool_size = intarg;
360 printk(KERN_INFO "btrfs: thread pool %d\n",
361 info->thread_pool_size);
362 }
363 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500364 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400365 num = match_strdup(&args[0]);
366 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000367 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400368 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500369
Chris Mason15ada042008-06-11 16:51:38 -0400370 if (info->max_inline) {
371 info->max_inline = max_t(u64,
372 info->max_inline,
373 root->sectorsize);
374 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400375 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700376 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500377 }
378 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500379 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400380 num = match_strdup(&args[0]);
381 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000382 info->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400383 kfree(num);
384 printk(KERN_INFO
385 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700386 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500387 }
388 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400389 case Opt_noacl:
390 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
391 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400392 case Opt_notreelog:
393 printk(KERN_INFO "btrfs: disabling tree log\n");
394 btrfs_set_opt(info->mount_opt, NOTREELOG);
395 break;
Sage Weildccae992009-04-02 16:59:01 -0400396 case Opt_flushoncommit:
397 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
398 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
399 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400400 case Opt_ratio:
401 intarg = 0;
402 match_int(&args[0], &intarg);
403 if (intarg) {
404 info->metadata_ratio = intarg;
405 printk(KERN_INFO "btrfs: metadata ratio %d\n",
406 info->metadata_ratio);
407 }
408 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400409 case Opt_discard:
410 btrfs_set_opt(info->mount_opt, DISCARD);
411 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400412 case Opt_space_cache:
Josef Bacik0af3d002010-06-21 14:48:16 -0400413 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000414 break;
Josef Bacik73bc1872011-10-03 14:07:49 -0400415 case Opt_no_space_cache:
416 printk(KERN_INFO "btrfs: disabling disk space caching\n");
417 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
418 break;
Chris Mason4b9465c2011-06-03 09:36:29 -0400419 case Opt_inode_cache:
420 printk(KERN_INFO "btrfs: enabling inode map caching\n");
421 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
422 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400423 case Opt_clear_cache:
424 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
425 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400426 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400427 case Opt_user_subvol_rm_allowed:
428 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
429 break;
Chris Mason91435652011-02-16 13:10:41 -0500430 case Opt_enospc_debug:
431 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
432 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400433 case Opt_defrag:
434 printk(KERN_INFO "btrfs: enabling auto defrag");
435 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
436 break;
Chris Masonaf31f5e2011-11-03 15:17:42 -0400437 case Opt_recovery:
438 printk(KERN_INFO "btrfs: enabling auto recovery");
439 btrfs_set_opt(info->mount_opt, RECOVERY);
440 break;
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200441 case Opt_skip_balance:
442 btrfs_set_opt(info->mount_opt, SKIP_BALANCE);
443 break;
Stefan Behrens21adbd52011-11-09 13:44:05 +0100444#ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
445 case Opt_check_integrity_including_extent_data:
446 printk(KERN_INFO "btrfs: enabling check integrity"
447 " including extent data\n");
448 btrfs_set_opt(info->mount_opt,
449 CHECK_INTEGRITY_INCLUDING_EXTENT_DATA);
450 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
451 break;
452 case Opt_check_integrity:
453 printk(KERN_INFO "btrfs: enabling check integrity\n");
454 btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
455 break;
456 case Opt_check_integrity_print_mask:
457 intarg = 0;
458 match_int(&args[0], &intarg);
459 if (intarg) {
460 info->check_integrity_print_mask = intarg;
461 printk(KERN_INFO "btrfs:"
462 " check_integrity_print_mask 0x%x\n",
463 info->check_integrity_print_mask);
464 }
465 break;
466#else
467 case Opt_check_integrity_including_extent_data:
468 case Opt_check_integrity:
469 case Opt_check_integrity_print_mask:
470 printk(KERN_ERR "btrfs: support for check_integrity*"
471 " not compiled in!\n");
472 ret = -EINVAL;
473 goto out;
474#endif
Jeff Mahoney8c342932011-10-03 23:22:31 -0400475 case Opt_fatal_errors:
476 if (strcmp(args[0].from, "panic") == 0)
477 btrfs_set_opt(info->mount_opt,
478 PANIC_ON_FATAL_ERROR);
479 else if (strcmp(args[0].from, "bug") == 0)
480 btrfs_clear_opt(info->mount_opt,
481 PANIC_ON_FATAL_ERROR);
482 else {
483 ret = -EINVAL;
484 goto out;
485 }
486 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000487 case Opt_err:
488 printk(KERN_INFO "btrfs: unrecognized mount option "
489 "'%s'\n", p);
490 ret = -EINVAL;
491 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400492 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500493 break;
Chris Mason95e05282007-08-29 09:11:44 -0400494 }
495 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000496out:
Josef Bacik73bc1872011-10-03 14:07:49 -0400497 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
498 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacikda495ec2010-02-25 20:38:35 +0000499 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000500 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400501}
502
503/*
504 * Parse mount options that are required early in the mount process.
505 *
506 * All other options will be parsed on much later in the mount process and
507 * only when we need to allocate a new super block.
508 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500509static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000510 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000511 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400512{
513 substring_t args[MAX_OPT_ARGS];
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800514 char *device_name, *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400515 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000516 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400517
518 if (!options)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400519 return 0;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400520
521 /*
522 * strsep changes the string, duplicate it because parse_options
523 * gets called twice
524 */
525 opts = kstrdup(options, GFP_KERNEL);
526 if (!opts)
527 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800528 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400529
530 while ((p = strsep(&opts, ",")) != NULL) {
531 int token;
532 if (!*p)
533 continue;
534
535 token = match_token(p, tokens, args);
536 switch (token) {
537 case Opt_subvol:
Ilya Dryomova90e8b62011-11-08 16:47:55 +0200538 kfree(*subvol_name);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400539 *subvol_name = match_strdup(&args[0]);
540 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000541 case Opt_subvolid:
542 intarg = 0;
Josef Bacik4849f01d2009-12-14 19:18:38 +0000543 error = match_int(&args[0], &intarg);
544 if (!error) {
545 /* we want the original fs_tree */
546 if (!intarg)
547 *subvol_objectid =
548 BTRFS_FS_TREE_OBJECTID;
549 else
550 *subvol_objectid = intarg;
551 }
Josef Bacik73f73412009-12-04 17:38:27 +0000552 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000553 case Opt_subvolrootid:
554 intarg = 0;
555 error = match_int(&args[0], &intarg);
556 if (!error) {
557 /* we want the original fs_tree */
558 if (!intarg)
559 *subvol_rootid =
560 BTRFS_FS_TREE_OBJECTID;
561 else
562 *subvol_rootid = intarg;
563 }
564 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400565 case Opt_device:
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800566 device_name = match_strdup(&args[0]);
567 if (!device_name) {
568 error = -ENOMEM;
569 goto out;
570 }
571 error = btrfs_scan_one_device(device_name,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400572 flags, holder, fs_devices);
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800573 kfree(device_name);
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400574 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400575 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400576 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400577 default:
578 break;
579 }
580 }
581
Josef Bacik830c4ad2011-07-25 15:55:42 -0400582out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800583 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400584 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400585}
586
Josef Bacik73f73412009-12-04 17:38:27 +0000587static struct dentry *get_default_root(struct super_block *sb,
588 u64 subvol_objectid)
589{
Al Viro815745c2011-11-17 15:40:49 -0500590 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
591 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik73f73412009-12-04 17:38:27 +0000592 struct btrfs_root *new_root;
593 struct btrfs_dir_item *di;
594 struct btrfs_path *path;
595 struct btrfs_key location;
596 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000597 u64 dir_id;
598 int new = 0;
599
600 /*
601 * We have a specific subvol we want to mount, just setup location and
602 * go look up the root.
603 */
604 if (subvol_objectid) {
605 location.objectid = subvol_objectid;
606 location.type = BTRFS_ROOT_ITEM_KEY;
607 location.offset = (u64)-1;
608 goto find_root;
609 }
610
611 path = btrfs_alloc_path();
612 if (!path)
613 return ERR_PTR(-ENOMEM);
614 path->leave_spinning = 1;
615
616 /*
617 * Find the "default" dir item which points to the root item that we
618 * will mount by default if we haven't been given a specific subvolume
619 * to mount.
620 */
Al Viro815745c2011-11-17 15:40:49 -0500621 dir_id = btrfs_super_root_dir(fs_info->super_copy);
Josef Bacik73f73412009-12-04 17:38:27 +0000622 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000623 if (IS_ERR(di)) {
624 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000625 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000626 }
Josef Bacik73f73412009-12-04 17:38:27 +0000627 if (!di) {
628 /*
629 * Ok the default dir item isn't there. This is weird since
630 * it's always been there, but don't freak out, just try and
631 * mount to root most subvolume.
632 */
633 btrfs_free_path(path);
634 dir_id = BTRFS_FIRST_FREE_OBJECTID;
Al Viro815745c2011-11-17 15:40:49 -0500635 new_root = fs_info->fs_root;
Josef Bacik73f73412009-12-04 17:38:27 +0000636 goto setup_root;
637 }
638
639 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
640 btrfs_free_path(path);
641
642find_root:
Al Viro815745c2011-11-17 15:40:49 -0500643 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Josef Bacik73f73412009-12-04 17:38:27 +0000644 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400645 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000646
647 if (btrfs_root_refs(&new_root->root_item) == 0)
648 return ERR_PTR(-ENOENT);
649
650 dir_id = btrfs_root_dirid(&new_root->root_item);
651setup_root:
652 location.objectid = dir_id;
653 location.type = BTRFS_INODE_ITEM_KEY;
654 location.offset = 0;
655
656 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000657 if (IS_ERR(inode))
658 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000659
660 /*
661 * If we're just mounting the root most subvol put the inode and return
662 * a reference to the dentry. We will have already gotten a reference
663 * to the inode in btrfs_fill_super so we're good to go.
664 */
665 if (!new && sb->s_root->d_inode == inode) {
666 iput(inode);
667 return dget(sb->s_root);
668 }
669
Josef Bacikba5b8952011-07-25 15:40:35 -0400670 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000671}
672
Chris Masond3977122009-01-05 21:25:51 -0500673static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400674 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500675 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400676{
Chris Masond3977122009-01-05 21:25:51 -0500677 struct inode *inode;
678 struct dentry *root_dentry;
Al Viro815745c2011-11-17 15:40:49 -0500679 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400680 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400681 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400682
683 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400684 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400685 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500686 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530687 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500688 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400689 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400690#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400691 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400692#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400693
Al Viroad2b2c82011-11-17 01:10:02 -0500694 err = open_ctree(sb, fs_devices, (char *)data);
695 if (err) {
Chris Masone20d96d2007-03-22 12:13:20 -0400696 printk("btrfs: open_ctree failed\n");
Al Viroad2b2c82011-11-17 01:10:02 -0500697 return err;
Chris Masone20d96d2007-03-22 12:13:20 -0400698 }
Chris Masonb888db22007-08-27 16:49:44 -0400699
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400700 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
701 key.type = BTRFS_INODE_ITEM_KEY;
702 key.offset = 0;
Al Viro98c70892011-11-17 01:00:31 -0500703 inode = btrfs_iget(sb, &key, fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400704 if (IS_ERR(inode)) {
705 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400706 goto fail_close;
707 }
Chris Mason2e635a22007-03-21 11:12:56 -0400708
Chris Masone20d96d2007-03-22 12:13:20 -0400709 root_dentry = d_alloc_root(inode);
710 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400711 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400712 err = -ENOMEM;
713 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400714 }
Josef Bacik58176a92007-08-29 15:47:34 -0400715
Chris Masone20d96d2007-03-22 12:13:20 -0400716 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500717
Chris Mason6885f302008-02-20 16:11:05 -0500718 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600719 cleancache_init_fs(sb);
Al Viro59553ed2011-11-17 01:56:28 -0500720 sb->s_flags |= MS_ACTIVE;
Chris Mason2e635a22007-03-21 11:12:56 -0400721 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400722
Chris Mason39279cc2007-06-12 06:35:45 -0400723fail_close:
Al Viro815745c2011-11-17 15:40:49 -0500724 close_ctree(fs_info->tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400725 return err;
726}
727
Sage Weil6bf13c02008-06-10 10:07:39 -0400728int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400729{
730 struct btrfs_trans_handle *trans;
Al Viro815745c2011-11-17 15:40:49 -0500731 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
732 struct btrfs_root *root = fs_info->tree_root;
Chris Masond5719762007-03-23 10:01:08 -0400733 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400734
liubo1abe9b82011-03-24 11:18:59 +0000735 trace_btrfs_sync_fs(wait);
736
Chris Masond561c022007-03-23 19:47:49 -0400737 if (!wait) {
Al Viro815745c2011-11-17 15:40:49 -0500738 filemap_flush(fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400739 return 0;
740 }
Chris Mason771ed682008-11-06 22:02:51 -0500741
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000742 btrfs_start_delalloc_inodes(root, 0);
743 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500744
Yan, Zhenga22285a2010-05-16 10:48:46 -0400745 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000746 if (IS_ERR(trans))
747 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400748 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400749 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400750}
751
Al Viro34c80b12011-12-08 21:32:45 -0500752static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
Eric Parisa9572a12009-04-02 16:46:06 -0400753{
Al Viro815745c2011-11-17 15:40:49 -0500754 struct btrfs_fs_info *info = btrfs_sb(dentry->d_sb);
755 struct btrfs_root *root = info->tree_root;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000756 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400757
758 if (btrfs_test_opt(root, DEGRADED))
759 seq_puts(seq, ",degraded");
760 if (btrfs_test_opt(root, NODATASUM))
761 seq_puts(seq, ",nodatasum");
762 if (btrfs_test_opt(root, NODATACOW))
763 seq_puts(seq, ",nodatacow");
764 if (btrfs_test_opt(root, NOBARRIER))
765 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400766 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700767 seq_printf(seq, ",max_inline=%llu",
768 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400769 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700770 seq_printf(seq, ",alloc_start=%llu",
771 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400772 if (info->thread_pool_size != min_t(unsigned long,
773 num_online_cpus() + 2, 8))
774 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000775 if (btrfs_test_opt(root, COMPRESS)) {
776 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
777 compress_type = "zlib";
778 else
779 compress_type = "lzo";
780 if (btrfs_test_opt(root, FORCE_COMPRESS))
781 seq_printf(seq, ",compress-force=%s", compress_type);
782 else
783 seq_printf(seq, ",compress=%s", compress_type);
784 }
Chris Masonc2898112009-06-10 09:51:32 -0400785 if (btrfs_test_opt(root, NOSSD))
786 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400787 if (btrfs_test_opt(root, SSD_SPREAD))
788 seq_puts(seq, ",ssd_spread");
789 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400790 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400791 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400792 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400793 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400794 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000795 if (btrfs_test_opt(root, DISCARD))
796 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400797 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
798 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000799 if (btrfs_test_opt(root, SPACE_CACHE))
800 seq_puts(seq, ",space_cache");
Josef Bacik73bc1872011-10-03 14:07:49 -0400801 else
David Sterba89655932011-11-11 10:14:57 -0500802 seq_puts(seq, ",nospace_cache");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000803 if (btrfs_test_opt(root, CLEAR_CACHE))
804 seq_puts(seq, ",clear_cache");
805 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
806 seq_puts(seq, ",user_subvol_rm_allowed");
David Sterba0942caa2011-06-28 15:10:37 +0000807 if (btrfs_test_opt(root, ENOSPC_DEBUG))
808 seq_puts(seq, ",enospc_debug");
809 if (btrfs_test_opt(root, AUTO_DEFRAG))
810 seq_puts(seq, ",autodefrag");
811 if (btrfs_test_opt(root, INODE_MAP_CACHE))
812 seq_puts(seq, ",inode_cache");
Ilya Dryomov9555c6c2012-01-16 22:04:48 +0200813 if (btrfs_test_opt(root, SKIP_BALANCE))
814 seq_puts(seq, ",skip_balance");
Jeff Mahoney8c342932011-10-03 23:22:31 -0400815 if (btrfs_test_opt(root, PANIC_ON_FATAL_ERROR))
816 seq_puts(seq, ",fatal_errors=panic");
Eric Parisa9572a12009-04-02 16:46:06 -0400817 return 0;
818}
819
Chris Masona061fc82008-05-07 11:43:44 -0400820static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400821{
Al Viro815745c2011-11-17 15:40:49 -0500822 struct btrfs_fs_info *p = data;
823 struct btrfs_fs_info *fs_info = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400824
Al Viro815745c2011-11-17 15:40:49 -0500825 return fs_info->fs_devices == p->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400826}
827
Josef Bacik450ba0e2010-11-19 14:59:15 -0500828static int btrfs_set_super(struct super_block *s, void *data)
829{
Al Viro6de1d092011-11-17 01:29:09 -0500830 int err = set_anon_super(s, data);
831 if (!err)
832 s->s_fs_info = data;
833 return err;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500834}
835
Josef Bacik830c4ad2011-07-25 15:55:42 -0400836/*
David Sterbaf9d9ef62011-09-29 13:11:33 +0200837 * subvolumes are identified by ino 256
838 */
839static inline int is_subvolume_inode(struct inode *inode)
840{
841 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
842 return 1;
843 return 0;
844}
845
846/*
Josef Bacik830c4ad2011-07-25 15:55:42 -0400847 * This will strip out the subvol=%s argument for an argument string and add
848 * subvolid=0 to make sure we get the actual tree root for path walking to the
849 * subvol we want.
850 */
851static char *setup_root_args(char *args)
852{
853 unsigned copied = 0;
854 unsigned len = strlen(args) + 2;
855 char *pos;
856 char *ret;
857
858 /*
859 * We need the same args as before, but minus
860 *
861 * subvol=a
862 *
863 * and add
864 *
865 * subvolid=0
866 *
867 * which is a difference of 2 characters, so we allocate strlen(args) +
868 * 2 characters.
869 */
870 ret = kzalloc(len * sizeof(char), GFP_NOFS);
871 if (!ret)
872 return NULL;
873 pos = strstr(args, "subvol=");
874
875 /* This shouldn't happen, but just in case.. */
876 if (!pos) {
877 kfree(ret);
878 return NULL;
879 }
880
881 /*
882 * The subvol=<> arg is not at the front of the string, copy everybody
883 * up to that into ret.
884 */
885 if (pos != args) {
886 *pos = '\0';
887 strcpy(ret, args);
888 copied += strlen(args);
889 pos++;
890 }
891
892 strncpy(ret + copied, "subvolid=0", len - copied);
893
894 /* Length of subvolid=0 */
895 copied += 10;
896
897 /*
898 * If there is no , after the subvol= option then we know there's no
899 * other options and we can just return.
900 */
901 pos = strchr(pos, ',');
902 if (!pos)
903 return ret;
904
905 /* Copy the rest of the arguments into our buffer */
906 strncpy(ret + copied, pos, len - copied);
907 copied += strlen(pos);
908
909 return ret;
910}
911
912static struct dentry *mount_subvol(const char *subvol_name, int flags,
913 const char *device_name, char *data)
914{
Josef Bacik830c4ad2011-07-25 15:55:42 -0400915 struct dentry *root;
916 struct vfsmount *mnt;
Josef Bacik830c4ad2011-07-25 15:55:42 -0400917 char *newargs;
Josef Bacik830c4ad2011-07-25 15:55:42 -0400918
919 newargs = setup_root_args(data);
920 if (!newargs)
921 return ERR_PTR(-ENOMEM);
922 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
923 newargs);
924 kfree(newargs);
925 if (IS_ERR(mnt))
926 return ERR_CAST(mnt);
927
Al Viroea441d12011-11-16 21:43:59 -0500928 root = mount_subtree(mnt, subvol_name);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400929
Al Viroea441d12011-11-16 21:43:59 -0500930 if (!IS_ERR(root) && !is_subvolume_inode(root->d_inode)) {
931 struct super_block *s = root->d_sb;
932 dput(root);
933 root = ERR_PTR(-EINVAL);
934 deactivate_locked_super(s);
David Sterbaf9d9ef62011-09-29 13:11:33 +0200935 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
936 subvol_name);
David Sterbaf9d9ef62011-09-29 13:11:33 +0200937 }
938
Josef Bacik830c4ad2011-07-25 15:55:42 -0400939 return root;
940}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500941
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400942/*
943 * Find a superblock for the given device / mount point.
944 *
945 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
946 * for multiple device setup. Make sure to keep it in sync.
947 */
Al Viro061dbc62010-07-26 16:21:33 +0400948static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200949 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400950{
951 struct block_device *bdev = NULL;
952 struct super_block *s;
953 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400954 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500955 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500956 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000957 char *subvol_name = NULL;
958 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000959 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400960 int error = 0;
961
Christoph Hellwig97288f22008-12-02 06:36:09 -0500962 if (!(flags & MS_RDONLY))
963 mode |= FMODE_WRITE;
964
965 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000966 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000967 &subvol_rootid, &fs_devices);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200968 if (error) {
969 kfree(subvol_name);
Al Viro061dbc62010-07-26 16:21:33 +0400970 return ERR_PTR(error);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200971 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400972
Josef Bacik830c4ad2011-07-25 15:55:42 -0400973 if (subvol_name) {
974 root = mount_subvol(subvol_name, flags, device_name, data);
975 kfree(subvol_name);
976 return root;
977 }
978
David Sterba306e16c2011-04-19 14:29:38 +0200979 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400980 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400981 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400982
Josef Bacik450ba0e2010-11-19 14:59:15 -0500983 /*
984 * Setup a dummy root and fs_info for test/set super. This is because
985 * we don't actually fill this stuff out until open_ctree, but we need
986 * it for searching for existing supers, so this lets us do that and
987 * then open_ctree will properly initialize everything later.
988 */
989 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200990 if (!fs_info)
991 return ERR_PTR(-ENOMEM);
992
Josef Bacik450ba0e2010-11-19 14:59:15 -0500993 fs_info->fs_devices = fs_devices;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500994
David Sterba6c417612011-04-13 15:41:04 +0200995 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
996 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
997 if (!fs_info->super_copy || !fs_info->super_for_commit) {
998 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200999 goto error_fs_info;
1000 }
1001
1002 error = btrfs_open_devices(fs_devices, mode, fs_type);
1003 if (error)
1004 goto error_fs_info;
1005
1006 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
1007 error = -EACCES;
David Sterba6c417612011-04-13 15:41:04 +02001008 goto error_close_devices;
1009 }
1010
Chris Masondfe25022008-05-13 13:46:40 -04001011 bdev = fs_devices->latest_bdev;
Al Viro815745c2011-11-17 15:40:49 -05001012 s = sget(fs_type, btrfs_test_super, btrfs_set_super, fs_info);
Josef Bacik830c4ad2011-07-25 15:55:42 -04001013 if (IS_ERR(s)) {
1014 error = PTR_ERR(s);
1015 goto error_close_devices;
1016 }
Yan4b82d6e2007-08-29 09:11:44 -04001017
1018 if (s->s_root) {
Yan Zheng2b820322008-11-17 21:11:30 -05001019 btrfs_close_devices(fs_devices);
David Sterba6c417612011-04-13 15:41:04 +02001020 free_fs_info(fs_info);
Al Viro59553ed2011-11-17 01:56:28 -05001021 if ((flags ^ s->s_flags) & MS_RDONLY)
1022 error = -EBUSY;
Yan4b82d6e2007-08-29 09:11:44 -04001023 } else {
1024 char b[BDEVNAME_SIZE];
1025
Al Viro9e1f1de2011-06-03 18:24:58 -04001026 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -04001027 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Al Viro815745c2011-11-17 15:40:49 -05001028 btrfs_sb(s)->bdev_holder = fs_type;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001029 error = btrfs_fill_super(s, fs_devices, data,
1030 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -04001031 }
1032
Al Viro59553ed2011-11-17 01:56:28 -05001033 root = !error ? get_default_root(s, subvol_objectid) : ERR_PTR(error);
1034 if (IS_ERR(root))
Josef Bacik830c4ad2011-07-25 15:55:42 -04001035 deactivate_locked_super(s);
Yan4b82d6e2007-08-29 09:11:44 -04001036
Al Viro061dbc62010-07-26 16:21:33 +04001037 return root;
Yan4b82d6e2007-08-29 09:11:44 -04001038
Yan Zhengc146afa2008-11-12 14:34:12 -05001039error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -04001040 btrfs_close_devices(fs_devices);
Ilya Dryomov04d21a22011-11-09 14:41:22 +02001041error_fs_info:
David Sterba6c417612011-04-13 15:41:04 +02001042 free_fs_info(fs_info);
Al Viro061dbc62010-07-26 16:21:33 +04001043 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -04001044}
Chris Mason2e635a22007-03-21 11:12:56 -04001045
Yan Zhengc146afa2008-11-12 14:34:12 -05001046static int btrfs_remount(struct super_block *sb, int *flags, char *data)
1047{
Al Viro815745c2011-11-17 15:40:49 -05001048 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1049 struct btrfs_root *root = fs_info->tree_root;
Yan Zhengc146afa2008-11-12 14:34:12 -05001050 int ret;
1051
Chris Masonb2880522009-02-12 09:37:35 -05001052 ret = btrfs_parse_options(root, data);
1053 if (ret)
1054 return -EINVAL;
1055
Yan Zhengc146afa2008-11-12 14:34:12 -05001056 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
1057 return 0;
1058
1059 if (*flags & MS_RDONLY) {
1060 sb->s_flags |= MS_RDONLY;
1061
1062 ret = btrfs_commit_super(root);
1063 WARN_ON(ret);
1064 } else {
Al Viro815745c2011-11-17 15:40:49 -05001065 if (fs_info->fs_devices->rw_devices == 0)
Yan Zheng2b820322008-11-17 21:11:30 -05001066 return -EACCES;
1067
Al Viro815745c2011-11-17 15:40:49 -05001068 if (btrfs_super_log_root(fs_info->super_copy) != 0)
Yan Zhengc146afa2008-11-12 14:34:12 -05001069 return -EINVAL;
1070
Al Viro815745c2011-11-17 15:40:49 -05001071 ret = btrfs_cleanup_fs_roots(fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05001072 WARN_ON(ret);
1073
Yan, Zhengd68fc572010-05-16 10:49:58 -04001074 /* recover relocation */
1075 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -05001076 WARN_ON(ret);
1077
1078 sb->s_flags &= ~MS_RDONLY;
1079 }
1080
1081 return 0;
1082}
1083
Arne Jansenbcd53742011-04-12 10:43:21 +02001084/* Used to sort the devices by max_avail(descending sort) */
1085static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1086 const void *dev_info2)
1087{
1088 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1089 ((struct btrfs_device_info *)dev_info2)->max_avail)
1090 return -1;
1091 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1092 ((struct btrfs_device_info *)dev_info2)->max_avail)
1093 return 1;
1094 else
1095 return 0;
1096}
1097
1098/*
1099 * sort the devices by max_avail, in which max free extent size of each device
1100 * is stored.(Descending Sort)
1101 */
1102static inline void btrfs_descending_sort_devices(
1103 struct btrfs_device_info *devices,
1104 size_t nr_devices)
1105{
1106 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1107 btrfs_cmp_device_free_bytes, NULL);
1108}
1109
Miao Xie6d07bce2011-01-05 10:07:31 +00001110/*
1111 * The helper to calc the free space on the devices that can be used to store
1112 * file data.
1113 */
1114static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1115{
1116 struct btrfs_fs_info *fs_info = root->fs_info;
1117 struct btrfs_device_info *devices_info;
1118 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1119 struct btrfs_device *device;
1120 u64 skip_space;
1121 u64 type;
1122 u64 avail_space;
1123 u64 used_space;
1124 u64 min_stripe_size;
Miao Xie39fb26c2011-12-14 20:12:02 -05001125 int min_stripes = 1, num_stripes = 1;
Miao Xie6d07bce2011-01-05 10:07:31 +00001126 int i = 0, nr_devices;
1127 int ret;
1128
Li Zefanb772a862011-11-28 16:43:00 +08001129 nr_devices = fs_info->fs_devices->open_devices;
Miao Xie6d07bce2011-01-05 10:07:31 +00001130 BUG_ON(!nr_devices);
1131
1132 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1133 GFP_NOFS);
1134 if (!devices_info)
1135 return -ENOMEM;
1136
1137 /* calc min stripe number for data space alloction */
1138 type = btrfs_get_alloc_profile(root, 1);
Miao Xie39fb26c2011-12-14 20:12:02 -05001139 if (type & BTRFS_BLOCK_GROUP_RAID0) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001140 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001141 num_stripes = nr_devices;
1142 } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001143 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001144 num_stripes = 2;
1145 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001146 min_stripes = 4;
Miao Xie39fb26c2011-12-14 20:12:02 -05001147 num_stripes = 4;
1148 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001149
1150 if (type & BTRFS_BLOCK_GROUP_DUP)
1151 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1152 else
1153 min_stripe_size = BTRFS_STRIPE_LEN;
1154
Li Zefanb772a862011-11-28 16:43:00 +08001155 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1156 if (!device->in_fs_metadata || !device->bdev)
Miao Xie6d07bce2011-01-05 10:07:31 +00001157 continue;
1158
1159 avail_space = device->total_bytes - device->bytes_used;
1160
1161 /* align with stripe_len */
1162 do_div(avail_space, BTRFS_STRIPE_LEN);
1163 avail_space *= BTRFS_STRIPE_LEN;
1164
1165 /*
1166 * In order to avoid overwritting the superblock on the drive,
1167 * btrfs starts at an offset of at least 1MB when doing chunk
1168 * allocation.
1169 */
1170 skip_space = 1024 * 1024;
1171
1172 /* user can set the offset in fs_info->alloc_start. */
1173 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1174 device->total_bytes)
1175 skip_space = max(fs_info->alloc_start, skip_space);
1176
1177 /*
1178 * btrfs can not use the free space in [0, skip_space - 1],
1179 * we must subtract it from the total. In order to implement
1180 * it, we account the used space in this range first.
1181 */
1182 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1183 &used_space);
1184 if (ret) {
1185 kfree(devices_info);
1186 return ret;
1187 }
1188
1189 /* calc the free space in [0, skip_space - 1] */
1190 skip_space -= used_space;
1191
1192 /*
1193 * we can use the free space in [0, skip_space - 1], subtract
1194 * it from the total.
1195 */
1196 if (avail_space && avail_space >= skip_space)
1197 avail_space -= skip_space;
1198 else
1199 avail_space = 0;
1200
1201 if (avail_space < min_stripe_size)
1202 continue;
1203
1204 devices_info[i].dev = device;
1205 devices_info[i].max_avail = avail_space;
1206
1207 i++;
1208 }
1209
1210 nr_devices = i;
1211
1212 btrfs_descending_sort_devices(devices_info, nr_devices);
1213
1214 i = nr_devices - 1;
1215 avail_space = 0;
1216 while (nr_devices >= min_stripes) {
Miao Xie39fb26c2011-12-14 20:12:02 -05001217 if (num_stripes > nr_devices)
1218 num_stripes = nr_devices;
1219
Miao Xie6d07bce2011-01-05 10:07:31 +00001220 if (devices_info[i].max_avail >= min_stripe_size) {
1221 int j;
1222 u64 alloc_size;
1223
Miao Xie39fb26c2011-12-14 20:12:02 -05001224 avail_space += devices_info[i].max_avail * num_stripes;
Miao Xie6d07bce2011-01-05 10:07:31 +00001225 alloc_size = devices_info[i].max_avail;
Miao Xie39fb26c2011-12-14 20:12:02 -05001226 for (j = i + 1 - num_stripes; j <= i; j++)
Miao Xie6d07bce2011-01-05 10:07:31 +00001227 devices_info[j].max_avail -= alloc_size;
1228 }
1229 i--;
1230 nr_devices--;
1231 }
1232
1233 kfree(devices_info);
1234 *free_bytes = avail_space;
1235 return 0;
1236}
1237
Chris Mason8fd17792007-04-19 21:01:03 -04001238static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1239{
Al Viro815745c2011-11-17 15:40:49 -05001240 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
1241 struct btrfs_super_block *disk_super = fs_info->super_copy;
1242 struct list_head *head = &fs_info->space_info;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001243 struct btrfs_space_info *found;
1244 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001245 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001246 int bits = dentry->d_sb->s_blocksize_bits;
Al Viro815745c2011-11-17 15:40:49 -05001247 __be32 *fsid = (__be32 *)fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001248 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001249
Miao Xie6d07bce2011-01-05 10:07:31 +00001250 /* holding chunk_muext to avoid allocating new chunks */
Al Viro815745c2011-11-17 15:40:49 -05001251 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001252 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001253 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001254 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1255 total_free_data += found->disk_total - found->disk_used;
1256 total_free_data -=
1257 btrfs_account_ro_block_groups_free_space(found);
1258 }
1259
Yan, Zhengb742bb82010-05-16 10:46:24 -04001260 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001261 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001262 rcu_read_unlock();
1263
Chris Mason8fd17792007-04-19 21:01:03 -04001264 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001265 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001266 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001267 buf->f_bsize = dentry->d_sb->s_blocksize;
1268 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001269 buf->f_bavail = total_free_data;
Al Viro815745c2011-11-17 15:40:49 -05001270 ret = btrfs_calc_avail_data_space(fs_info->tree_root, &total_free_data);
Miao Xie6d07bce2011-01-05 10:07:31 +00001271 if (ret) {
Al Viro815745c2011-11-17 15:40:49 -05001272 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie6d07bce2011-01-05 10:07:31 +00001273 return ret;
1274 }
1275 buf->f_bavail += total_free_data;
1276 buf->f_bavail = buf->f_bavail >> bits;
Al Viro815745c2011-11-17 15:40:49 -05001277 mutex_unlock(&fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001278
David Woodhouse9d036322008-08-18 12:01:52 +01001279 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001280 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001281 on a big-endian or little-endian host */
1282 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1283 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001284 /* Mask in the root object ID too, to disambiguate subvols */
1285 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1286 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1287
Chris Mason8fd17792007-04-19 21:01:03 -04001288 return 0;
1289}
Chris Masonb5133862007-04-24 11:52:22 -04001290
Al Viroaea52e12011-11-17 01:22:46 -05001291static void btrfs_kill_super(struct super_block *sb)
1292{
Al Viro815745c2011-11-17 15:40:49 -05001293 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Al Viroaea52e12011-11-17 01:22:46 -05001294 kill_anon_super(sb);
Al Virod22ca7d2011-11-17 01:46:50 -05001295 free_fs_info(fs_info);
Al Viroaea52e12011-11-17 01:22:46 -05001296}
1297
Chris Mason2e635a22007-03-21 11:12:56 -04001298static struct file_system_type btrfs_fs_type = {
1299 .owner = THIS_MODULE,
1300 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001301 .mount = btrfs_mount,
Al Viroaea52e12011-11-17 01:22:46 -05001302 .kill_sb = btrfs_kill_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001303 .fs_flags = FS_REQUIRES_DEV,
1304};
Chris Masona9218f62008-03-24 15:02:04 -04001305
Chris Masond352ac62008-09-29 15:18:18 -04001306/*
1307 * used by btrfsctl to scan devices when no FS is mounted
1308 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001309static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1310 unsigned long arg)
1311{
1312 struct btrfs_ioctl_vol_args *vol;
1313 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001314 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001315
Chris Masone441d542009-01-05 16:57:23 -05001316 if (!capable(CAP_SYS_ADMIN))
1317 return -EPERM;
1318
Li Zefandae7b662009-04-08 15:06:54 +08001319 vol = memdup_user((void __user *)arg, sizeof(*vol));
1320 if (IS_ERR(vol))
1321 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001322
Chris Mason8a4b83c2008-03-24 15:02:07 -04001323 switch (cmd) {
1324 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001325 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001326 &btrfs_fs_type, &fs_devices);
1327 break;
1328 }
Li Zefandae7b662009-04-08 15:06:54 +08001329
Chris Mason8a4b83c2008-03-24 15:02:07 -04001330 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001331 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001332}
1333
Linus Torvalds01762602009-01-10 06:09:52 -08001334static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001335{
Al Viro815745c2011-11-17 15:40:49 -05001336 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1337 mutex_lock(&fs_info->transaction_kthread_mutex);
1338 mutex_lock(&fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001339 return 0;
Yaned0dab62008-01-22 12:46:56 -05001340}
1341
Linus Torvalds01762602009-01-10 06:09:52 -08001342static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001343{
Al Viro815745c2011-11-17 15:40:49 -05001344 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1345 mutex_unlock(&fs_info->cleaner_mutex);
1346 mutex_unlock(&fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001347 return 0;
Yaned0dab62008-01-22 12:46:56 -05001348}
Chris Mason2e635a22007-03-21 11:12:56 -04001349
Josef Bacik22c44fe2011-11-30 10:45:38 -05001350static void btrfs_fs_dirty_inode(struct inode *inode, int flags)
1351{
1352 int ret;
1353
1354 ret = btrfs_dirty_inode(inode);
1355 if (ret)
1356 printk_ratelimited(KERN_ERR "btrfs: fail to dirty inode %Lu "
1357 "error %d\n", btrfs_ino(inode), ret);
1358}
1359
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001360static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001361 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001362 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001363 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001364 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001365 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001366 .write_inode = btrfs_write_inode,
Josef Bacik22c44fe2011-11-30 10:45:38 -05001367 .dirty_inode = btrfs_fs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001368 .alloc_inode = btrfs_alloc_inode,
1369 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001370 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001371 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001372 .freeze_fs = btrfs_freeze,
1373 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001374};
Chris Masona9218f62008-03-24 15:02:04 -04001375
1376static const struct file_operations btrfs_ctl_fops = {
1377 .unlocked_ioctl = btrfs_control_ioctl,
1378 .compat_ioctl = btrfs_control_ioctl,
1379 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001380 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001381};
1382
1383static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001384 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001385 .name = "btrfs-control",
1386 .fops = &btrfs_ctl_fops
1387};
1388
Kay Sievers578454f2010-05-20 18:07:20 +02001389MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1390MODULE_ALIAS("devname:btrfs-control");
1391
Chris Masona9218f62008-03-24 15:02:04 -04001392static int btrfs_interface_init(void)
1393{
1394 return misc_register(&btrfs_misc);
1395}
1396
Christoph Hellwigb2950862008-12-02 09:54:17 -05001397static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001398{
1399 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001400 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001401}
1402
Chris Mason2e635a22007-03-21 11:12:56 -04001403static int __init init_btrfs_fs(void)
1404{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001405 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001406
1407 err = btrfs_init_sysfs();
1408 if (err)
1409 return err;
1410
Jeff Mahoney143bede2012-03-01 14:56:26 +01001411 btrfs_init_compress();
Chris Masond1310b22008-01-24 16:13:08 -05001412
Li Zefan261507a02010-12-17 14:21:50 +08001413 err = btrfs_init_cachep();
1414 if (err)
1415 goto free_compress;
1416
Chris Masond1310b22008-01-24 16:13:08 -05001417 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001418 if (err)
1419 goto free_cachep;
1420
Chris Masond1310b22008-01-24 16:13:08 -05001421 err = extent_map_init();
1422 if (err)
1423 goto free_extent_io;
1424
Miao Xie16cdcec2011-04-22 18:12:22 +08001425 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001426 if (err)
1427 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001428
Miao Xie16cdcec2011-04-22 18:12:22 +08001429 err = btrfs_interface_init();
1430 if (err)
1431 goto free_delayed_inode;
1432
Chris Masona9218f62008-03-24 15:02:04 -04001433 err = register_filesystem(&btrfs_fs_type);
1434 if (err)
1435 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001436
1437 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001438 return 0;
1439
Chris Masona9218f62008-03-24 15:02:04 -04001440unregister_ioctl:
1441 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001442free_delayed_inode:
1443 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001444free_extent_map:
1445 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001446free_extent_io:
1447 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001448free_cachep:
1449 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001450free_compress:
1451 btrfs_exit_compress();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001452 btrfs_exit_sysfs();
1453 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001454}
1455
1456static void __exit exit_btrfs_fs(void)
1457{
Chris Mason39279cc2007-06-12 06:35:45 -04001458 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001459 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001460 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001461 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001462 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001463 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001464 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001465 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001466 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001467}
1468
1469module_init(init_btrfs_fs)
1470module_exit(exit_btrfs_fs)
1471
1472MODULE_LICENSE("GPL");