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