blob: 0b18aee2ed25bc5640e928119f7ffec185316105 [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>
24#include <linux/f2fs_fs.h>
25
26#include "f2fs.h"
27#include "node.h"
28#include "xattr.h"
29
30static struct kmem_cache *f2fs_inode_cachep;
31
32enum {
33 Opt_gc_background_off,
34 Opt_disable_roll_forward,
35 Opt_discard,
36 Opt_noheap,
37 Opt_nouser_xattr,
38 Opt_noacl,
39 Opt_active_logs,
40 Opt_disable_ext_identify,
41 Opt_err,
42};
43
44static match_table_t f2fs_tokens = {
45 {Opt_gc_background_off, "background_gc_off"},
46 {Opt_disable_roll_forward, "disable_roll_forward"},
47 {Opt_discard, "discard"},
48 {Opt_noheap, "no_heap"},
49 {Opt_nouser_xattr, "nouser_xattr"},
50 {Opt_noacl, "noacl"},
51 {Opt_active_logs, "active_logs=%u"},
52 {Opt_disable_ext_identify, "disable_ext_identify"},
53 {Opt_err, NULL},
54};
55
Namjae Jeona07ef782012-12-30 14:52:05 +090056void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
57{
58 struct va_format vaf;
59 va_list args;
60
61 va_start(args, fmt);
62 vaf.fmt = fmt;
63 vaf.va = &args;
64 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
65 va_end(args);
66}
67
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090068static void init_once(void *foo)
69{
70 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
71
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090072 inode_init_once(&fi->vfs_inode);
73}
74
75static struct inode *f2fs_alloc_inode(struct super_block *sb)
76{
77 struct f2fs_inode_info *fi;
78
79 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_NOFS | __GFP_ZERO);
80 if (!fi)
81 return NULL;
82
83 init_once((void *) fi);
84
85 /* Initilize f2fs-specific inode info */
86 fi->vfs_inode.i_version = 1;
87 atomic_set(&fi->dirty_dents, 0);
88 fi->i_current_depth = 1;
89 fi->i_advise = 0;
90 rwlock_init(&fi->ext.ext_lock);
91
92 set_inode_flag(fi, FI_NEW_INODE);
93
94 return &fi->vfs_inode;
95}
96
97static void f2fs_i_callback(struct rcu_head *head)
98{
99 struct inode *inode = container_of(head, struct inode, i_rcu);
100 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
101}
102
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900103static void f2fs_destroy_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900104{
105 call_rcu(&inode->i_rcu, f2fs_i_callback);
106}
107
108static void f2fs_put_super(struct super_block *sb)
109{
110 struct f2fs_sb_info *sbi = F2FS_SB(sb);
111
112 f2fs_destroy_stats(sbi);
113 stop_gc_thread(sbi);
114
115 write_checkpoint(sbi, false, true);
116
117 iput(sbi->node_inode);
118 iput(sbi->meta_inode);
119
120 /* destroy f2fs internal modules */
121 destroy_node_manager(sbi);
122 destroy_segment_manager(sbi);
123
124 kfree(sbi->ckpt);
125
126 sb->s_fs_info = NULL;
127 brelse(sbi->raw_super_buf);
128 kfree(sbi);
129}
130
131int f2fs_sync_fs(struct super_block *sb, int sync)
132{
133 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900134
135 if (!sbi->s_dirty && !get_pages(sbi, F2FS_DIRTY_NODES))
136 return 0;
137
138 if (sync)
139 write_checkpoint(sbi, false, false);
Jaegeuk Kim7d82db82013-01-11 13:10:49 +0900140 else
141 f2fs_balance_fs(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900142
Namjae Jeon64c576f2012-12-22 12:10:27 +0900143 return 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900144}
145
Changman Leed6212a52013-01-29 18:30:07 +0900146static int f2fs_freeze(struct super_block *sb)
147{
148 int err;
149
150 if (sb->s_flags & MS_RDONLY)
151 return 0;
152
153 err = f2fs_sync_fs(sb, 1);
154 return err;
155}
156
157static int f2fs_unfreeze(struct super_block *sb)
158{
159 return 0;
160}
161
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900162static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
163{
164 struct super_block *sb = dentry->d_sb;
165 struct f2fs_sb_info *sbi = F2FS_SB(sb);
166 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
167 block_t total_count, user_block_count, start_count, ovp_count;
168
169 total_count = le64_to_cpu(sbi->raw_super->block_count);
170 user_block_count = sbi->user_block_count;
171 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
172 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
173 buf->f_type = F2FS_SUPER_MAGIC;
174 buf->f_bsize = sbi->blocksize;
175
176 buf->f_blocks = total_count - start_count;
177 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
178 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
179
Jaegeuk Kim1362b5e2012-12-12 19:45:49 +0900180 buf->f_files = sbi->total_node_count;
181 buf->f_ffree = sbi->total_node_count - valid_inode_count(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900182
183 buf->f_namelen = F2FS_MAX_NAME_LEN;
184 buf->f_fsid.val[0] = (u32)id;
185 buf->f_fsid.val[1] = (u32)(id >> 32);
186
187 return 0;
188}
189
190static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
191{
192 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
193
194 if (test_opt(sbi, BG_GC))
195 seq_puts(seq, ",background_gc_on");
196 else
197 seq_puts(seq, ",background_gc_off");
198 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
199 seq_puts(seq, ",disable_roll_forward");
200 if (test_opt(sbi, DISCARD))
201 seq_puts(seq, ",discard");
202 if (test_opt(sbi, NOHEAP))
203 seq_puts(seq, ",no_heap_alloc");
204#ifdef CONFIG_F2FS_FS_XATTR
205 if (test_opt(sbi, XATTR_USER))
206 seq_puts(seq, ",user_xattr");
207 else
208 seq_puts(seq, ",nouser_xattr");
209#endif
210#ifdef CONFIG_F2FS_FS_POSIX_ACL
211 if (test_opt(sbi, POSIX_ACL))
212 seq_puts(seq, ",acl");
213 else
214 seq_puts(seq, ",noacl");
215#endif
216 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +0100217 seq_puts(seq, ",disable_ext_identify");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900218
219 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
220
221 return 0;
222}
223
224static struct super_operations f2fs_sops = {
225 .alloc_inode = f2fs_alloc_inode,
226 .destroy_inode = f2fs_destroy_inode,
227 .write_inode = f2fs_write_inode,
228 .show_options = f2fs_show_options,
229 .evict_inode = f2fs_evict_inode,
230 .put_super = f2fs_put_super,
231 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +0900232 .freeze_fs = f2fs_freeze,
233 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900234 .statfs = f2fs_statfs,
235};
236
237static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
238 u64 ino, u32 generation)
239{
240 struct f2fs_sb_info *sbi = F2FS_SB(sb);
241 struct inode *inode;
242
243 if (ino < F2FS_ROOT_INO(sbi))
244 return ERR_PTR(-ESTALE);
245
246 /*
247 * f2fs_iget isn't quite right if the inode is currently unallocated!
248 * However f2fs_iget currently does appropriate checks to handle stale
249 * inodes so everything is OK.
250 */
251 inode = f2fs_iget(sb, ino);
252 if (IS_ERR(inode))
253 return ERR_CAST(inode);
254 if (generation && inode->i_generation != generation) {
255 /* we didn't find the right inode.. */
256 iput(inode);
257 return ERR_PTR(-ESTALE);
258 }
259 return inode;
260}
261
262static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
263 int fh_len, int fh_type)
264{
265 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
266 f2fs_nfs_get_inode);
267}
268
269static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
270 int fh_len, int fh_type)
271{
272 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
273 f2fs_nfs_get_inode);
274}
275
276static const struct export_operations f2fs_export_ops = {
277 .fh_to_dentry = f2fs_fh_to_dentry,
278 .fh_to_parent = f2fs_fh_to_parent,
279 .get_parent = f2fs_get_parent,
280};
281
Namjae Jeona07ef782012-12-30 14:52:05 +0900282static int parse_options(struct super_block *sb, struct f2fs_sb_info *sbi,
283 char *options)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900284{
285 substring_t args[MAX_OPT_ARGS];
286 char *p;
287 int arg = 0;
288
289 if (!options)
290 return 0;
291
292 while ((p = strsep(&options, ",")) != NULL) {
293 int token;
294 if (!*p)
295 continue;
296 /*
297 * Initialize args struct so we know whether arg was
298 * found; some options take optional arguments.
299 */
300 args[0].to = args[0].from = NULL;
301 token = match_token(p, f2fs_tokens, args);
302
303 switch (token) {
304 case Opt_gc_background_off:
305 clear_opt(sbi, BG_GC);
306 break;
307 case Opt_disable_roll_forward:
308 set_opt(sbi, DISABLE_ROLL_FORWARD);
309 break;
310 case Opt_discard:
311 set_opt(sbi, DISCARD);
312 break;
313 case Opt_noheap:
314 set_opt(sbi, NOHEAP);
315 break;
316#ifdef CONFIG_F2FS_FS_XATTR
317 case Opt_nouser_xattr:
318 clear_opt(sbi, XATTR_USER);
319 break;
320#else
321 case Opt_nouser_xattr:
Namjae Jeona07ef782012-12-30 14:52:05 +0900322 f2fs_msg(sb, KERN_INFO,
323 "nouser_xattr options not supported");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900324 break;
325#endif
326#ifdef CONFIG_F2FS_FS_POSIX_ACL
327 case Opt_noacl:
328 clear_opt(sbi, POSIX_ACL);
329 break;
330#else
331 case Opt_noacl:
Namjae Jeona07ef782012-12-30 14:52:05 +0900332 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900333 break;
334#endif
335 case Opt_active_logs:
336 if (args->from && match_int(args, &arg))
337 return -EINVAL;
Jaegeuk Kim12a67142012-12-21 11:47:05 +0900338 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900339 return -EINVAL;
340 sbi->active_logs = arg;
341 break;
342 case Opt_disable_ext_identify:
343 set_opt(sbi, DISABLE_EXT_IDENTIFY);
344 break;
345 default:
Namjae Jeona07ef782012-12-30 14:52:05 +0900346 f2fs_msg(sb, KERN_ERR,
347 "Unrecognized mount option \"%s\" or missing value",
348 p);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900349 return -EINVAL;
350 }
351 }
352 return 0;
353}
354
355static loff_t max_file_size(unsigned bits)
356{
357 loff_t result = ADDRS_PER_INODE;
358 loff_t leaf_count = ADDRS_PER_BLOCK;
359
360 /* two direct node blocks */
361 result += (leaf_count * 2);
362
363 /* two indirect node blocks */
364 leaf_count *= NIDS_PER_BLOCK;
365 result += (leaf_count * 2);
366
367 /* one double indirect node block */
368 leaf_count *= NIDS_PER_BLOCK;
369 result += leaf_count;
370
371 result <<= bits;
372 return result;
373}
374
Namjae Jeona07ef782012-12-30 14:52:05 +0900375static int sanity_check_raw_super(struct super_block *sb,
376 struct f2fs_super_block *raw_super)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900377{
378 unsigned int blocksize;
379
Namjae Jeona07ef782012-12-30 14:52:05 +0900380 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
381 f2fs_msg(sb, KERN_INFO,
382 "Magic Mismatch, valid(0x%x) - read(0x%x)",
383 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900384 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900385 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900386
387 /* Currently, support only 4KB block size */
388 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
Namjae Jeona07ef782012-12-30 14:52:05 +0900389 if (blocksize != PAGE_CACHE_SIZE) {
390 f2fs_msg(sb, KERN_INFO,
391 "Invalid blocksize (%u), supports only 4KB\n",
392 blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900393 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900394 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900395 if (le32_to_cpu(raw_super->log_sectorsize) !=
Namjae Jeona07ef782012-12-30 14:52:05 +0900396 F2FS_LOG_SECTOR_SIZE) {
397 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900398 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900399 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900400 if (le32_to_cpu(raw_super->log_sectors_per_block) !=
Namjae Jeona07ef782012-12-30 14:52:05 +0900401 F2FS_LOG_SECTORS_PER_BLOCK) {
402 f2fs_msg(sb, KERN_INFO, "Invalid log sectors per block");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900403 return 1;
Namjae Jeona07ef782012-12-30 14:52:05 +0900404 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900405 return 0;
406}
407
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900408static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900409{
410 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900411 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
412 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900413
414 total = le32_to_cpu(raw_super->segment_count);
415 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
416 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
417 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
418 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
419 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
420
421 if (fsmeta >= total)
422 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900423
424 if (is_set_ckpt_flags(ckpt, CP_ERROR_FLAG)) {
425 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
426 return 1;
427 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900428 return 0;
429}
430
431static void init_sb_info(struct f2fs_sb_info *sbi)
432{
433 struct f2fs_super_block *raw_super = sbi->raw_super;
434 int i;
435
436 sbi->log_sectors_per_block =
437 le32_to_cpu(raw_super->log_sectors_per_block);
438 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
439 sbi->blocksize = 1 << sbi->log_blocksize;
440 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
441 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
442 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
443 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
444 sbi->total_sections = le32_to_cpu(raw_super->section_count);
445 sbi->total_node_count =
446 (le32_to_cpu(raw_super->segment_count_nat) / 2)
447 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
448 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
449 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
450 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
451
452 for (i = 0; i < NR_COUNT_TYPE; i++)
453 atomic_set(&sbi->nr_pages[i], 0);
454}
455
456static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
457{
458 struct f2fs_sb_info *sbi;
459 struct f2fs_super_block *raw_super;
460 struct buffer_head *raw_super_buf;
461 struct inode *root;
462 long err = -EINVAL;
463 int i;
464
465 /* allocate memory for f2fs-specific super block info */
466 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
467 if (!sbi)
468 return -ENOMEM;
469
Namjae Jeonff9234a2013-01-12 14:41:13 +0900470 /* set a block size */
Namjae Jeona07ef782012-12-30 14:52:05 +0900471 if (!sb_set_blocksize(sb, F2FS_BLKSIZE)) {
472 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900473 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +0900474 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900475
476 /* read f2fs raw super block */
477 raw_super_buf = sb_bread(sb, 0);
478 if (!raw_super_buf) {
479 err = -EIO;
Namjae Jeona07ef782012-12-30 14:52:05 +0900480 f2fs_msg(sb, KERN_ERR, "unable to read superblock");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900481 goto free_sbi;
482 }
483 raw_super = (struct f2fs_super_block *)
484 ((char *)raw_super_buf->b_data + F2FS_SUPER_OFFSET);
485
486 /* init some FS parameters */
487 sbi->active_logs = NR_CURSEG_TYPE;
488
489 set_opt(sbi, BG_GC);
490
491#ifdef CONFIG_F2FS_FS_XATTR
492 set_opt(sbi, XATTR_USER);
493#endif
494#ifdef CONFIG_F2FS_FS_POSIX_ACL
495 set_opt(sbi, POSIX_ACL);
496#endif
497 /* parse mount options */
Namjae Jeona07ef782012-12-30 14:52:05 +0900498 if (parse_options(sb, sbi, (char *)data))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900499 goto free_sb_buf;
500
501 /* sanity checking of raw super */
Namjae Jeona07ef782012-12-30 14:52:05 +0900502 if (sanity_check_raw_super(sb, raw_super)) {
503 f2fs_msg(sb, KERN_ERR, "Can't find a valid F2FS filesystem");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900504 goto free_sb_buf;
Namjae Jeona07ef782012-12-30 14:52:05 +0900505 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900506
Jaegeuk Kim25ca9232012-11-28 16:12:41 +0900507 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900508 sb->s_max_links = F2FS_LINK_MAX;
509 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
510
511 sb->s_op = &f2fs_sops;
512 sb->s_xattr = f2fs_xattr_handlers;
513 sb->s_export_op = &f2fs_export_ops;
514 sb->s_magic = F2FS_SUPER_MAGIC;
515 sb->s_fs_info = sbi;
516 sb->s_time_gran = 1;
517 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
518 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
519 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
520
521 /* init f2fs-specific super block info */
522 sbi->sb = sb;
523 sbi->raw_super = raw_super;
524 sbi->raw_super_buf = raw_super_buf;
525 mutex_init(&sbi->gc_mutex);
526 mutex_init(&sbi->write_inode);
527 mutex_init(&sbi->writepages);
528 mutex_init(&sbi->cp_mutex);
529 for (i = 0; i < NR_LOCK_TYPE; i++)
530 mutex_init(&sbi->fs_lock[i]);
531 sbi->por_doing = 0;
532 spin_lock_init(&sbi->stat_lock);
533 init_rwsem(&sbi->bio_sem);
534 init_sb_info(sbi);
535
536 /* get an inode for meta space */
537 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
538 if (IS_ERR(sbi->meta_inode)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900539 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900540 err = PTR_ERR(sbi->meta_inode);
541 goto free_sb_buf;
542 }
543
544 err = get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +0900545 if (err) {
546 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900547 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +0900548 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900549
550 /* sanity checking of checkpoint */
551 err = -EINVAL;
Jaegeuk Kim577e3492013-01-24 19:56:11 +0900552 if (sanity_check_ckpt(sbi)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900553 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900554 goto free_cp;
Namjae Jeona07ef782012-12-30 14:52:05 +0900555 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900556
557 sbi->total_valid_node_count =
558 le32_to_cpu(sbi->ckpt->valid_node_count);
559 sbi->total_valid_inode_count =
560 le32_to_cpu(sbi->ckpt->valid_inode_count);
561 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
562 sbi->total_valid_block_count =
563 le64_to_cpu(sbi->ckpt->valid_block_count);
564 sbi->last_valid_block_count = sbi->total_valid_block_count;
565 sbi->alloc_valid_block_count = 0;
566 INIT_LIST_HEAD(&sbi->dir_inode_list);
567 spin_lock_init(&sbi->dir_inode_lock);
568
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900569 init_orphan_info(sbi);
570
571 /* setup f2fs internal modules */
572 err = build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +0900573 if (err) {
574 f2fs_msg(sb, KERN_ERR,
575 "Failed to initialize F2FS segment manager");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900576 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +0900577 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900578 err = build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +0900579 if (err) {
580 f2fs_msg(sb, KERN_ERR,
581 "Failed to initialize F2FS node manager");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900582 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +0900583 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900584
585 build_gc_manager(sbi);
586
587 /* get an inode for node space */
588 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
589 if (IS_ERR(sbi->node_inode)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900590 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900591 err = PTR_ERR(sbi->node_inode);
592 goto free_nm;
593 }
594
595 /* if there are nt orphan nodes free them */
596 err = -EINVAL;
Jaegeuk Kim30f0c752012-12-19 16:09:19 +0900597 if (recover_orphan_inodes(sbi))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900598 goto free_node_inode;
599
600 /* read root inode and dentry */
601 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
602 if (IS_ERR(root)) {
Namjae Jeona07ef782012-12-30 14:52:05 +0900603 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900604 err = PTR_ERR(root);
605 goto free_node_inode;
606 }
607 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size)
608 goto free_root_inode;
609
610 sb->s_root = d_make_root(root); /* allocate root dentry */
611 if (!sb->s_root) {
612 err = -ENOMEM;
613 goto free_root_inode;
614 }
615
616 /* recover fsynced data */
Jaegeuk Kim30f0c752012-12-19 16:09:19 +0900617 if (!test_opt(sbi, DISABLE_ROLL_FORWARD))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900618 recover_fsync_data(sbi);
619
620 /* After POR, we can run background GC thread */
621 err = start_gc_thread(sbi);
622 if (err)
623 goto fail;
624
625 err = f2fs_build_stats(sbi);
626 if (err)
627 goto fail;
628
629 return 0;
630fail:
631 stop_gc_thread(sbi);
632free_root_inode:
633 dput(sb->s_root);
634 sb->s_root = NULL;
635free_node_inode:
636 iput(sbi->node_inode);
637free_nm:
638 destroy_node_manager(sbi);
639free_sm:
640 destroy_segment_manager(sbi);
641free_cp:
642 kfree(sbi->ckpt);
643free_meta_inode:
644 make_bad_inode(sbi->meta_inode);
645 iput(sbi->meta_inode);
646free_sb_buf:
647 brelse(raw_super_buf);
648free_sbi:
649 kfree(sbi);
650 return err;
651}
652
653static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
654 const char *dev_name, void *data)
655{
656 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
657}
658
659static struct file_system_type f2fs_fs_type = {
660 .owner = THIS_MODULE,
661 .name = "f2fs",
662 .mount = f2fs_mount,
663 .kill_sb = kill_block_super,
664 .fs_flags = FS_REQUIRES_DEV,
665};
666
Namjae Jeon6e6093a2013-01-17 00:08:30 +0900667static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900668{
669 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
670 sizeof(struct f2fs_inode_info), NULL);
671 if (f2fs_inode_cachep == NULL)
672 return -ENOMEM;
673 return 0;
674}
675
676static void destroy_inodecache(void)
677{
678 /*
679 * Make sure all delayed rcu free inodes are flushed before we
680 * destroy cache.
681 */
682 rcu_barrier();
683 kmem_cache_destroy(f2fs_inode_cachep);
684}
685
686static int __init init_f2fs_fs(void)
687{
688 int err;
689
690 err = init_inodecache();
691 if (err)
692 goto fail;
693 err = create_node_manager_caches();
694 if (err)
695 goto fail;
696 err = create_gc_caches();
697 if (err)
698 goto fail;
699 err = create_checkpoint_caches();
700 if (err)
701 goto fail;
Namjae Jeon4589d252013-01-15 19:58:47 +0900702 err = register_filesystem(&f2fs_fs_type);
703 if (err)
704 goto fail;
705 f2fs_create_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900706fail:
707 return err;
708}
709
710static void __exit exit_f2fs_fs(void)
711{
Namjae Jeon4589d252013-01-15 19:58:47 +0900712 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900713 unregister_filesystem(&f2fs_fs_type);
714 destroy_checkpoint_caches();
715 destroy_gc_caches();
716 destroy_node_manager_caches();
717 destroy_inodecache();
718}
719
720module_init(init_f2fs_fs)
721module_exit(exit_f2fs_fs)
722
723MODULE_AUTHOR("Samsung Electronics's Praesto Team");
724MODULE_DESCRIPTION("Flash Friendly File System");
725MODULE_LICENSE("GPL");