Btrfs: fail mount on bad mount options
[linux-2.6-block.git] / fs / btrfs / super.c
CommitLineData
6cbd5570
CM
1/*
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
4b82d6e4 19#include <linux/blkdev.h>
2e635a27 20#include <linux/module.h>
e20d96d6 21#include <linux/buffer_head.h>
2e635a27
CM
22#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/highmem.h>
25#include <linux/time.h>
26#include <linux/init.h>
a9572a15 27#include <linux/seq_file.h>
2e635a27 28#include <linux/string.h>
2e635a27 29#include <linux/backing-dev.h>
4b82d6e4 30#include <linux/mount.h>
dee26a9f 31#include <linux/mpage.h>
75dfe396
CM
32#include <linux/swap.h>
33#include <linux/writeback.h>
8fd17795 34#include <linux/statfs.h>
08607c1b 35#include <linux/compat.h>
95e05289 36#include <linux/parser.h>
c59f8951 37#include <linux/ctype.h>
6da6abae 38#include <linux/namei.h>
a9218f6b 39#include <linux/miscdevice.h>
1bcbf313 40#include <linux/magic.h>
4b4e25f2 41#include "compat.h"
2e635a27 42#include "ctree.h"
e20d96d6 43#include "disk-io.h"
d5719762 44#include "transaction.h"
2c90e5d6 45#include "btrfs_inode.h"
c5739bba 46#include "ioctl.h"
3a686375 47#include "print-tree.h"
5103e947 48#include "xattr.h"
8a4b83cc 49#include "volumes.h"
b3c3da71 50#include "version.h"
be6e8dc0 51#include "export.h"
c8b97818 52#include "compression.h"
2e635a27 53
b87221de 54static const struct super_operations btrfs_super_ops;
75dfe396 55
d397712b 56static void btrfs_put_super(struct super_block *sb)
b18c6685 57{
39279cc3 58 struct btrfs_root *root = btrfs_sb(sb);
b18c6685 59 int ret;
b18c6685 60
39279cc3 61 ret = close_ctree(root);
39279cc3 62 sb->s_fs_info = NULL;
75dfe396
CM
63}
64
95e05289 65enum {
43e570b0 66 Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow,
dfe25020 67 Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier,
451d7585 68 Opt_ssd, Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl,
e244a0ae
CH
69 Opt_compress, Opt_notreelog, Opt_ratio, Opt_flushoncommit,
70 Opt_discard, Opt_err,
95e05289
CM
71};
72
73static match_table_t tokens = {
dfe25020 74 {Opt_degraded, "degraded"},
95e05289 75 {Opt_subvol, "subvol=%s"},
43e570b0 76 {Opt_device, "device=%s"},
b6cda9bc 77 {Opt_nodatasum, "nodatasum"},
be20aa9d 78 {Opt_nodatacow, "nodatacow"},
21ad10cf 79 {Opt_nobarrier, "nobarrier"},
c59f8951 80 {Opt_max_extent, "max_extent=%s"},
6f568d35 81 {Opt_max_inline, "max_inline=%s"},
8f662a76 82 {Opt_alloc_start, "alloc_start=%s"},
4543df7e 83 {Opt_thread_pool, "thread_pool=%d"},
c8b97818 84 {Opt_compress, "compress"},
e18e4809 85 {Opt_ssd, "ssd"},
451d7585 86 {Opt_ssd_spread, "ssd_spread"},
3b30c22f 87 {Opt_nossd, "nossd"},
33268eaf 88 {Opt_noacl, "noacl"},
3a5e1404 89 {Opt_notreelog, "notreelog"},
dccae999 90 {Opt_flushoncommit, "flushoncommit"},
97e728d4 91 {Opt_ratio, "metadata_ratio=%d"},
e244a0ae 92 {Opt_discard, "discard"},
33268eaf 93 {Opt_err, NULL},
95e05289
CM
94};
95
edbd8d4e 96u64 btrfs_parse_size(char *str)
c59f8951 97{
edbd8d4e 98 u64 res;
c59f8951
CM
99 int mult = 1;
100 char *end;
101 char last;
102
103 res = simple_strtoul(str, &end, 10);
104
105 last = end[0];
106 if (isalpha(last)) {
107 last = tolower(last);
108 switch (last) {
109 case 'g':
110 mult *= 1024;
111 case 'm':
112 mult *= 1024;
113 case 'k':
114 mult *= 1024;
115 }
116 res = res * mult;
117 }
118 return res;
119}
120
edf24abe
CH
121/*
122 * Regular mount options parser. Everything that is needed only when
123 * reading in a new superblock is parsed here.
124 */
125int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 126{
edf24abe 127 struct btrfs_fs_info *info = root->fs_info;
95e05289 128 substring_t args[MAX_OPT_ARGS];
edf24abe 129 char *p, *num;
4543df7e 130 int intarg;
a7a3f7ca 131 int ret = 0;
b6cda9bc 132
95e05289 133 if (!options)
edf24abe 134 return 0;
95e05289 135
be20aa9d
CM
136 /*
137 * strsep changes the string, duplicate it because parse_options
138 * gets called twice
139 */
140 options = kstrdup(options, GFP_NOFS);
141 if (!options)
142 return -ENOMEM;
143
be20aa9d 144
edf24abe 145 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
146 int token;
147 if (!*p)
148 continue;
149
150 token = match_token(p, tokens, args);
151 switch (token) {
dfe25020 152 case Opt_degraded:
edf24abe
CH
153 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
154 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 155 break;
95e05289 156 case Opt_subvol:
43e570b0 157 case Opt_device:
edf24abe 158 /*
43e570b0 159 * These are parsed by btrfs_parse_early_options
edf24abe
CH
160 * and can be happily ignored here.
161 */
b6cda9bc
CM
162 break;
163 case Opt_nodatasum:
067c28ad 164 printk(KERN_INFO "btrfs: setting nodatasum\n");
edf24abe 165 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d
CM
166 break;
167 case Opt_nodatacow:
edf24abe
CH
168 printk(KERN_INFO "btrfs: setting nodatacow\n");
169 btrfs_set_opt(info->mount_opt, NODATACOW);
170 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 171 break;
c8b97818
CM
172 case Opt_compress:
173 printk(KERN_INFO "btrfs: use compression\n");
174 btrfs_set_opt(info->mount_opt, COMPRESS);
175 break;
e18e4809 176 case Opt_ssd:
edf24abe
CH
177 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
178 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 179 break;
451d7585
CM
180 case Opt_ssd_spread:
181 printk(KERN_INFO "btrfs: use spread ssd "
182 "allocation scheme\n");
183 btrfs_set_opt(info->mount_opt, SSD);
184 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
185 break;
3b30c22f 186 case Opt_nossd:
451d7585
CM
187 printk(KERN_INFO "btrfs: not using ssd allocation "
188 "scheme\n");
c289811c 189 btrfs_set_opt(info->mount_opt, NOSSD);
3b30c22f 190 btrfs_clear_opt(info->mount_opt, SSD);
451d7585 191 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
3b30c22f 192 break;
21ad10cf 193 case Opt_nobarrier:
edf24abe
CH
194 printk(KERN_INFO "btrfs: turning off barriers\n");
195 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 196 break;
4543df7e
CM
197 case Opt_thread_pool:
198 intarg = 0;
199 match_int(&args[0], &intarg);
200 if (intarg) {
201 info->thread_pool_size = intarg;
202 printk(KERN_INFO "btrfs: thread pool %d\n",
203 info->thread_pool_size);
204 }
205 break;
c59f8951 206 case Opt_max_extent:
edf24abe
CH
207 num = match_strdup(&args[0]);
208 if (num) {
209 info->max_extent = btrfs_parse_size(num);
210 kfree(num);
211
212 info->max_extent = max_t(u64,
213 info->max_extent, root->sectorsize);
214 printk(KERN_INFO "btrfs: max_extent at %llu\n",
21380931 215 (unsigned long long)info->max_extent);
c59f8951
CM
216 }
217 break;
6f568d35 218 case Opt_max_inline:
edf24abe
CH
219 num = match_strdup(&args[0]);
220 if (num) {
221 info->max_inline = btrfs_parse_size(num);
222 kfree(num);
223
15ada040
CM
224 if (info->max_inline) {
225 info->max_inline = max_t(u64,
226 info->max_inline,
227 root->sectorsize);
228 }
edf24abe 229 printk(KERN_INFO "btrfs: max_inline at %llu\n",
21380931 230 (unsigned long long)info->max_inline);
6f568d35
CM
231 }
232 break;
8f662a76 233 case Opt_alloc_start:
edf24abe
CH
234 num = match_strdup(&args[0]);
235 if (num) {
236 info->alloc_start = btrfs_parse_size(num);
237 kfree(num);
238 printk(KERN_INFO
239 "btrfs: allocations start at %llu\n",
21380931 240 (unsigned long long)info->alloc_start);
8f662a76
CM
241 }
242 break;
33268eaf
JB
243 case Opt_noacl:
244 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
245 break;
3a5e1404
SW
246 case Opt_notreelog:
247 printk(KERN_INFO "btrfs: disabling tree log\n");
248 btrfs_set_opt(info->mount_opt, NOTREELOG);
249 break;
dccae999
SW
250 case Opt_flushoncommit:
251 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
252 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
253 break;
97e728d4
JB
254 case Opt_ratio:
255 intarg = 0;
256 match_int(&args[0], &intarg);
257 if (intarg) {
258 info->metadata_ratio = intarg;
259 printk(KERN_INFO "btrfs: metadata ratio %d\n",
260 info->metadata_ratio);
261 }
262 break;
e244a0ae
CH
263 case Opt_discard:
264 btrfs_set_opt(info->mount_opt, DISCARD);
265 break;
a7a3f7ca
SW
266 case Opt_err:
267 printk(KERN_INFO "btrfs: unrecognized mount option "
268 "'%s'\n", p);
269 ret = -EINVAL;
270 goto out;
95e05289 271 default:
be20aa9d 272 break;
95e05289
CM
273 }
274 }
a7a3f7ca 275out:
be20aa9d 276 kfree(options);
a7a3f7ca 277 return ret;
edf24abe
CH
278}
279
280/*
281 * Parse mount options that are required early in the mount process.
282 *
283 * All other options will be parsed on much later in the mount process and
284 * only when we need to allocate a new super block.
285 */
97288f2c 286static int btrfs_parse_early_options(const char *options, fmode_t flags,
43e570b0
CH
287 void *holder, char **subvol_name,
288 struct btrfs_fs_devices **fs_devices)
edf24abe
CH
289{
290 substring_t args[MAX_OPT_ARGS];
291 char *opts, *p;
292 int error = 0;
293
294 if (!options)
295 goto out;
296
297 /*
298 * strsep changes the string, duplicate it because parse_options
299 * gets called twice
300 */
301 opts = kstrdup(options, GFP_KERNEL);
302 if (!opts)
303 return -ENOMEM;
304
305 while ((p = strsep(&opts, ",")) != NULL) {
306 int token;
307 if (!*p)
308 continue;
309
310 token = match_token(p, tokens, args);
311 switch (token) {
312 case Opt_subvol:
313 *subvol_name = match_strdup(&args[0]);
314 break;
43e570b0
CH
315 case Opt_device:
316 error = btrfs_scan_one_device(match_strdup(&args[0]),
317 flags, holder, fs_devices);
318 if (error)
319 goto out_free_opts;
320 break;
edf24abe
CH
321 default:
322 break;
323 }
324 }
325
43e570b0 326 out_free_opts:
edf24abe
CH
327 kfree(opts);
328 out:
329 /*
330 * If no subvolume name is specified we use the default one. Allocate
3de4586c 331 * a copy of the string "." here so that code later in the
edf24abe
CH
332 * mount path doesn't care if it's the default volume or another one.
333 */
334 if (!*subvol_name) {
3de4586c 335 *subvol_name = kstrdup(".", GFP_KERNEL);
edf24abe
CH
336 if (!*subvol_name)
337 return -ENOMEM;
338 }
339 return error;
95e05289
CM
340}
341
d397712b 342static int btrfs_fill_super(struct super_block *sb,
8a4b83cc 343 struct btrfs_fs_devices *fs_devices,
d397712b 344 void *data, int silent)
75dfe396 345{
d397712b
CM
346 struct inode *inode;
347 struct dentry *root_dentry;
39279cc3
CM
348 struct btrfs_super_block *disk_super;
349 struct btrfs_root *tree_root;
5d4f98a2 350 struct btrfs_key key;
39279cc3 351 int err;
a429e513 352
39279cc3
CM
353 sb->s_maxbytes = MAX_LFS_FILESIZE;
354 sb->s_magic = BTRFS_SUPER_MAGIC;
355 sb->s_op = &btrfs_super_ops;
be6e8dc0 356 sb->s_export_op = &btrfs_export_ops;
5103e947 357 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 358 sb->s_time_gran = 1;
0eda294d 359#ifdef CONFIG_BTRFS_FS_POSIX_ACL
33268eaf 360 sb->s_flags |= MS_POSIXACL;
49cf6f45 361#endif
a429e513 362
dfe25020 363 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 364
e58ca020 365 if (IS_ERR(tree_root)) {
39279cc3 366 printk("btrfs: open_ctree failed\n");
e58ca020 367 return PTR_ERR(tree_root);
a429e513 368 }
39279cc3 369 sb->s_fs_info = tree_root;
5f39d397 370 disk_super = &tree_root->fs_info->super_copy;
a429e513 371
5d4f98a2
YZ
372 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
373 key.type = BTRFS_INODE_ITEM_KEY;
374 key.offset = 0;
375 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root);
376 if (IS_ERR(inode)) {
377 err = PTR_ERR(inode);
39279cc3 378 goto fail_close;
f254e52c 379 }
f254e52c 380
39279cc3
CM
381 root_dentry = d_alloc_root(inode);
382 if (!root_dentry) {
383 iput(inode);
384 err = -ENOMEM;
385 goto fail_close;
f254e52c 386 }
e4404d6e 387#if 0
58176a96
JB
388 /* this does the super kobj at the same time */
389 err = btrfs_sysfs_add_super(tree_root->fs_info);
390 if (err)
391 goto fail_close;
e4404d6e 392#endif
58176a96 393
39279cc3 394 sb->s_root = root_dentry;
6885f308 395
6885f308 396 save_mount_options(sb, data);
2619ba1f 397 return 0;
39279cc3
CM
398
399fail_close:
400 close_ctree(tree_root);
401 return err;
2619ba1f
CM
402}
403
6bf13c0c 404int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
405{
406 struct btrfs_trans_handle *trans;
dccae999 407 struct btrfs_root *root = btrfs_sb(sb);
c5739bba 408 int ret;
2619ba1f 409
39279cc3
CM
410 if (!wait) {
411 filemap_flush(root->fs_info->btree_inode->i_mapping);
412 return 0;
413 }
771ed689 414
24bbcf04
YZ
415 btrfs_start_delalloc_inodes(root, 0);
416 btrfs_wait_ordered_extents(root, 0, 0);
771ed689 417
c5739bba 418 trans = btrfs_start_transaction(root, 1);
c5739bba 419 ret = btrfs_commit_transaction(trans, root);
54aa1f4d 420 return ret;
2c90e5d6
CM
421}
422
a9572a15
EP
423static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
424{
425 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
426 struct btrfs_fs_info *info = root->fs_info;
427
428 if (btrfs_test_opt(root, DEGRADED))
429 seq_puts(seq, ",degraded");
430 if (btrfs_test_opt(root, NODATASUM))
431 seq_puts(seq, ",nodatasum");
432 if (btrfs_test_opt(root, NODATACOW))
433 seq_puts(seq, ",nodatacow");
434 if (btrfs_test_opt(root, NOBARRIER))
435 seq_puts(seq, ",nobarrier");
436 if (info->max_extent != (u64)-1)
21380931
JB
437 seq_printf(seq, ",max_extent=%llu",
438 (unsigned long long)info->max_extent);
a9572a15 439 if (info->max_inline != 8192 * 1024)
21380931
JB
440 seq_printf(seq, ",max_inline=%llu",
441 (unsigned long long)info->max_inline);
a9572a15 442 if (info->alloc_start != 0)
21380931
JB
443 seq_printf(seq, ",alloc_start=%llu",
444 (unsigned long long)info->alloc_start);
a9572a15
EP
445 if (info->thread_pool_size != min_t(unsigned long,
446 num_online_cpus() + 2, 8))
447 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
448 if (btrfs_test_opt(root, COMPRESS))
449 seq_puts(seq, ",compress");
c289811c
CM
450 if (btrfs_test_opt(root, NOSSD))
451 seq_puts(seq, ",nossd");
451d7585
CM
452 if (btrfs_test_opt(root, SSD_SPREAD))
453 seq_puts(seq, ",ssd_spread");
454 else if (btrfs_test_opt(root, SSD))
a9572a15 455 seq_puts(seq, ",ssd");
3a5e1404 456 if (btrfs_test_opt(root, NOTREELOG))
6b65c5c6 457 seq_puts(seq, ",notreelog");
dccae999 458 if (btrfs_test_opt(root, FLUSHONCOMMIT))
6b65c5c6 459 seq_puts(seq, ",flushoncommit");
a9572a15
EP
460 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
461 seq_puts(seq, ",noacl");
462 return 0;
463}
464
a061fc8d 465static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 466{
a061fc8d
CM
467 struct btrfs_fs_devices *test_fs_devices = data;
468 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 469
a061fc8d 470 return root->fs_info->fs_devices == test_fs_devices;
4b82d6e4
Y
471}
472
edf24abe
CH
473/*
474 * Find a superblock for the given device / mount point.
475 *
476 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
477 * for multiple device setup. Make sure to keep it in sync.
478 */
479static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
480 const char *dev_name, void *data, struct vfsmount *mnt)
4b82d6e4 481{
edf24abe 482 char *subvol_name = NULL;
4b82d6e4
Y
483 struct block_device *bdev = NULL;
484 struct super_block *s;
485 struct dentry *root;
8a4b83cc 486 struct btrfs_fs_devices *fs_devices = NULL;
97288f2c 487 fmode_t mode = FMODE_READ;
4b82d6e4
Y
488 int error = 0;
489
97288f2c
CH
490 if (!(flags & MS_RDONLY))
491 mode |= FMODE_WRITE;
492
493 error = btrfs_parse_early_options(data, mode, fs_type,
43e570b0 494 &subvol_name, &fs_devices);
edf24abe 495 if (error)
1f483660 496 return error;
edf24abe 497
97288f2c 498 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices);
8a4b83cc 499 if (error)
edf24abe 500 goto error_free_subvol_name;
4b82d6e4 501
97288f2c 502 error = btrfs_open_devices(fs_devices, mode, fs_type);
8a4b83cc 503 if (error)
edf24abe 504 goto error_free_subvol_name;
8a4b83cc 505
2b82032c
YZ
506 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
507 error = -EACCES;
508 goto error_close_devices;
509 }
510
dfe25020 511 bdev = fs_devices->latest_bdev;
a061fc8d 512 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
4b82d6e4
Y
513 if (IS_ERR(s))
514 goto error_s;
515
516 if (s->s_root) {
517 if ((flags ^ s->s_flags) & MS_RDONLY) {
6f5bbff9 518 deactivate_locked_super(s);
4b82d6e4 519 error = -EBUSY;
c146afad 520 goto error_close_devices;
4b82d6e4
Y
521 }
522
2b82032c 523 btrfs_close_devices(fs_devices);
4b82d6e4
Y
524 } else {
525 char b[BDEVNAME_SIZE];
526
527 s->s_flags = flags;
528 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
8a4b83cc
CM
529 error = btrfs_fill_super(s, fs_devices, data,
530 flags & MS_SILENT ? 1 : 0);
4b82d6e4 531 if (error) {
6f5bbff9 532 deactivate_locked_super(s);
1f483660 533 goto error_free_subvol_name;
4b82d6e4
Y
534 }
535
788f20eb 536 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
4b82d6e4
Y
537 s->s_flags |= MS_ACTIVE;
538 }
539
76fcef19
DW
540 if (!strcmp(subvol_name, "."))
541 root = dget(s->s_root);
542 else {
543 mutex_lock(&s->s_root->d_inode->i_mutex);
d397712b
CM
544 root = lookup_one_len(subvol_name, s->s_root,
545 strlen(subvol_name));
76fcef19 546 mutex_unlock(&s->s_root->d_inode->i_mutex);
d397712b 547
76fcef19 548 if (IS_ERR(root)) {
6f5bbff9 549 deactivate_locked_super(s);
76fcef19 550 error = PTR_ERR(root);
1f483660 551 goto error_free_subvol_name;
76fcef19
DW
552 }
553 if (!root->d_inode) {
554 dput(root);
6f5bbff9 555 deactivate_locked_super(s);
76fcef19 556 error = -ENXIO;
1f483660 557 goto error_free_subvol_name;
76fcef19 558 }
4b82d6e4
Y
559 }
560
561 mnt->mnt_sb = s;
562 mnt->mnt_root = root;
edf24abe
CH
563
564 kfree(subvol_name);
4b82d6e4
Y
565 return 0;
566
567error_s:
568 error = PTR_ERR(s);
c146afad 569error_close_devices:
8a4b83cc 570 btrfs_close_devices(fs_devices);
edf24abe
CH
571error_free_subvol_name:
572 kfree(subvol_name);
4b82d6e4
Y
573 return error;
574}
2e635a27 575
c146afad
YZ
576static int btrfs_remount(struct super_block *sb, int *flags, char *data)
577{
578 struct btrfs_root *root = btrfs_sb(sb);
579 int ret;
580
b288052e
CM
581 ret = btrfs_parse_options(root, data);
582 if (ret)
583 return -EINVAL;
584
c146afad
YZ
585 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
586 return 0;
587
588 if (*flags & MS_RDONLY) {
589 sb->s_flags |= MS_RDONLY;
590
591 ret = btrfs_commit_super(root);
592 WARN_ON(ret);
593 } else {
2b82032c
YZ
594 if (root->fs_info->fs_devices->rw_devices == 0)
595 return -EACCES;
596
c146afad
YZ
597 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
598 return -EINVAL;
599
5d4f98a2
YZ
600 /* recover relocation */
601 ret = btrfs_recover_relocation(root);
c146afad
YZ
602 WARN_ON(ret);
603
604 ret = btrfs_cleanup_fs_roots(root->fs_info);
605 WARN_ON(ret);
606
607 sb->s_flags &= ~MS_RDONLY;
608 }
609
610 return 0;
611}
612
8fd17795
CM
613static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
614{
615 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 616 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
db94535d 617 int bits = dentry->d_sb->s_blocksize_bits;
9d03632e 618 __be32 *fsid = (__be32 *)root->fs_info->fsid;
8fd17795
CM
619
620 buf->f_namelen = BTRFS_NAME_LEN;
db94535d
CM
621 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
622 buf->f_bfree = buf->f_blocks -
623 (btrfs_super_bytes_used(disk_super) >> bits);
8fd17795
CM
624 buf->f_bavail = buf->f_bfree;
625 buf->f_bsize = dentry->d_sb->s_blocksize;
626 buf->f_type = BTRFS_SUPER_MAGIC;
d397712b 627
9d03632e 628 /* We treat it as constant endianness (it doesn't matter _which_)
d397712b 629 because we want the fsid to come out the same whether mounted
9d03632e
DW
630 on a big-endian or little-endian host */
631 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
632 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
633 /* Mask in the root object ID too, to disambiguate subvols */
634 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
635 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
636
8fd17795
CM
637 return 0;
638}
b5133862 639
2e635a27
CM
640static struct file_system_type btrfs_fs_type = {
641 .owner = THIS_MODULE,
642 .name = "btrfs",
643 .get_sb = btrfs_get_sb,
a061fc8d 644 .kill_sb = kill_anon_super,
2e635a27
CM
645 .fs_flags = FS_REQUIRES_DEV,
646};
a9218f6b 647
d352ac68
CM
648/*
649 * used by btrfsctl to scan devices when no FS is mounted
650 */
8a4b83cc
CM
651static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
652 unsigned long arg)
653{
654 struct btrfs_ioctl_vol_args *vol;
655 struct btrfs_fs_devices *fs_devices;
c071fcfd 656 int ret = -ENOTTY;
8a4b83cc 657
e441d54d
CM
658 if (!capable(CAP_SYS_ADMIN))
659 return -EPERM;
660
dae7b665
LZ
661 vol = memdup_user((void __user *)arg, sizeof(*vol));
662 if (IS_ERR(vol))
663 return PTR_ERR(vol);
c071fcfd 664
8a4b83cc
CM
665 switch (cmd) {
666 case BTRFS_IOC_SCAN_DEV:
97288f2c 667 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
8a4b83cc
CM
668 &btrfs_fs_type, &fs_devices);
669 break;
670 }
dae7b665 671
8a4b83cc 672 kfree(vol);
f819d837 673 return ret;
8a4b83cc
CM
674}
675
0176260f 676static int btrfs_freeze(struct super_block *sb)
ed0dab6b
Y
677{
678 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
679 mutex_lock(&root->fs_info->transaction_kthread_mutex);
680 mutex_lock(&root->fs_info->cleaner_mutex);
0176260f 681 return 0;
ed0dab6b
Y
682}
683
0176260f 684static int btrfs_unfreeze(struct super_block *sb)
ed0dab6b
Y
685{
686 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
687 mutex_unlock(&root->fs_info->cleaner_mutex);
688 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
0176260f 689 return 0;
ed0dab6b 690}
2e635a27 691
b87221de 692static const struct super_operations btrfs_super_ops = {
76dda93c 693 .drop_inode = btrfs_drop_inode,
134e9731 694 .delete_inode = btrfs_delete_inode,
e20d96d6 695 .put_super = btrfs_put_super,
d5719762 696 .sync_fs = btrfs_sync_fs,
a9572a15 697 .show_options = btrfs_show_options,
4730a4bc 698 .write_inode = btrfs_write_inode,
b5133862 699 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
700 .alloc_inode = btrfs_alloc_inode,
701 .destroy_inode = btrfs_destroy_inode,
8fd17795 702 .statfs = btrfs_statfs,
c146afad 703 .remount_fs = btrfs_remount,
0176260f
LT
704 .freeze_fs = btrfs_freeze,
705 .unfreeze_fs = btrfs_unfreeze,
e20d96d6 706};
a9218f6b
CM
707
708static const struct file_operations btrfs_ctl_fops = {
709 .unlocked_ioctl = btrfs_control_ioctl,
710 .compat_ioctl = btrfs_control_ioctl,
711 .owner = THIS_MODULE,
712};
713
714static struct miscdevice btrfs_misc = {
715 .minor = MISC_DYNAMIC_MINOR,
716 .name = "btrfs-control",
717 .fops = &btrfs_ctl_fops
718};
719
720static int btrfs_interface_init(void)
721{
722 return misc_register(&btrfs_misc);
723}
724
b2950863 725static void btrfs_interface_exit(void)
a9218f6b
CM
726{
727 if (misc_deregister(&btrfs_misc) < 0)
d397712b 728 printk(KERN_INFO "misc_deregister failed for control device");
a9218f6b
CM
729}
730
2e635a27
CM
731static int __init init_btrfs_fs(void)
732{
2c90e5d6 733 int err;
58176a96
JB
734
735 err = btrfs_init_sysfs();
736 if (err)
737 return err;
738
39279cc3 739 err = btrfs_init_cachep();
2c90e5d6 740 if (err)
a74a4b97 741 goto free_sysfs;
d1310b2e
CM
742
743 err = extent_io_init();
2f4cbe64
WB
744 if (err)
745 goto free_cachep;
746
d1310b2e
CM
747 err = extent_map_init();
748 if (err)
749 goto free_extent_io;
750
a9218f6b 751 err = btrfs_interface_init();
2f4cbe64
WB
752 if (err)
753 goto free_extent_map;
c8b97818 754
a9218f6b
CM
755 err = register_filesystem(&btrfs_fs_type);
756 if (err)
757 goto unregister_ioctl;
b3c3da71
CM
758
759 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
2f4cbe64
WB
760 return 0;
761
a9218f6b
CM
762unregister_ioctl:
763 btrfs_interface_exit();
2f4cbe64
WB
764free_extent_map:
765 extent_map_exit();
d1310b2e
CM
766free_extent_io:
767 extent_io_exit();
2f4cbe64
WB
768free_cachep:
769 btrfs_destroy_cachep();
a74a4b97 770free_sysfs:
2f4cbe64
WB
771 btrfs_exit_sysfs();
772 return err;
2e635a27
CM
773}
774
775static void __exit exit_btrfs_fs(void)
776{
39279cc3 777 btrfs_destroy_cachep();
a52d9a80 778 extent_map_exit();
d1310b2e 779 extent_io_exit();
a9218f6b 780 btrfs_interface_exit();
2e635a27 781 unregister_filesystem(&btrfs_fs_type);
58176a96 782 btrfs_exit_sysfs();
8a4b83cc 783 btrfs_cleanup_fs_uuids();
c8b97818 784 btrfs_zlib_exit();
2e635a27
CM
785}
786
787module_init(init_btrfs_fs)
788module_exit(exit_btrfs_fs)
789
790MODULE_LICENSE("GPL");