blob: 305adf6dc09a64ac064485da01dee39bb375fc2d [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;
79 default:
80 if (nbuf) {
81 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
82 errstr = nbuf;
83 }
84 break;
85 }
86
87 return errstr;
88}
89
90static void __save_error_info(struct btrfs_fs_info *fs_info)
91{
92 /*
93 * today we only save the error info into ram. Long term we'll
94 * also send it down to the disk
95 */
96 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
97}
98
99/* NOTE:
100 * We move write_super stuff at umount in order to avoid deadlock
101 * for umount hold all lock.
102 */
103static void save_error_info(struct btrfs_fs_info *fs_info)
104{
105 __save_error_info(fs_info);
106}
107
108/* btrfs handle error by forcing the filesystem readonly */
109static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
110{
111 struct super_block *sb = fs_info->sb;
112
113 if (sb->s_flags & MS_RDONLY)
114 return;
115
116 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
117 sb->s_flags |= MS_RDONLY;
118 printk(KERN_INFO "btrfs is forced readonly\n");
119 }
120}
121
122/*
123 * __btrfs_std_error decodes expected errors from the caller and
124 * invokes the approciate error response.
125 */
126void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
127 unsigned int line, int errno)
128{
129 struct super_block *sb = fs_info->sb;
130 char nbuf[16];
131 const char *errstr;
132
133 /*
134 * Special case: if the error is EROFS, and we're already
135 * under MS_RDONLY, then it is safe here.
136 */
137 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
138 return;
139
140 errstr = btrfs_decode_error(fs_info, errno, nbuf);
141 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
142 sb->s_id, function, line, errstr);
143 save_error_info(fs_info);
144
145 btrfs_handle_error(fs_info);
146}
147
Chris Masond3977122009-01-05 21:25:51 -0500148static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -0400149{
Al Viro815745c2011-11-17 15:40:49 -0500150 (void)close_ctree(btrfs_sb(sb)->tree_root);
Al Viroaea52e12011-11-17 01:22:46 -0500151 /* FIXME: need to fix VFS to return error? */
152 /* AV: return it _where_? ->put_super() can be triggered by any number
153 * of async events, up to and including delivery of SIGKILL to the
154 * last process that kept it busy. Or segfault in the aforementioned
155 * process... Whom would you report that to?
156 */
Chris Masone20d96d2007-03-22 12:13:20 -0400157}
Chris Mason2e635a22007-03-21 11:12:56 -0400158
Chris Mason95e05282007-08-29 09:11:44 -0400159enum {
Josef Bacik73f73412009-12-04 17:38:27 +0000160 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
Josef Bacik287a0ab2010-03-19 18:07:23 +0000161 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
162 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
Li Zefan261507a02010-12-17 14:21:50 +0800163 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
164 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
Chris Mason91435652011-02-16 13:10:41 -0500165 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
Chris Mason4b9465c2011-06-03 09:36:29 -0400166 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag,
Chris Masonaf31f5e2011-11-03 15:17:42 -0400167 Opt_inode_cache, Opt_no_space_cache, Opt_recovery, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -0400168};
169
170static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -0400171 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -0400172 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +0000173 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400174 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -0500175 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -0500176 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -0500177 {Opt_nobarrier, "nobarrier"},
Chris Mason6f568d32008-01-29 16:03:38 -0500178 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -0500179 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -0400180 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -0400181 {Opt_compress, "compress"},
Li Zefan261507a02010-12-17 14:21:50 +0800182 {Opt_compress_type, "compress=%s"},
Chris Masona555f812010-01-28 16:18:15 -0500183 {Opt_compress_force, "compress-force"},
Li Zefan261507a02010-12-17 14:21:50 +0800184 {Opt_compress_force_type, "compress-force=%s"},
Chris Masone18e4802008-01-18 10:54:22 -0500185 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -0400186 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -0400187 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400188 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -0400189 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -0400190 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -0400191 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400192 {Opt_discard, "discard"},
Josef Bacik0af3d002010-06-21 14:48:16 -0400193 {Opt_space_cache, "space_cache"},
Josef Bacik88c2ba32010-09-21 14:21:34 -0400194 {Opt_clear_cache, "clear_cache"},
Sage Weil4260f7c2010-10-29 15:46:43 -0400195 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
Chris Mason91435652011-02-16 13:10:41 -0500196 {Opt_enospc_debug, "enospc_debug"},
Xin Zhonge15d0542011-04-06 07:33:51 +0000197 {Opt_subvolrootid, "subvolrootid=%d"},
Chris Mason4cb53002011-05-24 15:35:30 -0400198 {Opt_defrag, "autodefrag"},
Chris Mason4b9465c2011-06-03 09:36:29 -0400199 {Opt_inode_cache, "inode_cache"},
David Sterba89655932011-11-11 10:14:57 -0500200 {Opt_no_space_cache, "nospace_cache"},
Chris Masonaf31f5e2011-11-03 15:17:42 -0400201 {Opt_recovery, "recovery"},
Josef Bacik33268ea2008-07-24 12:16:36 -0400202 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -0400203};
204
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400205/*
206 * Regular mount options parser. Everything that is needed only when
207 * reading in a new superblock is parsed here.
208 */
209int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400210{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400211 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400212 substring_t args[MAX_OPT_ARGS];
Josef Bacik73bc1872011-10-03 14:07:49 -0400213 char *p, *num, *orig = NULL;
214 u64 cache_gen;
Chris Mason4543df72008-06-11 21:47:56 -0400215 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000216 int ret = 0;
Li Zefan261507a02010-12-17 14:21:50 +0800217 char *compress_type;
218 bool compress_force = false;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500219
David Sterba6c417612011-04-13 15:41:04 +0200220 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -0400221 if (cache_gen)
222 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
223
Chris Mason95e05282007-08-29 09:11:44 -0400224 if (!options)
Josef Bacik73bc1872011-10-03 14:07:49 -0400225 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400226
Chris Masonbe20aa92007-12-17 20:14:01 -0500227 /*
228 * strsep changes the string, duplicate it because parse_options
229 * gets called twice
230 */
231 options = kstrdup(options, GFP_NOFS);
232 if (!options)
233 return -ENOMEM;
234
Josef Bacikda495ec2010-02-25 20:38:35 +0000235 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500236
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400237 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400238 int token;
239 if (!*p)
240 continue;
241
242 token = match_token(p, tokens, args);
243 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400244 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400245 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
246 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400247 break;
Chris Mason95e05282007-08-29 09:11:44 -0400248 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000249 case Opt_subvolid:
Xin Zhonge15d0542011-04-06 07:33:51 +0000250 case Opt_subvolrootid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400251 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400252 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400253 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400254 * and can be happily ignored here.
255 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500256 break;
257 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400258 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400259 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500260 break;
261 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400262 printk(KERN_INFO "btrfs: setting nodatacow\n");
263 btrfs_set_opt(info->mount_opt, NODATACOW);
264 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400265 break;
Chris Masona555f812010-01-28 16:18:15 -0500266 case Opt_compress_force:
Li Zefan261507a02010-12-17 14:21:50 +0800267 case Opt_compress_force_type:
268 compress_force = true;
269 case Opt_compress:
270 case Opt_compress_type:
271 if (token == Opt_compress ||
272 token == Opt_compress_force ||
273 strcmp(args[0].from, "zlib") == 0) {
274 compress_type = "zlib";
275 info->compress_type = BTRFS_COMPRESS_ZLIB;
Li Zefana6fa6fa2010-10-25 15:12:26 +0800276 } else if (strcmp(args[0].from, "lzo") == 0) {
277 compress_type = "lzo";
278 info->compress_type = BTRFS_COMPRESS_LZO;
Li Zefan261507a02010-12-17 14:21:50 +0800279 } else {
280 ret = -EINVAL;
281 goto out;
282 }
283
Chris Masona555f812010-01-28 16:18:15 -0500284 btrfs_set_opt(info->mount_opt, COMPRESS);
Li Zefan261507a02010-12-17 14:21:50 +0800285 if (compress_force) {
286 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
287 pr_info("btrfs: force %s compression\n",
288 compress_type);
289 } else
290 pr_info("btrfs: use %s compression\n",
291 compress_type);
Chris Masona555f812010-01-28 16:18:15 -0500292 break;
Chris Masone18e4802008-01-18 10:54:22 -0500293 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400294 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
295 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500296 break;
Chris Mason451d7582009-06-09 20:28:34 -0400297 case Opt_ssd_spread:
298 printk(KERN_INFO "btrfs: use spread ssd "
299 "allocation scheme\n");
300 btrfs_set_opt(info->mount_opt, SSD);
301 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
302 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400303 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400304 printk(KERN_INFO "btrfs: not using ssd allocation "
305 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400306 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400307 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400308 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400309 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500310 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400311 printk(KERN_INFO "btrfs: turning off barriers\n");
312 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500313 break;
Chris Mason4543df72008-06-11 21:47:56 -0400314 case Opt_thread_pool:
315 intarg = 0;
316 match_int(&args[0], &intarg);
317 if (intarg) {
318 info->thread_pool_size = intarg;
319 printk(KERN_INFO "btrfs: thread pool %d\n",
320 info->thread_pool_size);
321 }
322 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500323 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400324 num = match_strdup(&args[0]);
325 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000326 info->max_inline = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400327 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500328
Chris Mason15ada042008-06-11 16:51:38 -0400329 if (info->max_inline) {
330 info->max_inline = max_t(u64,
331 info->max_inline,
332 root->sectorsize);
333 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400334 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700335 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500336 }
337 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500338 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400339 num = match_strdup(&args[0]);
340 if (num) {
Akinobu Mita91748462010-02-28 10:59:11 +0000341 info->alloc_start = memparse(num, NULL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400342 kfree(num);
343 printk(KERN_INFO
344 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700345 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500346 }
347 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400348 case Opt_noacl:
349 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
350 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400351 case Opt_notreelog:
352 printk(KERN_INFO "btrfs: disabling tree log\n");
353 btrfs_set_opt(info->mount_opt, NOTREELOG);
354 break;
Sage Weildccae992009-04-02 16:59:01 -0400355 case Opt_flushoncommit:
356 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
357 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
358 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400359 case Opt_ratio:
360 intarg = 0;
361 match_int(&args[0], &intarg);
362 if (intarg) {
363 info->metadata_ratio = intarg;
364 printk(KERN_INFO "btrfs: metadata ratio %d\n",
365 info->metadata_ratio);
366 }
367 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400368 case Opt_discard:
369 btrfs_set_opt(info->mount_opt, DISCARD);
370 break;
Josef Bacik0af3d002010-06-21 14:48:16 -0400371 case Opt_space_cache:
Josef Bacik0af3d002010-06-21 14:48:16 -0400372 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
Josef Bacik0de90872010-11-19 13:40:41 +0000373 break;
Josef Bacik73bc1872011-10-03 14:07:49 -0400374 case Opt_no_space_cache:
375 printk(KERN_INFO "btrfs: disabling disk space caching\n");
376 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
377 break;
Chris Mason4b9465c2011-06-03 09:36:29 -0400378 case Opt_inode_cache:
379 printk(KERN_INFO "btrfs: enabling inode map caching\n");
380 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
381 break;
Josef Bacik88c2ba32010-09-21 14:21:34 -0400382 case Opt_clear_cache:
383 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
384 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
Josef Bacik0af3d002010-06-21 14:48:16 -0400385 break;
Sage Weil4260f7c2010-10-29 15:46:43 -0400386 case Opt_user_subvol_rm_allowed:
387 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
388 break;
Chris Mason91435652011-02-16 13:10:41 -0500389 case Opt_enospc_debug:
390 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
391 break;
Chris Mason4cb53002011-05-24 15:35:30 -0400392 case Opt_defrag:
393 printk(KERN_INFO "btrfs: enabling auto defrag");
394 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
395 break;
Chris Masonaf31f5e2011-11-03 15:17:42 -0400396 case Opt_recovery:
397 printk(KERN_INFO "btrfs: enabling auto recovery");
398 btrfs_set_opt(info->mount_opt, RECOVERY);
399 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000400 case Opt_err:
401 printk(KERN_INFO "btrfs: unrecognized mount option "
402 "'%s'\n", p);
403 ret = -EINVAL;
404 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400405 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500406 break;
Chris Mason95e05282007-08-29 09:11:44 -0400407 }
408 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000409out:
Josef Bacik73bc1872011-10-03 14:07:49 -0400410 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
411 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
Josef Bacikda495ec2010-02-25 20:38:35 +0000412 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000413 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400414}
415
416/*
417 * Parse mount options that are required early in the mount process.
418 *
419 * All other options will be parsed on much later in the mount process and
420 * only when we need to allocate a new super block.
421 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500422static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000423 void *holder, char **subvol_name, u64 *subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000424 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400425{
426 substring_t args[MAX_OPT_ARGS];
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800427 char *device_name, *opts, *orig, *p;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400428 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000429 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400430
431 if (!options)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400432 return 0;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400433
434 /*
435 * strsep changes the string, duplicate it because parse_options
436 * gets called twice
437 */
438 opts = kstrdup(options, GFP_KERNEL);
439 if (!opts)
440 return -ENOMEM;
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800441 orig = opts;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400442
443 while ((p = strsep(&opts, ",")) != NULL) {
444 int token;
445 if (!*p)
446 continue;
447
448 token = match_token(p, tokens, args);
449 switch (token) {
450 case Opt_subvol:
Ilya Dryomova90e8b62011-11-08 16:47:55 +0200451 kfree(*subvol_name);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400452 *subvol_name = match_strdup(&args[0]);
453 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000454 case Opt_subvolid:
455 intarg = 0;
Josef Bacik4849f01d2009-12-14 19:18:38 +0000456 error = match_int(&args[0], &intarg);
457 if (!error) {
458 /* we want the original fs_tree */
459 if (!intarg)
460 *subvol_objectid =
461 BTRFS_FS_TREE_OBJECTID;
462 else
463 *subvol_objectid = intarg;
464 }
Josef Bacik73f73412009-12-04 17:38:27 +0000465 break;
Xin Zhonge15d0542011-04-06 07:33:51 +0000466 case Opt_subvolrootid:
467 intarg = 0;
468 error = match_int(&args[0], &intarg);
469 if (!error) {
470 /* we want the original fs_tree */
471 if (!intarg)
472 *subvol_rootid =
473 BTRFS_FS_TREE_OBJECTID;
474 else
475 *subvol_rootid = intarg;
476 }
477 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400478 case Opt_device:
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800479 device_name = match_strdup(&args[0]);
480 if (!device_name) {
481 error = -ENOMEM;
482 goto out;
483 }
484 error = btrfs_scan_one_device(device_name,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400485 flags, holder, fs_devices);
Jeff Liu83c8c9b2011-09-14 14:11:21 +0800486 kfree(device_name);
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400487 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400488 goto out;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400489 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400490 default:
491 break;
492 }
493 }
494
Josef Bacik830c4ad2011-07-25 15:55:42 -0400495out:
Tero Roponen3f3d0bc2010-12-27 16:43:13 +0800496 kfree(orig);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400497 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400498}
499
Josef Bacik73f73412009-12-04 17:38:27 +0000500static struct dentry *get_default_root(struct super_block *sb,
501 u64 subvol_objectid)
502{
Al Viro815745c2011-11-17 15:40:49 -0500503 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
504 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik73f73412009-12-04 17:38:27 +0000505 struct btrfs_root *new_root;
506 struct btrfs_dir_item *di;
507 struct btrfs_path *path;
508 struct btrfs_key location;
509 struct inode *inode;
Josef Bacik73f73412009-12-04 17:38:27 +0000510 u64 dir_id;
511 int new = 0;
512
513 /*
514 * We have a specific subvol we want to mount, just setup location and
515 * go look up the root.
516 */
517 if (subvol_objectid) {
518 location.objectid = subvol_objectid;
519 location.type = BTRFS_ROOT_ITEM_KEY;
520 location.offset = (u64)-1;
521 goto find_root;
522 }
523
524 path = btrfs_alloc_path();
525 if (!path)
526 return ERR_PTR(-ENOMEM);
527 path->leave_spinning = 1;
528
529 /*
530 * Find the "default" dir item which points to the root item that we
531 * will mount by default if we haven't been given a specific subvolume
532 * to mount.
533 */
Al Viro815745c2011-11-17 15:40:49 -0500534 dir_id = btrfs_super_root_dir(fs_info->super_copy);
Josef Bacik73f73412009-12-04 17:38:27 +0000535 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
Julia Lawallb0839162011-05-14 07:10:51 +0000536 if (IS_ERR(di)) {
537 btrfs_free_path(path);
Dan Carpenterfb4f6f92010-05-29 09:40:57 +0000538 return ERR_CAST(di);
Julia Lawallb0839162011-05-14 07:10:51 +0000539 }
Josef Bacik73f73412009-12-04 17:38:27 +0000540 if (!di) {
541 /*
542 * Ok the default dir item isn't there. This is weird since
543 * it's always been there, but don't freak out, just try and
544 * mount to root most subvolume.
545 */
546 btrfs_free_path(path);
547 dir_id = BTRFS_FIRST_FREE_OBJECTID;
Al Viro815745c2011-11-17 15:40:49 -0500548 new_root = fs_info->fs_root;
Josef Bacik73f73412009-12-04 17:38:27 +0000549 goto setup_root;
550 }
551
552 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
553 btrfs_free_path(path);
554
555find_root:
Al Viro815745c2011-11-17 15:40:49 -0500556 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Josef Bacik73f73412009-12-04 17:38:27 +0000557 if (IS_ERR(new_root))
Julia Lawalld0b678c2010-10-29 15:14:23 -0400558 return ERR_CAST(new_root);
Josef Bacik73f73412009-12-04 17:38:27 +0000559
560 if (btrfs_root_refs(&new_root->root_item) == 0)
561 return ERR_PTR(-ENOENT);
562
563 dir_id = btrfs_root_dirid(&new_root->root_item);
564setup_root:
565 location.objectid = dir_id;
566 location.type = BTRFS_INODE_ITEM_KEY;
567 location.offset = 0;
568
569 inode = btrfs_iget(sb, &location, new_root, &new);
Dan Carpenter4cbd1142010-05-29 09:42:19 +0000570 if (IS_ERR(inode))
571 return ERR_CAST(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000572
573 /*
574 * If we're just mounting the root most subvol put the inode and return
575 * a reference to the dentry. We will have already gotten a reference
576 * to the inode in btrfs_fill_super so we're good to go.
577 */
578 if (!new && sb->s_root->d_inode == inode) {
579 iput(inode);
580 return dget(sb->s_root);
581 }
582
Josef Bacikba5b8952011-07-25 15:40:35 -0400583 return d_obtain_alias(inode);
Josef Bacik73f73412009-12-04 17:38:27 +0000584}
585
Chris Masond3977122009-01-05 21:25:51 -0500586static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400587 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500588 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400589{
Chris Masond3977122009-01-05 21:25:51 -0500590 struct inode *inode;
591 struct dentry *root_dentry;
Al Viro815745c2011-11-17 15:40:49 -0500592 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400593 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400594 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400595
596 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400597 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400598 sb->s_op = &btrfs_super_ops;
Al Viroaf53d292010-12-20 10:56:06 -0500599 sb->s_d_op = &btrfs_dentry_operations;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530600 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500601 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400602 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400603#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400604 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400605#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400606
Al Viroad2b2c82011-11-17 01:10:02 -0500607 err = open_ctree(sb, fs_devices, (char *)data);
608 if (err) {
Chris Masone20d96d2007-03-22 12:13:20 -0400609 printk("btrfs: open_ctree failed\n");
Al Viroad2b2c82011-11-17 01:10:02 -0500610 return err;
Chris Masone20d96d2007-03-22 12:13:20 -0400611 }
Chris Masonb888db22007-08-27 16:49:44 -0400612
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400613 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
614 key.type = BTRFS_INODE_ITEM_KEY;
615 key.offset = 0;
Al Viro98c70892011-11-17 01:00:31 -0500616 inode = btrfs_iget(sb, &key, fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400617 if (IS_ERR(inode)) {
618 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400619 goto fail_close;
620 }
Chris Mason2e635a22007-03-21 11:12:56 -0400621
Chris Masone20d96d2007-03-22 12:13:20 -0400622 root_dentry = d_alloc_root(inode);
623 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400624 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400625 err = -ENOMEM;
626 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400627 }
Josef Bacik58176a92007-08-29 15:47:34 -0400628
Chris Masone20d96d2007-03-22 12:13:20 -0400629 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500630
Chris Mason6885f302008-02-20 16:11:05 -0500631 save_mount_options(sb, data);
Dan Magenheimer90a887c2011-05-26 10:01:56 -0600632 cleancache_init_fs(sb);
Al Viro59553ed2011-11-17 01:56:28 -0500633 sb->s_flags |= MS_ACTIVE;
Chris Mason2e635a22007-03-21 11:12:56 -0400634 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400635
Chris Mason39279cc2007-06-12 06:35:45 -0400636fail_close:
Al Viro815745c2011-11-17 15:40:49 -0500637 close_ctree(fs_info->tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400638 return err;
639}
640
Sage Weil6bf13c02008-06-10 10:07:39 -0400641int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400642{
643 struct btrfs_trans_handle *trans;
Al Viro815745c2011-11-17 15:40:49 -0500644 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
645 struct btrfs_root *root = fs_info->tree_root;
Chris Masond5719762007-03-23 10:01:08 -0400646 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400647
liubo1abe9b82011-03-24 11:18:59 +0000648 trace_btrfs_sync_fs(wait);
649
Chris Masond561c022007-03-23 19:47:49 -0400650 if (!wait) {
Al Viro815745c2011-11-17 15:40:49 -0500651 filemap_flush(fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400652 return 0;
653 }
Chris Mason771ed682008-11-06 22:02:51 -0500654
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000655 btrfs_start_delalloc_inodes(root, 0);
656 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500657
Yan, Zhenga22285a2010-05-16 10:48:46 -0400658 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +0000659 if (IS_ERR(trans))
660 return PTR_ERR(trans);
Chris Masond5719762007-03-23 10:01:08 -0400661 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400662 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400663}
664
Al Viro34c80b12011-12-08 21:32:45 -0500665static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
Eric Parisa9572a12009-04-02 16:46:06 -0400666{
Al Viro815745c2011-11-17 15:40:49 -0500667 struct btrfs_fs_info *info = btrfs_sb(dentry->d_sb);
668 struct btrfs_root *root = info->tree_root;
Tsutomu Itoh200da642011-03-31 00:44:29 +0000669 char *compress_type;
Eric Parisa9572a12009-04-02 16:46:06 -0400670
671 if (btrfs_test_opt(root, DEGRADED))
672 seq_puts(seq, ",degraded");
673 if (btrfs_test_opt(root, NODATASUM))
674 seq_puts(seq, ",nodatasum");
675 if (btrfs_test_opt(root, NODATACOW))
676 seq_puts(seq, ",nodatacow");
677 if (btrfs_test_opt(root, NOBARRIER))
678 seq_puts(seq, ",nobarrier");
Eric Parisa9572a12009-04-02 16:46:06 -0400679 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700680 seq_printf(seq, ",max_inline=%llu",
681 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400682 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700683 seq_printf(seq, ",alloc_start=%llu",
684 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400685 if (info->thread_pool_size != min_t(unsigned long,
686 num_online_cpus() + 2, 8))
687 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
Tsutomu Itoh200da642011-03-31 00:44:29 +0000688 if (btrfs_test_opt(root, COMPRESS)) {
689 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
690 compress_type = "zlib";
691 else
692 compress_type = "lzo";
693 if (btrfs_test_opt(root, FORCE_COMPRESS))
694 seq_printf(seq, ",compress-force=%s", compress_type);
695 else
696 seq_printf(seq, ",compress=%s", compress_type);
697 }
Chris Masonc2898112009-06-10 09:51:32 -0400698 if (btrfs_test_opt(root, NOSSD))
699 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400700 if (btrfs_test_opt(root, SSD_SPREAD))
701 seq_puts(seq, ",ssd_spread");
702 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400703 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400704 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400705 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400706 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400707 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000708 if (btrfs_test_opt(root, DISCARD))
709 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400710 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
711 seq_puts(seq, ",noacl");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000712 if (btrfs_test_opt(root, SPACE_CACHE))
713 seq_puts(seq, ",space_cache");
Josef Bacik73bc1872011-10-03 14:07:49 -0400714 else
David Sterba89655932011-11-11 10:14:57 -0500715 seq_puts(seq, ",nospace_cache");
Tsutomu Itoh200da642011-03-31 00:44:29 +0000716 if (btrfs_test_opt(root, CLEAR_CACHE))
717 seq_puts(seq, ",clear_cache");
718 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
719 seq_puts(seq, ",user_subvol_rm_allowed");
David Sterba0942caa2011-06-28 15:10:37 +0000720 if (btrfs_test_opt(root, ENOSPC_DEBUG))
721 seq_puts(seq, ",enospc_debug");
722 if (btrfs_test_opt(root, AUTO_DEFRAG))
723 seq_puts(seq, ",autodefrag");
724 if (btrfs_test_opt(root, INODE_MAP_CACHE))
725 seq_puts(seq, ",inode_cache");
Eric Parisa9572a12009-04-02 16:46:06 -0400726 return 0;
727}
728
Chris Masona061fc82008-05-07 11:43:44 -0400729static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400730{
Al Viro815745c2011-11-17 15:40:49 -0500731 struct btrfs_fs_info *p = data;
732 struct btrfs_fs_info *fs_info = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400733
Al Viro815745c2011-11-17 15:40:49 -0500734 return fs_info->fs_devices == p->fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400735}
736
Josef Bacik450ba0e2010-11-19 14:59:15 -0500737static int btrfs_set_super(struct super_block *s, void *data)
738{
Al Viro6de1d092011-11-17 01:29:09 -0500739 int err = set_anon_super(s, data);
740 if (!err)
741 s->s_fs_info = data;
742 return err;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500743}
744
Josef Bacik830c4ad2011-07-25 15:55:42 -0400745/*
David Sterbaf9d9ef62011-09-29 13:11:33 +0200746 * subvolumes are identified by ino 256
747 */
748static inline int is_subvolume_inode(struct inode *inode)
749{
750 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
751 return 1;
752 return 0;
753}
754
755/*
Josef Bacik830c4ad2011-07-25 15:55:42 -0400756 * This will strip out the subvol=%s argument for an argument string and add
757 * subvolid=0 to make sure we get the actual tree root for path walking to the
758 * subvol we want.
759 */
760static char *setup_root_args(char *args)
761{
762 unsigned copied = 0;
763 unsigned len = strlen(args) + 2;
764 char *pos;
765 char *ret;
766
767 /*
768 * We need the same args as before, but minus
769 *
770 * subvol=a
771 *
772 * and add
773 *
774 * subvolid=0
775 *
776 * which is a difference of 2 characters, so we allocate strlen(args) +
777 * 2 characters.
778 */
779 ret = kzalloc(len * sizeof(char), GFP_NOFS);
780 if (!ret)
781 return NULL;
782 pos = strstr(args, "subvol=");
783
784 /* This shouldn't happen, but just in case.. */
785 if (!pos) {
786 kfree(ret);
787 return NULL;
788 }
789
790 /*
791 * The subvol=<> arg is not at the front of the string, copy everybody
792 * up to that into ret.
793 */
794 if (pos != args) {
795 *pos = '\0';
796 strcpy(ret, args);
797 copied += strlen(args);
798 pos++;
799 }
800
801 strncpy(ret + copied, "subvolid=0", len - copied);
802
803 /* Length of subvolid=0 */
804 copied += 10;
805
806 /*
807 * If there is no , after the subvol= option then we know there's no
808 * other options and we can just return.
809 */
810 pos = strchr(pos, ',');
811 if (!pos)
812 return ret;
813
814 /* Copy the rest of the arguments into our buffer */
815 strncpy(ret + copied, pos, len - copied);
816 copied += strlen(pos);
817
818 return ret;
819}
820
821static struct dentry *mount_subvol(const char *subvol_name, int flags,
822 const char *device_name, char *data)
823{
Josef Bacik830c4ad2011-07-25 15:55:42 -0400824 struct dentry *root;
825 struct vfsmount *mnt;
Josef Bacik830c4ad2011-07-25 15:55:42 -0400826 char *newargs;
Josef Bacik830c4ad2011-07-25 15:55:42 -0400827
828 newargs = setup_root_args(data);
829 if (!newargs)
830 return ERR_PTR(-ENOMEM);
831 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
832 newargs);
833 kfree(newargs);
834 if (IS_ERR(mnt))
835 return ERR_CAST(mnt);
836
Al Viroea441d12011-11-16 21:43:59 -0500837 root = mount_subtree(mnt, subvol_name);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400838
Al Viroea441d12011-11-16 21:43:59 -0500839 if (!IS_ERR(root) && !is_subvolume_inode(root->d_inode)) {
840 struct super_block *s = root->d_sb;
841 dput(root);
842 root = ERR_PTR(-EINVAL);
843 deactivate_locked_super(s);
David Sterbaf9d9ef62011-09-29 13:11:33 +0200844 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
845 subvol_name);
David Sterbaf9d9ef62011-09-29 13:11:33 +0200846 }
847
Josef Bacik830c4ad2011-07-25 15:55:42 -0400848 return root;
849}
Josef Bacik450ba0e2010-11-19 14:59:15 -0500850
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400851/*
852 * Find a superblock for the given device / mount point.
853 *
854 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
855 * for multiple device setup. Make sure to keep it in sync.
856 */
Al Viro061dbc62010-07-26 16:21:33 +0400857static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
David Sterba306e16c2011-04-19 14:29:38 +0200858 const char *device_name, void *data)
Yan4b82d6e2007-08-29 09:11:44 -0400859{
860 struct block_device *bdev = NULL;
861 struct super_block *s;
862 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400863 struct btrfs_fs_devices *fs_devices = NULL;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500864 struct btrfs_fs_info *fs_info = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500865 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000866 char *subvol_name = NULL;
867 u64 subvol_objectid = 0;
Xin Zhonge15d0542011-04-06 07:33:51 +0000868 u64 subvol_rootid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400869 int error = 0;
870
Christoph Hellwig97288f22008-12-02 06:36:09 -0500871 if (!(flags & MS_RDONLY))
872 mode |= FMODE_WRITE;
873
874 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000875 &subvol_name, &subvol_objectid,
Xin Zhonge15d0542011-04-06 07:33:51 +0000876 &subvol_rootid, &fs_devices);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200877 if (error) {
878 kfree(subvol_name);
Al Viro061dbc62010-07-26 16:21:33 +0400879 return ERR_PTR(error);
Ilya Dryomovf23c8af2011-11-08 19:15:05 +0200880 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400881
Josef Bacik830c4ad2011-07-25 15:55:42 -0400882 if (subvol_name) {
883 root = mount_subvol(subvol_name, flags, device_name, data);
884 kfree(subvol_name);
885 return root;
886 }
887
David Sterba306e16c2011-04-19 14:29:38 +0200888 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400889 if (error)
Josef Bacik830c4ad2011-07-25 15:55:42 -0400890 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400891
Josef Bacik450ba0e2010-11-19 14:59:15 -0500892 /*
893 * Setup a dummy root and fs_info for test/set super. This is because
894 * we don't actually fill this stuff out until open_ctree, but we need
895 * it for searching for existing supers, so this lets us do that and
896 * then open_ctree will properly initialize everything later.
897 */
898 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200899 if (!fs_info)
900 return ERR_PTR(-ENOMEM);
901
Al Viro6f07e422011-11-17 00:46:16 -0500902 fs_info->tree_root = btrfs_alloc_root(fs_info);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200903 if (!fs_info->tree_root) {
slyich@gmail.com45ea6092011-11-07 16:08:01 -0500904 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200905 goto error_fs_info;
slyich@gmail.com45ea6092011-11-07 16:08:01 -0500906 }
Josef Bacik450ba0e2010-11-19 14:59:15 -0500907 fs_info->fs_devices = fs_devices;
Josef Bacik450ba0e2010-11-19 14:59:15 -0500908
David Sterba6c417612011-04-13 15:41:04 +0200909 fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
910 fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
911 if (!fs_info->super_copy || !fs_info->super_for_commit) {
912 error = -ENOMEM;
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200913 goto error_fs_info;
914 }
915
916 error = btrfs_open_devices(fs_devices, mode, fs_type);
917 if (error)
918 goto error_fs_info;
919
920 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
921 error = -EACCES;
David Sterba6c417612011-04-13 15:41:04 +0200922 goto error_close_devices;
923 }
924
Chris Masondfe25022008-05-13 13:46:40 -0400925 bdev = fs_devices->latest_bdev;
Al Viro815745c2011-11-17 15:40:49 -0500926 s = sget(fs_type, btrfs_test_super, btrfs_set_super, fs_info);
Josef Bacik830c4ad2011-07-25 15:55:42 -0400927 if (IS_ERR(s)) {
928 error = PTR_ERR(s);
929 goto error_close_devices;
930 }
Yan4b82d6e2007-08-29 09:11:44 -0400931
932 if (s->s_root) {
Yan Zheng2b820322008-11-17 21:11:30 -0500933 btrfs_close_devices(fs_devices);
David Sterba6c417612011-04-13 15:41:04 +0200934 free_fs_info(fs_info);
Al Viro59553ed2011-11-17 01:56:28 -0500935 if ((flags ^ s->s_flags) & MS_RDONLY)
936 error = -EBUSY;
Yan4b82d6e2007-08-29 09:11:44 -0400937 } else {
938 char b[BDEVNAME_SIZE];
939
Al Viro9e1f1de2011-06-03 18:24:58 -0400940 s->s_flags = flags | MS_NOSEC;
Yan4b82d6e2007-08-29 09:11:44 -0400941 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Al Viro815745c2011-11-17 15:40:49 -0500942 btrfs_sb(s)->bdev_holder = fs_type;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400943 error = btrfs_fill_super(s, fs_devices, data,
944 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400945 }
946
Al Viro59553ed2011-11-17 01:56:28 -0500947 root = !error ? get_default_root(s, subvol_objectid) : ERR_PTR(error);
948 if (IS_ERR(root))
Josef Bacik830c4ad2011-07-25 15:55:42 -0400949 deactivate_locked_super(s);
Yan4b82d6e2007-08-29 09:11:44 -0400950
Al Viro061dbc62010-07-26 16:21:33 +0400951 return root;
Yan4b82d6e2007-08-29 09:11:44 -0400952
Yan Zhengc146afa2008-11-12 14:34:12 -0500953error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400954 btrfs_close_devices(fs_devices);
Ilya Dryomov04d21a22011-11-09 14:41:22 +0200955error_fs_info:
David Sterba6c417612011-04-13 15:41:04 +0200956 free_fs_info(fs_info);
Al Viro061dbc62010-07-26 16:21:33 +0400957 return ERR_PTR(error);
Yan4b82d6e2007-08-29 09:11:44 -0400958}
Chris Mason2e635a22007-03-21 11:12:56 -0400959
Yan Zhengc146afa2008-11-12 14:34:12 -0500960static int btrfs_remount(struct super_block *sb, int *flags, char *data)
961{
Al Viro815745c2011-11-17 15:40:49 -0500962 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
963 struct btrfs_root *root = fs_info->tree_root;
Yan Zhengc146afa2008-11-12 14:34:12 -0500964 int ret;
965
Chris Masonb2880522009-02-12 09:37:35 -0500966 ret = btrfs_parse_options(root, data);
967 if (ret)
968 return -EINVAL;
969
Yan Zhengc146afa2008-11-12 14:34:12 -0500970 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
971 return 0;
972
973 if (*flags & MS_RDONLY) {
974 sb->s_flags |= MS_RDONLY;
975
976 ret = btrfs_commit_super(root);
977 WARN_ON(ret);
978 } else {
Al Viro815745c2011-11-17 15:40:49 -0500979 if (fs_info->fs_devices->rw_devices == 0)
Yan Zheng2b820322008-11-17 21:11:30 -0500980 return -EACCES;
981
Al Viro815745c2011-11-17 15:40:49 -0500982 if (btrfs_super_log_root(fs_info->super_copy) != 0)
Yan Zhengc146afa2008-11-12 14:34:12 -0500983 return -EINVAL;
984
Al Viro815745c2011-11-17 15:40:49 -0500985 ret = btrfs_cleanup_fs_roots(fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -0500986 WARN_ON(ret);
987
Yan, Zhengd68fc572010-05-16 10:49:58 -0400988 /* recover relocation */
989 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -0500990 WARN_ON(ret);
991
992 sb->s_flags &= ~MS_RDONLY;
993 }
994
995 return 0;
996}
997
Arne Jansenbcd53742011-04-12 10:43:21 +0200998/* Used to sort the devices by max_avail(descending sort) */
999static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1000 const void *dev_info2)
1001{
1002 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1003 ((struct btrfs_device_info *)dev_info2)->max_avail)
1004 return -1;
1005 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1006 ((struct btrfs_device_info *)dev_info2)->max_avail)
1007 return 1;
1008 else
1009 return 0;
1010}
1011
1012/*
1013 * sort the devices by max_avail, in which max free extent size of each device
1014 * is stored.(Descending Sort)
1015 */
1016static inline void btrfs_descending_sort_devices(
1017 struct btrfs_device_info *devices,
1018 size_t nr_devices)
1019{
1020 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1021 btrfs_cmp_device_free_bytes, NULL);
1022}
1023
Miao Xie6d07bce2011-01-05 10:07:31 +00001024/*
1025 * The helper to calc the free space on the devices that can be used to store
1026 * file data.
1027 */
1028static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1029{
1030 struct btrfs_fs_info *fs_info = root->fs_info;
1031 struct btrfs_device_info *devices_info;
1032 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1033 struct btrfs_device *device;
1034 u64 skip_space;
1035 u64 type;
1036 u64 avail_space;
1037 u64 used_space;
1038 u64 min_stripe_size;
Miao Xie39fb26c2011-12-14 20:12:02 -05001039 int min_stripes = 1, num_stripes = 1;
Miao Xie6d07bce2011-01-05 10:07:31 +00001040 int i = 0, nr_devices;
1041 int ret;
1042
Li Zefanb772a862011-11-28 16:43:00 +08001043 nr_devices = fs_info->fs_devices->open_devices;
Miao Xie6d07bce2011-01-05 10:07:31 +00001044 BUG_ON(!nr_devices);
1045
1046 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1047 GFP_NOFS);
1048 if (!devices_info)
1049 return -ENOMEM;
1050
1051 /* calc min stripe number for data space alloction */
1052 type = btrfs_get_alloc_profile(root, 1);
Miao Xie39fb26c2011-12-14 20:12:02 -05001053 if (type & BTRFS_BLOCK_GROUP_RAID0) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001054 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001055 num_stripes = nr_devices;
1056 } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001057 min_stripes = 2;
Miao Xie39fb26c2011-12-14 20:12:02 -05001058 num_stripes = 2;
1059 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001060 min_stripes = 4;
Miao Xie39fb26c2011-12-14 20:12:02 -05001061 num_stripes = 4;
1062 }
Miao Xie6d07bce2011-01-05 10:07:31 +00001063
1064 if (type & BTRFS_BLOCK_GROUP_DUP)
1065 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1066 else
1067 min_stripe_size = BTRFS_STRIPE_LEN;
1068
Li Zefanb772a862011-11-28 16:43:00 +08001069 list_for_each_entry(device, &fs_devices->devices, dev_list) {
1070 if (!device->in_fs_metadata || !device->bdev)
Miao Xie6d07bce2011-01-05 10:07:31 +00001071 continue;
1072
1073 avail_space = device->total_bytes - device->bytes_used;
1074
1075 /* align with stripe_len */
1076 do_div(avail_space, BTRFS_STRIPE_LEN);
1077 avail_space *= BTRFS_STRIPE_LEN;
1078
1079 /*
1080 * In order to avoid overwritting the superblock on the drive,
1081 * btrfs starts at an offset of at least 1MB when doing chunk
1082 * allocation.
1083 */
1084 skip_space = 1024 * 1024;
1085
1086 /* user can set the offset in fs_info->alloc_start. */
1087 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1088 device->total_bytes)
1089 skip_space = max(fs_info->alloc_start, skip_space);
1090
1091 /*
1092 * btrfs can not use the free space in [0, skip_space - 1],
1093 * we must subtract it from the total. In order to implement
1094 * it, we account the used space in this range first.
1095 */
1096 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1097 &used_space);
1098 if (ret) {
1099 kfree(devices_info);
1100 return ret;
1101 }
1102
1103 /* calc the free space in [0, skip_space - 1] */
1104 skip_space -= used_space;
1105
1106 /*
1107 * we can use the free space in [0, skip_space - 1], subtract
1108 * it from the total.
1109 */
1110 if (avail_space && avail_space >= skip_space)
1111 avail_space -= skip_space;
1112 else
1113 avail_space = 0;
1114
1115 if (avail_space < min_stripe_size)
1116 continue;
1117
1118 devices_info[i].dev = device;
1119 devices_info[i].max_avail = avail_space;
1120
1121 i++;
1122 }
1123
1124 nr_devices = i;
1125
1126 btrfs_descending_sort_devices(devices_info, nr_devices);
1127
1128 i = nr_devices - 1;
1129 avail_space = 0;
1130 while (nr_devices >= min_stripes) {
Miao Xie39fb26c2011-12-14 20:12:02 -05001131 if (num_stripes > nr_devices)
1132 num_stripes = nr_devices;
1133
Miao Xie6d07bce2011-01-05 10:07:31 +00001134 if (devices_info[i].max_avail >= min_stripe_size) {
1135 int j;
1136 u64 alloc_size;
1137
Miao Xie39fb26c2011-12-14 20:12:02 -05001138 avail_space += devices_info[i].max_avail * num_stripes;
Miao Xie6d07bce2011-01-05 10:07:31 +00001139 alloc_size = devices_info[i].max_avail;
Miao Xie39fb26c2011-12-14 20:12:02 -05001140 for (j = i + 1 - num_stripes; j <= i; j++)
Miao Xie6d07bce2011-01-05 10:07:31 +00001141 devices_info[j].max_avail -= alloc_size;
1142 }
1143 i--;
1144 nr_devices--;
1145 }
1146
1147 kfree(devices_info);
1148 *free_bytes = avail_space;
1149 return 0;
1150}
1151
Chris Mason8fd17792007-04-19 21:01:03 -04001152static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1153{
Al Viro815745c2011-11-17 15:40:49 -05001154 struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
1155 struct btrfs_super_block *disk_super = fs_info->super_copy;
1156 struct list_head *head = &fs_info->space_info;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001157 struct btrfs_space_info *found;
1158 u64 total_used = 0;
Miao Xie6d07bce2011-01-05 10:07:31 +00001159 u64 total_free_data = 0;
Chris Masondb945352007-10-15 16:15:53 -04001160 int bits = dentry->d_sb->s_blocksize_bits;
Al Viro815745c2011-11-17 15:40:49 -05001161 __be32 *fsid = (__be32 *)fs_info->fsid;
Miao Xie6d07bce2011-01-05 10:07:31 +00001162 int ret;
Chris Mason8fd17792007-04-19 21:01:03 -04001163
Miao Xie6d07bce2011-01-05 10:07:31 +00001164 /* holding chunk_muext to avoid allocating new chunks */
Al Viro815745c2011-11-17 15:40:49 -05001165 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikbd4d1082010-03-05 21:59:21 +00001166 rcu_read_lock();
Josef Bacik89a55892010-10-14 14:52:27 -04001167 list_for_each_entry_rcu(found, head, list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00001168 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1169 total_free_data += found->disk_total - found->disk_used;
1170 total_free_data -=
1171 btrfs_account_ro_block_groups_free_space(found);
1172 }
1173
Yan, Zhengb742bb82010-05-16 10:46:24 -04001174 total_used += found->disk_used;
Josef Bacik89a55892010-10-14 14:52:27 -04001175 }
Josef Bacikbd4d1082010-03-05 21:59:21 +00001176 rcu_read_unlock();
1177
Chris Mason8fd17792007-04-19 21:01:03 -04001178 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -04001179 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
Josef Bacikbd4d1082010-03-05 21:59:21 +00001180 buf->f_bfree = buf->f_blocks - (total_used >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -04001181 buf->f_bsize = dentry->d_sb->s_blocksize;
1182 buf->f_type = BTRFS_SUPER_MAGIC;
Miao Xie6d07bce2011-01-05 10:07:31 +00001183 buf->f_bavail = total_free_data;
Al Viro815745c2011-11-17 15:40:49 -05001184 ret = btrfs_calc_avail_data_space(fs_info->tree_root, &total_free_data);
Miao Xie6d07bce2011-01-05 10:07:31 +00001185 if (ret) {
Al Viro815745c2011-11-17 15:40:49 -05001186 mutex_unlock(&fs_info->chunk_mutex);
Miao Xie6d07bce2011-01-05 10:07:31 +00001187 return ret;
1188 }
1189 buf->f_bavail += total_free_data;
1190 buf->f_bavail = buf->f_bavail >> bits;
Al Viro815745c2011-11-17 15:40:49 -05001191 mutex_unlock(&fs_info->chunk_mutex);
Chris Masond3977122009-01-05 21:25:51 -05001192
David Woodhouse9d036322008-08-18 12:01:52 +01001193 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -05001194 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +01001195 on a big-endian or little-endian host */
1196 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1197 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +01001198 /* Mask in the root object ID too, to disambiguate subvols */
1199 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1200 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1201
Chris Mason8fd17792007-04-19 21:01:03 -04001202 return 0;
1203}
Chris Masonb5133862007-04-24 11:52:22 -04001204
Al Viroaea52e12011-11-17 01:22:46 -05001205static void btrfs_kill_super(struct super_block *sb)
1206{
Al Viro815745c2011-11-17 15:40:49 -05001207 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
Al Viroaea52e12011-11-17 01:22:46 -05001208 kill_anon_super(sb);
Al Virod22ca7d2011-11-17 01:46:50 -05001209 free_fs_info(fs_info);
Al Viroaea52e12011-11-17 01:22:46 -05001210}
1211
Chris Mason2e635a22007-03-21 11:12:56 -04001212static struct file_system_type btrfs_fs_type = {
1213 .owner = THIS_MODULE,
1214 .name = "btrfs",
Al Viro061dbc62010-07-26 16:21:33 +04001215 .mount = btrfs_mount,
Al Viroaea52e12011-11-17 01:22:46 -05001216 .kill_sb = btrfs_kill_super,
Chris Mason2e635a22007-03-21 11:12:56 -04001217 .fs_flags = FS_REQUIRES_DEV,
1218};
Chris Masona9218f62008-03-24 15:02:04 -04001219
Chris Masond352ac62008-09-29 15:18:18 -04001220/*
1221 * used by btrfsctl to scan devices when no FS is mounted
1222 */
Chris Mason8a4b83c2008-03-24 15:02:07 -04001223static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1224 unsigned long arg)
1225{
1226 struct btrfs_ioctl_vol_args *vol;
1227 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -05001228 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001229
Chris Masone441d542009-01-05 16:57:23 -05001230 if (!capable(CAP_SYS_ADMIN))
1231 return -EPERM;
1232
Li Zefandae7b662009-04-08 15:06:54 +08001233 vol = memdup_user((void __user *)arg, sizeof(*vol));
1234 if (IS_ERR(vol))
1235 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -05001236
Chris Mason8a4b83c2008-03-24 15:02:07 -04001237 switch (cmd) {
1238 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -05001239 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -04001240 &btrfs_fs_type, &fs_devices);
1241 break;
1242 }
Li Zefandae7b662009-04-08 15:06:54 +08001243
Chris Mason8a4b83c2008-03-24 15:02:07 -04001244 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -04001245 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -04001246}
1247
Linus Torvalds01762602009-01-10 06:09:52 -08001248static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001249{
Al Viro815745c2011-11-17 15:40:49 -05001250 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1251 mutex_lock(&fs_info->transaction_kthread_mutex);
1252 mutex_lock(&fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001253 return 0;
Yaned0dab62008-01-22 12:46:56 -05001254}
1255
Linus Torvalds01762602009-01-10 06:09:52 -08001256static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -05001257{
Al Viro815745c2011-11-17 15:40:49 -05001258 struct btrfs_fs_info *fs_info = btrfs_sb(sb);
1259 mutex_unlock(&fs_info->cleaner_mutex);
1260 mutex_unlock(&fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -08001261 return 0;
Yaned0dab62008-01-22 12:46:56 -05001262}
Chris Mason2e635a22007-03-21 11:12:56 -04001263
Josef Bacik22c44fe2011-11-30 10:45:38 -05001264static void btrfs_fs_dirty_inode(struct inode *inode, int flags)
1265{
1266 int ret;
1267
1268 ret = btrfs_dirty_inode(inode);
1269 if (ret)
1270 printk_ratelimited(KERN_ERR "btrfs: fail to dirty inode %Lu "
1271 "error %d\n", btrfs_ino(inode), ret);
1272}
1273
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001274static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -04001275 .drop_inode = btrfs_drop_inode,
Al Virobd555972010-06-07 11:35:40 -04001276 .evict_inode = btrfs_evict_inode,
Chris Masone20d96d2007-03-22 12:13:20 -04001277 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -04001278 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -04001279 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -04001280 .write_inode = btrfs_write_inode,
Josef Bacik22c44fe2011-11-30 10:45:38 -05001281 .dirty_inode = btrfs_fs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -04001282 .alloc_inode = btrfs_alloc_inode,
1283 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -04001284 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -05001285 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -08001286 .freeze_fs = btrfs_freeze,
1287 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -04001288};
Chris Masona9218f62008-03-24 15:02:04 -04001289
1290static const struct file_operations btrfs_ctl_fops = {
1291 .unlocked_ioctl = btrfs_control_ioctl,
1292 .compat_ioctl = btrfs_control_ioctl,
1293 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001294 .llseek = noop_llseek,
Chris Masona9218f62008-03-24 15:02:04 -04001295};
1296
1297static struct miscdevice btrfs_misc = {
Kay Sievers578454f2010-05-20 18:07:20 +02001298 .minor = BTRFS_MINOR,
Chris Masona9218f62008-03-24 15:02:04 -04001299 .name = "btrfs-control",
1300 .fops = &btrfs_ctl_fops
1301};
1302
Kay Sievers578454f2010-05-20 18:07:20 +02001303MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1304MODULE_ALIAS("devname:btrfs-control");
1305
Chris Masona9218f62008-03-24 15:02:04 -04001306static int btrfs_interface_init(void)
1307{
1308 return misc_register(&btrfs_misc);
1309}
1310
Christoph Hellwigb2950862008-12-02 09:54:17 -05001311static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -04001312{
1313 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -05001314 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -04001315}
1316
Chris Mason2e635a22007-03-21 11:12:56 -04001317static int __init init_btrfs_fs(void)
1318{
Chris Mason2c90e5d2007-04-02 10:50:19 -04001319 int err;
Josef Bacik58176a92007-08-29 15:47:34 -04001320
1321 err = btrfs_init_sysfs();
1322 if (err)
1323 return err;
1324
Li Zefan261507a02010-12-17 14:21:50 +08001325 err = btrfs_init_compress();
Chris Mason2c90e5d2007-04-02 10:50:19 -04001326 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -04001327 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -05001328
Li Zefan261507a02010-12-17 14:21:50 +08001329 err = btrfs_init_cachep();
1330 if (err)
1331 goto free_compress;
1332
Chris Masond1310b22008-01-24 16:13:08 -05001333 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001334 if (err)
1335 goto free_cachep;
1336
Chris Masond1310b22008-01-24 16:13:08 -05001337 err = extent_map_init();
1338 if (err)
1339 goto free_extent_io;
1340
Miao Xie16cdcec2011-04-22 18:12:22 +08001341 err = btrfs_delayed_inode_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001342 if (err)
1343 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -04001344
Miao Xie16cdcec2011-04-22 18:12:22 +08001345 err = btrfs_interface_init();
1346 if (err)
1347 goto free_delayed_inode;
1348
Chris Masona9218f62008-03-24 15:02:04 -04001349 err = register_filesystem(&btrfs_fs_type);
1350 if (err)
1351 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -04001352
1353 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001354 return 0;
1355
Chris Masona9218f62008-03-24 15:02:04 -04001356unregister_ioctl:
1357 btrfs_interface_exit();
Miao Xie16cdcec2011-04-22 18:12:22 +08001358free_delayed_inode:
1359 btrfs_delayed_inode_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001360free_extent_map:
1361 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001362free_extent_io:
1363 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001364free_cachep:
1365 btrfs_destroy_cachep();
Li Zefan261507a02010-12-17 14:21:50 +08001366free_compress:
1367 btrfs_exit_compress();
Chris Masona74a4b92008-06-25 16:01:31 -04001368free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -05001369 btrfs_exit_sysfs();
1370 return err;
Chris Mason2e635a22007-03-21 11:12:56 -04001371}
1372
1373static void __exit exit_btrfs_fs(void)
1374{
Chris Mason39279cc2007-06-12 06:35:45 -04001375 btrfs_destroy_cachep();
Miao Xie16cdcec2011-04-22 18:12:22 +08001376 btrfs_delayed_inode_exit();
Chris Masona52d9a82007-08-27 16:49:44 -04001377 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -05001378 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -04001379 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -04001380 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -04001381 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -04001382 btrfs_cleanup_fs_uuids();
Li Zefan261507a02010-12-17 14:21:50 +08001383 btrfs_exit_compress();
Chris Mason2e635a22007-03-21 11:12:56 -04001384}
1385
1386module_init(init_btrfs_fs)
1387module_exit(exit_btrfs_fs)
1388
1389MODULE_LICENSE("GPL");