blob: f878337cee6f753eba0faa6eccd82dd431d6be88 [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>
Eric Parisa9572a12009-04-02 16:46:06 -040027#include <linux/seq_file.h>
Chris Mason2e635a22007-03-21 11:12:56 -040028#include <linux/string.h>
Chris Mason2e635a22007-03-21 11:12:56 -040029#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>
Qinghuang Feng1bcbf312009-01-15 13:51:03 -080040#include <linux/magic.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050041#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
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070054static const struct super_operations btrfs_super_ops;
Chris Masone20d96d2007-03-22 12:13:20 -040055
Chris Masond3977122009-01-05 21:25:51 -050056static void btrfs_put_super(struct super_block *sb)
Chris Masone20d96d2007-03-22 12:13:20 -040057{
58 struct btrfs_root *root = btrfs_sb(sb);
59 int ret;
60
61 ret = close_ctree(root);
Chris Masone20d96d2007-03-22 12:13:20 -040062 sb->s_fs_info = NULL;
63}
Chris Mason2e635a22007-03-21 11:12:56 -040064
Chris Mason95e05282007-08-29 09:11:44 -040065enum {
Josef Bacik73f73412009-12-04 17:38:27 +000066 Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
67 Opt_nodatacow, Opt_max_extent, Opt_max_inline, Opt_alloc_start,
68 Opt_nobarrier, Opt_ssd, Opt_nossd, Opt_ssd_spread, Opt_thread_pool,
69 Opt_noacl, Opt_compress, Opt_compress_force, Opt_notreelog, Opt_ratio,
Chris Masona555f812010-01-28 16:18:15 -050070 Opt_flushoncommit,
Christoph Hellwige244a0a2009-10-14 09:24:59 -040071 Opt_discard, Opt_err,
Chris Mason95e05282007-08-29 09:11:44 -040072};
73
74static match_table_t tokens = {
Chris Masondfe25022008-05-13 13:46:40 -040075 {Opt_degraded, "degraded"},
Chris Mason95e05282007-08-29 09:11:44 -040076 {Opt_subvol, "subvol=%s"},
Josef Bacik73f73412009-12-04 17:38:27 +000077 {Opt_subvolid, "subvolid=%d"},
Christoph Hellwig43e570b2008-06-10 10:40:46 -040078 {Opt_device, "device=%s"},
Chris Masonb6cda9b2007-12-14 15:30:32 -050079 {Opt_nodatasum, "nodatasum"},
Chris Masonbe20aa92007-12-17 20:14:01 -050080 {Opt_nodatacow, "nodatacow"},
Chris Mason21ad10c2008-01-09 09:23:21 -050081 {Opt_nobarrier, "nobarrier"},
Chris Masonc59f8952007-12-17 20:14:04 -050082 {Opt_max_extent, "max_extent=%s"},
Chris Mason6f568d32008-01-29 16:03:38 -050083 {Opt_max_inline, "max_inline=%s"},
Chris Mason8f662a72008-01-02 10:01:11 -050084 {Opt_alloc_start, "alloc_start=%s"},
Chris Mason4543df72008-06-11 21:47:56 -040085 {Opt_thread_pool, "thread_pool=%d"},
Chris Masonc8b97812008-10-29 14:49:59 -040086 {Opt_compress, "compress"},
Chris Masona555f812010-01-28 16:18:15 -050087 {Opt_compress_force, "compress-force"},
Chris Masone18e4802008-01-18 10:54:22 -050088 {Opt_ssd, "ssd"},
Chris Mason451d7582009-06-09 20:28:34 -040089 {Opt_ssd_spread, "ssd_spread"},
Chris Mason3b30c222009-06-09 16:42:22 -040090 {Opt_nossd, "nossd"},
Josef Bacik33268ea2008-07-24 12:16:36 -040091 {Opt_noacl, "noacl"},
Sage Weil3a5e1402009-04-02 16:49:40 -040092 {Opt_notreelog, "notreelog"},
Sage Weildccae992009-04-02 16:59:01 -040093 {Opt_flushoncommit, "flushoncommit"},
Josef Bacik97e728d2009-04-21 17:40:57 -040094 {Opt_ratio, "metadata_ratio=%d"},
Christoph Hellwige244a0a2009-10-14 09:24:59 -040095 {Opt_discard, "discard"},
Josef Bacik33268ea2008-07-24 12:16:36 -040096 {Opt_err, NULL},
Chris Mason95e05282007-08-29 09:11:44 -040097};
98
Chris Masonedbd8d42007-12-21 16:27:24 -050099u64 btrfs_parse_size(char *str)
Chris Masonc59f8952007-12-17 20:14:04 -0500100{
Chris Masonedbd8d42007-12-21 16:27:24 -0500101 u64 res;
Chris Masonc59f8952007-12-17 20:14:04 -0500102 int mult = 1;
103 char *end;
104 char last;
105
106 res = simple_strtoul(str, &end, 10);
107
108 last = end[0];
109 if (isalpha(last)) {
110 last = tolower(last);
111 switch (last) {
112 case 'g':
113 mult *= 1024;
114 case 'm':
115 mult *= 1024;
116 case 'k':
117 mult *= 1024;
118 }
119 res = res * mult;
120 }
121 return res;
122}
123
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400124/*
125 * Regular mount options parser. Everything that is needed only when
126 * reading in a new superblock is parsed here.
127 */
128int btrfs_parse_options(struct btrfs_root *root, char *options)
Chris Mason95e05282007-08-29 09:11:44 -0400129{
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400130 struct btrfs_fs_info *info = root->fs_info;
Chris Mason95e05282007-08-29 09:11:44 -0400131 substring_t args[MAX_OPT_ARGS];
Josef Bacikda495ec2010-02-25 20:38:35 +0000132 char *p, *num, *orig;
Chris Mason4543df72008-06-11 21:47:56 -0400133 int intarg;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000134 int ret = 0;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500135
Chris Mason95e05282007-08-29 09:11:44 -0400136 if (!options)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400137 return 0;
Chris Mason95e05282007-08-29 09:11:44 -0400138
Chris Masonbe20aa92007-12-17 20:14:01 -0500139 /*
140 * strsep changes the string, duplicate it because parse_options
141 * gets called twice
142 */
143 options = kstrdup(options, GFP_NOFS);
144 if (!options)
145 return -ENOMEM;
146
Josef Bacikda495ec2010-02-25 20:38:35 +0000147 orig = options;
Chris Masonbe20aa92007-12-17 20:14:01 -0500148
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400149 while ((p = strsep(&options, ",")) != NULL) {
Chris Mason95e05282007-08-29 09:11:44 -0400150 int token;
151 if (!*p)
152 continue;
153
154 token = match_token(p, tokens, args);
155 switch (token) {
Chris Masondfe25022008-05-13 13:46:40 -0400156 case Opt_degraded:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400157 printk(KERN_INFO "btrfs: allowing degraded mounts\n");
158 btrfs_set_opt(info->mount_opt, DEGRADED);
Chris Masondfe25022008-05-13 13:46:40 -0400159 break;
Chris Mason95e05282007-08-29 09:11:44 -0400160 case Opt_subvol:
Josef Bacik73f73412009-12-04 17:38:27 +0000161 case Opt_subvolid:
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400162 case Opt_device:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400163 /*
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400164 * These are parsed by btrfs_parse_early_options
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400165 * and can be happily ignored here.
166 */
Chris Masonb6cda9b2007-12-14 15:30:32 -0500167 break;
168 case Opt_nodatasum:
Chris Mason067c28a2009-06-11 09:30:13 -0400169 printk(KERN_INFO "btrfs: setting nodatasum\n");
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400170 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Masonbe20aa92007-12-17 20:14:01 -0500171 break;
172 case Opt_nodatacow:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400173 printk(KERN_INFO "btrfs: setting nodatacow\n");
174 btrfs_set_opt(info->mount_opt, NODATACOW);
175 btrfs_set_opt(info->mount_opt, NODATASUM);
Chris Mason95e05282007-08-29 09:11:44 -0400176 break;
Chris Masonc8b97812008-10-29 14:49:59 -0400177 case Opt_compress:
178 printk(KERN_INFO "btrfs: use compression\n");
179 btrfs_set_opt(info->mount_opt, COMPRESS);
180 break;
Chris Masona555f812010-01-28 16:18:15 -0500181 case Opt_compress_force:
182 printk(KERN_INFO "btrfs: forcing compression\n");
183 btrfs_set_opt(info->mount_opt, FORCE_COMPRESS);
184 btrfs_set_opt(info->mount_opt, COMPRESS);
185 break;
Chris Masone18e4802008-01-18 10:54:22 -0500186 case Opt_ssd:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400187 printk(KERN_INFO "btrfs: use ssd allocation scheme\n");
188 btrfs_set_opt(info->mount_opt, SSD);
Chris Masone18e4802008-01-18 10:54:22 -0500189 break;
Chris Mason451d7582009-06-09 20:28:34 -0400190 case Opt_ssd_spread:
191 printk(KERN_INFO "btrfs: use spread ssd "
192 "allocation scheme\n");
193 btrfs_set_opt(info->mount_opt, SSD);
194 btrfs_set_opt(info->mount_opt, SSD_SPREAD);
195 break;
Chris Mason3b30c222009-06-09 16:42:22 -0400196 case Opt_nossd:
Chris Mason451d7582009-06-09 20:28:34 -0400197 printk(KERN_INFO "btrfs: not using ssd allocation "
198 "scheme\n");
Chris Masonc2898112009-06-10 09:51:32 -0400199 btrfs_set_opt(info->mount_opt, NOSSD);
Chris Mason3b30c222009-06-09 16:42:22 -0400200 btrfs_clear_opt(info->mount_opt, SSD);
Chris Mason451d7582009-06-09 20:28:34 -0400201 btrfs_clear_opt(info->mount_opt, SSD_SPREAD);
Chris Mason3b30c222009-06-09 16:42:22 -0400202 break;
Chris Mason21ad10c2008-01-09 09:23:21 -0500203 case Opt_nobarrier:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400204 printk(KERN_INFO "btrfs: turning off barriers\n");
205 btrfs_set_opt(info->mount_opt, NOBARRIER);
Chris Mason21ad10c2008-01-09 09:23:21 -0500206 break;
Chris Mason4543df72008-06-11 21:47:56 -0400207 case Opt_thread_pool:
208 intarg = 0;
209 match_int(&args[0], &intarg);
210 if (intarg) {
211 info->thread_pool_size = intarg;
212 printk(KERN_INFO "btrfs: thread pool %d\n",
213 info->thread_pool_size);
214 }
215 break;
Chris Masonc59f8952007-12-17 20:14:04 -0500216 case Opt_max_extent:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400217 num = match_strdup(&args[0]);
218 if (num) {
219 info->max_extent = btrfs_parse_size(num);
220 kfree(num);
Chris Masonc59f8952007-12-17 20:14:04 -0500221
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400222 info->max_extent = max_t(u64,
223 info->max_extent, root->sectorsize);
224 printk(KERN_INFO "btrfs: max_extent at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700225 (unsigned long long)info->max_extent);
Chris Masonc59f8952007-12-17 20:14:04 -0500226 }
227 break;
Chris Mason6f568d32008-01-29 16:03:38 -0500228 case Opt_max_inline:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400229 num = match_strdup(&args[0]);
230 if (num) {
231 info->max_inline = btrfs_parse_size(num);
232 kfree(num);
Chris Mason6f568d32008-01-29 16:03:38 -0500233
Chris Mason15ada042008-06-11 16:51:38 -0400234 if (info->max_inline) {
235 info->max_inline = max_t(u64,
236 info->max_inline,
237 root->sectorsize);
238 }
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400239 printk(KERN_INFO "btrfs: max_inline at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700240 (unsigned long long)info->max_inline);
Chris Mason6f568d32008-01-29 16:03:38 -0500241 }
242 break;
Chris Mason8f662a72008-01-02 10:01:11 -0500243 case Opt_alloc_start:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400244 num = match_strdup(&args[0]);
245 if (num) {
246 info->alloc_start = btrfs_parse_size(num);
247 kfree(num);
248 printk(KERN_INFO
249 "btrfs: allocations start at %llu\n",
Joel Becker21380932009-04-21 12:38:29 -0700250 (unsigned long long)info->alloc_start);
Chris Mason8f662a72008-01-02 10:01:11 -0500251 }
252 break;
Josef Bacik33268ea2008-07-24 12:16:36 -0400253 case Opt_noacl:
254 root->fs_info->sb->s_flags &= ~MS_POSIXACL;
255 break;
Sage Weil3a5e1402009-04-02 16:49:40 -0400256 case Opt_notreelog:
257 printk(KERN_INFO "btrfs: disabling tree log\n");
258 btrfs_set_opt(info->mount_opt, NOTREELOG);
259 break;
Sage Weildccae992009-04-02 16:59:01 -0400260 case Opt_flushoncommit:
261 printk(KERN_INFO "btrfs: turning on flush-on-commit\n");
262 btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT);
263 break;
Josef Bacik97e728d2009-04-21 17:40:57 -0400264 case Opt_ratio:
265 intarg = 0;
266 match_int(&args[0], &intarg);
267 if (intarg) {
268 info->metadata_ratio = intarg;
269 printk(KERN_INFO "btrfs: metadata ratio %d\n",
270 info->metadata_ratio);
271 }
272 break;
Christoph Hellwige244a0a2009-10-14 09:24:59 -0400273 case Opt_discard:
274 btrfs_set_opt(info->mount_opt, DISCARD);
275 break;
Sage Weila7a3f7c2009-11-07 06:19:16 +0000276 case Opt_err:
277 printk(KERN_INFO "btrfs: unrecognized mount option "
278 "'%s'\n", p);
279 ret = -EINVAL;
280 goto out;
Chris Mason95e05282007-08-29 09:11:44 -0400281 default:
Chris Masonbe20aa92007-12-17 20:14:01 -0500282 break;
Chris Mason95e05282007-08-29 09:11:44 -0400283 }
284 }
Sage Weila7a3f7c2009-11-07 06:19:16 +0000285out:
Josef Bacikda495ec2010-02-25 20:38:35 +0000286 kfree(orig);
Sage Weila7a3f7c2009-11-07 06:19:16 +0000287 return ret;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400288}
289
290/*
291 * Parse mount options that are required early in the mount process.
292 *
293 * All other options will be parsed on much later in the mount process and
294 * only when we need to allocate a new super block.
295 */
Christoph Hellwig97288f22008-12-02 06:36:09 -0500296static int btrfs_parse_early_options(const char *options, fmode_t flags,
Josef Bacik73f73412009-12-04 17:38:27 +0000297 void *holder, char **subvol_name, u64 *subvol_objectid,
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400298 struct btrfs_fs_devices **fs_devices)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400299{
300 substring_t args[MAX_OPT_ARGS];
301 char *opts, *p;
302 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000303 int intarg;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400304
305 if (!options)
306 goto out;
307
308 /*
309 * strsep changes the string, duplicate it because parse_options
310 * gets called twice
311 */
312 opts = kstrdup(options, GFP_KERNEL);
313 if (!opts)
314 return -ENOMEM;
315
316 while ((p = strsep(&opts, ",")) != NULL) {
317 int token;
318 if (!*p)
319 continue;
320
321 token = match_token(p, tokens, args);
322 switch (token) {
323 case Opt_subvol:
324 *subvol_name = match_strdup(&args[0]);
325 break;
Josef Bacik73f73412009-12-04 17:38:27 +0000326 case Opt_subvolid:
327 intarg = 0;
328 match_int(&args[0], &intarg);
329 if (intarg)
330 *subvol_objectid = intarg;
331 break;
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400332 case Opt_device:
333 error = btrfs_scan_one_device(match_strdup(&args[0]),
334 flags, holder, fs_devices);
335 if (error)
336 goto out_free_opts;
337 break;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400338 default:
339 break;
340 }
341 }
342
Christoph Hellwig43e570b2008-06-10 10:40:46 -0400343 out_free_opts:
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400344 kfree(opts);
345 out:
346 /*
347 * If no subvolume name is specified we use the default one. Allocate
Chris Mason3de45862008-11-17 21:02:50 -0500348 * a copy of the string "." here so that code later in the
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400349 * mount path doesn't care if it's the default volume or another one.
350 */
351 if (!*subvol_name) {
Chris Mason3de45862008-11-17 21:02:50 -0500352 *subvol_name = kstrdup(".", GFP_KERNEL);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400353 if (!*subvol_name)
354 return -ENOMEM;
355 }
356 return error;
Chris Mason95e05282007-08-29 09:11:44 -0400357}
358
Josef Bacik73f73412009-12-04 17:38:27 +0000359static struct dentry *get_default_root(struct super_block *sb,
360 u64 subvol_objectid)
361{
362 struct btrfs_root *root = sb->s_fs_info;
363 struct btrfs_root *new_root;
364 struct btrfs_dir_item *di;
365 struct btrfs_path *path;
366 struct btrfs_key location;
367 struct inode *inode;
368 struct dentry *dentry;
369 u64 dir_id;
370 int new = 0;
371
372 /*
373 * We have a specific subvol we want to mount, just setup location and
374 * go look up the root.
375 */
376 if (subvol_objectid) {
377 location.objectid = subvol_objectid;
378 location.type = BTRFS_ROOT_ITEM_KEY;
379 location.offset = (u64)-1;
380 goto find_root;
381 }
382
383 path = btrfs_alloc_path();
384 if (!path)
385 return ERR_PTR(-ENOMEM);
386 path->leave_spinning = 1;
387
388 /*
389 * Find the "default" dir item which points to the root item that we
390 * will mount by default if we haven't been given a specific subvolume
391 * to mount.
392 */
393 dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
394 di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
395 if (!di) {
396 /*
397 * Ok the default dir item isn't there. This is weird since
398 * it's always been there, but don't freak out, just try and
399 * mount to root most subvolume.
400 */
401 btrfs_free_path(path);
402 dir_id = BTRFS_FIRST_FREE_OBJECTID;
403 new_root = root->fs_info->fs_root;
404 goto setup_root;
405 }
406
407 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
408 btrfs_free_path(path);
409
410find_root:
411 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
412 if (IS_ERR(new_root))
413 return ERR_PTR(PTR_ERR(new_root));
414
415 if (btrfs_root_refs(&new_root->root_item) == 0)
416 return ERR_PTR(-ENOENT);
417
418 dir_id = btrfs_root_dirid(&new_root->root_item);
419setup_root:
420 location.objectid = dir_id;
421 location.type = BTRFS_INODE_ITEM_KEY;
422 location.offset = 0;
423
424 inode = btrfs_iget(sb, &location, new_root, &new);
425 if (!inode)
426 return ERR_PTR(-ENOMEM);
427
428 /*
429 * If we're just mounting the root most subvol put the inode and return
430 * a reference to the dentry. We will have already gotten a reference
431 * to the inode in btrfs_fill_super so we're good to go.
432 */
433 if (!new && sb->s_root->d_inode == inode) {
434 iput(inode);
435 return dget(sb->s_root);
436 }
437
438 if (new) {
439 const struct qstr name = { .name = "/", .len = 1 };
440
441 /*
442 * New inode, we need to make the dentry a sibling of s_root so
443 * everything gets cleaned up properly on unmount.
444 */
445 dentry = d_alloc(sb->s_root, &name);
446 if (!dentry) {
447 iput(inode);
448 return ERR_PTR(-ENOMEM);
449 }
450 d_splice_alias(inode, dentry);
451 } else {
452 /*
453 * We found the inode in cache, just find a dentry for it and
454 * put the reference to the inode we just got.
455 */
456 dentry = d_find_alias(inode);
457 iput(inode);
458 }
459
460 return dentry;
461}
462
Chris Masond3977122009-01-05 21:25:51 -0500463static int btrfs_fill_super(struct super_block *sb,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400464 struct btrfs_fs_devices *fs_devices,
Chris Masond3977122009-01-05 21:25:51 -0500465 void *data, int silent)
Chris Mason2e635a22007-03-21 11:12:56 -0400466{
Chris Masond3977122009-01-05 21:25:51 -0500467 struct inode *inode;
468 struct dentry *root_dentry;
Chris Masone20d96d2007-03-22 12:13:20 -0400469 struct btrfs_super_block *disk_super;
Chris Mason0f7d52f2007-04-09 10:42:37 -0400470 struct btrfs_root *tree_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400471 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400472 int err;
Chris Mason2e635a22007-03-21 11:12:56 -0400473
474 sb->s_maxbytes = MAX_LFS_FILESIZE;
Chris Mason2e635a22007-03-21 11:12:56 -0400475 sb->s_magic = BTRFS_SUPER_MAGIC;
Chris Masone20d96d2007-03-22 12:13:20 -0400476 sb->s_op = &btrfs_super_ops;
Balaji Raobe6e8dc2008-07-21 02:01:56 +0530477 sb->s_export_op = &btrfs_export_ops;
Josef Bacik5103e942007-11-16 11:45:54 -0500478 sb->s_xattr = btrfs_xattr_handlers;
Chris Mason2e635a22007-03-21 11:12:56 -0400479 sb->s_time_gran = 1;
Chris Mason0eda2942009-10-13 13:50:18 -0400480#ifdef CONFIG_BTRFS_FS_POSIX_ACL
Josef Bacik33268ea2008-07-24 12:16:36 -0400481 sb->s_flags |= MS_POSIXACL;
Chris Ball49cf6f42009-09-29 13:51:04 -0400482#endif
Chris Masone20d96d2007-03-22 12:13:20 -0400483
Chris Masondfe25022008-05-13 13:46:40 -0400484 tree_root = open_ctree(sb, fs_devices, (char *)data);
Chris Masond98237b2007-03-28 13:57:48 -0400485
Yane58ca022008-04-01 11:21:34 -0400486 if (IS_ERR(tree_root)) {
Chris Masone20d96d2007-03-22 12:13:20 -0400487 printk("btrfs: open_ctree failed\n");
Yane58ca022008-04-01 11:21:34 -0400488 return PTR_ERR(tree_root);
Chris Masone20d96d2007-03-22 12:13:20 -0400489 }
Chris Mason0f7d52f2007-04-09 10:42:37 -0400490 sb->s_fs_info = tree_root;
Chris Mason5f39d392007-10-15 16:14:19 -0400491 disk_super = &tree_root->fs_info->super_copy;
Chris Masonb888db22007-08-27 16:49:44 -0400492
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400493 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
494 key.type = BTRFS_INODE_ITEM_KEY;
495 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000496 inode = btrfs_iget(sb, &key, tree_root->fs_info->fs_root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400497 if (IS_ERR(inode)) {
498 err = PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400499 goto fail_close;
500 }
Chris Mason2e635a22007-03-21 11:12:56 -0400501
Chris Masone20d96d2007-03-22 12:13:20 -0400502 root_dentry = d_alloc_root(inode);
503 if (!root_dentry) {
Chris Mason2e635a22007-03-21 11:12:56 -0400504 iput(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400505 err = -ENOMEM;
506 goto fail_close;
Chris Mason2e635a22007-03-21 11:12:56 -0400507 }
Josef Bacik58176a92007-08-29 15:47:34 -0400508
Chris Masone20d96d2007-03-22 12:13:20 -0400509 sb->s_root = root_dentry;
Chris Mason6885f302008-02-20 16:11:05 -0500510
Chris Mason6885f302008-02-20 16:11:05 -0500511 save_mount_options(sb, data);
Chris Mason2e635a22007-03-21 11:12:56 -0400512 return 0;
Chris Mason2e635a22007-03-21 11:12:56 -0400513
Chris Mason39279cc2007-06-12 06:35:45 -0400514fail_close:
515 close_ctree(tree_root);
Chris Masond5719762007-03-23 10:01:08 -0400516 return err;
517}
518
Sage Weil6bf13c02008-06-10 10:07:39 -0400519int btrfs_sync_fs(struct super_block *sb, int wait)
Chris Masond5719762007-03-23 10:01:08 -0400520{
521 struct btrfs_trans_handle *trans;
Sage Weildccae992009-04-02 16:59:01 -0400522 struct btrfs_root *root = btrfs_sb(sb);
Chris Masond5719762007-03-23 10:01:08 -0400523 int ret;
Chris Masondf2ce342007-03-23 11:00:45 -0400524
Chris Masond561c022007-03-23 19:47:49 -0400525 if (!wait) {
Chris Mason7cfcc172007-04-02 14:53:59 -0400526 filemap_flush(root->fs_info->btree_inode->i_mapping);
Chris Masond561c022007-03-23 19:47:49 -0400527 return 0;
528 }
Chris Mason771ed682008-11-06 22:02:51 -0500529
Yan, Zheng24bbcf02009-11-12 09:36:34 +0000530 btrfs_start_delalloc_inodes(root, 0);
531 btrfs_wait_ordered_extents(root, 0, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500532
Chris Masond5719762007-03-23 10:01:08 -0400533 trans = btrfs_start_transaction(root, 1);
534 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -0400535 return ret;
Chris Masond5719762007-03-23 10:01:08 -0400536}
537
Eric Parisa9572a12009-04-02 16:46:06 -0400538static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
539{
540 struct btrfs_root *root = btrfs_sb(vfs->mnt_sb);
541 struct btrfs_fs_info *info = root->fs_info;
542
543 if (btrfs_test_opt(root, DEGRADED))
544 seq_puts(seq, ",degraded");
545 if (btrfs_test_opt(root, NODATASUM))
546 seq_puts(seq, ",nodatasum");
547 if (btrfs_test_opt(root, NODATACOW))
548 seq_puts(seq, ",nodatacow");
549 if (btrfs_test_opt(root, NOBARRIER))
550 seq_puts(seq, ",nobarrier");
551 if (info->max_extent != (u64)-1)
Joel Becker21380932009-04-21 12:38:29 -0700552 seq_printf(seq, ",max_extent=%llu",
553 (unsigned long long)info->max_extent);
Eric Parisa9572a12009-04-02 16:46:06 -0400554 if (info->max_inline != 8192 * 1024)
Joel Becker21380932009-04-21 12:38:29 -0700555 seq_printf(seq, ",max_inline=%llu",
556 (unsigned long long)info->max_inline);
Eric Parisa9572a12009-04-02 16:46:06 -0400557 if (info->alloc_start != 0)
Joel Becker21380932009-04-21 12:38:29 -0700558 seq_printf(seq, ",alloc_start=%llu",
559 (unsigned long long)info->alloc_start);
Eric Parisa9572a12009-04-02 16:46:06 -0400560 if (info->thread_pool_size != min_t(unsigned long,
561 num_online_cpus() + 2, 8))
562 seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
563 if (btrfs_test_opt(root, COMPRESS))
564 seq_puts(seq, ",compress");
Chris Masonc2898112009-06-10 09:51:32 -0400565 if (btrfs_test_opt(root, NOSSD))
566 seq_puts(seq, ",nossd");
Chris Mason451d7582009-06-09 20:28:34 -0400567 if (btrfs_test_opt(root, SSD_SPREAD))
568 seq_puts(seq, ",ssd_spread");
569 else if (btrfs_test_opt(root, SSD))
Eric Parisa9572a12009-04-02 16:46:06 -0400570 seq_puts(seq, ",ssd");
Sage Weil3a5e1402009-04-02 16:49:40 -0400571 if (btrfs_test_opt(root, NOTREELOG))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400572 seq_puts(seq, ",notreelog");
Sage Weildccae992009-04-02 16:59:01 -0400573 if (btrfs_test_opt(root, FLUSHONCOMMIT))
Sage Weil6b65c5c2009-05-14 13:52:21 -0400574 seq_puts(seq, ",flushoncommit");
Matthew Wilcox20a52392009-12-14 22:01:12 +0000575 if (btrfs_test_opt(root, DISCARD))
576 seq_puts(seq, ",discard");
Eric Parisa9572a12009-04-02 16:46:06 -0400577 if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
578 seq_puts(seq, ",noacl");
579 return 0;
580}
581
Chris Masona061fc82008-05-07 11:43:44 -0400582static int btrfs_test_super(struct super_block *s, void *data)
Chris Mason2e635a22007-03-21 11:12:56 -0400583{
Chris Masona061fc82008-05-07 11:43:44 -0400584 struct btrfs_fs_devices *test_fs_devices = data;
585 struct btrfs_root *root = btrfs_sb(s);
Yan4b82d6e2007-08-29 09:11:44 -0400586
Chris Masona061fc82008-05-07 11:43:44 -0400587 return root->fs_info->fs_devices == test_fs_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400588}
589
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400590/*
591 * Find a superblock for the given device / mount point.
592 *
593 * Note: This is based on get_sb_bdev from fs/super.c with a few additions
594 * for multiple device setup. Make sure to keep it in sync.
595 */
596static int btrfs_get_sb(struct file_system_type *fs_type, int flags,
597 const char *dev_name, void *data, struct vfsmount *mnt)
Yan4b82d6e2007-08-29 09:11:44 -0400598{
599 struct block_device *bdev = NULL;
600 struct super_block *s;
601 struct dentry *root;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400602 struct btrfs_fs_devices *fs_devices = NULL;
Christoph Hellwig97288f22008-12-02 06:36:09 -0500603 fmode_t mode = FMODE_READ;
Josef Bacik73f73412009-12-04 17:38:27 +0000604 char *subvol_name = NULL;
605 u64 subvol_objectid = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400606 int error = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000607 int found = 0;
Yan4b82d6e2007-08-29 09:11:44 -0400608
Christoph Hellwig97288f22008-12-02 06:36:09 -0500609 if (!(flags & MS_RDONLY))
610 mode |= FMODE_WRITE;
611
612 error = btrfs_parse_early_options(data, mode, fs_type,
Josef Bacik73f73412009-12-04 17:38:27 +0000613 &subvol_name, &subvol_objectid,
614 &fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400615 if (error)
Shen Feng1f483662009-01-05 15:43:42 -0500616 return error;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400617
Christoph Hellwig97288f22008-12-02 06:36:09 -0500618 error = btrfs_scan_one_device(dev_name, mode, fs_type, &fs_devices);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400619 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400620 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400621
Christoph Hellwig97288f22008-12-02 06:36:09 -0500622 error = btrfs_open_devices(fs_devices, mode, fs_type);
Chris Mason8a4b83c2008-03-24 15:02:07 -0400623 if (error)
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400624 goto error_free_subvol_name;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400625
Yan Zheng2b820322008-11-17 21:11:30 -0500626 if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
627 error = -EACCES;
628 goto error_close_devices;
629 }
630
Chris Masondfe25022008-05-13 13:46:40 -0400631 bdev = fs_devices->latest_bdev;
Chris Masona061fc82008-05-07 11:43:44 -0400632 s = sget(fs_type, btrfs_test_super, set_anon_super, fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400633 if (IS_ERR(s))
634 goto error_s;
635
636 if (s->s_root) {
637 if ((flags ^ s->s_flags) & MS_RDONLY) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400638 deactivate_locked_super(s);
Yan4b82d6e2007-08-29 09:11:44 -0400639 error = -EBUSY;
Yan Zhengc146afa2008-11-12 14:34:12 -0500640 goto error_close_devices;
Yan4b82d6e2007-08-29 09:11:44 -0400641 }
642
Josef Bacik73f73412009-12-04 17:38:27 +0000643 found = 1;
Yan Zheng2b820322008-11-17 21:11:30 -0500644 btrfs_close_devices(fs_devices);
Yan4b82d6e2007-08-29 09:11:44 -0400645 } else {
646 char b[BDEVNAME_SIZE];
647
648 s->s_flags = flags;
649 strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
Chris Mason8a4b83c2008-03-24 15:02:07 -0400650 error = btrfs_fill_super(s, fs_devices, data,
651 flags & MS_SILENT ? 1 : 0);
Yan4b82d6e2007-08-29 09:11:44 -0400652 if (error) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400653 deactivate_locked_super(s);
Shen Feng1f483662009-01-05 15:43:42 -0500654 goto error_free_subvol_name;
Yan4b82d6e2007-08-29 09:11:44 -0400655 }
656
Chris Mason788f20e2008-04-28 15:29:42 -0400657 btrfs_sb(s)->fs_info->bdev_holder = fs_type;
Yan4b82d6e2007-08-29 09:11:44 -0400658 s->s_flags |= MS_ACTIVE;
659 }
660
Josef Bacik73f73412009-12-04 17:38:27 +0000661 root = get_default_root(s, subvol_objectid);
662 if (IS_ERR(root)) {
663 error = PTR_ERR(root);
664 deactivate_locked_super(s);
665 goto error;
666 }
667 /* if they gave us a subvolume name bind mount into that */
668 if (strcmp(subvol_name, ".")) {
669 struct dentry *new_root;
670 mutex_lock(&root->d_inode->i_mutex);
671 new_root = lookup_one_len(subvol_name, root,
Chris Masond3977122009-01-05 21:25:51 -0500672 strlen(subvol_name));
Josef Bacik73f73412009-12-04 17:38:27 +0000673 mutex_unlock(&root->d_inode->i_mutex);
Chris Masond3977122009-01-05 21:25:51 -0500674
Josef Bacik73f73412009-12-04 17:38:27 +0000675 if (IS_ERR(new_root)) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400676 deactivate_locked_super(s);
Josef Bacik73f73412009-12-04 17:38:27 +0000677 error = PTR_ERR(new_root);
David Woodhouse76fcef12008-08-19 16:49:35 +0100678 dput(root);
Josef Bacik73f73412009-12-04 17:38:27 +0000679 goto error_close_devices;
680 }
681 if (!new_root->d_inode) {
682 dput(root);
683 dput(new_root);
Al Viro6f5bbff2009-05-06 01:34:22 -0400684 deactivate_locked_super(s);
David Woodhouse76fcef12008-08-19 16:49:35 +0100685 error = -ENXIO;
Josef Bacik73f73412009-12-04 17:38:27 +0000686 goto error_close_devices;
David Woodhouse76fcef12008-08-19 16:49:35 +0100687 }
Josef Bacik73f73412009-12-04 17:38:27 +0000688 dput(root);
689 root = new_root;
Yan4b82d6e2007-08-29 09:11:44 -0400690 }
691
692 mnt->mnt_sb = s;
693 mnt->mnt_root = root;
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400694
695 kfree(subvol_name);
Yan4b82d6e2007-08-29 09:11:44 -0400696 return 0;
697
698error_s:
699 error = PTR_ERR(s);
Yan Zhengc146afa2008-11-12 14:34:12 -0500700error_close_devices:
Chris Mason8a4b83c2008-03-24 15:02:07 -0400701 btrfs_close_devices(fs_devices);
Christoph Hellwigedf24ab2008-06-10 10:40:29 -0400702error_free_subvol_name:
703 kfree(subvol_name);
Josef Bacik73f73412009-12-04 17:38:27 +0000704error:
Yan4b82d6e2007-08-29 09:11:44 -0400705 return error;
706}
Chris Mason2e635a22007-03-21 11:12:56 -0400707
Yan Zhengc146afa2008-11-12 14:34:12 -0500708static int btrfs_remount(struct super_block *sb, int *flags, char *data)
709{
710 struct btrfs_root *root = btrfs_sb(sb);
711 int ret;
712
Chris Masonb2880522009-02-12 09:37:35 -0500713 ret = btrfs_parse_options(root, data);
714 if (ret)
715 return -EINVAL;
716
Yan Zhengc146afa2008-11-12 14:34:12 -0500717 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
718 return 0;
719
720 if (*flags & MS_RDONLY) {
721 sb->s_flags |= MS_RDONLY;
722
723 ret = btrfs_commit_super(root);
724 WARN_ON(ret);
725 } else {
Yan Zheng2b820322008-11-17 21:11:30 -0500726 if (root->fs_info->fs_devices->rw_devices == 0)
727 return -EACCES;
728
Yan Zhengc146afa2008-11-12 14:34:12 -0500729 if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)
730 return -EINVAL;
731
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400732 /* recover relocation */
733 ret = btrfs_recover_relocation(root);
Yan Zhengc146afa2008-11-12 14:34:12 -0500734 WARN_ON(ret);
735
736 ret = btrfs_cleanup_fs_roots(root->fs_info);
737 WARN_ON(ret);
738
739 sb->s_flags &= ~MS_RDONLY;
740 }
741
742 return 0;
743}
744
Chris Mason8fd17792007-04-19 21:01:03 -0400745static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
746{
747 struct btrfs_root *root = btrfs_sb(dentry->d_sb);
Chris Mason4b52dff2007-06-26 10:06:50 -0400748 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
Chris Masondb945352007-10-15 16:15:53 -0400749 int bits = dentry->d_sb->s_blocksize_bits;
David Woodhouse9d036322008-08-18 12:01:52 +0100750 __be32 *fsid = (__be32 *)root->fs_info->fsid;
Chris Mason8fd17792007-04-19 21:01:03 -0400751
752 buf->f_namelen = BTRFS_NAME_LEN;
Chris Masondb945352007-10-15 16:15:53 -0400753 buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
754 buf->f_bfree = buf->f_blocks -
755 (btrfs_super_bytes_used(disk_super) >> bits);
Chris Mason8fd17792007-04-19 21:01:03 -0400756 buf->f_bavail = buf->f_bfree;
757 buf->f_bsize = dentry->d_sb->s_blocksize;
758 buf->f_type = BTRFS_SUPER_MAGIC;
Chris Masond3977122009-01-05 21:25:51 -0500759
David Woodhouse9d036322008-08-18 12:01:52 +0100760 /* We treat it as constant endianness (it doesn't matter _which_)
Chris Masond3977122009-01-05 21:25:51 -0500761 because we want the fsid to come out the same whether mounted
David Woodhouse9d036322008-08-18 12:01:52 +0100762 on a big-endian or little-endian host */
763 buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
764 buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
David Woodhouse32d48fa2008-08-18 13:10:20 +0100765 /* Mask in the root object ID too, to disambiguate subvols */
766 buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
767 buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
768
Chris Mason8fd17792007-04-19 21:01:03 -0400769 return 0;
770}
Chris Masonb5133862007-04-24 11:52:22 -0400771
Chris Mason2e635a22007-03-21 11:12:56 -0400772static struct file_system_type btrfs_fs_type = {
773 .owner = THIS_MODULE,
774 .name = "btrfs",
775 .get_sb = btrfs_get_sb,
Chris Masona061fc82008-05-07 11:43:44 -0400776 .kill_sb = kill_anon_super,
Chris Mason2e635a22007-03-21 11:12:56 -0400777 .fs_flags = FS_REQUIRES_DEV,
778};
Chris Masona9218f62008-03-24 15:02:04 -0400779
Chris Masond352ac62008-09-29 15:18:18 -0400780/*
781 * used by btrfsctl to scan devices when no FS is mounted
782 */
Chris Mason8a4b83c2008-03-24 15:02:07 -0400783static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
784 unsigned long arg)
785{
786 struct btrfs_ioctl_vol_args *vol;
787 struct btrfs_fs_devices *fs_devices;
Chris Masonc071fcf2009-01-16 11:59:08 -0500788 int ret = -ENOTTY;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400789
Chris Masone441d542009-01-05 16:57:23 -0500790 if (!capable(CAP_SYS_ADMIN))
791 return -EPERM;
792
Li Zefandae7b662009-04-08 15:06:54 +0800793 vol = memdup_user((void __user *)arg, sizeof(*vol));
794 if (IS_ERR(vol))
795 return PTR_ERR(vol);
Chris Masonc071fcf2009-01-16 11:59:08 -0500796
Chris Mason8a4b83c2008-03-24 15:02:07 -0400797 switch (cmd) {
798 case BTRFS_IOC_SCAN_DEV:
Christoph Hellwig97288f22008-12-02 06:36:09 -0500799 ret = btrfs_scan_one_device(vol->name, FMODE_READ,
Chris Mason8a4b83c2008-03-24 15:02:07 -0400800 &btrfs_fs_type, &fs_devices);
801 break;
802 }
Li Zefandae7b662009-04-08 15:06:54 +0800803
Chris Mason8a4b83c2008-03-24 15:02:07 -0400804 kfree(vol);
Linda Knippersf819d832008-06-09 22:17:11 -0400805 return ret;
Chris Mason8a4b83c2008-03-24 15:02:07 -0400806}
807
Linus Torvalds01762602009-01-10 06:09:52 -0800808static int btrfs_freeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -0500809{
810 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400811 mutex_lock(&root->fs_info->transaction_kthread_mutex);
812 mutex_lock(&root->fs_info->cleaner_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -0800813 return 0;
Yaned0dab62008-01-22 12:46:56 -0500814}
815
Linus Torvalds01762602009-01-10 06:09:52 -0800816static int btrfs_unfreeze(struct super_block *sb)
Yaned0dab62008-01-22 12:46:56 -0500817{
818 struct btrfs_root *root = btrfs_sb(sb);
Chris Masona74a4b92008-06-25 16:01:31 -0400819 mutex_unlock(&root->fs_info->cleaner_mutex);
820 mutex_unlock(&root->fs_info->transaction_kthread_mutex);
Linus Torvalds01762602009-01-10 06:09:52 -0800821 return 0;
Yaned0dab62008-01-22 12:46:56 -0500822}
Chris Mason2e635a22007-03-21 11:12:56 -0400823
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700824static const struct super_operations btrfs_super_ops = {
Yan, Zheng76dda932009-09-21 16:00:26 -0400825 .drop_inode = btrfs_drop_inode,
Chris Mason134e9732007-03-25 13:44:56 -0400826 .delete_inode = btrfs_delete_inode,
Chris Masone20d96d2007-03-22 12:13:20 -0400827 .put_super = btrfs_put_super,
Chris Masond5719762007-03-23 10:01:08 -0400828 .sync_fs = btrfs_sync_fs,
Eric Parisa9572a12009-04-02 16:46:06 -0400829 .show_options = btrfs_show_options,
Chris Mason4730a4b2007-03-26 12:00:39 -0400830 .write_inode = btrfs_write_inode,
Chris Masonb5133862007-04-24 11:52:22 -0400831 .dirty_inode = btrfs_dirty_inode,
Chris Mason2c90e5d2007-04-02 10:50:19 -0400832 .alloc_inode = btrfs_alloc_inode,
833 .destroy_inode = btrfs_destroy_inode,
Chris Mason8fd17792007-04-19 21:01:03 -0400834 .statfs = btrfs_statfs,
Yan Zhengc146afa2008-11-12 14:34:12 -0500835 .remount_fs = btrfs_remount,
Linus Torvalds01762602009-01-10 06:09:52 -0800836 .freeze_fs = btrfs_freeze,
837 .unfreeze_fs = btrfs_unfreeze,
Chris Masone20d96d2007-03-22 12:13:20 -0400838};
Chris Masona9218f62008-03-24 15:02:04 -0400839
840static const struct file_operations btrfs_ctl_fops = {
841 .unlocked_ioctl = btrfs_control_ioctl,
842 .compat_ioctl = btrfs_control_ioctl,
843 .owner = THIS_MODULE,
844};
845
846static struct miscdevice btrfs_misc = {
847 .minor = MISC_DYNAMIC_MINOR,
848 .name = "btrfs-control",
849 .fops = &btrfs_ctl_fops
850};
851
852static int btrfs_interface_init(void)
853{
854 return misc_register(&btrfs_misc);
855}
856
Christoph Hellwigb2950862008-12-02 09:54:17 -0500857static void btrfs_interface_exit(void)
Chris Masona9218f62008-03-24 15:02:04 -0400858{
859 if (misc_deregister(&btrfs_misc) < 0)
Chris Masond3977122009-01-05 21:25:51 -0500860 printk(KERN_INFO "misc_deregister failed for control device");
Chris Masona9218f62008-03-24 15:02:04 -0400861}
862
Chris Mason2e635a22007-03-21 11:12:56 -0400863static int __init init_btrfs_fs(void)
864{
Chris Mason2c90e5d2007-04-02 10:50:19 -0400865 int err;
Josef Bacik58176a92007-08-29 15:47:34 -0400866
867 err = btrfs_init_sysfs();
868 if (err)
869 return err;
870
Chris Mason39279cc2007-06-12 06:35:45 -0400871 err = btrfs_init_cachep();
Chris Mason2c90e5d2007-04-02 10:50:19 -0400872 if (err)
Chris Masona74a4b92008-06-25 16:01:31 -0400873 goto free_sysfs;
Chris Masond1310b22008-01-24 16:13:08 -0500874
875 err = extent_io_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500876 if (err)
877 goto free_cachep;
878
Chris Masond1310b22008-01-24 16:13:08 -0500879 err = extent_map_init();
880 if (err)
881 goto free_extent_io;
882
Chris Masona9218f62008-03-24 15:02:04 -0400883 err = btrfs_interface_init();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500884 if (err)
885 goto free_extent_map;
Chris Masonc8b97812008-10-29 14:49:59 -0400886
Chris Masona9218f62008-03-24 15:02:04 -0400887 err = register_filesystem(&btrfs_fs_type);
888 if (err)
889 goto unregister_ioctl;
Chris Masonb3c3da72008-07-23 12:12:13 -0400890
891 printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500892 return 0;
893
Chris Masona9218f62008-03-24 15:02:04 -0400894unregister_ioctl:
895 btrfs_interface_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500896free_extent_map:
897 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500898free_extent_io:
899 extent_io_exit();
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500900free_cachep:
901 btrfs_destroy_cachep();
Chris Masona74a4b92008-06-25 16:01:31 -0400902free_sysfs:
Wyatt Banks2f4cbe62007-11-19 10:22:33 -0500903 btrfs_exit_sysfs();
904 return err;
Chris Mason2e635a22007-03-21 11:12:56 -0400905}
906
907static void __exit exit_btrfs_fs(void)
908{
Chris Mason39279cc2007-06-12 06:35:45 -0400909 btrfs_destroy_cachep();
Chris Masona52d9a82007-08-27 16:49:44 -0400910 extent_map_exit();
Chris Masond1310b22008-01-24 16:13:08 -0500911 extent_io_exit();
Chris Masona9218f62008-03-24 15:02:04 -0400912 btrfs_interface_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400913 unregister_filesystem(&btrfs_fs_type);
Josef Bacik58176a92007-08-29 15:47:34 -0400914 btrfs_exit_sysfs();
Chris Mason8a4b83c2008-03-24 15:02:07 -0400915 btrfs_cleanup_fs_uuids();
Chris Masonc8b97812008-10-29 14:49:59 -0400916 btrfs_zlib_exit();
Chris Mason2e635a22007-03-21 11:12:56 -0400917}
918
919module_init(init_btrfs_fs)
920module_exit(exit_btrfs_fs)
921
922MODULE_LICENSE("GPL");