Btrfs: use the global reserve when truncating the free space cache inode
[deliverable/linux.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>
5a0e3ad6 41#include <linux/slab.h>
90a887c9 42#include <linux/cleancache.h>
830c4adb 43#include <linux/mnt_namespace.h>
4b4e25f2 44#include "compat.h"
16cdcec7 45#include "delayed-inode.h"
2e635a27 46#include "ctree.h"
e20d96d6 47#include "disk-io.h"
d5719762 48#include "transaction.h"
2c90e5d6 49#include "btrfs_inode.h"
c5739bba 50#include "ioctl.h"
3a686375 51#include "print-tree.h"
5103e947 52#include "xattr.h"
8a4b83cc 53#include "volumes.h"
b3c3da71 54#include "version.h"
be6e8dc0 55#include "export.h"
c8b97818 56#include "compression.h"
2e635a27 57
1abe9b8a 58#define CREATE_TRACE_POINTS
59#include <trace/events/btrfs.h>
60
b87221de 61static const struct super_operations btrfs_super_ops;
830c4adb 62static struct file_system_type btrfs_fs_type;
75dfe396 63
acce952b 64static const char *btrfs_decode_error(struct btrfs_fs_info *fs_info, int errno,
65 char nbuf[16])
66{
67 char *errstr = NULL;
68
69 switch (errno) {
70 case -EIO:
71 errstr = "IO failure";
72 break;
73 case -ENOMEM:
74 errstr = "Out of memory";
75 break;
76 case -EROFS:
77 errstr = "Readonly filesystem";
78 break;
79 default:
80 if (nbuf) {
81 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
82 errstr = nbuf;
83 }
84 break;
85 }
86
87 return errstr;
88}
89
90static void __save_error_info(struct btrfs_fs_info *fs_info)
91{
92 /*
93 * today we only save the error info into ram. Long term we'll
94 * also send it down to the disk
95 */
96 fs_info->fs_state = BTRFS_SUPER_FLAG_ERROR;
97}
98
99/* NOTE:
100 * We move write_super stuff at umount in order to avoid deadlock
101 * for umount hold all lock.
102 */
103static void save_error_info(struct btrfs_fs_info *fs_info)
104{
105 __save_error_info(fs_info);
106}
107
108/* btrfs handle error by forcing the filesystem readonly */
109static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
110{
111 struct super_block *sb = fs_info->sb;
112
113 if (sb->s_flags & MS_RDONLY)
114 return;
115
116 if (fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
117 sb->s_flags |= MS_RDONLY;
118 printk(KERN_INFO "btrfs is forced readonly\n");
119 }
120}
121
122/*
123 * __btrfs_std_error decodes expected errors from the caller and
124 * invokes the approciate error response.
125 */
126void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
127 unsigned int line, int errno)
128{
129 struct super_block *sb = fs_info->sb;
130 char nbuf[16];
131 const char *errstr;
132
133 /*
134 * Special case: if the error is EROFS, and we're already
135 * under MS_RDONLY, then it is safe here.
136 */
137 if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
138 return;
139
140 errstr = btrfs_decode_error(fs_info, errno, nbuf);
141 printk(KERN_CRIT "BTRFS error (device %s) in %s:%d: %s\n",
142 sb->s_id, function, line, errstr);
143 save_error_info(fs_info);
144
145 btrfs_handle_error(fs_info);
146}
147
d397712b 148static void btrfs_put_super(struct super_block *sb)
b18c6685 149{
39279cc3 150 struct btrfs_root *root = btrfs_sb(sb);
b18c6685 151 int ret;
b18c6685 152
39279cc3 153 ret = close_ctree(root);
39279cc3 154 sb->s_fs_info = NULL;
559af821
AK
155
156 (void)ret; /* FIXME: need to fix VFS to return error? */
75dfe396
CM
157}
158
95e05289 159enum {
73f73415 160 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
287a0ab9
JB
161 Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
162 Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
261507a0
LZ
163 Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
164 Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
91435650 165 Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
4b9465cb 166 Opt_enospc_debug, Opt_subvolrootid, Opt_defrag,
73bc1876 167 Opt_inode_cache, Opt_no_space_cache, Opt_err,
95e05289
CM
168};
169
170static match_table_t tokens = {
dfe25020 171 {Opt_degraded, "degraded"},
95e05289 172 {Opt_subvol, "subvol=%s"},
73f73415 173 {Opt_subvolid, "subvolid=%d"},
43e570b0 174 {Opt_device, "device=%s"},
b6cda9bc 175 {Opt_nodatasum, "nodatasum"},
be20aa9d 176 {Opt_nodatacow, "nodatacow"},
21ad10cf 177 {Opt_nobarrier, "nobarrier"},
6f568d35 178 {Opt_max_inline, "max_inline=%s"},
8f662a76 179 {Opt_alloc_start, "alloc_start=%s"},
4543df7e 180 {Opt_thread_pool, "thread_pool=%d"},
c8b97818 181 {Opt_compress, "compress"},
261507a0 182 {Opt_compress_type, "compress=%s"},
a555f810 183 {Opt_compress_force, "compress-force"},
261507a0 184 {Opt_compress_force_type, "compress-force=%s"},
e18e4809 185 {Opt_ssd, "ssd"},
451d7585 186 {Opt_ssd_spread, "ssd_spread"},
3b30c22f 187 {Opt_nossd, "nossd"},
33268eaf 188 {Opt_noacl, "noacl"},
3a5e1404 189 {Opt_notreelog, "notreelog"},
dccae999 190 {Opt_flushoncommit, "flushoncommit"},
97e728d4 191 {Opt_ratio, "metadata_ratio=%d"},
e244a0ae 192 {Opt_discard, "discard"},
0af3d00b 193 {Opt_space_cache, "space_cache"},
88c2ba3b 194 {Opt_clear_cache, "clear_cache"},
4260f7c7 195 {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
91435650 196 {Opt_enospc_debug, "enospc_debug"},
e15d0542 197 {Opt_subvolrootid, "subvolrootid=%d"},
4cb5300b 198 {Opt_defrag, "autodefrag"},
4b9465cb 199 {Opt_inode_cache, "inode_cache"},
73bc1876 200 {Opt_no_space_cache, "no_space_cache"},
33268eaf 201 {Opt_err, NULL},
95e05289
CM
202};
203
edf24abe
CH
204/*
205 * Regular mount options parser. Everything that is needed only when
206 * reading in a new superblock is parsed here.
207 */
208int btrfs_parse_options(struct btrfs_root *root, char *options)
95e05289 209{
edf24abe 210 struct btrfs_fs_info *info = root->fs_info;
95e05289 211 substring_t args[MAX_OPT_ARGS];
73bc1876
JB
212 char *p, *num, *orig = NULL;
213 u64 cache_gen;
4543df7e 214 int intarg;
a7a3f7ca 215 int ret = 0;
261507a0
LZ
216 char *compress_type;
217 bool compress_force = false;
b6cda9bc 218
73bc1876
JB
219 cache_gen = btrfs_super_cache_generation(&root->fs_info->super_copy);
220 if (cache_gen)
221 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
222
95e05289 223 if (!options)
73bc1876 224 goto out;
95e05289 225
be20aa9d
CM
226 /*
227 * strsep changes the string, duplicate it because parse_options
228 * gets called twice
229 */
230 options = kstrdup(options, GFP_NOFS);
231 if (!options)
232 return -ENOMEM;
233
da495ecc 234 orig = options;
be20aa9d 235
edf24abe 236 while ((p = strsep(&options, ",")) != NULL) {
95e05289
CM
237 int token;
238 if (!*p)
239 continue;
240
241 token = match_token(p, tokens, args);
242 switch (token) {
dfe25020 243 case Opt_degraded:
edf24abe
CH
244 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
245 btrfs_set_opt(info->mount_opt, DEGRADED);
dfe25020 246 break;
95e05289 247 case Opt_subvol:
73f73415 248 case Opt_subvolid:
e15d0542 249 case Opt_subvolrootid:
43e570b0 250 case Opt_device:
edf24abe 251 /*
43e570b0 252 * These are parsed by btrfs_parse_early_options
edf24abe
CH
253 * and can be happily ignored here.
254 */
b6cda9bc
CM
255 break;
256 case Opt_nodatasum:
067c28ad 257 printk(KERN_INFO "btrfs: setting nodatasum\n");
edf24abe 258 btrfs_set_opt(info->mount_opt, NODATASUM);
be20aa9d
CM
259 break;
260 case Opt_nodatacow:
edf24abe
CH
261 printk(KERN_INFO "btrfs: setting nodatacow\n");
262 btrfs_set_opt(info->mount_opt, NODATACOW);
263 btrfs_set_opt(info->mount_opt, NODATASUM);
95e05289 264 break;
a555f810 265 case Opt_compress_force:
261507a0
LZ
266 case Opt_compress_force_type:
267 compress_force = true;
268 case Opt_compress:
269 case Opt_compress_type:
270 if (token == Opt_compress ||
271 token == Opt_compress_force ||
272 strcmp(args[0].from, "zlib") == 0) {
273 compress_type = "zlib";
274 info->compress_type = BTRFS_COMPRESS_ZLIB;
a6fa6fae
LZ
275 } else if (strcmp(args[0].from, "lzo") == 0) {
276 compress_type = "lzo";
277 info->compress_type = BTRFS_COMPRESS_LZO;
261507a0
LZ
278 } else {
279 ret = -EINVAL;
280 goto out;
281 }
282
a555f810 283 btrfs_set_opt(info->mount_opt, COMPRESS);
261507a0
LZ
284 if (compress_force) {
285 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
286 pr_info("btrfs: force %s compression\n",
287 compress_type);
288 } else
289 pr_info("btrfs: use %s compression\n",
290 compress_type);
a555f810 291 break;
e18e4809 292 case Opt_ssd:
edf24abe
CH
293 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
294 btrfs_set_opt(info->mount_opt, SSD);
e18e4809 295 break;
451d7585
CM
296 case Opt_ssd_spread:
297 printk(KERN_INFO "btrfs: use spread ssd "
298 "allocation scheme\n");
299 btrfs_set_opt(info->mount_opt, SSD);
300 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
301 break;
3b30c22f 302 case Opt_nossd:
451d7585
CM
303 printk(KERN_INFO "btrfs: not using ssd allocation "
304 "scheme\n");
c289811c 305 btrfs_set_opt(info->mount_opt, NOSSD);
3b30c22f 306 btrfs_clear_opt(info->mount_opt, SSD);
451d7585 307 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
3b30c22f 308 break;
21ad10cf 309 case Opt_nobarrier:
edf24abe
CH
310 printk(KERN_INFO "btrfs: turning off barriers\n");
311 btrfs_set_opt(info->mount_opt, NOBARRIER);
21ad10cf 312 break;
4543df7e
CM
313 case Opt_thread_pool:
314 intarg = 0;
315 match_int(&args[0], &intarg);
316 if (intarg) {
317 info->thread_pool_size = intarg;
318 printk(KERN_INFO "btrfs: thread pool %d\n",
319 info->thread_pool_size);
320 }
321 break;
6f568d35 322 case Opt_max_inline:
edf24abe
CH
323 num = match_strdup(&args[0]);
324 if (num) {
91748467 325 info->max_inline = memparse(num, NULL);
edf24abe
CH
326 kfree(num);
327
15ada040
CM
328 if (info->max_inline) {
329 info->max_inline = max_t(u64,
330 info->max_inline,
331 root->sectorsize);
332 }
edf24abe 333 printk(KERN_INFO "btrfs: max_inline at %llu\n",
21380931 334 (unsigned long long)info->max_inline);
6f568d35
CM
335 }
336 break;
8f662a76 337 case Opt_alloc_start:
edf24abe
CH
338 num = match_strdup(&args[0]);
339 if (num) {
91748467 340 info->alloc_start = memparse(num, NULL);
edf24abe
CH
341 kfree(num);
342 printk(KERN_INFO
343 "btrfs: allocations start at %llu\n",
21380931 344 (unsigned long long)info->alloc_start);
8f662a76
CM
345 }
346 break;
33268eaf
JB
347 case Opt_noacl:
348 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
349 break;
3a5e1404
SW
350 case Opt_notreelog:
351 printk(KERN_INFO "btrfs: disabling tree log\n");
352 btrfs_set_opt(info->mount_opt, NOTREELOG);
353 break;
dccae999
SW
354 case Opt_flushoncommit:
355 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
356 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
357 break;
97e728d4
JB
358 case Opt_ratio:
359 intarg = 0;
360 match_int(&args[0], &intarg);
361 if (intarg) {
362 info->metadata_ratio = intarg;
363 printk(KERN_INFO "btrfs: metadata ratio %d\n",
364 info->metadata_ratio);
365 }
366 break;
e244a0ae
CH
367 case Opt_discard:
368 btrfs_set_opt(info->mount_opt, DISCARD);
369 break;
0af3d00b 370 case Opt_space_cache:
0af3d00b 371 btrfs_set_opt(info->mount_opt, SPACE_CACHE);
0de90876 372 break;
73bc1876
JB
373 case Opt_no_space_cache:
374 printk(KERN_INFO "btrfs: disabling disk space caching\n");
375 btrfs_clear_opt(info->mount_opt, SPACE_CACHE);
376 break;
4b9465cb
CM
377 case Opt_inode_cache:
378 printk(KERN_INFO "btrfs: enabling inode map caching\n");
379 btrfs_set_opt(info->mount_opt, INODE_MAP_CACHE);
380 break;
88c2ba3b
JB
381 case Opt_clear_cache:
382 printk(KERN_INFO "btrfs: force clearing of disk cache\n");
383 btrfs_set_opt(info->mount_opt, CLEAR_CACHE);
0af3d00b 384 break;
4260f7c7
SW
385 case Opt_user_subvol_rm_allowed:
386 btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
387 break;
91435650
CM
388 case Opt_enospc_debug:
389 btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
390 break;
4cb5300b
CM
391 case Opt_defrag:
392 printk(KERN_INFO "btrfs: enabling auto defrag");
393 btrfs_set_opt(info->mount_opt, AUTO_DEFRAG);
394 break;
a7a3f7ca
SW
395 case Opt_err:
396 printk(KERN_INFO "btrfs: unrecognized mount option "
397 "'%s'\n", p);
398 ret = -EINVAL;
399 goto out;
95e05289 400 default:
be20aa9d 401 break;
95e05289
CM
402 }
403 }
a7a3f7ca 404out:
73bc1876
JB
405 if (!ret && btrfs_test_opt(root, SPACE_CACHE))
406 printk(KERN_INFO "btrfs: disk space caching is enabled\n");
da495ecc 407 kfree(orig);
a7a3f7ca 408 return ret;
edf24abe
CH
409}
410
411/*
412 * Parse mount options that are required early in the mount process.
413 *
414 * All other options will be parsed on much later in the mount process and
415 * only when we need to allocate a new super block.
416 */
97288f2c 417static int btrfs_parse_early_options(const char *options, fmode_t flags,
73f73415 418 void *holder, char **subvol_name, u64 *subvol_objectid,
e15d0542 419 u64 *subvol_rootid, struct btrfs_fs_devices **fs_devices)
edf24abe
CH
420{
421 substring_t args[MAX_OPT_ARGS];
83c8c9bd 422 char *device_name, *opts, *orig, *p;
edf24abe 423 int error = 0;
73f73415 424 int intarg;
edf24abe
CH
425
426 if (!options)
830c4adb 427 return 0;
edf24abe
CH
428
429 /*
430 * strsep changes the string, duplicate it because parse_options
431 * gets called twice
432 */
433 opts = kstrdup(options, GFP_KERNEL);
434 if (!opts)
435 return -ENOMEM;
3f3d0bc0 436 orig = opts;
edf24abe
CH
437
438 while ((p = strsep(&opts, ",")) != NULL) {
439 int token;
440 if (!*p)
441 continue;
442
443 token = match_token(p, tokens, args);
444 switch (token) {
445 case Opt_subvol:
446 *subvol_name = match_strdup(&args[0]);
447 break;
73f73415
JB
448 case Opt_subvolid:
449 intarg = 0;
4849f01d
JB
450 error = match_int(&args[0], &intarg);
451 if (!error) {
452 /* we want the original fs_tree */
453 if (!intarg)
454 *subvol_objectid =
455 BTRFS_FS_TREE_OBJECTID;
456 else
457 *subvol_objectid = intarg;
458 }
73f73415 459 break;
e15d0542
XZ
460 case Opt_subvolrootid:
461 intarg = 0;
462 error = match_int(&args[0], &intarg);
463 if (!error) {
464 /* we want the original fs_tree */
465 if (!intarg)
466 *subvol_rootid =
467 BTRFS_FS_TREE_OBJECTID;
468 else
469 *subvol_rootid = intarg;
470 }
471 break;
43e570b0 472 case Opt_device:
83c8c9bd
JL
473 device_name = match_strdup(&args[0]);
474 if (!device_name) {
475 error = -ENOMEM;
476 goto out;
477 }
478 error = btrfs_scan_one_device(device_name,
43e570b0 479 flags, holder, fs_devices);
83c8c9bd 480 kfree(device_name);
43e570b0 481 if (error)
830c4adb 482 goto out;
43e570b0 483 break;
edf24abe
CH
484 default:
485 break;
486 }
487 }
488
830c4adb 489out:
3f3d0bc0 490 kfree(orig);
edf24abe 491 return error;
95e05289
CM
492}
493
73f73415
JB
494static struct dentry *get_default_root(struct super_block *sb,
495 u64 subvol_objectid)
496{
497 struct btrfs_root *root = sb->s_fs_info;
498 struct btrfs_root *new_root;
499 struct btrfs_dir_item *di;
500 struct btrfs_path *path;
501 struct btrfs_key location;
502 struct inode *inode;
73f73415
JB
503 u64 dir_id;
504 int new = 0;
505
506 /*
507 * We have a specific subvol we want to mount, just setup location and
508 * go look up the root.
509 */
510 if (subvol_objectid) {
511 location.objectid = subvol_objectid;
512 location.type = BTRFS_ROOT_ITEM_KEY;
513 location.offset = (u64)-1;
514 goto find_root;
515 }
516
517 path = btrfs_alloc_path();
518 if (!path)
519 return ERR_PTR(-ENOMEM);
520 path->leave_spinning = 1;
521
522 /*
523 * Find the "default" dir item which points to the root item that we
524 * will mount by default if we haven't been given a specific subvolume
525 * to mount.
526 */
527 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
528 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
b0839166
JL
529 if (IS_ERR(di)) {
530 btrfs_free_path(path);
fb4f6f91 531 return ERR_CAST(di);
b0839166 532 }
73f73415
JB
533 if (!di) {
534 /*
535 * Ok the default dir item isn't there. This is weird since
536 * it's always been there, but don't freak out, just try and
537 * mount to root most subvolume.
538 */
539 btrfs_free_path(path);
540 dir_id = BTRFS_FIRST_FREE_OBJECTID;
541 new_root = root->fs_info->fs_root;
542 goto setup_root;
543 }
544
545 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
546 btrfs_free_path(path);
547
548find_root:
549 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
550 if (IS_ERR(new_root))
d0b678cb 551 return ERR_CAST(new_root);
73f73415
JB
552
553 if (btrfs_root_refs(&new_root->root_item) == 0)
554 return ERR_PTR(-ENOENT);
555
556 dir_id = btrfs_root_dirid(&new_root->root_item);
557setup_root:
558 location.objectid = dir_id;
559 location.type = BTRFS_INODE_ITEM_KEY;
560 location.offset = 0;
561
562 inode = btrfs_iget(sb, &location, new_root, &new);
4cbd1149
DC
563 if (IS_ERR(inode))
564 return ERR_CAST(inode);
73f73415
JB
565
566 /*
567 * If we're just mounting the root most subvol put the inode and return
568 * a reference to the dentry. We will have already gotten a reference
569 * to the inode in btrfs_fill_super so we're good to go.
570 */
571 if (!new && sb->s_root->d_inode == inode) {
572 iput(inode);
573 return dget(sb->s_root);
574 }
575
ba5b8958 576 return d_obtain_alias(inode);
73f73415
JB
577}
578
d397712b 579static int btrfs_fill_super(struct super_block *sb,
8a4b83cc 580 struct btrfs_fs_devices *fs_devices,
d397712b 581 void *data, int silent)
75dfe396 582{
d397712b
CM
583 struct inode *inode;
584 struct dentry *root_dentry;
39279cc3 585 struct btrfs_root *tree_root;
5d4f98a2 586 struct btrfs_key key;
39279cc3 587 int err;
a429e513 588
39279cc3
CM
589 sb->s_maxbytes = MAX_LFS_FILESIZE;
590 sb->s_magic = BTRFS_SUPER_MAGIC;
591 sb->s_op = &btrfs_super_ops;
af53d29a 592 sb->s_d_op = &btrfs_dentry_operations;
be6e8dc0 593 sb->s_export_op = &btrfs_export_ops;
5103e947 594 sb->s_xattr = btrfs_xattr_handlers;
39279cc3 595 sb->s_time_gran = 1;
0eda294d 596#ifdef CONFIG_BTRFS_FS_POSIX_ACL
33268eaf 597 sb->s_flags |= MS_POSIXACL;
49cf6f45 598#endif
a429e513 599
dfe25020 600 tree_root = open_ctree(sb, fs_devices, (char *)data);
6567e837 601
e58ca020 602 if (IS_ERR(tree_root)) {
39279cc3 603 printk("btrfs: open_ctree failed\n");
e58ca020 604 return PTR_ERR(tree_root);
a429e513 605 }
39279cc3 606 sb->s_fs_info = tree_root;
a429e513 607
5d4f98a2
YZ
608 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
609 key.type = BTRFS_INODE_ITEM_KEY;
610 key.offset = 0;
73f73415 611 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
5d4f98a2
YZ
612 if (IS_ERR(inode)) {
613 err = PTR_ERR(inode);
39279cc3 614 goto fail_close;
f254e52c 615 }
f254e52c 616
39279cc3
CM
617 root_dentry = d_alloc_root(inode);
618 if (!root_dentry) {
619 iput(inode);
620 err = -ENOMEM;
621 goto fail_close;
f254e52c 622 }
58176a96 623
39279cc3 624 sb->s_root = root_dentry;
6885f308 625
6885f308 626 save_mount_options(sb, data);
90a887c9 627 cleancache_init_fs(sb);
2619ba1f 628 return 0;
39279cc3
CM
629
630fail_close:
631 close_ctree(tree_root);
632 return err;
2619ba1f
CM
633}
634
6bf13c0c 635int btrfs_sync_fs(struct super_block *sb, int wait)
c5739bba
CM
636{
637 struct btrfs_trans_handle *trans;
dccae999 638 struct btrfs_root *root = btrfs_sb(sb);
c5739bba 639 int ret;
2619ba1f 640
1abe9b8a 641 trace_btrfs_sync_fs(wait);
642
39279cc3
CM
643 if (!wait) {
644 filemap_flush(root->fs_info->btree_inode->i_mapping);
645 return 0;
646 }
771ed689 647
24bbcf04
YZ
648 btrfs_start_delalloc_inodes(root, 0);
649 btrfs_wait_ordered_extents(root, 0, 0);
771ed689 650
a22285a6 651 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
652 if (IS_ERR(trans))
653 return PTR_ERR(trans);
c5739bba 654 ret = btrfs_commit_transaction(trans, root);
54aa1f4d 655 return ret;
2c90e5d6
CM
656}
657
a9572a15
EP
658static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
659{
660 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
661 struct btrfs_fs_info *info = root->fs_info;
200da64e 662 char *compress_type;
a9572a15
EP
663
664 if (btrfs_test_opt(root, DEGRADED))
665 seq_puts(seq, ",degraded");
666 if (btrfs_test_opt(root, NODATASUM))
667 seq_puts(seq, ",nodatasum");
668 if (btrfs_test_opt(root, NODATACOW))
669 seq_puts(seq, ",nodatacow");
670 if (btrfs_test_opt(root, NOBARRIER))
671 seq_puts(seq, ",nobarrier");
a9572a15 672 if (info->max_inline != 8192 * 1024)
21380931
JB
673 seq_printf(seq, ",max_inline=%llu",
674 (unsigned long long)info->max_inline);
a9572a15 675 if (info->alloc_start != 0)
21380931
JB
676 seq_printf(seq, ",alloc_start=%llu",
677 (unsigned long long)info->alloc_start);
a9572a15
EP
678 if (info->thread_pool_size != min_t(unsigned long,
679 num_online_cpus() + 2, 8))
680 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
200da64e
TI
681 if (btrfs_test_opt(root, COMPRESS)) {
682 if (info->compress_type == BTRFS_COMPRESS_ZLIB)
683 compress_type = "zlib";
684 else
685 compress_type = "lzo";
686 if (btrfs_test_opt(root, FORCE_COMPRESS))
687 seq_printf(seq, ",compress-force=%s", compress_type);
688 else
689 seq_printf(seq, ",compress=%s", compress_type);
690 }
c289811c
CM
691 if (btrfs_test_opt(root, NOSSD))
692 seq_puts(seq, ",nossd");
451d7585
CM
693 if (btrfs_test_opt(root, SSD_SPREAD))
694 seq_puts(seq, ",ssd_spread");
695 else if (btrfs_test_opt(root, SSD))
a9572a15 696 seq_puts(seq, ",ssd");
3a5e1404 697 if (btrfs_test_opt(root, NOTREELOG))
6b65c5c6 698 seq_puts(seq, ",notreelog");
dccae999 699 if (btrfs_test_opt(root, FLUSHONCOMMIT))
6b65c5c6 700 seq_puts(seq, ",flushoncommit");
20a5239a
MW
701 if (btrfs_test_opt(root, DISCARD))
702 seq_puts(seq, ",discard");
a9572a15
EP
703 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
704 seq_puts(seq, ",noacl");
200da64e
TI
705 if (btrfs_test_opt(root, SPACE_CACHE))
706 seq_puts(seq, ",space_cache");
73bc1876
JB
707 else
708 seq_puts(seq, ",no_space_cache");
200da64e
TI
709 if (btrfs_test_opt(root, CLEAR_CACHE))
710 seq_puts(seq, ",clear_cache");
711 if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
712 seq_puts(seq, ",user_subvol_rm_allowed");
0942caa3
DS
713 if (btrfs_test_opt(root, ENOSPC_DEBUG))
714 seq_puts(seq, ",enospc_debug");
715 if (btrfs_test_opt(root, AUTO_DEFRAG))
716 seq_puts(seq, ",autodefrag");
717 if (btrfs_test_opt(root, INODE_MAP_CACHE))
718 seq_puts(seq, ",inode_cache");
a9572a15
EP
719 return 0;
720}
721
a061fc8d 722static int btrfs_test_super(struct super_block *s, void *data)
4b82d6e4 723{
450ba0ea 724 struct btrfs_root *test_root = data;
a061fc8d 725 struct btrfs_root *root = btrfs_sb(s);
4b82d6e4 726
619c8c76
IK
727 /*
728 * If this super block is going away, return false as it
729 * can't match as an existing super block.
730 */
731 if (!atomic_read(&s->s_active))
732 return 0;
450ba0ea 733 return root->fs_info->fs_devices == test_root->fs_info->fs_devices;
4b82d6e4
Y
734}
735
450ba0ea
JB
736static int btrfs_set_super(struct super_block *s, void *data)
737{
738 s->s_fs_info = data;
739
740 return set_anon_super(s, data);
4b82d6e4
Y
741}
742
f9d9ef62
DS
743/*
744 * subvolumes are identified by ino 256
745 */
746static inline int is_subvolume_inode(struct inode *inode)
747{
748 if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
749 return 1;
750 return 0;
751}
752
830c4adb
JB
753/*
754 * This will strip out the subvol=%s argument for an argument string and add
755 * subvolid=0 to make sure we get the actual tree root for path walking to the
756 * subvol we want.
757 */
758static char *setup_root_args(char *args)
759{
760 unsigned copied = 0;
761 unsigned len = strlen(args) + 2;
762 char *pos;
763 char *ret;
764
765 /*
766 * We need the same args as before, but minus
767 *
768 * subvol=a
769 *
770 * and add
771 *
772 * subvolid=0
773 *
774 * which is a difference of 2 characters, so we allocate strlen(args) +
775 * 2 characters.
776 */
777 ret = kzalloc(len * sizeof(char), GFP_NOFS);
778 if (!ret)
779 return NULL;
780 pos = strstr(args, "subvol=");
781
782 /* This shouldn't happen, but just in case.. */
783 if (!pos) {
784 kfree(ret);
785 return NULL;
786 }
787
788 /*
789 * The subvol=<> arg is not at the front of the string, copy everybody
790 * up to that into ret.
791 */
792 if (pos != args) {
793 *pos = '\0';
794 strcpy(ret, args);
795 copied += strlen(args);
796 pos++;
797 }
798
799 strncpy(ret + copied, "subvolid=0", len - copied);
800
801 /* Length of subvolid=0 */
802 copied += 10;
803
804 /*
805 * If there is no , after the subvol= option then we know there's no
806 * other options and we can just return.
807 */
808 pos = strchr(pos, ',');
809 if (!pos)
810 return ret;
811
812 /* Copy the rest of the arguments into our buffer */
813 strncpy(ret + copied, pos, len - copied);
814 copied += strlen(pos);
815
816 return ret;
817}
818
819static struct dentry *mount_subvol(const char *subvol_name, int flags,
820 const char *device_name, char *data)
821{
822 struct super_block *s;
823 struct dentry *root;
824 struct vfsmount *mnt;
825 struct mnt_namespace *ns_private;
826 char *newargs;
827 struct path path;
828 int error;
829
830 newargs = setup_root_args(data);
831 if (!newargs)
832 return ERR_PTR(-ENOMEM);
833 mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
834 newargs);
835 kfree(newargs);
836 if (IS_ERR(mnt))
837 return ERR_CAST(mnt);
838
839 ns_private = create_mnt_ns(mnt);
840 if (IS_ERR(ns_private)) {
841 mntput(mnt);
842 return ERR_CAST(ns_private);
843 }
844
845 /*
846 * This will trigger the automount of the subvol so we can just
847 * drop the mnt we have here and return the dentry that we
848 * found.
849 */
850 error = vfs_path_lookup(mnt->mnt_root, mnt, subvol_name,
851 LOOKUP_FOLLOW, &path);
852 put_mnt_ns(ns_private);
853 if (error)
854 return ERR_PTR(error);
855
f9d9ef62
DS
856 if (!is_subvolume_inode(path.dentry->d_inode)) {
857 path_put(&path);
858 mntput(mnt);
859 error = -EINVAL;
860 printk(KERN_ERR "btrfs: '%s' is not a valid subvolume\n",
861 subvol_name);
862 return ERR_PTR(-EINVAL);
863 }
864
830c4adb
JB
865 /* Get a ref to the sb and the dentry we found and return it */
866 s = path.mnt->mnt_sb;
867 atomic_inc(&s->s_active);
868 root = dget(path.dentry);
869 path_put(&path);
870 down_write(&s->s_umount);
871
872 return root;
873}
450ba0ea 874
edf24abe
CH
875/*
876 * Find a superblock for the given device / mount point.
877 *
878 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
879 * for multiple device setup. Make sure to keep it in sync.
880 */
061dbc6b 881static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
306e16ce 882 const char *device_name, void *data)
4b82d6e4
Y
883{
884 struct block_device *bdev = NULL;
885 struct super_block *s;
886 struct dentry *root;
8a4b83cc 887 struct btrfs_fs_devices *fs_devices = NULL;
450ba0ea
JB
888 struct btrfs_root *tree_root = NULL;
889 struct btrfs_fs_info *fs_info = NULL;
97288f2c 890 fmode_t mode = FMODE_READ;
73f73415
JB
891 char *subvol_name = NULL;
892 u64 subvol_objectid = 0;
e15d0542 893 u64 subvol_rootid = 0;
4b82d6e4
Y
894 int error = 0;
895
97288f2c
CH
896 if (!(flags & MS_RDONLY))
897 mode |= FMODE_WRITE;
898
899 error = btrfs_parse_early_options(data, mode, fs_type,
73f73415 900 &subvol_name, &subvol_objectid,
e15d0542 901 &subvol_rootid, &fs_devices);
edf24abe 902 if (error)
061dbc6b 903 return ERR_PTR(error);
edf24abe 904
830c4adb
JB
905 if (subvol_name) {
906 root = mount_subvol(subvol_name, flags, device_name, data);
907 kfree(subvol_name);
908 return root;
909 }
910
306e16ce 911 error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
8a4b83cc 912 if (error)
830c4adb 913 return ERR_PTR(error);
4b82d6e4 914
97288f2c 915 error = btrfs_open_devices(fs_devices, mode, fs_type);
8a4b83cc 916 if (error)
830c4adb 917 return ERR_PTR(error);
8a4b83cc 918
2b82032c
YZ
919 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
920 error = -EACCES;
921 goto error_close_devices;
922 }
923
450ba0ea
JB
924 /*
925 * Setup a dummy root and fs_info for test/set super. This is because
926 * we don't actually fill this stuff out until open_ctree, but we need
927 * it for searching for existing supers, so this lets us do that and
928 * then open_ctree will properly initialize everything later.
929 */
930 fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
931 tree_root = kzalloc(sizeof(struct btrfs_root), GFP_NOFS);
932 if (!fs_info || !tree_root) {
933 error = -ENOMEM;
934 goto error_close_devices;
935 }
936 fs_info->tree_root = tree_root;
937 fs_info->fs_devices = fs_devices;
938 tree_root->fs_info = fs_info;
939
dfe25020 940 bdev = fs_devices->latest_bdev;
450ba0ea 941 s = sget(fs_type, btrfs_test_super, btrfs_set_super, tree_root);
830c4adb
JB
942 if (IS_ERR(s)) {
943 error = PTR_ERR(s);
944 goto error_close_devices;
945 }
4b82d6e4
Y
946
947 if (s->s_root) {
948 if ((flags ^ s->s_flags) & MS_RDONLY) {
6f5bbff9 949 deactivate_locked_super(s);
830c4adb 950 return ERR_PTR(-EBUSY);
4b82d6e4
Y
951 }
952
2b82032c 953 btrfs_close_devices(fs_devices);
bdc924bb
IK
954 kfree(fs_info);
955 kfree(tree_root);
4b82d6e4
Y
956 } else {
957 char b[BDEVNAME_SIZE];
958
9e1f1de0 959 s->s_flags = flags | MS_NOSEC;
4b82d6e4 960 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
5f524444 961 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
8a4b83cc
CM
962 error = btrfs_fill_super(s, fs_devices, data,
963 flags & MS_SILENT ? 1 : 0);
4b82d6e4 964 if (error) {
6f5bbff9 965 deactivate_locked_super(s);
830c4adb 966 return ERR_PTR(error);
4b82d6e4
Y
967 }
968
969 s->s_flags |= MS_ACTIVE;
970 }
971
830c4adb
JB
972 root = get_default_root(s, subvol_objectid);
973 if (IS_ERR(root)) {
974 deactivate_locked_super(s);
975 return root;
4b82d6e4
Y
976 }
977
061dbc6b 978 return root;
4b82d6e4 979
c146afad 980error_close_devices:
8a4b83cc 981 btrfs_close_devices(fs_devices);
450ba0ea
JB
982 kfree(fs_info);
983 kfree(tree_root);
061dbc6b 984 return ERR_PTR(error);
4b82d6e4 985}
2e635a27 986
c146afad
YZ
987static int btrfs_remount(struct super_block *sb, int *flags, char *data)
988{
989 struct btrfs_root *root = btrfs_sb(sb);
990 int ret;
991
b288052e
CM
992 ret = btrfs_parse_options(root, data);
993 if (ret)
994 return -EINVAL;
995
c146afad
YZ
996 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
997 return 0;
998
999 if (*flags & MS_RDONLY) {
1000 sb->s_flags |= MS_RDONLY;
1001
1002 ret = btrfs_commit_super(root);
1003 WARN_ON(ret);
1004 } else {
2b82032c
YZ
1005 if (root->fs_info->fs_devices->rw_devices == 0)
1006 return -EACCES;
1007
c146afad
YZ
1008 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
1009 return -EINVAL;
1010
d68fc57b 1011 ret = btrfs_cleanup_fs_roots(root->fs_info);
c146afad
YZ
1012 WARN_ON(ret);
1013
d68fc57b
YZ
1014 /* recover relocation */
1015 ret = btrfs_recover_relocation(root);
c146afad
YZ
1016 WARN_ON(ret);
1017
1018 sb->s_flags &= ~MS_RDONLY;
1019 }
1020
1021 return 0;
1022}
1023
bcd53741
AJ
1024/* Used to sort the devices by max_avail(descending sort) */
1025static int btrfs_cmp_device_free_bytes(const void *dev_info1,
1026 const void *dev_info2)
1027{
1028 if (((struct btrfs_device_info *)dev_info1)->max_avail >
1029 ((struct btrfs_device_info *)dev_info2)->max_avail)
1030 return -1;
1031 else if (((struct btrfs_device_info *)dev_info1)->max_avail <
1032 ((struct btrfs_device_info *)dev_info2)->max_avail)
1033 return 1;
1034 else
1035 return 0;
1036}
1037
1038/*
1039 * sort the devices by max_avail, in which max free extent size of each device
1040 * is stored.(Descending Sort)
1041 */
1042static inline void btrfs_descending_sort_devices(
1043 struct btrfs_device_info *devices,
1044 size_t nr_devices)
1045{
1046 sort(devices, nr_devices, sizeof(struct btrfs_device_info),
1047 btrfs_cmp_device_free_bytes, NULL);
1048}
1049
6d07bcec
MX
1050/*
1051 * The helper to calc the free space on the devices that can be used to store
1052 * file data.
1053 */
1054static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
1055{
1056 struct btrfs_fs_info *fs_info = root->fs_info;
1057 struct btrfs_device_info *devices_info;
1058 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
1059 struct btrfs_device *device;
1060 u64 skip_space;
1061 u64 type;
1062 u64 avail_space;
1063 u64 used_space;
1064 u64 min_stripe_size;
1065 int min_stripes = 1;
1066 int i = 0, nr_devices;
1067 int ret;
1068
1069 nr_devices = fs_info->fs_devices->rw_devices;
1070 BUG_ON(!nr_devices);
1071
1072 devices_info = kmalloc(sizeof(*devices_info) * nr_devices,
1073 GFP_NOFS);
1074 if (!devices_info)
1075 return -ENOMEM;
1076
1077 /* calc min stripe number for data space alloction */
1078 type = btrfs_get_alloc_profile(root, 1);
1079 if (type & BTRFS_BLOCK_GROUP_RAID0)
1080 min_stripes = 2;
1081 else if (type & BTRFS_BLOCK_GROUP_RAID1)
1082 min_stripes = 2;
1083 else if (type & BTRFS_BLOCK_GROUP_RAID10)
1084 min_stripes = 4;
1085
1086 if (type & BTRFS_BLOCK_GROUP_DUP)
1087 min_stripe_size = 2 * BTRFS_STRIPE_LEN;
1088 else
1089 min_stripe_size = BTRFS_STRIPE_LEN;
1090
1091 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
1092 if (!device->in_fs_metadata)
1093 continue;
1094
1095 avail_space = device->total_bytes - device->bytes_used;
1096
1097 /* align with stripe_len */
1098 do_div(avail_space, BTRFS_STRIPE_LEN);
1099 avail_space *= BTRFS_STRIPE_LEN;
1100
1101 /*
1102 * In order to avoid overwritting the superblock on the drive,
1103 * btrfs starts at an offset of at least 1MB when doing chunk
1104 * allocation.
1105 */
1106 skip_space = 1024 * 1024;
1107
1108 /* user can set the offset in fs_info->alloc_start. */
1109 if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
1110 device->total_bytes)
1111 skip_space = max(fs_info->alloc_start, skip_space);
1112
1113 /*
1114 * btrfs can not use the free space in [0, skip_space - 1],
1115 * we must subtract it from the total. In order to implement
1116 * it, we account the used space in this range first.
1117 */
1118 ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
1119 &used_space);
1120 if (ret) {
1121 kfree(devices_info);
1122 return ret;
1123 }
1124
1125 /* calc the free space in [0, skip_space - 1] */
1126 skip_space -= used_space;
1127
1128 /*
1129 * we can use the free space in [0, skip_space - 1], subtract
1130 * it from the total.
1131 */
1132 if (avail_space && avail_space >= skip_space)
1133 avail_space -= skip_space;
1134 else
1135 avail_space = 0;
1136
1137 if (avail_space < min_stripe_size)
1138 continue;
1139
1140 devices_info[i].dev = device;
1141 devices_info[i].max_avail = avail_space;
1142
1143 i++;
1144 }
1145
1146 nr_devices = i;
1147
1148 btrfs_descending_sort_devices(devices_info, nr_devices);
1149
1150 i = nr_devices - 1;
1151 avail_space = 0;
1152 while (nr_devices >= min_stripes) {
1153 if (devices_info[i].max_avail >= min_stripe_size) {
1154 int j;
1155 u64 alloc_size;
1156
1157 avail_space += devices_info[i].max_avail * min_stripes;
1158 alloc_size = devices_info[i].max_avail;
1159 for (j = i + 1 - min_stripes; j <= i; j++)
1160 devices_info[j].max_avail -= alloc_size;
1161 }
1162 i--;
1163 nr_devices--;
1164 }
1165
1166 kfree(devices_info);
1167 *free_bytes = avail_space;
1168 return 0;
1169}
1170
8fd17795
CM
1171static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1172{
1173 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
4b52dff6 1174 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
bd4d1088
JB
1175 struct list_head *head = &root->fs_info->space_info;
1176 struct btrfs_space_info *found;
1177 u64 total_used = 0;
6d07bcec 1178 u64 total_free_data = 0;
db94535d 1179 int bits = dentry->d_sb->s_blocksize_bits;
9d03632e 1180 __be32 *fsid = (__be32 *)root->fs_info->fsid;
6d07bcec 1181 int ret;
8fd17795 1182
6d07bcec
MX
1183 /* holding chunk_muext to avoid allocating new chunks */
1184 mutex_lock(&root->fs_info->chunk_mutex);
bd4d1088 1185 rcu_read_lock();
89a55897 1186 list_for_each_entry_rcu(found, head, list) {
6d07bcec
MX
1187 if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
1188 total_free_data += found->disk_total - found->disk_used;
1189 total_free_data -=
1190 btrfs_account_ro_block_groups_free_space(found);
1191 }
1192
b742bb82 1193 total_used += found->disk_used;
89a55897 1194 }
bd4d1088
JB
1195 rcu_read_unlock();
1196
8fd17795 1197 buf->f_namelen = BTRFS_NAME_LEN;
db94535d 1198 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
bd4d1088 1199 buf->f_bfree = buf->f_blocks - (total_used >> bits);
8fd17795
CM
1200 buf->f_bsize = dentry->d_sb->s_blocksize;
1201 buf->f_type = BTRFS_SUPER_MAGIC;
6d07bcec
MX
1202 buf->f_bavail = total_free_data;
1203 ret = btrfs_calc_avail_data_space(root, &total_free_data);
1204 if (ret) {
1205 mutex_unlock(&root->fs_info->chunk_mutex);
1206 return ret;
1207 }
1208 buf->f_bavail += total_free_data;
1209 buf->f_bavail = buf->f_bavail >> bits;
1210 mutex_unlock(&root->fs_info->chunk_mutex);
d397712b 1211
9d03632e 1212 /* We treat it as constant endianness (it doesn't matter _which_)
d397712b 1213 because we want the fsid to come out the same whether mounted
9d03632e
DW
1214 on a big-endian or little-endian host */
1215 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
1216 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
32d48fa1
DW
1217 /* Mask in the root object ID too, to disambiguate subvols */
1218 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
1219 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
1220
8fd17795
CM
1221 return 0;
1222}
b5133862 1223
2e635a27
CM
1224static struct file_system_type btrfs_fs_type = {
1225 .owner = THIS_MODULE,
1226 .name = "btrfs",
061dbc6b 1227 .mount = btrfs_mount,
a061fc8d 1228 .kill_sb = kill_anon_super,
2e635a27
CM
1229 .fs_flags = FS_REQUIRES_DEV,
1230};
a9218f6b 1231
d352ac68
CM
1232/*
1233 * used by btrfsctl to scan devices when no FS is mounted
1234 */
8a4b83cc
CM
1235static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
1236 unsigned long arg)
1237{
1238 struct btrfs_ioctl_vol_args *vol;
1239 struct btrfs_fs_devices *fs_devices;
c071fcfd 1240 int ret = -ENOTTY;
8a4b83cc 1241
e441d54d
CM
1242 if (!capable(CAP_SYS_ADMIN))
1243 return -EPERM;
1244
dae7b665
LZ
1245 vol = memdup_user((void __user *)arg, sizeof(*vol));
1246 if (IS_ERR(vol))
1247 return PTR_ERR(vol);
c071fcfd 1248
8a4b83cc
CM
1249 switch (cmd) {
1250 case BTRFS_IOC_SCAN_DEV:
97288f2c 1251 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
8a4b83cc
CM
1252 &btrfs_fs_type, &fs_devices);
1253 break;
1254 }
dae7b665 1255
8a4b83cc 1256 kfree(vol);
f819d837 1257 return ret;
8a4b83cc
CM
1258}
1259
0176260f 1260static int btrfs_freeze(struct super_block *sb)
ed0dab6b
Y
1261{
1262 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
1263 mutex_lock(&root->fs_info->transaction_kthread_mutex);
1264 mutex_lock(&root->fs_info->cleaner_mutex);
0176260f 1265 return 0;
ed0dab6b
Y
1266}
1267
0176260f 1268static int btrfs_unfreeze(struct super_block *sb)
ed0dab6b
Y
1269{
1270 struct btrfs_root *root = btrfs_sb(sb);
a74a4b97
CM
1271 mutex_unlock(&root->fs_info->cleaner_mutex);
1272 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
0176260f 1273 return 0;
ed0dab6b 1274}
2e635a27 1275
b87221de 1276static const struct super_operations btrfs_super_ops = {
76dda93c 1277 .drop_inode = btrfs_drop_inode,
bd555975 1278 .evict_inode = btrfs_evict_inode,
e20d96d6 1279 .put_super = btrfs_put_super,
d5719762 1280 .sync_fs = btrfs_sync_fs,
a9572a15 1281 .show_options = btrfs_show_options,
4730a4bc 1282 .write_inode = btrfs_write_inode,
b5133862 1283 .dirty_inode = btrfs_dirty_inode,
2c90e5d6
CM
1284 .alloc_inode = btrfs_alloc_inode,
1285 .destroy_inode = btrfs_destroy_inode,
8fd17795 1286 .statfs = btrfs_statfs,
c146afad 1287 .remount_fs = btrfs_remount,
0176260f
LT
1288 .freeze_fs = btrfs_freeze,
1289 .unfreeze_fs = btrfs_unfreeze,
e20d96d6 1290};
a9218f6b
CM
1291
1292static const struct file_operations btrfs_ctl_fops = {
1293 .unlocked_ioctl = btrfs_control_ioctl,
1294 .compat_ioctl = btrfs_control_ioctl,
1295 .owner = THIS_MODULE,
6038f373 1296 .llseek = noop_llseek,
a9218f6b
CM
1297};
1298
1299static struct miscdevice btrfs_misc = {
578454ff 1300 .minor = BTRFS_MINOR,
a9218f6b
CM
1301 .name = "btrfs-control",
1302 .fops = &btrfs_ctl_fops
1303};
1304
578454ff
KS
1305MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
1306MODULE_ALIAS("devname:btrfs-control");
1307
a9218f6b
CM
1308static int btrfs_interface_init(void)
1309{
1310 return misc_register(&btrfs_misc);
1311}
1312
b2950863 1313static void btrfs_interface_exit(void)
a9218f6b
CM
1314{
1315 if (misc_deregister(&btrfs_misc) < 0)
d397712b 1316 printk(KERN_INFO "misc_deregister failed for control device");
a9218f6b
CM
1317}
1318
2e635a27
CM
1319static int __init init_btrfs_fs(void)
1320{
2c90e5d6 1321 int err;
58176a96
JB
1322
1323 err = btrfs_init_sysfs();
1324 if (err)
1325 return err;
1326
261507a0 1327 err = btrfs_init_compress();
2c90e5d6 1328 if (err)
a74a4b97 1329 goto free_sysfs;
d1310b2e 1330
261507a0
LZ
1331 err = btrfs_init_cachep();
1332 if (err)
1333 goto free_compress;
1334
d1310b2e 1335 err = extent_io_init();
2f4cbe64
WB
1336 if (err)
1337 goto free_cachep;
1338
d1310b2e
CM
1339 err = extent_map_init();
1340 if (err)
1341 goto free_extent_io;
1342
16cdcec7 1343 err = btrfs_delayed_inode_init();
2f4cbe64
WB
1344 if (err)
1345 goto free_extent_map;
c8b97818 1346
16cdcec7
MX
1347 err = btrfs_interface_init();
1348 if (err)
1349 goto free_delayed_inode;
1350
a9218f6b
CM
1351 err = register_filesystem(&btrfs_fs_type);
1352 if (err)
1353 goto unregister_ioctl;
b3c3da71
CM
1354
1355 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
2f4cbe64
WB
1356 return 0;
1357
a9218f6b
CM
1358unregister_ioctl:
1359 btrfs_interface_exit();
16cdcec7
MX
1360free_delayed_inode:
1361 btrfs_delayed_inode_exit();
2f4cbe64
WB
1362free_extent_map:
1363 extent_map_exit();
d1310b2e
CM
1364free_extent_io:
1365 extent_io_exit();
2f4cbe64
WB
1366free_cachep:
1367 btrfs_destroy_cachep();
261507a0
LZ
1368free_compress:
1369 btrfs_exit_compress();
a74a4b97 1370free_sysfs:
2f4cbe64
WB
1371 btrfs_exit_sysfs();
1372 return err;
2e635a27
CM
1373}
1374
1375static void __exit exit_btrfs_fs(void)
1376{
39279cc3 1377 btrfs_destroy_cachep();
16cdcec7 1378 btrfs_delayed_inode_exit();
a52d9a80 1379 extent_map_exit();
d1310b2e 1380 extent_io_exit();
a9218f6b 1381 btrfs_interface_exit();
2e635a27 1382 unregister_filesystem(&btrfs_fs_type);
58176a96 1383 btrfs_exit_sysfs();
8a4b83cc 1384 btrfs_cleanup_fs_uuids();
261507a0 1385 btrfs_exit_compress();
2e635a27
CM
1386}
1387
1388module_init(init_btrfs_fs)
1389module_exit(exit_btrfs_fs)
1390
1391MODULE_LICENSE("GPL");
This page took 0.435845 seconds and 5 git commands to generate.