blob: 19a4daf03ccb6d7d8730d4d8c9602a24dc0c370b [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>
27#include <linux/string.h>
28#include <linux/smp_lock.h>
29#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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050041#include "compat.h"
Chris Mason2e635a22007-03-21 11:12:56 -040042#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040043#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040044#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040045#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040046#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040047#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050048#include "xattr.h"
Chris Mason8a4b83c2008-03-24 15:02:07 -040049#include "volumes.h"
Chris Masonb3c3da72008-07-23 12:12:13 -040050#include "version.h"
Balaji Raobe6e8dc2008-07-21 02:01:56 +053051#include "export.h"
Chris Masonc8b97812008-10-29 14:49:59 -040052#include "compression.h"
Chris Mason2e635a22007-03-21 11:12:56 -040053
Chris Masone20d96d2007-03-22 12:13:20 -040054
Chris Masone20d96d2007-03-22 12:13:20 -040055static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040056
Chris Masond3977122009-01-05 21:25:51 -050057static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -040058{
59 struct btrfs_root *root = btrfs_sb(sb);
60 int ret;
61
62 ret = close_ctree(root);
Chris Masone20d96d2007-03-22 12:13:20 -040063 sb->s_fs_info = NULL;
64}
Chris Mason2e635a22007-03-21 11:12:56 -040065
Chris Mason95e05282007-08-29 09:11:44 -040066enum {
Christoph Hellwig43e570b2008-06-10 10:40:46 -040067 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
Chris Masondfe25022008-05-13 13:46:40 -040068 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
Chris Masonc8b97812008-10-29 14:49:59 -040069 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040070};
71
72static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -040073 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -040074 {Opt_subvol, "subvol=%s"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -040075 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050076 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050077 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050078 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050079 {Opt_max_extent, "max_extent=%s"},
Chris Mason6f568d32008-01-29 16:03:38 -050080 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050081 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -040082 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -040083 {Opt_compress, "compress"},
Chris Masone18e4802008-01-18 10:54:22 -050084 {Opt_ssd, "ssd"},
Josef Bacik33268ea2008-07-24 12:16:36 -040085 {Opt_noacl, "noacl"},
86 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -040087};
88
Chris Masonedbd8d42007-12-21 16:27:24 -050089u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050090{
Chris Masonedbd8d42007-12-21 16:27:24 -050091 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050092 int mult = 1;
93 char *end;
94 char last;
95
96 res = simple_strtoul(str, &end, 10);
97
98 last = end[0];
99 if (isalpha(last)) {
100 last = tolower(last);
101 switch (last) {
102 case 'g':
103 mult *= 1024;
104 case 'm':
105 mult *= 1024;
106 case 'k':
107 mult *= 1024;
108 }
109 res = res * mult;
110 }
111 return res;
112}
113
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400114/*
115 * Regular mount options parser. Everything that is needed only when
116 * reading in a new superblock is parsed here.
117 */
118int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400119{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400120 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400121 substring_t args[MAX_OPT_ARGS];
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400122 char *p, *num;
Chris Mason4543df72008-06-11 21:47:56 -0400123 int intarg;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500124
Chris Mason95e05282007-08-29 09:11:44 -0400125 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400126 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400127
Chris Masonbe20aa92007-12-17 20:14:01 -0500128 /*
129 * strsep changes the string, duplicate it because parse_options
130 * gets called twice
131 */
132 options = kstrdup(options, GFP_NOFS);
133 if (!options)
134 return -ENOMEM;
135
Chris Masonbe20aa92007-12-17 20:14:01 -0500136
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400137 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400138 int token;
139 if (!*p)
140 continue;
141
142 token = match_token(p, tokens, args);
143 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400144 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400145 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
146 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400147 break;
Chris Mason95e05282007-08-29 09:11:44 -0400148 case Opt_subvol:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400149 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400150 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400151 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400152 * and can be happily ignored here.
153 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500154 break;
155 case Opt_nodatasum:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400156 printk(KERN_INFO "btrfs: setting nodatacsum\n");
157 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500158 break;
159 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400160 printk(KERN_INFO "btrfs: setting nodatacow\n");
161 btrfs_set_opt(info->mount_opt, NODATACOW);
162 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400163 break;
Chris Masonc8b97812008-10-29 14:49:59 -0400164 case Opt_compress:
165 printk(KERN_INFO "btrfs: use compression\n");
166 btrfs_set_opt(info->mount_opt, COMPRESS);
167 break;
Chris Masone18e4802008-01-18 10:54:22 -0500168 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400169 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
170 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500171 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500172 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400173 printk(KERN_INFO "btrfs: turning off barriers\n");
174 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500175 break;
Chris Mason4543df72008-06-11 21:47:56 -0400176 case Opt_thread_pool:
177 intarg = 0;
178 match_int(&args[0], &intarg);
179 if (intarg) {
180 info->thread_pool_size = intarg;
181 printk(KERN_INFO "btrfs: thread pool %d\n",
182 info->thread_pool_size);
183 }
184 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500185 case Opt_max_extent:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400186 num = match_strdup(&args[0]);
187 if (num) {
188 info->max_extent = btrfs_parse_size(num);
189 kfree(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500190
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400191 info->max_extent = max_t(u64,
192 info->max_extent, root->sectorsize);
193 printk(KERN_INFO "btrfs: max_extent at %llu\n",
194 info->max_extent);
Chris Masonc59f8952007-12-17 20:14:04 -0500195 }
196 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500197 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400198 num = match_strdup(&args[0]);
199 if (num) {
200 info->max_inline = btrfs_parse_size(num);
201 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500202
Chris Mason15ada042008-06-11 16:51:38 -0400203 if (info->max_inline) {
204 info->max_inline = max_t(u64,
205 info->max_inline,
206 root->sectorsize);
207 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400208 printk(KERN_INFO "btrfs: max_inline at %llu\n",
209 info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500210 }
211 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500212 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400213 num = match_strdup(&args[0]);
214 if (num) {
215 info->alloc_start = btrfs_parse_size(num);
216 kfree(num);
217 printk(KERN_INFO
218 "btrfs: allocations start at %llu\n",
219 info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500220 }
221 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400222 case Opt_noacl:
223 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
224 break;
Chris Mason95e05282007-08-29 09:11:44 -0400225 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500226 break;
Chris Mason95e05282007-08-29 09:11:44 -0400227 }
228 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500229 kfree(options);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400230 return 0;
231}
232
233/*
234 * Parse mount options that are required early in the mount process.
235 *
236 * All other options will be parsed on much later in the mount process and
237 * only when we need to allocate a new super block.
238 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500239static int btrfs_parse_early_options(const char *options, fmode_t flags,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400240 void *holder, char **subvol_name,
241 struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400242{
243 substring_t args[MAX_OPT_ARGS];
244 char *opts, *p;
245 int error = 0;
246
247 if (!options)
248 goto out;
249
250 /*
251 * strsep changes the string, duplicate it because parse_options
252 * gets called twice
253 */
254 opts = kstrdup(options, GFP_KERNEL);
255 if (!opts)
256 return -ENOMEM;
257
258 while ((p = strsep(&opts, ",")) != NULL) {
259 int token;
260 if (!*p)
261 continue;
262
263 token = match_token(p, tokens, args);
264 switch (token) {
265 case Opt_subvol:
266 *subvol_name = match_strdup(&args[0]);
267 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400268 case Opt_device:
269 error = btrfs_scan_one_device(match_strdup(&args[0]),
270 flags, holder, fs_devices);
271 if (error)
272 goto out_free_opts;
273 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400274 default:
275 break;
276 }
277 }
278
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400279 out_free_opts:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400280 kfree(opts);
281 out:
282 /*
283 * If no subvolume name is specified we use the default one. Allocate
Chris Mason3de45862008-11-17 21:02:50 -0500284 * a copy of the string "." here so that code later in the
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400285 * mount path doesn't care if it's the default volume or another one.
286 */
287 if (!*subvol_name) {
Chris Mason3de45862008-11-17 21:02:50 -0500288 *subvol_name = kstrdup(".", GFP_KERNEL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400289 if (!*subvol_name)
290 return -ENOMEM;
291 }
292 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400293}
294
Chris Masond3977122009-01-05 21:25:51 -0500295static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400296 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500297 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400298{
Chris Masond3977122009-01-05 21:25:51 -0500299 struct inode *inode;
300 struct dentry *root_dentry;
Chris Masone20d96d2007-03-22 12:13:20 -0400301 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400302 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400303 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400304 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400305
306 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400307 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400308 sb->s_op = &btrfs_super_ops;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530309 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500310 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400311 sb->s_time_gran = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -0400312 sb->s_flags |= MS_POSIXACL;
Chris Masone20d96d2007-03-22 12:13:20 -0400313
Chris Masondfe25022008-05-13 13:46:40 -0400314 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400315
Yane58ca022008-04-01 11:21:34 -0400316 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400317 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400318 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400319 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400320 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400321 disk_super = &tree_root->fs_info->super_copy;
Chris Mason3de45862008-11-17 21:02:50 -0500322 inode = btrfs_iget_locked(sb, BTRFS_FIRST_FREE_OBJECTID,
323 tree_root->fs_info->fs_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400324 bi = BTRFS_I(inode);
325 bi->location.objectid = inode->i_ino;
326 bi->location.offset = 0;
Chris Mason3de45862008-11-17 21:02:50 -0500327 bi->root = tree_root->fs_info->fs_root;
Chris Masonb888db2b2007-08-27 16:49:44 -0400328
Chris Masond6e4a422007-04-06 15:37:36 -0400329 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
330
Chris Mason39279cc2007-06-12 06:35:45 -0400331 if (!inode) {
332 err = -ENOMEM;
333 goto fail_close;
334 }
Chris Masone20d96d2007-03-22 12:13:20 -0400335 if (inode->i_state & I_NEW) {
336 btrfs_read_locked_inode(inode);
337 unlock_new_inode(inode);
338 }
Chris Mason2e635a22007-03-21 11:12:56 -0400339
Chris Masone20d96d2007-03-22 12:13:20 -0400340 root_dentry = d_alloc_root(inode);
341 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400342 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400343 err = -ENOMEM;
344 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400345 }
Yan Zhenge4404d62008-12-12 10:03:26 -0500346#if 0
Josef Bacik58176a92007-08-29 15:47:34 -0400347 /* this does the super kobj at the same time */
348 err = btrfs_sysfs_add_super(tree_root->fs_info);
349 if (err)
350 goto fail_close;
Yan Zhenge4404d62008-12-12 10:03:26 -0500351#endif
Josef Bacik58176a92007-08-29 15:47:34 -0400352
Chris Masone20d96d2007-03-22 12:13:20 -0400353 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500354
Chris Mason6885f302008-02-20 16:11:05 -0500355 save_mount_options(sb, data);
Chris Mason2e635a22007-03-21 11:12:56 -0400356 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400357
Chris Mason39279cc2007-06-12 06:35:45 -0400358fail_close:
359 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400360 return err;
361}
362
Sage Weil6bf13c02008-06-10 10:07:39 -0400363int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400364{
365 struct btrfs_trans_handle *trans;
366 struct btrfs_root *root;
367 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400368 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400369
Yan Zhengc146afa2008-11-12 14:34:12 -0500370 if (sb->s_flags & MS_RDONLY)
371 return 0;
372
Chris Masond5719762007-03-23 10:01:08 -0400373 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400374 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400375 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400376 return 0;
377 }
Chris Mason771ed682008-11-06 22:02:51 -0500378
379 btrfs_start_delalloc_inodes(root);
380 btrfs_wait_ordered_extents(root, 0);
381
Chris Masond5719762007-03-23 10:01:08 -0400382 trans = btrfs_start_transaction(root, 1);
383 ret = btrfs_commit_transaction(trans, root);
384 sb->s_dirt = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400385 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400386}
387
Chris Masond561c022007-03-23 19:47:49 -0400388static void btrfs_write_super(struct super_block *sb)
389{
Chris Mason08607c12007-06-08 15:33:54 -0400390 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400391}
392
Chris Masona061fc82008-05-07 11:43:44 -0400393static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400394{
Chris Masona061fc82008-05-07 11:43:44 -0400395 struct btrfs_fs_devices *test_fs_devices = data;
396 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400397
Chris Masona061fc82008-05-07 11:43:44 -0400398 return root->fs_info->fs_devices == test_fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400399}
400
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400401/*
402 * Find a superblock for the given device / mount point.
403 *
404 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
405 * for multiple device setup. Make sure to keep it in sync.
406 */
407static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
408 const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400409{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400410 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400411 struct block_device *bdev = NULL;
412 struct super_block *s;
413 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400414 struct btrfs_fs_devices *fs_devices = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500415 fmode_t mode = FMODE_READ;
Yan4b82d6e2007-08-29 09:11:44 -0400416 int error = 0;
417
Christoph Hellwig97288f22008-12-02 06:36:09 -0500418 if (!(flags & MS_RDONLY))
419 mode |= FMODE_WRITE;
420
421 error = btrfs_parse_early_options(data, mode, fs_type,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400422 &subvol_name, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400423 if (error)
Shen Feng1f483662009-01-05 15:43:42 -0500424 return error;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400425
Christoph Hellwig97288f22008-12-02 06:36:09 -0500426 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400427 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400428 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400429
Christoph Hellwig97288f22008-12-02 06:36:09 -0500430 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400431 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400432 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400433
Yan Zheng2b820322008-11-17 21:11:30 -0500434 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
435 error = -EACCES;
436 goto error_close_devices;
437 }
438
Chris Masondfe25022008-05-13 13:46:40 -0400439 bdev = fs_devices->latest_bdev;
Chris Masona061fc82008-05-07 11:43:44 -0400440 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400441 if (IS_ERR(s))
442 goto error_s;
443
444 if (s->s_root) {
445 if ((flags ^ s->s_flags) & MS_RDONLY) {
446 up_write(&s->s_umount);
447 deactivate_super(s);
448 error = -EBUSY;
Yan Zhengc146afa2008-11-12 14:34:12 -0500449 goto error_close_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400450 }
451
Yan Zheng2b820322008-11-17 21:11:30 -0500452 btrfs_close_devices(fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400453 } else {
454 char b[BDEVNAME_SIZE];
455
456 s->s_flags = flags;
457 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400458 error = btrfs_fill_super(s, fs_devices, data,
459 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400460 if (error) {
461 up_write(&s->s_umount);
462 deactivate_super(s);
Shen Feng1f483662009-01-05 15:43:42 -0500463 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400464 }
465
Chris Mason788f20e2008-04-28 15:29:42 -0400466 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400467 s->s_flags |= MS_ACTIVE;
468 }
469
David Woodhouse76fcef12008-08-19 16:49:35 +0100470 if (!strcmp(subvol_name, "."))
471 root = dget(s->s_root);
472 else {
473 mutex_lock(&s->s_root->d_inode->i_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500474 root = lookup_one_len(subvol_name, s->s_root,
475 strlen(subvol_name));
David Woodhouse76fcef12008-08-19 16:49:35 +0100476 mutex_unlock(&s->s_root->d_inode->i_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500477
David Woodhouse76fcef12008-08-19 16:49:35 +0100478 if (IS_ERR(root)) {
479 up_write(&s->s_umount);
480 deactivate_super(s);
481 error = PTR_ERR(root);
Shen Feng1f483662009-01-05 15:43:42 -0500482 goto error_free_subvol_name;
David Woodhouse76fcef12008-08-19 16:49:35 +0100483 }
484 if (!root->d_inode) {
485 dput(root);
486 up_write(&s->s_umount);
487 deactivate_super(s);
488 error = -ENXIO;
Shen Feng1f483662009-01-05 15:43:42 -0500489 goto error_free_subvol_name;
David Woodhouse76fcef12008-08-19 16:49:35 +0100490 }
Yan4b82d6e2007-08-29 09:11:44 -0400491 }
492
493 mnt->mnt_sb = s;
494 mnt->mnt_root = root;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400495
496 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400497 return 0;
498
499error_s:
500 error = PTR_ERR(s);
Yan Zhengc146afa2008-11-12 14:34:12 -0500501error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400502 btrfs_close_devices(fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400503error_free_subvol_name:
504 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400505 return error;
506}
Chris Mason2e635a22007-03-21 11:12:56 -0400507
Yan Zhengc146afa2008-11-12 14:34:12 -0500508static int btrfs_remount(struct super_block *sb, int *flags, char *data)
509{
510 struct btrfs_root *root = btrfs_sb(sb);
511 int ret;
512
Chris Masonb2880522009-02-12 09:37:35 -0500513 ret = btrfs_parse_options(root, data);
514 if (ret)
515 return -EINVAL;
516
Yan Zhengc146afa2008-11-12 14:34:12 -0500517 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
518 return 0;
519
520 if (*flags & MS_RDONLY) {
521 sb->s_flags |= MS_RDONLY;
522
523 ret = btrfs_commit_super(root);
524 WARN_ON(ret);
525 } else {
Yan Zheng2b820322008-11-17 21:11:30 -0500526 if (root->fs_info->fs_devices->rw_devices == 0)
527 return -EACCES;
528
Yan Zhengc146afa2008-11-12 14:34:12 -0500529 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
530 return -EINVAL;
531
532 ret = btrfs_cleanup_reloc_trees(root);
533 WARN_ON(ret);
534
535 ret = btrfs_cleanup_fs_roots(root->fs_info);
536 WARN_ON(ret);
537
538 sb->s_flags &= ~MS_RDONLY;
539 }
540
541 return 0;
542}
543
Chris Mason8fd17792007-04-19 21:01:03 -0400544static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
545{
546 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400547 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400548 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +0100549 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Chris Mason8fd17792007-04-19 21:01:03 -0400550
551 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400552 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
553 buf->f_bfree = buf->f_blocks -
554 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400555 buf->f_bavail = buf->f_bfree;
556 buf->f_bsize = dentry->d_sb->s_blocksize;
557 buf->f_type = BTRFS_SUPER_MAGIC;
Chris Masond3977122009-01-05 21:25:51 -0500558
David Woodhouse9d036322008-08-18 12:01:52 +0100559 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -0500560 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +0100561 on a big-endian or little-endian host */
562 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
563 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +0100564 /* Mask in the root object ID too, to disambiguate subvols */
565 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
566 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
567
Chris Mason8fd17792007-04-19 21:01:03 -0400568 return 0;
569}
Chris Masonb5133862007-04-24 11:52:22 -0400570
Chris Mason2e635a22007-03-21 11:12:56 -0400571static struct file_system_type btrfs_fs_type = {
572 .owner = THIS_MODULE,
573 .name = "btrfs",
574 .get_sb = btrfs_get_sb,
Chris Masona061fc82008-05-07 11:43:44 -0400575 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -0400576 .fs_flags = FS_REQUIRES_DEV,
577};
Chris Masona9218f62008-03-24 15:02:04 -0400578
Chris Masond352ac62008-09-29 15:18:18 -0400579/*
580 * used by btrfsctl to scan devices when no FS is mounted
581 */
Chris Mason8a4b83c2008-03-24 15:02:07 -0400582static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
583 unsigned long arg)
584{
585 struct btrfs_ioctl_vol_args *vol;
586 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -0500587 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400588
Chris Masone441d542009-01-05 16:57:23 -0500589 if (!capable(CAP_SYS_ADMIN))
590 return -EPERM;
591
Chris Mason8a4b83c2008-03-24 15:02:07 -0400592 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
Wang Cong19d00cc2009-01-21 10:49:16 -0500593 if (!vol)
594 return -ENOMEM;
595
Chris Mason8a4b83c2008-03-24 15:02:07 -0400596 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
597 ret = -EFAULT;
598 goto out;
599 }
Chris Masonc071fcf2009-01-16 11:59:08 -0500600
Chris Mason8a4b83c2008-03-24 15:02:07 -0400601 switch (cmd) {
602 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -0500603 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400604 &btrfs_fs_type, &fs_devices);
605 break;
606 }
607out:
608 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -0400609 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400610}
611
Linus Torvalds01762602009-01-10 06:09:52 -0800612static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -0500613{
614 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400615 mutex_lock(&root->fs_info->transaction_kthread_mutex);
616 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -0800617 return 0;
Yaned0dab62008-01-22 12:46:56 -0500618}
619
Linus Torvalds01762602009-01-10 06:09:52 -0800620static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -0500621{
622 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400623 mutex_unlock(&root->fs_info->cleaner_mutex);
624 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -0800625 return 0;
Yaned0dab62008-01-22 12:46:56 -0500626}
Chris Mason2e635a22007-03-21 11:12:56 -0400627
Chris Masone20d96d2007-03-22 12:13:20 -0400628static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400629 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400630 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -0400631 .write_super = btrfs_write_super,
632 .sync_fs = btrfs_sync_fs,
Chris Mason6885f302008-02-20 16:11:05 -0500633 .show_options = generic_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -0400634 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400635 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400636 .alloc_inode = btrfs_alloc_inode,
637 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400638 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -0500639 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -0800640 .freeze_fs = btrfs_freeze,
641 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -0400642};
Chris Masona9218f62008-03-24 15:02:04 -0400643
644static const struct file_operations btrfs_ctl_fops = {
645 .unlocked_ioctl = btrfs_control_ioctl,
646 .compat_ioctl = btrfs_control_ioctl,
647 .owner = THIS_MODULE,
648};
649
650static struct miscdevice btrfs_misc = {
651 .minor = MISC_DYNAMIC_MINOR,
652 .name = "btrfs-control",
653 .fops = &btrfs_ctl_fops
654};
655
656static int btrfs_interface_init(void)
657{
658 return misc_register(&btrfs_misc);
659}
660
Christoph Hellwigb2950862008-12-02 09:54:17 -0500661static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -0400662{
663 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -0500664 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -0400665}
666
Chris Mason2e635a22007-03-21 11:12:56 -0400667static int __init init_btrfs_fs(void)
668{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400669 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400670
671 err = btrfs_init_sysfs();
672 if (err)
673 return err;
674
Chris Mason39279cc2007-06-12 06:35:45 -0400675 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400676 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -0400677 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -0500678
679 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500680 if (err)
681 goto free_cachep;
682
Chris Masond1310b22008-01-24 16:13:08 -0500683 err = extent_map_init();
684 if (err)
685 goto free_extent_io;
686
Chris Masona9218f62008-03-24 15:02:04 -0400687 err = btrfs_interface_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500688 if (err)
689 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -0400690
Chris Masona9218f62008-03-24 15:02:04 -0400691 err = register_filesystem(&btrfs_fs_type);
692 if (err)
693 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -0400694
695 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500696 return 0;
697
Chris Masona9218f62008-03-24 15:02:04 -0400698unregister_ioctl:
699 btrfs_interface_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500700free_extent_map:
701 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500702free_extent_io:
703 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500704free_cachep:
705 btrfs_destroy_cachep();
Chris Masona74a4b92008-06-25 16:01:31 -0400706free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500707 btrfs_exit_sysfs();
708 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400709}
710
711static void __exit exit_btrfs_fs(void)
712{
Chris Mason39279cc2007-06-12 06:35:45 -0400713 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400714 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500715 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -0400716 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400717 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400718 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -0400719 btrfs_cleanup_fs_uuids();
Chris Masonc8b97812008-10-29 14:49:59 -0400720 btrfs_zlib_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400721}
722
723module_init(init_btrfs_fs)
724module_exit(exit_btrfs_fs)
725
726MODULE_LICENSE("GPL");