blob: f7b3eac7ac6d9e5934891c27220a85138158b6a1 [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>
Chris Mason2e635a22007-03-21 11:12:56 -040040#include "ctree.h"
Chris Masone20d96d2007-03-22 12:13:20 -040041#include "disk-io.h"
Chris Masond5719762007-03-23 10:01:08 -040042#include "transaction.h"
Chris Mason2c90e5d2007-04-02 10:50:19 -040043#include "btrfs_inode.h"
Chris Masonc5739bb2007-04-10 09:27:04 -040044#include "ioctl.h"
Chris Mason3a686372007-05-24 13:35:57 -040045#include "print-tree.h"
Josef Bacik5103e942007-11-16 11:45:54 -050046#include "xattr.h"
Chris Mason8a4b83c2008-03-24 15:02:07 -040047#include "volumes.h"
Chris Masonb3c3da72008-07-23 12:12:13 -040048#include "version.h"
Balaji Raobe6e8dc2008-07-21 02:01:56 +053049#include "export.h"
Chris Mason2e635a22007-03-21 11:12:56 -040050
Chris Mason5f39d392007-10-15 16:14:19 -040051#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040052
Chris Masone20d96d2007-03-22 12:13:20 -040053static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040054
55static void btrfs_put_super (struct super_block * sb)
56{
57 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040058 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040059 int ret;
60
61 ret = close_ctree(root);
62 if (ret) {
63 printk("close ctree returns %d\n", ret);
64 }
Josef Bacik58176a92007-08-29 15:47:34 -040065 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040066 sb->s_fs_info = NULL;
67}
Chris Mason2e635a22007-03-21 11:12:56 -040068
Chris Mason95e05282007-08-29 09:11:44 -040069enum {
Christoph Hellwig43e570b2008-06-10 10:40:46 -040070 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
Chris Masondfe25022008-05-13 13:46:40 -040071 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
Josef Bacik33268ea2008-07-24 12:16:36 -040072 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040073};
74
75static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -040076 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -040077 {Opt_subvol, "subvol=%s"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -040078 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050079 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050080 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050081 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050082 {Opt_max_extent, "max_extent=%s"},
Chris Mason6f568d32008-01-29 16:03:38 -050083 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050084 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -040085 {Opt_thread_pool, "thread_pool=%d"},
Chris Masone18e4802008-01-18 10:54:22 -050086 {Opt_ssd, "ssd"},
Josef Bacik33268ea2008-07-24 12:16:36 -040087 {Opt_noacl, "noacl"},
88 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -040089};
90
Chris Masonedbd8d42007-12-21 16:27:24 -050091u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050092{
Chris Masonedbd8d42007-12-21 16:27:24 -050093 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050094 int mult = 1;
95 char *end;
96 char last;
97
98 res = simple_strtoul(str, &end, 10);
99
100 last = end[0];
101 if (isalpha(last)) {
102 last = tolower(last);
103 switch (last) {
104 case 'g':
105 mult *= 1024;
106 case 'm':
107 mult *= 1024;
108 case 'k':
109 mult *= 1024;
110 }
111 res = res * mult;
112 }
113 return res;
114}
115
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400116/*
117 * Regular mount options parser. Everything that is needed only when
118 * reading in a new superblock is parsed here.
119 */
120int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400121{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400122 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400123 substring_t args[MAX_OPT_ARGS];
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400124 char *p, *num;
Chris Mason4543df72008-06-11 21:47:56 -0400125 int intarg;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500126
Chris Mason95e05282007-08-29 09:11:44 -0400127 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400128 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400129
Chris Masonbe20aa92007-12-17 20:14:01 -0500130 /*
131 * strsep changes the string, duplicate it because parse_options
132 * gets called twice
133 */
134 options = kstrdup(options, GFP_NOFS);
135 if (!options)
136 return -ENOMEM;
137
Chris Masonbe20aa92007-12-17 20:14:01 -0500138
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400139 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400140 int token;
141 if (!*p)
142 continue;
143
144 token = match_token(p, tokens, args);
145 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400146 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400147 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
148 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400149 break;
Chris Mason95e05282007-08-29 09:11:44 -0400150 case Opt_subvol:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400151 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400152 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400153 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400154 * and can be happily ignored here.
155 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500156 break;
157 case Opt_nodatasum:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400158 printk(KERN_INFO "btrfs: setting nodatacsum\n");
159 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500160 break;
161 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400162 printk(KERN_INFO "btrfs: setting nodatacow\n");
163 btrfs_set_opt(info->mount_opt, NODATACOW);
164 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400165 break;
Chris Masone18e4802008-01-18 10:54:22 -0500166 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400167 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
168 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500169 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500170 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400171 printk(KERN_INFO "btrfs: turning off barriers\n");
172 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500173 break;
Chris Mason4543df72008-06-11 21:47:56 -0400174 case Opt_thread_pool:
175 intarg = 0;
176 match_int(&args[0], &intarg);
177 if (intarg) {
178 info->thread_pool_size = intarg;
179 printk(KERN_INFO "btrfs: thread pool %d\n",
180 info->thread_pool_size);
181 }
182 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500183 case Opt_max_extent:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400184 num = match_strdup(&args[0]);
185 if (num) {
186 info->max_extent = btrfs_parse_size(num);
187 kfree(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500188
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400189 info->max_extent = max_t(u64,
190 info->max_extent, root->sectorsize);
191 printk(KERN_INFO "btrfs: max_extent at %llu\n",
192 info->max_extent);
Chris Masonc59f8952007-12-17 20:14:04 -0500193 }
194 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500195 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400196 num = match_strdup(&args[0]);
197 if (num) {
198 info->max_inline = btrfs_parse_size(num);
199 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500200
Chris Mason15ada042008-06-11 16:51:38 -0400201 if (info->max_inline) {
202 info->max_inline = max_t(u64,
203 info->max_inline,
204 root->sectorsize);
205 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400206 printk(KERN_INFO "btrfs: max_inline at %llu\n",
207 info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500208 }
209 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500210 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400211 num = match_strdup(&args[0]);
212 if (num) {
213 info->alloc_start = btrfs_parse_size(num);
214 kfree(num);
215 printk(KERN_INFO
216 "btrfs: allocations start at %llu\n",
217 info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500218 }
219 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400220 case Opt_noacl:
221 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
222 break;
Chris Mason95e05282007-08-29 09:11:44 -0400223 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500224 break;
Chris Mason95e05282007-08-29 09:11:44 -0400225 }
226 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500227 kfree(options);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400228 return 0;
229}
230
231/*
232 * Parse mount options that are required early in the mount process.
233 *
234 * All other options will be parsed on much later in the mount process and
235 * only when we need to allocate a new super block.
236 */
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400237static int btrfs_parse_early_options(const char *options, int flags,
238 void *holder, char **subvol_name,
239 struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400240{
241 substring_t args[MAX_OPT_ARGS];
242 char *opts, *p;
243 int error = 0;
244
245 if (!options)
246 goto out;
247
248 /*
249 * strsep changes the string, duplicate it because parse_options
250 * gets called twice
251 */
252 opts = kstrdup(options, GFP_KERNEL);
253 if (!opts)
254 return -ENOMEM;
255
256 while ((p = strsep(&opts, ",")) != NULL) {
257 int token;
258 if (!*p)
259 continue;
260
261 token = match_token(p, tokens, args);
262 switch (token) {
263 case Opt_subvol:
264 *subvol_name = match_strdup(&args[0]);
265 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400266 case Opt_device:
267 error = btrfs_scan_one_device(match_strdup(&args[0]),
268 flags, holder, fs_devices);
269 if (error)
270 goto out_free_opts;
271 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400272 default:
273 break;
274 }
275 }
276
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400277 out_free_opts:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400278 kfree(opts);
279 out:
280 /*
281 * If no subvolume name is specified we use the default one. Allocate
282 * a copy of the string "default" here so that code later in the
283 * mount path doesn't care if it's the default volume or another one.
284 */
285 if (!*subvol_name) {
286 *subvol_name = kstrdup("default", GFP_KERNEL);
287 if (!*subvol_name)
288 return -ENOMEM;
289 }
290 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400291}
292
Chris Mason8a4b83c2008-03-24 15:02:07 -0400293static int btrfs_fill_super(struct super_block * sb,
294 struct btrfs_fs_devices *fs_devices,
295 void * data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400296{
297 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400298 struct dentry * root_dentry;
299 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400300 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400301 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400302 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400303
304 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400305 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400306 sb->s_op = &btrfs_super_ops;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530307 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500308 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400309 sb->s_time_gran = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -0400310 sb->s_flags |= MS_POSIXACL;
Chris Masone20d96d2007-03-22 12:13:20 -0400311
Chris Masondfe25022008-05-13 13:46:40 -0400312 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400313
Yane58ca022008-04-01 11:21:34 -0400314 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400315 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400316 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400317 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400318 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400319 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400320 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
321 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400322 bi = BTRFS_I(inode);
323 bi->location.objectid = inode->i_ino;
324 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400325 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400326
Chris Masond6e4a422007-04-06 15:37:36 -0400327 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
328
Chris Mason39279cc2007-06-12 06:35:45 -0400329 if (!inode) {
330 err = -ENOMEM;
331 goto fail_close;
332 }
Chris Masone20d96d2007-03-22 12:13:20 -0400333 if (inode->i_state & I_NEW) {
334 btrfs_read_locked_inode(inode);
335 unlock_new_inode(inode);
336 }
Chris Mason2e635a22007-03-21 11:12:56 -0400337
Chris Masone20d96d2007-03-22 12:13:20 -0400338 root_dentry = d_alloc_root(inode);
339 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400340 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400341 err = -ENOMEM;
342 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400343 }
Josef Bacik58176a92007-08-29 15:47:34 -0400344
345 /* this does the super kobj at the same time */
346 err = btrfs_sysfs_add_super(tree_root->fs_info);
347 if (err)
348 goto fail_close;
349
Chris Masone20d96d2007-03-22 12:13:20 -0400350 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500351
352#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
353 save_mount_options(sb, data);
354#endif
355
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
Chris Masond5719762007-03-23 10:01:08 -0400370 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400371 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400372 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400373 return 0;
374 }
Chris Masone9d0b132007-08-10 14:06:19 -0400375 btrfs_clean_old_snapshots(root);
Chris Masond5719762007-03-23 10:01:08 -0400376 trans = btrfs_start_transaction(root, 1);
377 ret = btrfs_commit_transaction(trans, root);
378 sb->s_dirt = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400379 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400380}
381
Chris Masond561c022007-03-23 19:47:49 -0400382static void btrfs_write_super(struct super_block *sb)
383{
Chris Mason08607c12007-06-08 15:33:54 -0400384 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400385}
386
Chris Masona061fc82008-05-07 11:43:44 -0400387static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400388{
Chris Masona061fc82008-05-07 11:43:44 -0400389 struct btrfs_fs_devices *test_fs_devices = data;
390 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400391
Chris Masona061fc82008-05-07 11:43:44 -0400392 return root->fs_info->fs_devices == test_fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400393}
394
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400395/*
396 * Find a superblock for the given device / mount point.
397 *
398 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
399 * for multiple device setup. Make sure to keep it in sync.
400 */
401static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
402 const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400403{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400404 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400405 struct block_device *bdev = NULL;
406 struct super_block *s;
407 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400408 struct btrfs_fs_devices *fs_devices = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400409 int error = 0;
410
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400411 error = btrfs_parse_early_options(data, flags, fs_type,
412 &subvol_name, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400413 if (error)
414 goto error;
415
Chris Mason8a4b83c2008-03-24 15:02:07 -0400416 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
417 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400418 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400419
Chris Mason8a4b83c2008-03-24 15:02:07 -0400420 error = btrfs_open_devices(fs_devices, flags, fs_type);
421 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400422 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400423
Chris Masondfe25022008-05-13 13:46:40 -0400424 bdev = fs_devices->latest_bdev;
Chris Masona061fc82008-05-07 11:43:44 -0400425 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400426 if (IS_ERR(s))
427 goto error_s;
428
429 if (s->s_root) {
430 if ((flags ^ s->s_flags) & MS_RDONLY) {
431 up_write(&s->s_umount);
432 deactivate_super(s);
433 error = -EBUSY;
434 goto error_bdev;
435 }
436
Yan4b82d6e2007-08-29 09:11:44 -0400437 } else {
438 char b[BDEVNAME_SIZE];
439
440 s->s_flags = flags;
441 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400442 error = btrfs_fill_super(s, fs_devices, data,
443 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400444 if (error) {
445 up_write(&s->s_umount);
446 deactivate_super(s);
447 goto error;
448 }
449
Chris Mason788f20e2008-04-28 15:29:42 -0400450 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400451 s->s_flags |= MS_ACTIVE;
452 }
453
David Woodhouse76fcef12008-08-19 16:49:35 +0100454 if (!strcmp(subvol_name, "."))
455 root = dget(s->s_root);
456 else {
457 mutex_lock(&s->s_root->d_inode->i_mutex);
458 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
459 mutex_unlock(&s->s_root->d_inode->i_mutex);
460 if (IS_ERR(root)) {
461 up_write(&s->s_umount);
462 deactivate_super(s);
463 error = PTR_ERR(root);
464 goto error;
465 }
466 if (!root->d_inode) {
467 dput(root);
468 up_write(&s->s_umount);
469 deactivate_super(s);
470 error = -ENXIO;
471 goto error;
472 }
Yan4b82d6e2007-08-29 09:11:44 -0400473 }
474
475 mnt->mnt_sb = s;
476 mnt->mnt_root = root;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400477
478 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400479 return 0;
480
481error_s:
482 error = PTR_ERR(s);
483error_bdev:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400484 btrfs_close_devices(fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400485error_free_subvol_name:
486 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400487error:
488 return error;
489}
Chris Mason2e635a22007-03-21 11:12:56 -0400490
Chris Mason8fd17792007-04-19 21:01:03 -0400491static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
492{
493 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400494 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400495 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +0100496 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Chris Mason8fd17792007-04-19 21:01:03 -0400497
498 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400499 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
500 buf->f_bfree = buf->f_blocks -
501 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400502 buf->f_bavail = buf->f_bfree;
503 buf->f_bsize = dentry->d_sb->s_blocksize;
504 buf->f_type = BTRFS_SUPER_MAGIC;
David Woodhouse9d036322008-08-18 12:01:52 +0100505 /* We treat it as constant endianness (it doesn't matter _which_)
506 because we want the fsid to come out the same whether mounted
507 on a big-endian or little-endian host */
508 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
509 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +0100510 /* Mask in the root object ID too, to disambiguate subvols */
511 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
512 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
513
Chris Mason8fd17792007-04-19 21:01:03 -0400514 return 0;
515}
Chris Masonb5133862007-04-24 11:52:22 -0400516
Chris Mason2e635a22007-03-21 11:12:56 -0400517static struct file_system_type btrfs_fs_type = {
518 .owner = THIS_MODULE,
519 .name = "btrfs",
520 .get_sb = btrfs_get_sb,
Chris Masona061fc82008-05-07 11:43:44 -0400521 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -0400522 .fs_flags = FS_REQUIRES_DEV,
523};
Chris Masona9218f62008-03-24 15:02:04 -0400524
Chris Mason8a4b83c2008-03-24 15:02:07 -0400525static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
526 unsigned long arg)
527{
528 struct btrfs_ioctl_vol_args *vol;
529 struct btrfs_fs_devices *fs_devices;
Linda Knippersf819d832008-06-09 22:17:11 -0400530 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400531 int len;
532
533 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
534 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
535 ret = -EFAULT;
536 goto out;
537 }
538 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
539 switch (cmd) {
540 case BTRFS_IOC_SCAN_DEV:
541 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
542 &btrfs_fs_type, &fs_devices);
543 break;
544 }
545out:
546 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -0400547 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400548}
549
Yaned0dab62008-01-22 12:46:56 -0500550static void btrfs_write_super_lockfs(struct super_block *sb)
551{
552 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400553 mutex_lock(&root->fs_info->transaction_kthread_mutex);
554 mutex_lock(&root->fs_info->cleaner_mutex);
Yaned0dab62008-01-22 12:46:56 -0500555}
556
557static void btrfs_unlockfs(struct super_block *sb)
558{
559 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400560 mutex_unlock(&root->fs_info->cleaner_mutex);
561 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Yaned0dab62008-01-22 12:46:56 -0500562}
Chris Mason2e635a22007-03-21 11:12:56 -0400563
Chris Masone20d96d2007-03-22 12:13:20 -0400564static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400565 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400566 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -0400567 .write_super = btrfs_write_super,
568 .sync_fs = btrfs_sync_fs,
Chris Mason6885f302008-02-20 16:11:05 -0500569#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
570 .read_inode = btrfs_read_locked_inode,
571#else
572 .show_options = generic_show_options,
573#endif
Chris Mason4730a4b2007-03-26 12:00:39 -0400574 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400575 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400576 .alloc_inode = btrfs_alloc_inode,
577 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400578 .statfs = btrfs_statfs,
Yaned0dab62008-01-22 12:46:56 -0500579 .write_super_lockfs = btrfs_write_super_lockfs,
580 .unlockfs = btrfs_unlockfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400581};
Chris Masona9218f62008-03-24 15:02:04 -0400582
583static const struct file_operations btrfs_ctl_fops = {
584 .unlocked_ioctl = btrfs_control_ioctl,
585 .compat_ioctl = btrfs_control_ioctl,
586 .owner = THIS_MODULE,
587};
588
589static struct miscdevice btrfs_misc = {
590 .minor = MISC_DYNAMIC_MINOR,
591 .name = "btrfs-control",
592 .fops = &btrfs_ctl_fops
593};
594
595static int btrfs_interface_init(void)
596{
597 return misc_register(&btrfs_misc);
598}
599
600void btrfs_interface_exit(void)
601{
602 if (misc_deregister(&btrfs_misc) < 0)
603 printk("misc_deregister failed for control device");
604}
605
Chris Mason2e635a22007-03-21 11:12:56 -0400606static int __init init_btrfs_fs(void)
607{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400608 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400609
610 err = btrfs_init_sysfs();
611 if (err)
612 return err;
613
Chris Mason39279cc2007-06-12 06:35:45 -0400614 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400615 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -0400616 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -0500617
618 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500619 if (err)
620 goto free_cachep;
621
Chris Masond1310b22008-01-24 16:13:08 -0500622 err = extent_map_init();
623 if (err)
624 goto free_extent_io;
625
Chris Masona9218f62008-03-24 15:02:04 -0400626 err = btrfs_interface_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500627 if (err)
628 goto free_extent_map;
Chris Masona9218f62008-03-24 15:02:04 -0400629 err = register_filesystem(&btrfs_fs_type);
630 if (err)
631 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -0400632
633 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500634 return 0;
635
Chris Masona9218f62008-03-24 15:02:04 -0400636unregister_ioctl:
637 btrfs_interface_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500638free_extent_map:
639 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500640free_extent_io:
641 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500642free_cachep:
643 btrfs_destroy_cachep();
Chris Masona74a4b92008-06-25 16:01:31 -0400644free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500645 btrfs_exit_sysfs();
646 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400647}
648
649static void __exit exit_btrfs_fs(void)
650{
Chris Mason39279cc2007-06-12 06:35:45 -0400651 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400652 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500653 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -0400654 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400655 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400656 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -0400657 btrfs_cleanup_fs_uuids();
Chris Mason2e635a22007-03-21 11:12:56 -0400658}
659
660module_init(init_btrfs_fs)
661module_exit(exit_btrfs_fs)
662
663MODULE_LICENSE("GPL");