blob: ca54133466535046ed0195d7be37723c8a18672c [file] [log] [blame]
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09001/*
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002 * fs/f2fs/super.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/fs.h>
14#include <linux/statfs.h>
15#include <linux/proc_fs.h>
16#include <linux/buffer_head.h>
17#include <linux/backing-dev.h>
18#include <linux/kthread.h>
19#include <linux/parser.h>
20#include <linux/mount.h>
21#include <linux/seq_file.h>
22#include <linux/random.h>
23#include <linux/exportfs.h>
Namjae Jeond3ee4562013-03-17 17:26:14 +090024#include <linux/blkdev.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090025#include <linux/f2fs_fs.h>
26
27#include "f2fs.h"
28#include "node.h"
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +090029#include "segment.h"
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090030#include "xattr.h"
31
32static struct kmem_cache *f2fs_inode_cachep;
33
34enum {
35 Opt_gc_background_off,
36 Opt_disable_roll_forward,
37 Opt_discard,
38 Opt_noheap,
39 Opt_nouser_xattr,
40 Opt_noacl,
41 Opt_active_logs,
42 Opt_disable_ext_identify,
43 Opt_err,
44};
45
46static match_table_t f2fs_tokens = {
47 {Opt_gc_background_off, "background_gc_off"},
48 {Opt_disable_roll_forward, "disable_roll_forward"},
49 {Opt_discard, "discard"},
50 {Opt_noheap, "no_heap"},
51 {Opt_nouser_xattr, "nouser_xattr"},
52 {Opt_noacl, "noacl"},
53 {Opt_active_logs, "active_logs=%u"},
54 {Opt_disable_ext_identify, "disable_ext_identify"},
55 {Opt_err, NULL},
56};
57
Namjae Jeona07ef782012-12-30 14:52:05 +090058void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
59{
60 struct va_format vaf;
61 va_list args;
62
63 va_start(args, fmt);
64 vaf.fmt = fmt;
65 vaf.va = &args;
66 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
67 va_end(args);
68}
69
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090070static void init_once(void *foo)
71{
72 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
73
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090074 inode_init_once(&fi->vfs_inode);
75}
76
77static struct inode *f2fs_alloc_inode(struct super_block *sb)
78{
79 struct f2fs_inode_info *fi;
80
81 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_NOFS | __GFP_ZERO);
82 if (!fi)
83 return NULL;
84
85 init_once((void *) fi);
86
Masanari Iida111d2492013-03-19 08:03:35 +090087 /* Initialize f2fs-specific inode info */
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090088 fi->vfs_inode.i_version = 1;
89 atomic_set(&fi->dirty_dents, 0);
90 fi->i_current_depth = 1;
91 fi->i_advise = 0;
92 rwlock_init(&fi->ext.ext_lock);
93
94 set_inode_flag(fi, FI_NEW_INODE);
95
96 return &fi->vfs_inode;
97}
98
99static void f2fs_i_callback(struct rcu_head *head)
100{
101 struct inode *inode = container_of(head, struct inode, i_rcu);
102 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
103}
104
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900105static void f2fs_destroy_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900106{
107 call_rcu(&inode->i_rcu, f2fs_i_callback);
108}
109
110static void f2fs_put_super(struct super_block *sb)
111{
112 struct f2fs_sb_info *sbi = F2FS_SB(sb);
113
114 f2fs_destroy_stats(sbi);
115 stop_gc_thread(sbi);
116
Jaegeuk Kim43727522013-02-04 15:11:17 +0900117 write_checkpoint(sbi, true);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900118
119 iput(sbi->node_inode);
120 iput(sbi->meta_inode);
121
122 /* destroy f2fs internal modules */
123 destroy_node_manager(sbi);
124 destroy_segment_manager(sbi);
125
126 kfree(sbi->ckpt);
127
128 sb->s_fs_info = NULL;
129 brelse(sbi->raw_super_buf);
130 kfree(sbi);
131}
132
133int f2fs_sync_fs(struct super_block *sb, int sync)
134{
135 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900136
137 if (!sbi->s_dirty && !get_pages(sbi, F2FS_DIRTY_NODES))
138 return 0;
139
Jaegeuk Kimb7473752013-04-01 08:32:21 +0900140 if (sync) {
141 mutex_lock(&sbi->gc_mutex);
Jaegeuk Kim43727522013-02-04 15:11:17 +0900142 write_checkpoint(sbi, false);
Jaegeuk Kimb7473752013-04-01 08:32:21 +0900143 mutex_unlock(&sbi->gc_mutex);
144 } else {
Jaegeuk Kim7d82db82013-01-11 13:10:49 +0900145 f2fs_balance_fs(sbi);
Jaegeuk Kimb7473752013-04-01 08:32:21 +0900146 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900147
Namjae Jeon64c576f2012-12-22 12:10:27 +0900148 return 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900149}
150
Changman Leed6212a52013-01-29 18:30:07 +0900151static int f2fs_freeze(struct super_block *sb)
152{
153 int err;
154
155 if (sb->s_flags & MS_RDONLY)
156 return 0;
157
158 err = f2fs_sync_fs(sb, 1);
159 return err;
160}
161
162static int f2fs_unfreeze(struct super_block *sb)
163{
164 return 0;
165}
166
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900167static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
168{
169 struct super_block *sb = dentry->d_sb;
170 struct f2fs_sb_info *sbi = F2FS_SB(sb);
171 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
172 block_t total_count, user_block_count, start_count, ovp_count;
173
174 total_count = le64_to_cpu(sbi->raw_super->block_count);
175 user_block_count = sbi->user_block_count;
176 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
177 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
178 buf->f_type = F2FS_SUPER_MAGIC;
179 buf->f_bsize = sbi->blocksize;
180
181 buf->f_blocks = total_count - start_count;
182 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
183 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
184
Jaegeuk Kim1362b5e2012-12-12 19:45:49 +0900185 buf->f_files = sbi->total_node_count;
186 buf->f_ffree = sbi->total_node_count - valid_inode_count(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900187
Jaegeuk Kim5a20d332013-03-03 13:58:05 +0900188 buf->f_namelen = F2FS_NAME_LEN;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900189 buf->f_fsid.val[0] = (u32)id;
190 buf->f_fsid.val[1] = (u32)(id >> 32);
191
192 return 0;
193}
194
195static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
196{
197 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
198
199 if (test_opt(sbi, BG_GC))
200 seq_puts(seq, ",background_gc_on");
201 else
202 seq_puts(seq, ",background_gc_off");
203 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
204 seq_puts(seq, ",disable_roll_forward");
205 if (test_opt(sbi, DISCARD))
206 seq_puts(seq, ",discard");
207 if (test_opt(sbi, NOHEAP))
208 seq_puts(seq, ",no_heap_alloc");
209#ifdef CONFIG_F2FS_FS_XATTR
210 if (test_opt(sbi, XATTR_USER))
211 seq_puts(seq, ",user_xattr");
212 else
213 seq_puts(seq, ",nouser_xattr");
214#endif
215#ifdef CONFIG_F2FS_FS_POSIX_ACL
216 if (test_opt(sbi, POSIX_ACL))
217 seq_puts(seq, ",acl");
218 else
219 seq_puts(seq, ",noacl");
220#endif
221 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +0100222 seq_puts(seq, ",disable_ext_identify");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900223
224 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
225
226 return 0;
227}
228
229static struct super_operations f2fs_sops = {
230 .alloc_inode = f2fs_alloc_inode,
231 .destroy_inode = f2fs_destroy_inode,
232 .write_inode = f2fs_write_inode,
233 .show_options = f2fs_show_options,
234 .evict_inode = f2fs_evict_inode,
235 .put_super = f2fs_put_super,
236 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +0900237 .freeze_fs = f2fs_freeze,
238 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900239 .statfs = f2fs_statfs,
240};
241
242static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
243 u64 ino, u32 generation)
244{
245 struct f2fs_sb_info *sbi = F2FS_SB(sb);
246 struct inode *inode;
247
248 if (ino < F2FS_ROOT_INO(sbi))
249 return ERR_PTR(-ESTALE);
250
251 /*
252 * f2fs_iget isn't quite right if the inode is currently unallocated!
253 * However f2fs_iget currently does appropriate checks to handle stale
254 * inodes so everything is OK.
255 */
256 inode = f2fs_iget(sb, ino);
257 if (IS_ERR(inode))
258 return ERR_CAST(inode);
259 if (generation && inode->i_generation != generation) {
260 /* we didn't find the right inode.. */
261 iput(inode);
262 return ERR_PTR(-ESTALE);
263 }
264 return inode;
265}
266
267static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
268 int fh_len, int fh_type)
269{
270 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
271 f2fs_nfs_get_inode);
272}
273
274static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
275 int fh_len, int fh_type)
276{
277 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
278 f2fs_nfs_get_inode);
279}
280
281static const struct export_operations f2fs_export_ops = {
282 .fh_to_dentry = f2fs_fh_to_dentry,
283 .fh_to_parent = f2fs_fh_to_parent,
284 .get_parent = f2fs_get_parent,
285};
286
Namjae Jeona07ef782012-12-30 14:52:05 +0900287static int parse_options(struct super_block *sb, struct f2fs_sb_info *sbi,
288 char *options)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900289{
290 substring_t args[MAX_OPT_ARGS];
291 char *p;
292 int arg = 0;
293
294 if (!options)
295 return 0;
296
297 while ((p = strsep(&options, ",")) != NULL) {
298 int token;
299 if (!*p)
300 continue;
301 /*
302 * Initialize args struct so we know whether arg was
303 * found; some options take optional arguments.
304 */
305 args[0].to = args[0].from = NULL;
306 token = match_token(p, f2fs_tokens, args);
307
308 switch (token) {
309 case Opt_gc_background_off:
310 clear_opt(sbi, BG_GC);
311 break;
312 case Opt_disable_roll_forward:
313 set_opt(sbi, DISABLE_ROLL_FORWARD);
314 break;
315 case Opt_discard:
316 set_opt(sbi, DISCARD);
317 break;
318 case Opt_noheap:
319 set_opt(sbi, NOHEAP);
320 break;
321#ifdef CONFIG_F2FS_FS_XATTR
322 case Opt_nouser_xattr:
323 clear_opt(sbi, XATTR_USER);
324 break;
325#else
326 case Opt_nouser_xattr:
Namjae Jeona07ef782012-12-30 14:52:05 +0900327 f2fs_msg(sb, KERN_INFO,
328 "nouser_xattr options not supported");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900329 break;
330#endif
331#ifdef CONFIG_F2FS_FS_POSIX_ACL
332 case Opt_noacl:
333 clear_opt(sbi, POSIX_ACL);
334 break;
335#else
336 case Opt_noacl:
Namjae Jeona07ef782012-12-30 14:52:05 +0900337 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900338 break;
339#endif
340 case Opt_active_logs:
341 if (args->from && match_int(args, &arg))
342 return -EINVAL;
Jaegeuk Kim12a67142012-12-21 11:47:05 +0900343 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900344 return -EINVAL;
345 sbi->active_logs = arg;
346 break;
347 case Opt_disable_ext_identify:
348 set_opt(sbi, DISABLE_EXT_IDENTIFY);
349 break;
350 default:
Namjae Jeona07ef782012-12-30 14:52:05 +0900351 f2fs_msg(sb, KERN_ERR,
352 "Unrecognized mount option \"%s\" or missing value",
353 p);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900354 return -EINVAL;
355 }
356 }
357 return 0;
358}
359
360static loff_t max_file_size(unsigned bits)
361{
362 loff_t result = ADDRS_PER_INODE;
363 loff_t leaf_count = ADDRS_PER_BLOCK;
364
365 /* two direct node blocks */
366 result += (leaf_count * 2);
367
368 /* two indirect node blocks */
369 leaf_count *= NIDS_PER_BLOCK;
370 result += (leaf_count * 2);
371
372 /* one double indirect node block */
373 leaf_count *= NIDS_PER_BLOCK;
374 result += leaf_count;
375
376 result <<= bits;
377 return result;
378}
379
Namjae Jeona07ef782012-12-30 14:52:05 +0900380static int sanity_check_raw_super(struct super_block *sb,
381 struct f2fs_super_block *raw_super)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900382{
383 unsigned int blocksize;
384
Namjae Jeona07ef782012-12-30 14:52:05 +0900385 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
386 f2fs_msg(sb, KERN_INFO,
387 "Magic Mismatch, valid(0x%x) - read(0x%x)",
388 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900389 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900390 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900391
majianpeng5c9b4692013-02-01 19:07:57 +0800392 /* Currently, support only 4KB page cache size */
393 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
394 f2fs_msg(sb, KERN_INFO,
majianpeng14d7e9d2013-02-01 19:07:03 +0800395 "Invalid page_cache_size (%lu), supports only 4KB\n",
majianpeng5c9b4692013-02-01 19:07:57 +0800396 PAGE_CACHE_SIZE);
397 return 1;
398 }
399
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900400 /* Currently, support only 4KB block size */
401 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
majianpeng5c9b4692013-02-01 19:07:57 +0800402 if (blocksize != F2FS_BLKSIZE) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900403 f2fs_msg(sb, KERN_INFO,
404 "Invalid blocksize (%u), supports only 4KB\n",
405 blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900406 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900407 }
majianpeng5c9b4692013-02-01 19:07:57 +0800408
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900409 if (le32_to_cpu(raw_super->log_sectorsize) !=
Namjae Jeona07ef782012-12-30 14:52:05 +0900410 F2FS_LOG_SECTOR_SIZE) {
411 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900412 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900413 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900414 if (le32_to_cpu(raw_super->log_sectors_per_block) !=
Namjae Jeona07ef782012-12-30 14:52:05 +0900415 F2FS_LOG_SECTORS_PER_BLOCK) {
416 f2fs_msg(sb, KERN_INFO, "Invalid log sectors per block");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900417 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900418 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900419 return 0;
420}
421
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900422static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900423{
424 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900425 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
426 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900427
428 total = le32_to_cpu(raw_super->segment_count);
429 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
430 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
431 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
432 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
433 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
434
435 if (fsmeta >= total)
436 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900437
438 if (is_set_ckpt_flags(ckpt, CP_ERROR_FLAG)) {
439 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
440 return 1;
441 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900442 return 0;
443}
444
445static void init_sb_info(struct f2fs_sb_info *sbi)
446{
447 struct f2fs_super_block *raw_super = sbi->raw_super;
448 int i;
449
450 sbi->log_sectors_per_block =
451 le32_to_cpu(raw_super->log_sectors_per_block);
452 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
453 sbi->blocksize = 1 << sbi->log_blocksize;
454 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
455 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
456 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
457 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
458 sbi->total_sections = le32_to_cpu(raw_super->section_count);
459 sbi->total_node_count =
460 (le32_to_cpu(raw_super->segment_count_nat) / 2)
461 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
462 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
463 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
464 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +0900465 sbi->cur_victim_sec = NULL_SECNO;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900466
467 for (i = 0; i < NR_COUNT_TYPE; i++)
468 atomic_set(&sbi->nr_pages[i], 0);
469}
470
majianpeng14d7e9d2013-02-01 19:07:03 +0800471static int validate_superblock(struct super_block *sb,
472 struct f2fs_super_block **raw_super,
473 struct buffer_head **raw_super_buf, sector_t block)
474{
475 const char *super = (block == 0 ? "first" : "second");
476
477 /* read f2fs raw super block */
478 *raw_super_buf = sb_bread(sb, block);
479 if (!*raw_super_buf) {
480 f2fs_msg(sb, KERN_ERR, "unable to read %s superblock",
481 super);
Namjae Jeonc0d39e62013-03-17 17:26:53 +0900482 return -EIO;
majianpeng14d7e9d2013-02-01 19:07:03 +0800483 }
484
485 *raw_super = (struct f2fs_super_block *)
486 ((char *)(*raw_super_buf)->b_data + F2FS_SUPER_OFFSET);
487
488 /* sanity checking of raw super */
489 if (!sanity_check_raw_super(sb, *raw_super))
490 return 0;
491
492 f2fs_msg(sb, KERN_ERR, "Can't find a valid F2FS filesystem "
493 "in %s superblock", super);
Namjae Jeonc0d39e62013-03-17 17:26:53 +0900494 return -EINVAL;
majianpeng14d7e9d2013-02-01 19:07:03 +0800495}
496
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900497static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
498{
499 struct f2fs_sb_info *sbi;
500 struct f2fs_super_block *raw_super;
501 struct buffer_head *raw_super_buf;
502 struct inode *root;
503 long err = -EINVAL;
504 int i;
505
506 /* allocate memory for f2fs-specific super block info */
507 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
508 if (!sbi)
509 return -ENOMEM;
510
Namjae Jeonff9234a2013-01-12 14:41:13 +0900511 /* set a block size */
Namjae Jeona07ef782012-12-30 14:52:05 +0900512 if (!sb_set_blocksize(sb, F2FS_BLKSIZE)) {
513 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900514 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +0900515 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900516
Namjae Jeonc0d39e62013-03-17 17:26:53 +0900517 err = validate_superblock(sb, &raw_super, &raw_super_buf, 0);
518 if (err) {
majianpeng14d7e9d2013-02-01 19:07:03 +0800519 brelse(raw_super_buf);
Namjae Jeonc0d39e62013-03-17 17:26:53 +0900520 /* check secondary superblock when primary failed */
521 err = validate_superblock(sb, &raw_super, &raw_super_buf, 1);
522 if (err)
majianpeng14d7e9d2013-02-01 19:07:03 +0800523 goto free_sb_buf;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900524 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900525 /* init some FS parameters */
526 sbi->active_logs = NR_CURSEG_TYPE;
527
528 set_opt(sbi, BG_GC);
529
530#ifdef CONFIG_F2FS_FS_XATTR
531 set_opt(sbi, XATTR_USER);
532#endif
533#ifdef CONFIG_F2FS_FS_POSIX_ACL
534 set_opt(sbi, POSIX_ACL);
535#endif
536 /* parse mount options */
Namjae Jeona07ef782012-12-30 14:52:05 +0900537 if (parse_options(sb, sbi, (char *)data))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900538 goto free_sb_buf;
539
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900540 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900541 sb->s_max_links = F2FS_LINK_MAX;
542 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
543
544 sb->s_op = &f2fs_sops;
545 sb->s_xattr = f2fs_xattr_handlers;
546 sb->s_export_op = &f2fs_export_ops;
547 sb->s_magic = F2FS_SUPER_MAGIC;
548 sb->s_fs_info = sbi;
549 sb->s_time_gran = 1;
550 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
551 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
552 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
553
554 /* init f2fs-specific super block info */
555 sbi->sb = sb;
556 sbi->raw_super = raw_super;
557 sbi->raw_super_buf = raw_super_buf;
558 mutex_init(&sbi->gc_mutex);
559 mutex_init(&sbi->write_inode);
560 mutex_init(&sbi->writepages);
561 mutex_init(&sbi->cp_mutex);
562 for (i = 0; i < NR_LOCK_TYPE; i++)
563 mutex_init(&sbi->fs_lock[i]);
564 sbi->por_doing = 0;
565 spin_lock_init(&sbi->stat_lock);
566 init_rwsem(&sbi->bio_sem);
567 init_sb_info(sbi);
568
569 /* get an inode for meta space */
570 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
571 if (IS_ERR(sbi->meta_inode)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900572 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900573 err = PTR_ERR(sbi->meta_inode);
574 goto free_sb_buf;
575 }
576
577 err = get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +0900578 if (err) {
579 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900580 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +0900581 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900582
583 /* sanity checking of checkpoint */
584 err = -EINVAL;
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900585 if (sanity_check_ckpt(sbi)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900586 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900587 goto free_cp;
Namjae Jeona07ef782012-12-30 14:52:05 +0900588 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900589
590 sbi->total_valid_node_count =
591 le32_to_cpu(sbi->ckpt->valid_node_count);
592 sbi->total_valid_inode_count =
593 le32_to_cpu(sbi->ckpt->valid_inode_count);
594 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
595 sbi->total_valid_block_count =
596 le64_to_cpu(sbi->ckpt->valid_block_count);
597 sbi->last_valid_block_count = sbi->total_valid_block_count;
598 sbi->alloc_valid_block_count = 0;
599 INIT_LIST_HEAD(&sbi->dir_inode_list);
600 spin_lock_init(&sbi->dir_inode_lock);
601
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900602 init_orphan_info(sbi);
603
604 /* setup f2fs internal modules */
605 err = build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +0900606 if (err) {
607 f2fs_msg(sb, KERN_ERR,
608 "Failed to initialize F2FS segment manager");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900609 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +0900610 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900611 err = build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +0900612 if (err) {
613 f2fs_msg(sb, KERN_ERR,
614 "Failed to initialize F2FS node manager");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900615 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +0900616 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900617
618 build_gc_manager(sbi);
619
620 /* get an inode for node space */
621 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
622 if (IS_ERR(sbi->node_inode)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900623 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900624 err = PTR_ERR(sbi->node_inode);
625 goto free_nm;
626 }
627
628 /* if there are nt orphan nodes free them */
629 err = -EINVAL;
Jaegeuk Kim30f0c752012-12-19 16:09:19 +0900630 if (recover_orphan_inodes(sbi))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900631 goto free_node_inode;
632
633 /* read root inode and dentry */
634 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
635 if (IS_ERR(root)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900636 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900637 err = PTR_ERR(root);
638 goto free_node_inode;
639 }
640 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size)
641 goto free_root_inode;
642
643 sb->s_root = d_make_root(root); /* allocate root dentry */
644 if (!sb->s_root) {
645 err = -ENOMEM;
646 goto free_root_inode;
647 }
648
649 /* recover fsynced data */
Jaegeuk Kim6ead1142013-03-20 19:01:06 +0900650 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
651 err = recover_fsync_data(sbi);
652 if (err) {
653 f2fs_msg(sb, KERN_ERR, "Failed to recover fsync data");
654 goto free_root_inode;
655 }
656 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900657
658 /* After POR, we can run background GC thread */
659 err = start_gc_thread(sbi);
660 if (err)
661 goto fail;
662
663 err = f2fs_build_stats(sbi);
664 if (err)
665 goto fail;
666
Namjae Jeond3ee4562013-03-17 17:26:14 +0900667 if (test_opt(sbi, DISCARD)) {
668 struct request_queue *q = bdev_get_queue(sb->s_bdev);
669 if (!blk_queue_discard(q))
670 f2fs_msg(sb, KERN_WARNING,
671 "mounting with \"discard\" option, but "
672 "the device does not support discard");
673 }
674
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900675 return 0;
676fail:
677 stop_gc_thread(sbi);
678free_root_inode:
679 dput(sb->s_root);
680 sb->s_root = NULL;
681free_node_inode:
682 iput(sbi->node_inode);
683free_nm:
684 destroy_node_manager(sbi);
685free_sm:
686 destroy_segment_manager(sbi);
687free_cp:
688 kfree(sbi->ckpt);
689free_meta_inode:
690 make_bad_inode(sbi->meta_inode);
691 iput(sbi->meta_inode);
692free_sb_buf:
693 brelse(raw_super_buf);
694free_sbi:
695 kfree(sbi);
696 return err;
697}
698
699static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
700 const char *dev_name, void *data)
701{
702 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
703}
704
705static struct file_system_type f2fs_fs_type = {
706 .owner = THIS_MODULE,
707 .name = "f2fs",
708 .mount = f2fs_mount,
709 .kill_sb = kill_block_super,
710 .fs_flags = FS_REQUIRES_DEV,
711};
712
Namjae Jeon6e6093a2013-01-17 00:08:30 +0900713static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900714{
715 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
716 sizeof(struct f2fs_inode_info), NULL);
717 if (f2fs_inode_cachep == NULL)
718 return -ENOMEM;
719 return 0;
720}
721
722static void destroy_inodecache(void)
723{
724 /*
725 * Make sure all delayed rcu free inodes are flushed before we
726 * destroy cache.
727 */
728 rcu_barrier();
729 kmem_cache_destroy(f2fs_inode_cachep);
730}
731
732static int __init init_f2fs_fs(void)
733{
734 int err;
735
736 err = init_inodecache();
737 if (err)
738 goto fail;
739 err = create_node_manager_caches();
740 if (err)
741 goto fail;
742 err = create_gc_caches();
743 if (err)
744 goto fail;
745 err = create_checkpoint_caches();
746 if (err)
747 goto fail;
Namjae Jeon4589d252013-01-15 19:58:47 +0900748 err = register_filesystem(&f2fs_fs_type);
749 if (err)
750 goto fail;
751 f2fs_create_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900752fail:
753 return err;
754}
755
756static void __exit exit_f2fs_fs(void)
757{
Namjae Jeon4589d252013-01-15 19:58:47 +0900758 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900759 unregister_filesystem(&f2fs_fs_type);
760 destroy_checkpoint_caches();
761 destroy_gc_caches();
762 destroy_node_manager_caches();
763 destroy_inodecache();
764}
765
766module_init(init_f2fs_fs)
767module_exit(exit_f2fs_fs)
768
769MODULE_AUTHOR("Samsung Electronics's Praesto Team");
770MODULE_DESCRIPTION("Flash Friendly File System");
771MODULE_LICENSE("GPL");