blob: 346932e546baca227bcf918e58de72e375db48a4 [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 Mason2e635a22007-03-21 11:12:56 -040048
Chris Mason5f39d392007-10-15 16:14:19 -040049#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040050
Chris Masone20d96d2007-03-22 12:13:20 -040051static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040052
53static void btrfs_put_super (struct super_block * sb)
54{
55 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040056 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040057 int ret;
58
59 ret = close_ctree(root);
60 if (ret) {
61 printk("close ctree returns %d\n", ret);
62 }
Josef Bacik58176a92007-08-29 15:47:34 -040063 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040064 sb->s_fs_info = NULL;
65}
Chris Mason2e635a22007-03-21 11:12:56 -040066
Chris Mason95e05282007-08-29 09:11:44 -040067enum {
Christoph Hellwig43e570b2008-06-10 10:40:46 -040068 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
Chris Masondfe25022008-05-13 13:46:40 -040069 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
70 Opt_ssd, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040071};
72
73static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -040074 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -040075 {Opt_subvol, "subvol=%s"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -040076 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050077 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050078 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050079 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050080 {Opt_max_extent, "max_extent=%s"},
Chris Mason6f568d32008-01-29 16:03:38 -050081 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050082 {Opt_alloc_start, "alloc_start=%s"},
Chris Masone18e4802008-01-18 10:54:22 -050083 {Opt_ssd, "ssd"},
Chris Mason95e05282007-08-29 09:11:44 -040084 {Opt_err, NULL}
85};
86
Chris Masonedbd8d42007-12-21 16:27:24 -050087u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050088{
Chris Masonedbd8d42007-12-21 16:27:24 -050089 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050090 int mult = 1;
91 char *end;
92 char last;
93
94 res = simple_strtoul(str, &end, 10);
95
96 last = end[0];
97 if (isalpha(last)) {
98 last = tolower(last);
99 switch (last) {
100 case 'g':
101 mult *= 1024;
102 case 'm':
103 mult *= 1024;
104 case 'k':
105 mult *= 1024;
106 }
107 res = res * mult;
108 }
109 return res;
110}
111
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400112/*
113 * Regular mount options parser. Everything that is needed only when
114 * reading in a new superblock is parsed here.
115 */
116int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400117{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400118 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400119 substring_t args[MAX_OPT_ARGS];
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400120 char *p, *num;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500121
Chris Mason95e05282007-08-29 09:11:44 -0400122 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400123 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400124
Chris Masonbe20aa92007-12-17 20:14:01 -0500125 /*
126 * strsep changes the string, duplicate it because parse_options
127 * gets called twice
128 */
129 options = kstrdup(options, GFP_NOFS);
130 if (!options)
131 return -ENOMEM;
132
Chris Masonbe20aa92007-12-17 20:14:01 -0500133
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400134 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400135 int token;
136 if (!*p)
137 continue;
138
139 token = match_token(p, tokens, args);
140 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400141 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400142 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
143 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400144 break;
Chris Mason95e05282007-08-29 09:11:44 -0400145 case Opt_subvol:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400146 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400147 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400148 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400149 * and can be happily ignored here.
150 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500151 break;
152 case Opt_nodatasum:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400153 printk(KERN_INFO "btrfs: setting nodatacsum\n");
154 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500155 break;
156 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400157 printk(KERN_INFO "btrfs: setting nodatacow\n");
158 btrfs_set_opt(info->mount_opt, NODATACOW);
159 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400160 break;
Chris Masone18e4802008-01-18 10:54:22 -0500161 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400162 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
163 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500164 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500165 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400166 printk(KERN_INFO "btrfs: turning off barriers\n");
167 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500168 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500169 case Opt_max_extent:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400170 num = match_strdup(&args[0]);
171 if (num) {
172 info->max_extent = btrfs_parse_size(num);
173 kfree(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500174
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400175 info->max_extent = max_t(u64,
176 info->max_extent, root->sectorsize);
177 printk(KERN_INFO "btrfs: max_extent at %llu\n",
178 info->max_extent);
Chris Masonc59f8952007-12-17 20:14:04 -0500179 }
180 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500181 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400182 num = match_strdup(&args[0]);
183 if (num) {
184 info->max_inline = btrfs_parse_size(num);
185 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500186
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400187 info->max_inline = max_t(u64,
188 info->max_inline, root->sectorsize);
189 printk(KERN_INFO "btrfs: max_inline at %llu\n",
190 info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500191 }
192 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500193 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400194 num = match_strdup(&args[0]);
195 if (num) {
196 info->alloc_start = btrfs_parse_size(num);
197 kfree(num);
198 printk(KERN_INFO
199 "btrfs: allocations start at %llu\n",
200 info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500201 }
202 break;
Chris Mason95e05282007-08-29 09:11:44 -0400203 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 break;
Chris Mason95e05282007-08-29 09:11:44 -0400205 }
206 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500207 kfree(options);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400208 return 0;
209}
210
211/*
212 * Parse mount options that are required early in the mount process.
213 *
214 * All other options will be parsed on much later in the mount process and
215 * only when we need to allocate a new super block.
216 */
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400217static int btrfs_parse_early_options(const char *options, int flags,
218 void *holder, char **subvol_name,
219 struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400220{
221 substring_t args[MAX_OPT_ARGS];
222 char *opts, *p;
223 int error = 0;
224
225 if (!options)
226 goto out;
227
228 /*
229 * strsep changes the string, duplicate it because parse_options
230 * gets called twice
231 */
232 opts = kstrdup(options, GFP_KERNEL);
233 if (!opts)
234 return -ENOMEM;
235
236 while ((p = strsep(&opts, ",")) != NULL) {
237 int token;
238 if (!*p)
239 continue;
240
241 token = match_token(p, tokens, args);
242 switch (token) {
243 case Opt_subvol:
244 *subvol_name = match_strdup(&args[0]);
245 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400246 case Opt_device:
247 error = btrfs_scan_one_device(match_strdup(&args[0]),
248 flags, holder, fs_devices);
249 if (error)
250 goto out_free_opts;
251 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400252 default:
253 break;
254 }
255 }
256
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400257 out_free_opts:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400258 kfree(opts);
259 out:
260 /*
261 * If no subvolume name is specified we use the default one. Allocate
262 * a copy of the string "default" here so that code later in the
263 * mount path doesn't care if it's the default volume or another one.
264 */
265 if (!*subvol_name) {
266 *subvol_name = kstrdup("default", GFP_KERNEL);
267 if (!*subvol_name)
268 return -ENOMEM;
269 }
270 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400271}
272
Chris Mason8a4b83c2008-03-24 15:02:07 -0400273static int btrfs_fill_super(struct super_block * sb,
274 struct btrfs_fs_devices *fs_devices,
275 void * data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400276{
277 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400278 struct dentry * root_dentry;
279 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400280 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400281 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400282 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400283
284 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400285 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400286 sb->s_op = &btrfs_super_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500287 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400288 sb->s_time_gran = 1;
Chris Masone20d96d2007-03-22 12:13:20 -0400289
Chris Masondfe25022008-05-13 13:46:40 -0400290 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400291
Yane58ca022008-04-01 11:21:34 -0400292 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400293 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400294 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400295 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400296 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400297 disk_super = &tree_root->fs_info->super_copy;
Chris Masonc5739bb2007-04-10 09:27:04 -0400298 inode = btrfs_iget_locked(sb, btrfs_super_root_dir(disk_super),
299 tree_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400300 bi = BTRFS_I(inode);
301 bi->location.objectid = inode->i_ino;
302 bi->location.offset = 0;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400303 bi->root = tree_root;
Chris Masonb888db22007-08-27 16:49:44 -0400304
Chris Masond6e4a422007-04-06 15:37:36 -0400305 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
306
Chris Mason39279cc2007-06-12 06:35:45 -0400307 if (!inode) {
308 err = -ENOMEM;
309 goto fail_close;
310 }
Chris Masone20d96d2007-03-22 12:13:20 -0400311 if (inode->i_state & I_NEW) {
312 btrfs_read_locked_inode(inode);
313 unlock_new_inode(inode);
314 }
Chris Mason2e635a22007-03-21 11:12:56 -0400315
Chris Masone20d96d2007-03-22 12:13:20 -0400316 root_dentry = d_alloc_root(inode);
317 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400318 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400319 err = -ENOMEM;
320 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400321 }
Josef Bacik58176a92007-08-29 15:47:34 -0400322
323 /* this does the super kobj at the same time */
324 err = btrfs_sysfs_add_super(tree_root->fs_info);
325 if (err)
326 goto fail_close;
327
Chris Masone20d96d2007-03-22 12:13:20 -0400328 sb->s_root = root_dentry;
Chris Mason08607c12007-06-08 15:33:54 -0400329 btrfs_transaction_queue_work(tree_root, HZ * 30);
Chris Mason6885f302008-02-20 16:11:05 -0500330
331#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
332 save_mount_options(sb, data);
333#endif
334
Chris Mason2e635a22007-03-21 11:12:56 -0400335 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400336
Chris Mason39279cc2007-06-12 06:35:45 -0400337fail_close:
338 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400339 return err;
340}
341
Sage Weil6bf13c02008-06-10 10:07:39 -0400342int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400343{
344 struct btrfs_trans_handle *trans;
345 struct btrfs_root *root;
346 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400347 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400348
Chris Masond5719762007-03-23 10:01:08 -0400349 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400350 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400351 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400352 return 0;
353 }
Chris Masone9d0b132007-08-10 14:06:19 -0400354 btrfs_clean_old_snapshots(root);
Chris Masond561c022007-03-23 19:47:49 -0400355 mutex_lock(&root->fs_info->fs_mutex);
Chris Masone9d0b132007-08-10 14:06:19 -0400356 btrfs_defrag_dirty_roots(root->fs_info);
Chris Masond5719762007-03-23 10:01:08 -0400357 trans = btrfs_start_transaction(root, 1);
358 ret = btrfs_commit_transaction(trans, root);
359 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400360 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason54aa1f42007-06-22 14:16:25 -0400361 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400362}
363
Chris Masond561c022007-03-23 19:47:49 -0400364static void btrfs_write_super(struct super_block *sb)
365{
Chris Mason08607c12007-06-08 15:33:54 -0400366 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400367}
368
Chris Masona061fc82008-05-07 11:43:44 -0400369static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400370{
Chris Masona061fc82008-05-07 11:43:44 -0400371 struct btrfs_fs_devices *test_fs_devices = data;
372 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400373
Chris Masona061fc82008-05-07 11:43:44 -0400374 return root->fs_info->fs_devices == test_fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400375}
376
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400377/*
378 * Find a superblock for the given device / mount point.
379 *
380 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
381 * for multiple device setup. Make sure to keep it in sync.
382 */
383static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
384 const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400385{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400386 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400387 struct block_device *bdev = NULL;
388 struct super_block *s;
389 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400390 struct btrfs_fs_devices *fs_devices = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400391 int error = 0;
392
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400393 error = btrfs_parse_early_options(data, flags, fs_type,
394 &subvol_name, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400395 if (error)
396 goto error;
397
Chris Mason8a4b83c2008-03-24 15:02:07 -0400398 error = btrfs_scan_one_device(dev_name, flags, fs_type, &fs_devices);
399 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400400 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400401
Chris Mason8a4b83c2008-03-24 15:02:07 -0400402 error = btrfs_open_devices(fs_devices, flags, fs_type);
403 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400404 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400405
Chris Masondfe25022008-05-13 13:46:40 -0400406 bdev = fs_devices->latest_bdev;
Chris Masona061fc82008-05-07 11:43:44 -0400407 btrfs_lock_volumes();
408 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
409 btrfs_unlock_volumes();
Yan4b82d6e2007-08-29 09:11:44 -0400410 if (IS_ERR(s))
411 goto error_s;
412
413 if (s->s_root) {
414 if ((flags ^ s->s_flags) & MS_RDONLY) {
415 up_write(&s->s_umount);
416 deactivate_super(s);
417 error = -EBUSY;
418 goto error_bdev;
419 }
420
Yan4b82d6e2007-08-29 09:11:44 -0400421 } else {
422 char b[BDEVNAME_SIZE];
423
424 s->s_flags = flags;
425 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400426 error = btrfs_fill_super(s, fs_devices, data,
427 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400428 if (error) {
429 up_write(&s->s_umount);
430 deactivate_super(s);
431 goto error;
432 }
433
Chris Mason788f20e2008-04-28 15:29:42 -0400434 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400435 s->s_flags |= MS_ACTIVE;
436 }
437
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400438 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
439 if (IS_ERR(root)) {
440 up_write(&s->s_umount);
441 deactivate_super(s);
442 error = PTR_ERR(root);
443 goto error;
444 }
445 if (!root->d_inode) {
446 dput(root);
447 up_write(&s->s_umount);
448 deactivate_super(s);
449 error = -ENXIO;
450 goto error;
Yan4b82d6e2007-08-29 09:11:44 -0400451 }
452
453 mnt->mnt_sb = s;
454 mnt->mnt_root = root;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400455
456 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400457 return 0;
458
459error_s:
460 error = PTR_ERR(s);
461error_bdev:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400462 btrfs_close_devices(fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400463error_free_subvol_name:
464 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400465error:
466 return error;
467}
Chris Mason2e635a22007-03-21 11:12:56 -0400468
Chris Mason8fd17792007-04-19 21:01:03 -0400469static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
470{
471 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400472 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400473 int bits = dentry->d_sb->s_blocksize_bits;
Chris Mason8fd17792007-04-19 21:01:03 -0400474
475 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400476 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
477 buf->f_bfree = buf->f_blocks -
478 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400479 buf->f_bavail = buf->f_bfree;
480 buf->f_bsize = dentry->d_sb->s_blocksize;
481 buf->f_type = BTRFS_SUPER_MAGIC;
482 return 0;
483}
Chris Masonb5133862007-04-24 11:52:22 -0400484
Chris Mason2e635a22007-03-21 11:12:56 -0400485static struct file_system_type btrfs_fs_type = {
486 .owner = THIS_MODULE,
487 .name = "btrfs",
488 .get_sb = btrfs_get_sb,
Chris Masona061fc82008-05-07 11:43:44 -0400489 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -0400490 .fs_flags = FS_REQUIRES_DEV,
491};
Chris Masona9218f62008-03-24 15:02:04 -0400492
Chris Mason8a4b83c2008-03-24 15:02:07 -0400493static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
494 unsigned long arg)
495{
496 struct btrfs_ioctl_vol_args *vol;
497 struct btrfs_fs_devices *fs_devices;
Linda Knippersf819d832008-06-09 22:17:11 -0400498 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400499 int len;
500
501 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
502 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
503 ret = -EFAULT;
504 goto out;
505 }
506 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
507 switch (cmd) {
508 case BTRFS_IOC_SCAN_DEV:
509 ret = btrfs_scan_one_device(vol->name, MS_RDONLY,
510 &btrfs_fs_type, &fs_devices);
511 break;
512 }
513out:
514 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -0400515 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400516}
517
Yaned0dab62008-01-22 12:46:56 -0500518static void btrfs_write_super_lockfs(struct super_block *sb)
519{
520 struct btrfs_root *root = btrfs_sb(sb);
521 btrfs_transaction_flush_work(root);
522}
523
524static void btrfs_unlockfs(struct super_block *sb)
525{
526 struct btrfs_root *root = btrfs_sb(sb);
527 btrfs_transaction_queue_work(root, HZ * 30);
528}
Chris Mason2e635a22007-03-21 11:12:56 -0400529
Chris Masone20d96d2007-03-22 12:13:20 -0400530static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400531 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400532 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -0400533 .write_super = btrfs_write_super,
534 .sync_fs = btrfs_sync_fs,
Chris Mason6885f302008-02-20 16:11:05 -0500535#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25)
536 .read_inode = btrfs_read_locked_inode,
537#else
538 .show_options = generic_show_options,
539#endif
Chris Mason4730a4b2007-03-26 12:00:39 -0400540 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400541 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400542 .alloc_inode = btrfs_alloc_inode,
543 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400544 .statfs = btrfs_statfs,
Yaned0dab62008-01-22 12:46:56 -0500545 .write_super_lockfs = btrfs_write_super_lockfs,
546 .unlockfs = btrfs_unlockfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400547};
Chris Masona9218f62008-03-24 15:02:04 -0400548
549static const struct file_operations btrfs_ctl_fops = {
550 .unlocked_ioctl = btrfs_control_ioctl,
551 .compat_ioctl = btrfs_control_ioctl,
552 .owner = THIS_MODULE,
553};
554
555static struct miscdevice btrfs_misc = {
556 .minor = MISC_DYNAMIC_MINOR,
557 .name = "btrfs-control",
558 .fops = &btrfs_ctl_fops
559};
560
561static int btrfs_interface_init(void)
562{
563 return misc_register(&btrfs_misc);
564}
565
566void btrfs_interface_exit(void)
567{
568 if (misc_deregister(&btrfs_misc) < 0)
569 printk("misc_deregister failed for control device");
570}
571
Chris Mason2e635a22007-03-21 11:12:56 -0400572static int __init init_btrfs_fs(void)
573{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400574 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400575
576 err = btrfs_init_sysfs();
577 if (err)
578 return err;
579
Chris Mason08607c12007-06-08 15:33:54 -0400580 btrfs_init_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400581 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400582 if (err)
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500583 goto free_transaction_sys;
Chris Masond1310b22008-01-24 16:13:08 -0500584
585 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500586 if (err)
587 goto free_cachep;
588
Chris Masond1310b22008-01-24 16:13:08 -0500589 err = extent_map_init();
590 if (err)
591 goto free_extent_io;
592
Chris Masona9218f62008-03-24 15:02:04 -0400593 err = btrfs_interface_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500594 if (err)
595 goto free_extent_map;
Chris Masona9218f62008-03-24 15:02:04 -0400596 err = register_filesystem(&btrfs_fs_type);
597 if (err)
598 goto unregister_ioctl;
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500599 return 0;
600
Chris Masona9218f62008-03-24 15:02:04 -0400601unregister_ioctl:
602 btrfs_interface_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500603free_extent_map:
604 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500605free_extent_io:
606 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500607free_cachep:
608 btrfs_destroy_cachep();
609free_transaction_sys:
610 btrfs_exit_transaction_sys();
611 btrfs_exit_sysfs();
612 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400613}
614
615static void __exit exit_btrfs_fs(void)
616{
Chris Mason08607c12007-06-08 15:33:54 -0400617 btrfs_exit_transaction_sys();
Chris Mason39279cc2007-06-12 06:35:45 -0400618 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400619 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500620 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -0400621 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400622 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400623 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -0400624 btrfs_cleanup_fs_uuids();
Chris Mason2e635a22007-03-21 11:12:56 -0400625}
626
627module_init(init_btrfs_fs)
628module_exit(exit_btrfs_fs)
629
630MODULE_LICENSE("GPL");