blob: 09908f25fca9c759407377f51206a5cbe15b6a78 [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 Mason4b4e25f2008-11-20 10:22:27 -050040#include <linux/version.h>
41#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 Mason5f39d392007-10-15 16:14:19 -040054#define BTRFS_SUPER_MAGIC 0x9123683E
Chris Masone20d96d2007-03-22 12:13:20 -040055
Chris Masone20d96d2007-03-22 12:13:20 -040056static struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040057
58static void btrfs_put_super (struct super_block * sb)
59{
60 struct btrfs_root *root = btrfs_sb(sb);
Josef Bacik58176a92007-08-29 15:47:34 -040061 struct btrfs_fs_info *fs = root->fs_info;
Chris Masone20d96d2007-03-22 12:13:20 -040062 int ret;
63
64 ret = close_ctree(root);
65 if (ret) {
66 printk("close ctree returns %d\n", ret);
67 }
Josef Bacik58176a92007-08-29 15:47:34 -040068 btrfs_sysfs_del_super(fs);
Chris Masone20d96d2007-03-22 12:13:20 -040069 sb->s_fs_info = NULL;
70}
Chris Mason2e635a22007-03-21 11:12:56 -040071
Chris Mason95e05282007-08-29 09:11:44 -040072enum {
Christoph Hellwig43e570b2008-06-10 10:40:46 -040073 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
Chris Masondfe25022008-05-13 13:46:40 -040074 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
Chris Masonc8b97812008-10-29 14:49:59 -040075 Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040076};
77
78static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -040079 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -040080 {Opt_subvol, "subvol=%s"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -040081 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050082 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050083 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050084 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050085 {Opt_max_extent, "max_extent=%s"},
Chris Mason6f568d32008-01-29 16:03:38 -050086 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050087 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -040088 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -040089 {Opt_compress, "compress"},
Chris Masone18e4802008-01-18 10:54:22 -050090 {Opt_ssd, "ssd"},
Josef Bacik33268ea2008-07-24 12:16:36 -040091 {Opt_noacl, "noacl"},
92 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -040093};
94
Chris Masonedbd8d42007-12-21 16:27:24 -050095u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -050096{
Chris Masonedbd8d42007-12-21 16:27:24 -050097 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -050098 int mult = 1;
99 char *end;
100 char last;
101
102 res = simple_strtoul(str, &end, 10);
103
104 last = end[0];
105 if (isalpha(last)) {
106 last = tolower(last);
107 switch (last) {
108 case 'g':
109 mult *= 1024;
110 case 'm':
111 mult *= 1024;
112 case 'k':
113 mult *= 1024;
114 }
115 res = res * mult;
116 }
117 return res;
118}
119
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400120/*
121 * Regular mount options parser. Everything that is needed only when
122 * reading in a new superblock is parsed here.
123 */
124int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400125{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400126 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400127 substring_t args[MAX_OPT_ARGS];
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400128 char *p, *num;
Chris Mason4543df72008-06-11 21:47:56 -0400129 int intarg;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500130
Chris Mason95e05282007-08-29 09:11:44 -0400131 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400132 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400133
Chris Masonbe20aa92007-12-17 20:14:01 -0500134 /*
135 * strsep changes the string, duplicate it because parse_options
136 * gets called twice
137 */
138 options = kstrdup(options, GFP_NOFS);
139 if (!options)
140 return -ENOMEM;
141
Chris Masonbe20aa92007-12-17 20:14:01 -0500142
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400143 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400144 int token;
145 if (!*p)
146 continue;
147
148 token = match_token(p, tokens, args);
149 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400150 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400151 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
152 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400153 break;
Chris Mason95e05282007-08-29 09:11:44 -0400154 case Opt_subvol:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400155 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400156 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400157 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400158 * and can be happily ignored here.
159 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500160 break;
161 case Opt_nodatasum:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400162 printk(KERN_INFO "btrfs: setting nodatacsum\n");
163 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500164 break;
165 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400166 printk(KERN_INFO "btrfs: setting nodatacow\n");
167 btrfs_set_opt(info->mount_opt, NODATACOW);
168 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400169 break;
Chris Masonc8b97812008-10-29 14:49:59 -0400170 case Opt_compress:
171 printk(KERN_INFO "btrfs: use compression\n");
172 btrfs_set_opt(info->mount_opt, COMPRESS);
173 break;
Chris Masone18e4802008-01-18 10:54:22 -0500174 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400175 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
176 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500177 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500178 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400179 printk(KERN_INFO "btrfs: turning off barriers\n");
180 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500181 break;
Chris Mason4543df72008-06-11 21:47:56 -0400182 case Opt_thread_pool:
183 intarg = 0;
184 match_int(&args[0], &intarg);
185 if (intarg) {
186 info->thread_pool_size = intarg;
187 printk(KERN_INFO "btrfs: thread pool %d\n",
188 info->thread_pool_size);
189 }
190 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500191 case Opt_max_extent:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400192 num = match_strdup(&args[0]);
193 if (num) {
194 info->max_extent = btrfs_parse_size(num);
195 kfree(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500196
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400197 info->max_extent = max_t(u64,
198 info->max_extent, root->sectorsize);
199 printk(KERN_INFO "btrfs: max_extent at %llu\n",
200 info->max_extent);
Chris Masonc59f8952007-12-17 20:14:04 -0500201 }
202 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500203 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400204 num = match_strdup(&args[0]);
205 if (num) {
206 info->max_inline = btrfs_parse_size(num);
207 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500208
Chris Mason15ada042008-06-11 16:51:38 -0400209 if (info->max_inline) {
210 info->max_inline = max_t(u64,
211 info->max_inline,
212 root->sectorsize);
213 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400214 printk(KERN_INFO "btrfs: max_inline at %llu\n",
215 info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500216 }
217 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500218 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400219 num = match_strdup(&args[0]);
220 if (num) {
221 info->alloc_start = btrfs_parse_size(num);
222 kfree(num);
223 printk(KERN_INFO
224 "btrfs: allocations start at %llu\n",
225 info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500226 }
227 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400228 case Opt_noacl:
229 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
230 break;
Chris Mason95e05282007-08-29 09:11:44 -0400231 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500232 break;
Chris Mason95e05282007-08-29 09:11:44 -0400233 }
234 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500235 kfree(options);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400236 return 0;
237}
238
239/*
240 * Parse mount options that are required early in the mount process.
241 *
242 * All other options will be parsed on much later in the mount process and
243 * only when we need to allocate a new super block.
244 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500245static int btrfs_parse_early_options(const char *options, fmode_t flags,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400246 void *holder, char **subvol_name,
247 struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400248{
249 substring_t args[MAX_OPT_ARGS];
250 char *opts, *p;
251 int error = 0;
252
253 if (!options)
254 goto out;
255
256 /*
257 * strsep changes the string, duplicate it because parse_options
258 * gets called twice
259 */
260 opts = kstrdup(options, GFP_KERNEL);
261 if (!opts)
262 return -ENOMEM;
263
264 while ((p = strsep(&opts, ",")) != NULL) {
265 int token;
266 if (!*p)
267 continue;
268
269 token = match_token(p, tokens, args);
270 switch (token) {
271 case Opt_subvol:
272 *subvol_name = match_strdup(&args[0]);
273 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400274 case Opt_device:
275 error = btrfs_scan_one_device(match_strdup(&args[0]),
276 flags, holder, fs_devices);
277 if (error)
278 goto out_free_opts;
279 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400280 default:
281 break;
282 }
283 }
284
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400285 out_free_opts:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400286 kfree(opts);
287 out:
288 /*
289 * If no subvolume name is specified we use the default one. Allocate
Chris Mason3de45862008-11-17 21:02:50 -0500290 * a copy of the string "." here so that code later in the
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400291 * mount path doesn't care if it's the default volume or another one.
292 */
293 if (!*subvol_name) {
Chris Mason3de45862008-11-17 21:02:50 -0500294 *subvol_name = kstrdup(".", GFP_KERNEL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400295 if (!*subvol_name)
296 return -ENOMEM;
297 }
298 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400299}
300
Chris Mason8a4b83c2008-03-24 15:02:07 -0400301static int btrfs_fill_super(struct super_block * sb,
302 struct btrfs_fs_devices *fs_devices,
303 void * data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400304{
305 struct inode * inode;
Chris Masone20d96d2007-03-22 12:13:20 -0400306 struct dentry * root_dentry;
307 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400308 struct btrfs_root *tree_root;
Chris Masond6e4a422007-04-06 15:37:36 -0400309 struct btrfs_inode *bi;
Chris Mason39279cc2007-06-12 06:35:45 -0400310 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400311
312 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400313 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400314 sb->s_op = &btrfs_super_ops;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530315 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500316 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400317 sb->s_time_gran = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -0400318 sb->s_flags |= MS_POSIXACL;
Chris Masone20d96d2007-03-22 12:13:20 -0400319
Chris Masondfe25022008-05-13 13:46:40 -0400320 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400321
Yane58ca022008-04-01 11:21:34 -0400322 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400323 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400324 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400325 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400326 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400327 disk_super = &tree_root->fs_info->super_copy;
Chris Mason3de45862008-11-17 21:02:50 -0500328 inode = btrfs_iget_locked(sb, BTRFS_FIRST_FREE_OBJECTID,
329 tree_root->fs_info->fs_root);
Chris Masond6e4a422007-04-06 15:37:36 -0400330 bi = BTRFS_I(inode);
331 bi->location.objectid = inode->i_ino;
332 bi->location.offset = 0;
Chris Mason3de45862008-11-17 21:02:50 -0500333 bi->root = tree_root->fs_info->fs_root;
Chris Masonb888db22007-08-27 16:49:44 -0400334
Chris Masond6e4a422007-04-06 15:37:36 -0400335 btrfs_set_key_type(&bi->location, BTRFS_INODE_ITEM_KEY);
336
Chris Mason39279cc2007-06-12 06:35:45 -0400337 if (!inode) {
338 err = -ENOMEM;
339 goto fail_close;
340 }
Chris Masone20d96d2007-03-22 12:13:20 -0400341 if (inode->i_state & I_NEW) {
342 btrfs_read_locked_inode(inode);
343 unlock_new_inode(inode);
344 }
Chris Mason2e635a22007-03-21 11:12:56 -0400345
Chris Masone20d96d2007-03-22 12:13:20 -0400346 root_dentry = d_alloc_root(inode);
347 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400348 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400349 err = -ENOMEM;
350 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400351 }
Josef Bacik58176a92007-08-29 15:47:34 -0400352
353 /* this does the super kobj at the same time */
354 err = btrfs_sysfs_add_super(tree_root->fs_info);
355 if (err)
356 goto fail_close;
357
Chris Masone20d96d2007-03-22 12:13:20 -0400358 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500359
Chris Mason6885f302008-02-20 16:11:05 -0500360 save_mount_options(sb, data);
Chris Mason2e635a22007-03-21 11:12:56 -0400361 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400362
Chris Mason39279cc2007-06-12 06:35:45 -0400363fail_close:
364 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400365 return err;
366}
367
Sage Weil6bf13c02008-06-10 10:07:39 -0400368int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400369{
370 struct btrfs_trans_handle *trans;
371 struct btrfs_root *root;
372 int ret;
Chris Masond98237b2007-03-28 13:57:48 -0400373 root = btrfs_sb(sb);
Chris Masondf2ce342007-03-23 11:00:45 -0400374
Yan Zhengc146afa2008-11-12 14:34:12 -0500375 if (sb->s_flags & MS_RDONLY)
376 return 0;
377
Chris Masond5719762007-03-23 10:01:08 -0400378 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400379 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400380 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400381 return 0;
382 }
Chris Mason771ed682008-11-06 22:02:51 -0500383
384 btrfs_start_delalloc_inodes(root);
385 btrfs_wait_ordered_extents(root, 0);
386
Chris Masone9d0b132007-08-10 14:06:19 -0400387 btrfs_clean_old_snapshots(root);
Chris Masond5719762007-03-23 10:01:08 -0400388 trans = btrfs_start_transaction(root, 1);
389 ret = btrfs_commit_transaction(trans, root);
390 sb->s_dirt = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400391 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400392}
393
Chris Masond561c022007-03-23 19:47:49 -0400394static void btrfs_write_super(struct super_block *sb)
395{
Chris Mason08607c12007-06-08 15:33:54 -0400396 sb->s_dirt = 0;
Chris Masond561c022007-03-23 19:47:49 -0400397}
398
Chris Masona061fc82008-05-07 11:43:44 -0400399static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400400{
Chris Masona061fc82008-05-07 11:43:44 -0400401 struct btrfs_fs_devices *test_fs_devices = data;
402 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400403
Chris Masona061fc82008-05-07 11:43:44 -0400404 return root->fs_info->fs_devices == test_fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400405}
406
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400407/*
408 * Find a superblock for the given device / mount point.
409 *
410 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
411 * for multiple device setup. Make sure to keep it in sync.
412 */
413static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
414 const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400415{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400416 char *subvol_name = NULL;
Yan4b82d6e2007-08-29 09:11:44 -0400417 struct block_device *bdev = NULL;
418 struct super_block *s;
419 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400420 struct btrfs_fs_devices *fs_devices = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500421 fmode_t mode = FMODE_READ;
Yan4b82d6e2007-08-29 09:11:44 -0400422 int error = 0;
423
Christoph Hellwig97288f22008-12-02 06:36:09 -0500424 if (!(flags & MS_RDONLY))
425 mode |= FMODE_WRITE;
426
427 error = btrfs_parse_early_options(data, mode, fs_type,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400428 &subvol_name, &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400429 if (error)
430 goto error;
431
Christoph Hellwig97288f22008-12-02 06:36:09 -0500432 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400433 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400434 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400435
Christoph Hellwig97288f22008-12-02 06:36:09 -0500436 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400437 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400438 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400439
Yan Zheng2b820322008-11-17 21:11:30 -0500440 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
441 error = -EACCES;
442 goto error_close_devices;
443 }
444
Chris Masondfe25022008-05-13 13:46:40 -0400445 bdev = fs_devices->latest_bdev;
Chris Masona061fc82008-05-07 11:43:44 -0400446 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400447 if (IS_ERR(s))
448 goto error_s;
449
450 if (s->s_root) {
451 if ((flags ^ s->s_flags) & MS_RDONLY) {
452 up_write(&s->s_umount);
453 deactivate_super(s);
454 error = -EBUSY;
Yan Zhengc146afa2008-11-12 14:34:12 -0500455 goto error_close_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400456 }
457
Yan Zheng2b820322008-11-17 21:11:30 -0500458 btrfs_close_devices(fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400459 } else {
460 char b[BDEVNAME_SIZE];
461
462 s->s_flags = flags;
463 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400464 error = btrfs_fill_super(s, fs_devices, data,
465 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400466 if (error) {
467 up_write(&s->s_umount);
468 deactivate_super(s);
469 goto error;
470 }
471
Chris Mason788f20e2008-04-28 15:29:42 -0400472 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400473 s->s_flags |= MS_ACTIVE;
474 }
475
David Woodhouse76fcef12008-08-19 16:49:35 +0100476 if (!strcmp(subvol_name, "."))
477 root = dget(s->s_root);
478 else {
479 mutex_lock(&s->s_root->d_inode->i_mutex);
480 root = lookup_one_len(subvol_name, s->s_root, strlen(subvol_name));
481 mutex_unlock(&s->s_root->d_inode->i_mutex);
482 if (IS_ERR(root)) {
483 up_write(&s->s_umount);
484 deactivate_super(s);
485 error = PTR_ERR(root);
486 goto error;
487 }
488 if (!root->d_inode) {
489 dput(root);
490 up_write(&s->s_umount);
491 deactivate_super(s);
492 error = -ENXIO;
493 goto error;
494 }
Yan4b82d6e2007-08-29 09:11:44 -0400495 }
496
497 mnt->mnt_sb = s;
498 mnt->mnt_root = root;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400499
500 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400501 return 0;
502
503error_s:
504 error = PTR_ERR(s);
Yan Zhengc146afa2008-11-12 14:34:12 -0500505error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400506 btrfs_close_devices(fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400507error_free_subvol_name:
508 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400509error:
510 return error;
511}
Chris Mason2e635a22007-03-21 11:12:56 -0400512
Yan Zhengc146afa2008-11-12 14:34:12 -0500513static int btrfs_remount(struct super_block *sb, int *flags, char *data)
514{
515 struct btrfs_root *root = btrfs_sb(sb);
516 int ret;
517
518 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
519 return 0;
520
521 if (*flags & MS_RDONLY) {
522 sb->s_flags |= MS_RDONLY;
523
524 ret = btrfs_commit_super(root);
525 WARN_ON(ret);
526 } else {
Yan Zheng2b820322008-11-17 21:11:30 -0500527 if (root->fs_info->fs_devices->rw_devices == 0)
528 return -EACCES;
529
Yan Zhengc146afa2008-11-12 14:34:12 -0500530 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
531 return -EINVAL;
532
533 ret = btrfs_cleanup_reloc_trees(root);
534 WARN_ON(ret);
535
536 ret = btrfs_cleanup_fs_roots(root->fs_info);
537 WARN_ON(ret);
538
539 sb->s_flags &= ~MS_RDONLY;
540 }
541
542 return 0;
543}
544
Chris Mason8fd17792007-04-19 21:01:03 -0400545static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
546{
547 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400548 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400549 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +0100550 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Chris Mason8fd17792007-04-19 21:01:03 -0400551
552 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400553 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
554 buf->f_bfree = buf->f_blocks -
555 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400556 buf->f_bavail = buf->f_bfree;
557 buf->f_bsize = dentry->d_sb->s_blocksize;
558 buf->f_type = BTRFS_SUPER_MAGIC;
David Woodhouse9d036322008-08-18 12:01:52 +0100559 /* We treat it as constant endianness (it doesn't matter _which_)
560 because we want the fsid to come out the same whether mounted
561 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;
Linda Knippersf819d832008-06-09 22:17:11 -0400587 int ret = 0;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400588 int len;
589
590 vol = kmalloc(sizeof(*vol), GFP_KERNEL);
591 if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) {
592 ret = -EFAULT;
593 goto out;
594 }
595 len = strnlen(vol->name, BTRFS_PATH_NAME_MAX);
596 switch (cmd) {
597 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -0500598 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400599 &btrfs_fs_type, &fs_devices);
600 break;
601 }
602out:
603 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -0400604 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400605}
606
Yaned0dab62008-01-22 12:46:56 -0500607static void btrfs_write_super_lockfs(struct super_block *sb)
608{
609 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400610 mutex_lock(&root->fs_info->transaction_kthread_mutex);
611 mutex_lock(&root->fs_info->cleaner_mutex);
Yaned0dab62008-01-22 12:46:56 -0500612}
613
614static void btrfs_unlockfs(struct super_block *sb)
615{
616 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400617 mutex_unlock(&root->fs_info->cleaner_mutex);
618 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Yaned0dab62008-01-22 12:46:56 -0500619}
Chris Mason2e635a22007-03-21 11:12:56 -0400620
Chris Masone20d96d2007-03-22 12:13:20 -0400621static struct super_operations btrfs_super_ops = {
Chris Mason134e9732007-03-25 13:44:56 -0400622 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400623 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -0400624 .write_super = btrfs_write_super,
625 .sync_fs = btrfs_sync_fs,
Chris Mason6885f302008-02-20 16:11:05 -0500626 .show_options = generic_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -0400627 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400628 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400629 .alloc_inode = btrfs_alloc_inode,
630 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400631 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -0500632 .remount_fs = btrfs_remount,
Yaned0dab62008-01-22 12:46:56 -0500633 .write_super_lockfs = btrfs_write_super_lockfs,
634 .unlockfs = btrfs_unlockfs,
Chris Masone20d96d2007-03-22 12:13:20 -0400635};
Chris Masona9218f62008-03-24 15:02:04 -0400636
637static const struct file_operations btrfs_ctl_fops = {
638 .unlocked_ioctl = btrfs_control_ioctl,
639 .compat_ioctl = btrfs_control_ioctl,
640 .owner = THIS_MODULE,
641};
642
643static struct miscdevice btrfs_misc = {
644 .minor = MISC_DYNAMIC_MINOR,
645 .name = "btrfs-control",
646 .fops = &btrfs_ctl_fops
647};
648
649static int btrfs_interface_init(void)
650{
651 return misc_register(&btrfs_misc);
652}
653
Christoph Hellwigb2950862008-12-02 09:54:17 -0500654static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -0400655{
656 if (misc_deregister(&btrfs_misc) < 0)
657 printk("misc_deregister failed for control device");
658}
659
Chris Mason2e635a22007-03-21 11:12:56 -0400660static int __init init_btrfs_fs(void)
661{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400662 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400663
664 err = btrfs_init_sysfs();
665 if (err)
666 return err;
667
Chris Mason39279cc2007-06-12 06:35:45 -0400668 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400669 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -0400670 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -0500671
672 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500673 if (err)
674 goto free_cachep;
675
Chris Masond1310b22008-01-24 16:13:08 -0500676 err = extent_map_init();
677 if (err)
678 goto free_extent_io;
679
Chris Masona9218f62008-03-24 15:02:04 -0400680 err = btrfs_interface_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500681 if (err)
682 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -0400683
Chris Masona9218f62008-03-24 15:02:04 -0400684 err = register_filesystem(&btrfs_fs_type);
685 if (err)
686 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -0400687
688 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500689 return 0;
690
Chris Masona9218f62008-03-24 15:02:04 -0400691unregister_ioctl:
692 btrfs_interface_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500693free_extent_map:
694 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500695free_extent_io:
696 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500697free_cachep:
698 btrfs_destroy_cachep();
Chris Masona74a4b92008-06-25 16:01:31 -0400699free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500700 btrfs_exit_sysfs();
701 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400702}
703
704static void __exit exit_btrfs_fs(void)
705{
Chris Mason39279cc2007-06-12 06:35:45 -0400706 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400707 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500708 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -0400709 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400710 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400711 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -0400712 btrfs_cleanup_fs_uuids();
Chris Masonc8b97812008-10-29 14:49:59 -0400713 btrfs_zlib_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400714}
715
716module_init(init_btrfs_fs)
717module_exit(exit_btrfs_fs)
718
719MODULE_LICENSE("GPL");