blob: a6a418b6894b10ac248c821537704fb9b9092149 [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"
Chris Mason2e635a22007-03-21 11:12:56 -040049
Chris Mason5f39d392007-10-15 16:14:19 -040050#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040051
Chris Masone20d96d2007-03-22 12:13:20 -040052static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040053
54static void btrfs_put_super (struct super_block * sb)
55{
56 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040057 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040058 int ret;
59
60 ret = close_ctree(root);
61 if (ret) {
62 printk("close ctree returns %d\n", ret);
63 }
Josef Bacik58176a92007-08-29 15:47:34 -040064 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040065 sb->s_fs_info = NULL;
66}
Chris Mason2e635a22007-03-21 11:12:56 -040067
Chris Mason95e05282007-08-29 09:11:44 -040068enum {
Christoph Hellwig43e570b2008-06-10 10:40:46 -040069 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
Chris Masondfe25022008-05-13 13:46:40 -040070 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
Josef Bacik33268ea2008-07-24 12:16:36 -040071 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040072};
73
74static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -040075 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -040076 {Opt_subvol, "subvol=%s"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -040077 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050078 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050079 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050080 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050081 {Opt_max_extent, "max_extent=%s"},
Chris Mason6f568d32008-01-29 16:03:38 -050082 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050083 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -040084 {Opt_thread_pool, "thread_pool=%d"},
Chris Masone18e4802008-01-18 10:54:22 -050085 {Opt_ssd, "ssd"},
Josef Bacik33268ea2008-07-24 12:16:36 -040086 {Opt_noacl, "noacl"},
87 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -040088};
89
Chris Masonedbd8d42007-12-21 16:27:24 -050090u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050091{
Chris Masonedbd8d42007-12-21 16:27:24 -050092 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050093 int mult = 1;
94 char *end;
95 char last;
96
97 res = simple_strtoul(str, &end, 10);
98
99 last = end[0];
100 if (isalpha(last)) {
101 last = tolower(last);
102 switch (last) {
103 case 'g':
104 mult *= 1024;
105 case 'm':
106 mult *= 1024;
107 case 'k':
108 mult *= 1024;
109 }
110 res = res * mult;
111 }
112 return res;
113}
114
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400115/*
116 * Regular mount options parser. Everything that is needed only when
117 * reading in a new superblock is parsed here.
118 */
119int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400120{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400121 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400122 substring_t args[MAX_OPT_ARGS];
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400123 char *p, *num;
Chris Mason4543df72008-06-11 21:47:56 -0400124 int intarg;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500125
Chris Mason95e05282007-08-29 09:11:44 -0400126 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400127 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400128
Chris Masonbe20aa92007-12-17 20:14:01 -0500129 /*
130 * strsep changes the string, duplicate it because parse_options
131 * gets called twice
132 */
133 options = kstrdup(options, GFP_NOFS);
134 if (!options)
135 return -ENOMEM;
136
Chris Masonbe20aa92007-12-17 20:14:01 -0500137
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400138 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400139 int token;
140 if (!*p)
141 continue;
142
143 token = match_token(p, tokens, args);
144 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400145 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400146 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
147 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400148 break;
Chris Mason95e05282007-08-29 09:11:44 -0400149 case Opt_subvol:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400150 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400151 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400152 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400153 * and can be happily ignored here.
154 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500155 break;
156 case Opt_nodatasum:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400157 printk(KERN_INFO "btrfs: setting nodatacsum\n");
158 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500159 break;
160 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400161 printk(KERN_INFO "btrfs: setting nodatacow\n");
162 btrfs_set_opt(info->mount_opt, NODATACOW);
163 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400164 break;
Chris Masone18e4802008-01-18 10:54:22 -0500165 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400166 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
167 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500168 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500169 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400170 printk(KERN_INFO "btrfs: turning off barriers\n");
171 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500172 break;
Chris Mason4543df72008-06-11 21:47:56 -0400173 case Opt_thread_pool:
174 intarg = 0;
175 match_int(&args[0], &intarg);
176 if (intarg) {
177 info->thread_pool_size = intarg;
178 printk(KERN_INFO "btrfs: thread pool %d\n",
179 info->thread_pool_size);
180 }
181 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500182 case Opt_max_extent:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400183 num = match_strdup(&args[0]);
184 if (num) {
185 info->max_extent = btrfs_parse_size(num);
186 kfree(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500187
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400188 info->max_extent = max_t(u64,
189 info->max_extent, root->sectorsize);
190 printk(KERN_INFO "btrfs: max_extent at %llu\n",
191 info->max_extent);
Chris Masonc59f8952007-12-17 20:14:04 -0500192 }
193 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500194 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400195 num = match_strdup(&args[0]);
196 if (num) {
197 info->max_inline = btrfs_parse_size(num);
198 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500199
Chris Mason15ada042008-06-11 16:51:38 -0400200 if (info->max_inline) {
201 info->max_inline = max_t(u64,
202 info->max_inline,
203 root->sectorsize);
204 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400205 printk(KERN_INFO "btrfs: max_inline at %llu\n",
206 info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500207 }
208 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500209 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400210 num = match_strdup(&args[0]);
211 if (num) {
212 info->alloc_start = btrfs_parse_size(num);
213 kfree(num);
214 printk(KERN_INFO
215 "btrfs: allocations start at %llu\n",
216 info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500217 }
218 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400219 case Opt_noacl:
220 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
221 break;
Chris Mason95e05282007-08-29 09:11:44 -0400222 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500223 break;
Chris Mason95e05282007-08-29 09:11:44 -0400224 }
225 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500226 kfree(options);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400227 return 0;
228}
229
230/*
231 * Parse mount options that are required early in the mount process.
232 *
233 * All other options will be parsed on much later in the mount process and
234 * only when we need to allocate a new super block.
235 */
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400236static int btrfs_parse_early_options(const char *options, int flags,
237 void *holder, char **subvol_name,
238 struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400239{
240 substring_t args[MAX_OPT_ARGS];
241 char *opts, *p;
242 int error = 0;
243
244 if (!options)
245 goto out;
246
247 /*
248 * strsep changes the string, duplicate it because parse_options
249 * gets called twice
250 */
251 opts = kstrdup(options, GFP_KERNEL);
252 if (!opts)
253 return -ENOMEM;
254
255 while ((p = strsep(&opts, ",")) != NULL) {
256 int token;
257 if (!*p)
258 continue;
259
260 token = match_token(p, tokens, args);
261 switch (token) {
262 case Opt_subvol:
263 *subvol_name = match_strdup(&args[0]);
264 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400265 case Opt_device:
266 error = btrfs_scan_one_device(match_strdup(&args[0]),
267 flags, holder, fs_devices);
268 if (error)
269 goto out_free_opts;
270 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400271 default:
272 break;
273 }
274 }
275
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400276 out_free_opts:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400277 kfree(opts);
278 out:
279 /*
280 * If no subvolume name is specified we use the default one. Allocate
281 * a copy of the string "default" here so that code later in the
282 * mount path doesn't care if it's the default volume or another one.
283 */
284 if (!*subvol_name) {
285 *subvol_name = kstrdup("default", GFP_KERNEL);
286 if (!*subvol_name)
287 return -ENOMEM;
288 }
289 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400290}
291
Chris Mason8a4b83c2008-03-24 15:02:07 -0400292static int btrfs_fill_super(struct super_block * sb,
293 struct btrfs_fs_devices *fs_devices,
294 void * data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400295{
296 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400297 struct dentry * root_dentry;
298 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400299 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400300 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400301 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400302
303 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400304 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400305 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500306 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400307 sb->s_time_gran = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -0400308 sb->s_flags |= MS_POSIXACL;
Chris Masone20d96d2007-03-22 12:13:20 -0400309
Chris Masondfe25022008-05-13 13:46:40 -0400310 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400311
Yane58ca022008-04-01 11:21:34 -0400312 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400313 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400314 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400315 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400316 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400317 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400318 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
319 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400320 bi = BTRFS_I(inode);
321 bi->location.objectid = inode->i_ino;
322 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400323 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400324
Chris Masond6e4a422007-04-06 15:37:36 -0400325 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
326
Chris Mason39279cc2007-06-12 06:35:45 -0400327 if (!inode) {
328 err = -ENOMEM;
329 goto fail_close;
330 }
Chris Masone20d96d2007-03-22 12:13:20 -0400331 if (inode->i_state & I_NEW) {
332 btrfs_read_locked_inode(inode);
333 unlock_new_inode(inode);
334 }
Chris Mason2e635a22007-03-21 11:12:56 -0400335
Chris Masone20d96d2007-03-22 12:13:20 -0400336 root_dentry = d_alloc_root(inode);
337 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400338 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400339 err = -ENOMEM;
340 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400341 }
Josef Bacik58176a92007-08-29 15:47:34 -0400342
343 /* this does the super kobj at the same time */
344 err = btrfs_sysfs_add_super(tree_root->fs_info);
345 if (err)
346 goto fail_close;
347
Chris Masone20d96d2007-03-22 12:13:20 -0400348 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500349
350#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
351 save_mount_options(sb, data);
352#endif
353
Chris Mason2e635a22007-03-21 11:12:56 -0400354 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400355
Chris Mason39279cc2007-06-12 06:35:45 -0400356fail_close:
357 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400358 return err;
359}
360
Sage Weil6bf13c02008-06-10 10:07:39 -0400361int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400362{
363 struct btrfs_trans_handle *trans;
364 struct btrfs_root *root;
365 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400366 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400367
Chris Masond5719762007-03-23 10:01:08 -0400368 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400369 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400370 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400371 return 0;
372 }
Chris Masone9d0b132007-08-10 14:06:19 -0400373 btrfs_clean_old_snapshots(root);
Chris Masond5719762007-03-23 10:01:08 -0400374 trans = btrfs_start_transaction(root, 1);
375 ret = btrfs_commit_transaction(trans, root);
376 sb->s_dirt = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400377 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400378}
379
Chris Masond561c022007-03-23 19:47:49 -0400380static void btrfs_write_super(struct super_block *sb)
381{
Chris Mason08607c12007-06-08 15:33:54 -0400382 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400383}
384
Chris Masona061fc82008-05-07 11:43:44 -0400385static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400386{
Chris Masona061fc82008-05-07 11:43:44 -0400387 struct btrfs_fs_devices *test_fs_devices = data;
388 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400389
Chris Masona061fc82008-05-07 11:43:44 -0400390 return root->fs_info->fs_devices == test_fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400391}
392
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400393/*
394 * Find a superblock for the given device / mount point.
395 *
396 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
397 * for multiple device setup. Make sure to keep it in sync.
398 */
399static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
400 const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400401{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400402 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400403 struct block_device *bdev = NULL;
404 struct super_block *s;
405 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400406 struct btrfs_fs_devices *fs_devices = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400407 int error = 0;
408
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400409 error = btrfs_parse_early_options(data, flags, fs_type,
410 &subvol_name, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400411 if (error)
412 goto error;
413
Chris Mason8a4b83c2008-03-24 15:02:07 -0400414 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
415 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400416 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400417
Chris Mason8a4b83c2008-03-24 15:02:07 -0400418 error = btrfs_open_devices(fs_devices, flags, fs_type);
419 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400420 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400421
Chris Masondfe25022008-05-13 13:46:40 -0400422 bdev = fs_devices->latest_bdev;
Chris Masona061fc82008-05-07 11:43:44 -0400423 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400424 if (IS_ERR(s))
425 goto error_s;
426
427 if (s->s_root) {
428 if ((flags ^ s->s_flags) & MS_RDONLY) {
429 up_write(&s->s_umount);
430 deactivate_super(s);
431 error = -EBUSY;
432 goto error_bdev;
433 }
434
Yan4b82d6e2007-08-29 09:11:44 -0400435 } else {
436 char b[BDEVNAME_SIZE];
437
438 s->s_flags = flags;
439 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400440 error = btrfs_fill_super(s, fs_devices, data,
441 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400442 if (error) {
443 up_write(&s->s_umount);
444 deactivate_super(s);
445 goto error;
446 }
447
Chris Mason788f20e2008-04-28 15:29:42 -0400448 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400449 s->s_flags |= MS_ACTIVE;
450 }
451
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400452 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
453 if (IS_ERR(root)) {
454 up_write(&s->s_umount);
455 deactivate_super(s);
456 error = PTR_ERR(root);
457 goto error;
458 }
459 if (!root->d_inode) {
460 dput(root);
461 up_write(&s->s_umount);
462 deactivate_super(s);
463 error = -ENXIO;
464 goto error;
Yan4b82d6e2007-08-29 09:11:44 -0400465 }
466
467 mnt->mnt_sb = s;
468 mnt->mnt_root = root;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400469
470 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400471 return 0;
472
473error_s:
474 error = PTR_ERR(s);
475error_bdev:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400476 btrfs_close_devices(fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400477error_free_subvol_name:
478 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400479error:
480 return error;
481}
Chris Mason2e635a22007-03-21 11:12:56 -0400482
Chris Mason8fd17792007-04-19 21:01:03 -0400483static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
484{
485 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400486 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400487 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400488
489 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400490 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
491 buf->f_bfree = buf->f_blocks -
492 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400493 buf->f_bavail = buf->f_bfree;
494 buf->f_bsize = dentry->d_sb->s_blocksize;
495 buf->f_type = BTRFS_SUPER_MAGIC;
496 return 0;
497}
Chris Masonb5133862007-04-24 11:52:22 -0400498
Chris Mason2e635a22007-03-21 11:12:56 -0400499static struct file_system_type btrfs_fs_type = {
500 .owner = THIS_MODULE,
501 .name = "btrfs",
502 .get_sb = btrfs_get_sb,
Chris Masona061fc82008-05-07 11:43:44 -0400503 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -0400504 .fs_flags = FS_REQUIRES_DEV,
505};
Chris Masona9218f62008-03-24 15:02:04 -0400506
Chris Mason8a4b83c2008-03-24 15:02:07 -0400507static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
508 unsigned long arg)
509{
510 struct btrfs_ioctl_vol_args *vol;
511 struct btrfs_fs_devices *fs_devices;
Linda Knippersf819d832008-06-09 22:17:11 -0400512 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400513 int len;
514
515 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
516 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
517 ret = -EFAULT;
518 goto out;
519 }
520 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
521 switch (cmd) {
522 case BTRFS_IOC_SCAN_DEV:
523 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
524 &btrfs_fs_type, &fs_devices);
525 break;
526 }
527out:
528 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -0400529 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400530}
531
Yaned0dab62008-01-22 12:46:56 -0500532static void btrfs_write_super_lockfs(struct super_block *sb)
533{
534 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400535 mutex_lock(&root->fs_info->transaction_kthread_mutex);
536 mutex_lock(&root->fs_info->cleaner_mutex);
Yaned0dab62008-01-22 12:46:56 -0500537}
538
539static void btrfs_unlockfs(struct super_block *sb)
540{
541 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400542 mutex_unlock(&root->fs_info->cleaner_mutex);
543 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Yaned0dab62008-01-22 12:46:56 -0500544}
Chris Mason2e635a22007-03-21 11:12:56 -0400545
Chris Masone20d96d2007-03-22 12:13:20 -0400546static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400547 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400548 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -0400549 .write_super = btrfs_write_super,
550 .sync_fs = btrfs_sync_fs,
Chris Mason6885f302008-02-20 16:11:05 -0500551#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
552 .read_inode = btrfs_read_locked_inode,
553#else
554 .show_options = generic_show_options,
555#endif
Chris Mason4730a4b2007-03-26 12:00:39 -0400556 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400557 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400558 .alloc_inode = btrfs_alloc_inode,
559 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400560 .statfs = btrfs_statfs,
Yaned0dab62008-01-22 12:46:56 -0500561 .write_super_lockfs = btrfs_write_super_lockfs,
562 .unlockfs = btrfs_unlockfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400563};
Chris Masona9218f62008-03-24 15:02:04 -0400564
565static const struct file_operations btrfs_ctl_fops = {
566 .unlocked_ioctl = btrfs_control_ioctl,
567 .compat_ioctl = btrfs_control_ioctl,
568 .owner = THIS_MODULE,
569};
570
571static struct miscdevice btrfs_misc = {
572 .minor = MISC_DYNAMIC_MINOR,
573 .name = "btrfs-control",
574 .fops = &btrfs_ctl_fops
575};
576
577static int btrfs_interface_init(void)
578{
579 return misc_register(&btrfs_misc);
580}
581
582void btrfs_interface_exit(void)
583{
584 if (misc_deregister(&btrfs_misc) < 0)
585 printk("misc_deregister failed for control device");
586}
587
Chris Mason2e635a22007-03-21 11:12:56 -0400588static int __init init_btrfs_fs(void)
589{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400590 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400591
592 err = btrfs_init_sysfs();
593 if (err)
594 return err;
595
Chris Mason39279cc2007-06-12 06:35:45 -0400596 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400597 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -0400598 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -0500599
600 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500601 if (err)
602 goto free_cachep;
603
Chris Masond1310b22008-01-24 16:13:08 -0500604 err = extent_map_init();
605 if (err)
606 goto free_extent_io;
607
Chris Masona9218f62008-03-24 15:02:04 -0400608 err = btrfs_interface_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500609 if (err)
610 goto free_extent_map;
Chris Masona9218f62008-03-24 15:02:04 -0400611 err = register_filesystem(&btrfs_fs_type);
612 if (err)
613 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -0400614
615 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500616 return 0;
617
Chris Masona9218f62008-03-24 15:02:04 -0400618unregister_ioctl:
619 btrfs_interface_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500620free_extent_map:
621 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500622free_extent_io:
623 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500624free_cachep:
625 btrfs_destroy_cachep();
Chris Masona74a4b92008-06-25 16:01:31 -0400626free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500627 btrfs_exit_sysfs();
628 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400629}
630
631static void __exit exit_btrfs_fs(void)
632{
Chris Mason39279cc2007-06-12 06:35:45 -0400633 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400634 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500635 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -0400636 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400637 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400638 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -0400639 btrfs_cleanup_fs_uuids();
Chris Mason2e635a22007-03-21 11:12:56 -0400640}
641
642module_init(init_btrfs_fs)
643module_exit(exit_btrfs_fs)
644
645MODULE_LICENSE("GPL");