blob: 3be6d3d4ab5f13ad2c70cb6154d53fdb9cd82d54 [file] [log] [blame]
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001/*
2 * 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/buffer_head.h>
16#include <linux/backing-dev.h>
17#include <linux/kthread.h>
18#include <linux/parser.h>
19#include <linux/mount.h>
20#include <linux/seq_file.h>
21#include <linux/proc_fs.h>
22#include <linux/random.h>
23#include <linux/exportfs.h>
24#include <linux/blkdev.h>
25#include <linux/f2fs_fs.h>
26#include <linux/sysfs.h>
27
28#include "f2fs.h"
29#include "node.h"
30#include "segment.h"
31#include "xattr.h"
32#include "gc.h"
33
34#define CREATE_TRACE_POINTS
35#include <trace/events/f2fs.h>
36
37static struct proc_dir_entry *f2fs_proc_root;
38static struct kmem_cache *f2fs_inode_cachep;
39static struct kset *f2fs_kset;
40
41enum {
42 Opt_gc_background,
43 Opt_disable_roll_forward,
44 Opt_discard,
45 Opt_noheap,
46 Opt_user_xattr,
47 Opt_nouser_xattr,
48 Opt_acl,
49 Opt_noacl,
50 Opt_active_logs,
51 Opt_disable_ext_identify,
52 Opt_inline_xattr,
Changman Leeb1a94e82013-11-15 10:42:51 +090053 Opt_inline_data,
Linus Torvalds8005ecc2012-12-20 13:54:51 -080054 Opt_err,
55};
56
57static match_table_t f2fs_tokens = {
58 {Opt_gc_background, "background_gc=%s"},
59 {Opt_disable_roll_forward, "disable_roll_forward"},
60 {Opt_discard, "discard"},
61 {Opt_noheap, "no_heap"},
62 {Opt_user_xattr, "user_xattr"},
63 {Opt_nouser_xattr, "nouser_xattr"},
64 {Opt_acl, "acl"},
65 {Opt_noacl, "noacl"},
66 {Opt_active_logs, "active_logs=%u"},
67 {Opt_disable_ext_identify, "disable_ext_identify"},
68 {Opt_inline_xattr, "inline_xattr"},
Changman Leeb1a94e82013-11-15 10:42:51 +090069 {Opt_inline_data, "inline_data"},
Linus Torvalds8005ecc2012-12-20 13:54:51 -080070 {Opt_err, NULL},
71};
72
73/* Sysfs support for f2fs */
74enum {
75 GC_THREAD, /* struct f2fs_gc_thread */
76 SM_INFO, /* struct f2fs_sm_info */
Changman Leeb1a94e82013-11-15 10:42:51 +090077 F2FS_SBI, /* struct f2fs_sb_info */
Linus Torvalds8005ecc2012-12-20 13:54:51 -080078};
79
80struct f2fs_attr {
81 struct attribute attr;
82 ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *);
83 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *,
84 const char *, size_t);
85 int struct_type;
86 int offset;
87};
88
89static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
90{
91 if (struct_type == GC_THREAD)
92 return (unsigned char *)sbi->gc_thread;
93 else if (struct_type == SM_INFO)
94 return (unsigned char *)SM_I(sbi);
Changman Leeb1a94e82013-11-15 10:42:51 +090095 else if (struct_type == F2FS_SBI)
96 return (unsigned char *)sbi;
Linus Torvalds8005ecc2012-12-20 13:54:51 -080097 return NULL;
98}
99
100static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
101 struct f2fs_sb_info *sbi, char *buf)
102{
103 unsigned char *ptr = NULL;
104 unsigned int *ui;
105
106 ptr = __struct_ptr(sbi, a->struct_type);
107 if (!ptr)
108 return -EINVAL;
109
110 ui = (unsigned int *)(ptr + a->offset);
111
112 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
113}
114
115static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
116 struct f2fs_sb_info *sbi,
117 const char *buf, size_t count)
118{
119 unsigned char *ptr;
120 unsigned long t;
121 unsigned int *ui;
122 ssize_t ret;
123
124 ptr = __struct_ptr(sbi, a->struct_type);
125 if (!ptr)
126 return -EINVAL;
127
128 ui = (unsigned int *)(ptr + a->offset);
129
130 ret = kstrtoul(skip_spaces(buf), 0, &t);
131 if (ret < 0)
132 return ret;
133 *ui = t;
134 return count;
135}
136
137static ssize_t f2fs_attr_show(struct kobject *kobj,
138 struct attribute *attr, char *buf)
139{
140 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
141 s_kobj);
142 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
143
144 return a->show ? a->show(a, sbi, buf) : 0;
145}
146
147static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
148 const char *buf, size_t len)
149{
150 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
151 s_kobj);
152 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
153
154 return a->store ? a->store(a, sbi, buf, len) : 0;
155}
156
157static void f2fs_sb_release(struct kobject *kobj)
158{
159 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
160 s_kobj);
161 complete(&sbi->s_kobj_unregister);
162}
163
164#define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
165static struct f2fs_attr f2fs_attr_##_name = { \
166 .attr = {.name = __stringify(_name), .mode = _mode }, \
167 .show = _show, \
168 .store = _store, \
169 .struct_type = _struct_type, \
170 .offset = _offset \
171}
172
173#define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
174 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
175 f2fs_sbi_show, f2fs_sbi_store, \
176 offsetof(struct struct_name, elname))
177
178F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time);
179F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time);
180F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time);
181F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_idle, gc_idle);
182F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
Changman Leeb1a94e82013-11-15 10:42:51 +0900183F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, max_small_discards, max_discards);
184F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy);
185F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util);
186F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800187
188#define ATTR_LIST(name) (&f2fs_attr_##name.attr)
189static struct attribute *f2fs_attrs[] = {
190 ATTR_LIST(gc_min_sleep_time),
191 ATTR_LIST(gc_max_sleep_time),
192 ATTR_LIST(gc_no_gc_sleep_time),
193 ATTR_LIST(gc_idle),
194 ATTR_LIST(reclaim_segments),
Changman Leeb1a94e82013-11-15 10:42:51 +0900195 ATTR_LIST(max_small_discards),
196 ATTR_LIST(ipu_policy),
197 ATTR_LIST(min_ipu_util),
198 ATTR_LIST(max_victim_search),
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800199 NULL,
200};
201
202static const struct sysfs_ops f2fs_attr_ops = {
203 .show = f2fs_attr_show,
204 .store = f2fs_attr_store,
205};
206
207static struct kobj_type f2fs_ktype = {
208 .default_attrs = f2fs_attrs,
209 .sysfs_ops = &f2fs_attr_ops,
210 .release = f2fs_sb_release,
211};
212
213void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
214{
215 struct va_format vaf;
216 va_list args;
217
218 va_start(args, fmt);
219 vaf.fmt = fmt;
220 vaf.va = &args;
221 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
222 va_end(args);
223}
224
225static void init_once(void *foo)
226{
227 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
228
229 inode_init_once(&fi->vfs_inode);
230}
231
232static int parse_options(struct super_block *sb, char *options)
233{
234 struct f2fs_sb_info *sbi = F2FS_SB(sb);
235 substring_t args[MAX_OPT_ARGS];
236 char *p, *name;
237 int arg = 0;
238
239 if (!options)
240 return 0;
241
242 while ((p = strsep(&options, ",")) != NULL) {
243 int token;
244 if (!*p)
245 continue;
246 /*
247 * Initialize args struct so we know whether arg was
248 * found; some options take optional arguments.
249 */
250 args[0].to = args[0].from = NULL;
251 token = match_token(p, f2fs_tokens, args);
252
253 switch (token) {
254 case Opt_gc_background:
255 name = match_strdup(&args[0]);
256
257 if (!name)
258 return -ENOMEM;
259 if (!strncmp(name, "on", 2))
260 set_opt(sbi, BG_GC);
261 else if (!strncmp(name, "off", 3))
262 clear_opt(sbi, BG_GC);
263 else {
264 kfree(name);
265 return -EINVAL;
266 }
267 kfree(name);
268 break;
269 case Opt_disable_roll_forward:
270 set_opt(sbi, DISABLE_ROLL_FORWARD);
271 break;
272 case Opt_discard:
273 set_opt(sbi, DISCARD);
274 break;
275 case Opt_noheap:
276 set_opt(sbi, NOHEAP);
277 break;
278#ifdef CONFIG_F2FS_FS_XATTR
279 case Opt_user_xattr:
280 set_opt(sbi, XATTR_USER);
281 break;
282 case Opt_nouser_xattr:
283 clear_opt(sbi, XATTR_USER);
284 break;
285 case Opt_inline_xattr:
286 set_opt(sbi, INLINE_XATTR);
287 break;
288#else
289 case Opt_user_xattr:
290 f2fs_msg(sb, KERN_INFO,
291 "user_xattr options not supported");
292 break;
293 case Opt_nouser_xattr:
294 f2fs_msg(sb, KERN_INFO,
295 "nouser_xattr options not supported");
296 break;
297 case Opt_inline_xattr:
298 f2fs_msg(sb, KERN_INFO,
299 "inline_xattr options not supported");
300 break;
301#endif
302#ifdef CONFIG_F2FS_FS_POSIX_ACL
303 case Opt_acl:
304 set_opt(sbi, POSIX_ACL);
305 break;
306 case Opt_noacl:
307 clear_opt(sbi, POSIX_ACL);
308 break;
309#else
310 case Opt_acl:
311 f2fs_msg(sb, KERN_INFO, "acl options not supported");
312 break;
313 case Opt_noacl:
314 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
315 break;
316#endif
317 case Opt_active_logs:
318 if (args->from && match_int(args, &arg))
319 return -EINVAL;
320 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
321 return -EINVAL;
322 sbi->active_logs = arg;
323 break;
324 case Opt_disable_ext_identify:
325 set_opt(sbi, DISABLE_EXT_IDENTIFY);
326 break;
Changman Leeb1a94e82013-11-15 10:42:51 +0900327 case Opt_inline_data:
328 set_opt(sbi, INLINE_DATA);
329 break;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800330 default:
331 f2fs_msg(sb, KERN_ERR,
332 "Unrecognized mount option \"%s\" or missing value",
333 p);
334 return -EINVAL;
335 }
336 }
337 return 0;
338}
339
340static struct inode *f2fs_alloc_inode(struct super_block *sb)
341{
342 struct f2fs_inode_info *fi;
343
Changman Leeb1a94e82013-11-15 10:42:51 +0900344 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800345 if (!fi)
346 return NULL;
347
348 init_once((void *) fi);
349
350 /* Initilize f2fs-specific inode info */
351 fi->vfs_inode.i_version = 1;
352 atomic_set(&fi->dirty_dents, 0);
353 fi->i_current_depth = 1;
354 fi->i_advise = 0;
355 rwlock_init(&fi->ext.ext_lock);
356
357 set_inode_flag(fi, FI_NEW_INODE);
358
359 if (test_opt(F2FS_SB(sb), INLINE_XATTR))
360 set_inode_flag(fi, FI_INLINE_XATTR);
361
362 return &fi->vfs_inode;
363}
364
365static int f2fs_drop_inode(struct inode *inode)
366{
367 /*
368 * This is to avoid a deadlock condition like below.
369 * writeback_single_inode(inode)
370 * - f2fs_write_data_page
371 * - f2fs_gc -> iput -> evict
372 * - inode_wait_for_writeback(inode)
373 */
374 if (!inode_unhashed(inode) && inode->i_state & I_SYNC)
375 return 0;
376 return generic_drop_inode(inode);
377}
378
379/*
380 * f2fs_dirty_inode() is called from __mark_inode_dirty()
381 *
382 * We should call set_dirty_inode to write the dirty inode through write_inode.
383 */
384static void f2fs_dirty_inode(struct inode *inode, int flags)
385{
386 set_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
387}
388
389static void f2fs_i_callback(struct rcu_head *head)
390{
391 struct inode *inode = container_of(head, struct inode, i_rcu);
392 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
393}
394
395static void f2fs_destroy_inode(struct inode *inode)
396{
397 call_rcu(&inode->i_rcu, f2fs_i_callback);
398}
399
400static void f2fs_put_super(struct super_block *sb)
401{
402 struct f2fs_sb_info *sbi = F2FS_SB(sb);
403
404 if (sbi->s_proc) {
405 remove_proc_entry("segment_info", sbi->s_proc);
406 remove_proc_entry(sb->s_id, f2fs_proc_root);
407 }
408 kobject_del(&sbi->s_kobj);
409
410 f2fs_destroy_stats(sbi);
411 stop_gc_thread(sbi);
412
413 /* We don't need to do checkpoint when it's clean */
414 if (sbi->s_dirty && get_pages(sbi, F2FS_DIRTY_NODES))
415 write_checkpoint(sbi, true);
416
417 iput(sbi->node_inode);
418 iput(sbi->meta_inode);
419
420 /* destroy f2fs internal modules */
421 destroy_node_manager(sbi);
422 destroy_segment_manager(sbi);
423
424 kfree(sbi->ckpt);
425 kobject_put(&sbi->s_kobj);
426 wait_for_completion(&sbi->s_kobj_unregister);
427
428 sb->s_fs_info = NULL;
429 brelse(sbi->raw_super_buf);
430 kfree(sbi);
431}
432
433int f2fs_sync_fs(struct super_block *sb, int sync)
434{
435 struct f2fs_sb_info *sbi = F2FS_SB(sb);
436
437 trace_f2fs_sync_fs(sb, sync);
438
439 if (!sbi->s_dirty && !get_pages(sbi, F2FS_DIRTY_NODES))
440 return 0;
441
442 if (sync) {
443 mutex_lock(&sbi->gc_mutex);
444 write_checkpoint(sbi, false);
445 mutex_unlock(&sbi->gc_mutex);
446 } else {
447 f2fs_balance_fs(sbi);
448 }
449
450 return 0;
451}
452
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800453static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
454{
455 struct super_block *sb = dentry->d_sb;
456 struct f2fs_sb_info *sbi = F2FS_SB(sb);
457 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
458 block_t total_count, user_block_count, start_count, ovp_count;
459
460 total_count = le64_to_cpu(sbi->raw_super->block_count);
461 user_block_count = sbi->user_block_count;
462 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
463 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
464 buf->f_type = F2FS_SUPER_MAGIC;
465 buf->f_bsize = sbi->blocksize;
466
467 buf->f_blocks = total_count - start_count;
468 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
469 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
470
471 buf->f_files = sbi->total_node_count;
472 buf->f_ffree = sbi->total_node_count - valid_inode_count(sbi);
473
474 buf->f_namelen = F2FS_NAME_LEN;
475 buf->f_fsid.val[0] = (u32)id;
476 buf->f_fsid.val[1] = (u32)(id >> 32);
477
478 return 0;
479}
480
481static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
482{
483 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
484
485 if (!(root->d_sb->s_flags & MS_RDONLY) && test_opt(sbi, BG_GC))
486 seq_printf(seq, ",background_gc=%s", "on");
487 else
488 seq_printf(seq, ",background_gc=%s", "off");
489 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
490 seq_puts(seq, ",disable_roll_forward");
491 if (test_opt(sbi, DISCARD))
492 seq_puts(seq, ",discard");
493 if (test_opt(sbi, NOHEAP))
494 seq_puts(seq, ",no_heap_alloc");
495#ifdef CONFIG_F2FS_FS_XATTR
496 if (test_opt(sbi, XATTR_USER))
497 seq_puts(seq, ",user_xattr");
498 else
499 seq_puts(seq, ",nouser_xattr");
500 if (test_opt(sbi, INLINE_XATTR))
501 seq_puts(seq, ",inline_xattr");
502#endif
503#ifdef CONFIG_F2FS_FS_POSIX_ACL
504 if (test_opt(sbi, POSIX_ACL))
505 seq_puts(seq, ",acl");
506 else
507 seq_puts(seq, ",noacl");
508#endif
509 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
510 seq_puts(seq, ",disable_ext_identify");
Changman Leeb1a94e82013-11-15 10:42:51 +0900511 if (test_opt(sbi, INLINE_DATA))
512 seq_puts(seq, ",inline_data");
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800513 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
514
515 return 0;
516}
517
518static int segment_info_seq_show(struct seq_file *seq, void *offset)
519{
520 struct super_block *sb = seq->private;
521 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Changman Leeb1a94e82013-11-15 10:42:51 +0900522 unsigned int total_segs =
523 le32_to_cpu(sbi->raw_super->segment_count_main);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800524 int i;
525
526 for (i = 0; i < total_segs; i++) {
527 seq_printf(seq, "%u", get_valid_blocks(sbi, i, 1));
528 if (i != 0 && (i % 10) == 0)
529 seq_puts(seq, "\n");
530 else
531 seq_puts(seq, " ");
532 }
533 return 0;
534}
535
536static int segment_info_open_fs(struct inode *inode, struct file *file)
537{
Evan McClain1a808fb2014-03-20 09:12:16 -0400538 return single_open(file, segment_info_seq_show, PDE(inode)->data);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800539}
540
541static const struct file_operations f2fs_seq_segment_info_fops = {
542 .owner = THIS_MODULE,
543 .open = segment_info_open_fs,
544 .read = seq_read,
545 .llseek = seq_lseek,
546 .release = single_release,
547};
548
549static int f2fs_remount(struct super_block *sb, int *flags, char *data)
550{
551 struct f2fs_sb_info *sbi = F2FS_SB(sb);
552 struct f2fs_mount_info org_mount_opt;
553 int err, active_logs;
554
555 /*
556 * Save the old mount options in case we
557 * need to restore them.
558 */
559 org_mount_opt = sbi->mount_opt;
560 active_logs = sbi->active_logs;
561
562 /* parse mount options */
563 err = parse_options(sb, data);
564 if (err)
565 goto restore_opts;
566
567 /*
568 * Previous and new state of filesystem is RO,
569 * so no point in checking GC conditions.
570 */
571 if ((sb->s_flags & MS_RDONLY) && (*flags & MS_RDONLY))
572 goto skip;
573
574 /*
575 * We stop the GC thread if FS is mounted as RO
576 * or if background_gc = off is passed in mount
577 * option. Also sync the filesystem.
578 */
579 if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
580 if (sbi->gc_thread) {
581 stop_gc_thread(sbi);
582 f2fs_sync_fs(sb, 1);
583 }
584 } else if (test_opt(sbi, BG_GC) && !sbi->gc_thread) {
585 err = start_gc_thread(sbi);
586 if (err)
587 goto restore_opts;
588 }
589skip:
590 /* Update the POSIXACL Flag */
591 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
592 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
593 return 0;
594
595restore_opts:
596 sbi->mount_opt = org_mount_opt;
597 sbi->active_logs = active_logs;
598 return err;
599}
600
601static struct super_operations f2fs_sops = {
602 .alloc_inode = f2fs_alloc_inode,
603 .drop_inode = f2fs_drop_inode,
604 .destroy_inode = f2fs_destroy_inode,
605 .write_inode = f2fs_write_inode,
606 .dirty_inode = f2fs_dirty_inode,
607 .show_options = f2fs_show_options,
608 .evict_inode = f2fs_evict_inode,
609 .put_super = f2fs_put_super,
610 .sync_fs = f2fs_sync_fs,
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800611 .statfs = f2fs_statfs,
612 .remount_fs = f2fs_remount,
613};
614
615static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
616 u64 ino, u32 generation)
617{
618 struct f2fs_sb_info *sbi = F2FS_SB(sb);
619 struct inode *inode;
620
Changman Leeb1a94e82013-11-15 10:42:51 +0900621 if (unlikely(ino < F2FS_ROOT_INO(sbi)))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800622 return ERR_PTR(-ESTALE);
623
624 /*
625 * f2fs_iget isn't quite right if the inode is currently unallocated!
626 * However f2fs_iget currently does appropriate checks to handle stale
627 * inodes so everything is OK.
628 */
629 inode = f2fs_iget(sb, ino);
630 if (IS_ERR(inode))
631 return ERR_CAST(inode);
Changman Leeb1a94e82013-11-15 10:42:51 +0900632 if (unlikely(generation && inode->i_generation != generation)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800633 /* we didn't find the right inode.. */
634 iput(inode);
635 return ERR_PTR(-ESTALE);
636 }
637 return inode;
638}
639
640static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
641 int fh_len, int fh_type)
642{
643 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
644 f2fs_nfs_get_inode);
645}
646
647static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
648 int fh_len, int fh_type)
649{
650 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
651 f2fs_nfs_get_inode);
652}
653
654static const struct export_operations f2fs_export_ops = {
655 .fh_to_dentry = f2fs_fh_to_dentry,
656 .fh_to_parent = f2fs_fh_to_parent,
657 .get_parent = f2fs_get_parent,
658};
659
660static loff_t max_file_size(unsigned bits)
661{
662 loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS);
663 loff_t leaf_count = ADDRS_PER_BLOCK;
664
665 /* two direct node blocks */
666 result += (leaf_count * 2);
667
668 /* two indirect node blocks */
669 leaf_count *= NIDS_PER_BLOCK;
670 result += (leaf_count * 2);
671
672 /* one double indirect node block */
673 leaf_count *= NIDS_PER_BLOCK;
674 result += leaf_count;
675
676 result <<= bits;
677 return result;
678}
679
680static int sanity_check_raw_super(struct super_block *sb,
681 struct f2fs_super_block *raw_super)
682{
683 unsigned int blocksize;
684
685 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
686 f2fs_msg(sb, KERN_INFO,
687 "Magic Mismatch, valid(0x%x) - read(0x%x)",
688 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
689 return 1;
690 }
691
692 /* Currently, support only 4KB page cache size */
693 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
694 f2fs_msg(sb, KERN_INFO,
695 "Invalid page_cache_size (%lu), supports only 4KB\n",
696 PAGE_CACHE_SIZE);
697 return 1;
698 }
699
700 /* Currently, support only 4KB block size */
701 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
702 if (blocksize != F2FS_BLKSIZE) {
703 f2fs_msg(sb, KERN_INFO,
704 "Invalid blocksize (%u), supports only 4KB\n",
705 blocksize);
706 return 1;
707 }
708
709 if (le32_to_cpu(raw_super->log_sectorsize) !=
710 F2FS_LOG_SECTOR_SIZE) {
711 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize");
712 return 1;
713 }
714 if (le32_to_cpu(raw_super->log_sectors_per_block) !=
715 F2FS_LOG_SECTORS_PER_BLOCK) {
716 f2fs_msg(sb, KERN_INFO, "Invalid log sectors per block");
717 return 1;
718 }
719 return 0;
720}
721
722static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
723{
724 unsigned int total, fsmeta;
725 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
726 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
727
728 total = le32_to_cpu(raw_super->segment_count);
729 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
730 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
731 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
732 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
733 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
734
Changman Leeb1a94e82013-11-15 10:42:51 +0900735 if (unlikely(fsmeta >= total))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800736 return 1;
737
Changman Leeb1a94e82013-11-15 10:42:51 +0900738 if (unlikely(is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800739 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
740 return 1;
741 }
742 return 0;
743}
744
745static void init_sb_info(struct f2fs_sb_info *sbi)
746{
747 struct f2fs_super_block *raw_super = sbi->raw_super;
748 int i;
749
750 sbi->log_sectors_per_block =
751 le32_to_cpu(raw_super->log_sectors_per_block);
752 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
753 sbi->blocksize = 1 << sbi->log_blocksize;
754 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
755 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
756 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
757 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
758 sbi->total_sections = le32_to_cpu(raw_super->section_count);
759 sbi->total_node_count =
760 (le32_to_cpu(raw_super->segment_count_nat) / 2)
761 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
762 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
763 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
764 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
765 sbi->cur_victim_sec = NULL_SECNO;
Changman Leeb1a94e82013-11-15 10:42:51 +0900766 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800767
768 for (i = 0; i < NR_COUNT_TYPE; i++)
769 atomic_set(&sbi->nr_pages[i], 0);
770}
771
772/*
773 * Read f2fs raw super block.
774 * Because we have two copies of super block, so read the first one at first,
775 * if the first one is invalid, move to read the second one.
776 */
777static int read_raw_super_block(struct super_block *sb,
778 struct f2fs_super_block **raw_super,
779 struct buffer_head **raw_super_buf)
780{
781 int block = 0;
782
783retry:
784 *raw_super_buf = sb_bread(sb, block);
785 if (!*raw_super_buf) {
786 f2fs_msg(sb, KERN_ERR, "Unable to read %dth superblock",
787 block + 1);
788 if (block == 0) {
789 block++;
790 goto retry;
791 } else {
792 return -EIO;
793 }
794 }
795
796 *raw_super = (struct f2fs_super_block *)
797 ((char *)(*raw_super_buf)->b_data + F2FS_SUPER_OFFSET);
798
799 /* sanity checking of raw super */
800 if (sanity_check_raw_super(sb, *raw_super)) {
801 brelse(*raw_super_buf);
Changman Leeb1a94e82013-11-15 10:42:51 +0900802 f2fs_msg(sb, KERN_ERR,
803 "Can't find valid F2FS filesystem in %dth superblock",
804 block + 1);
805 if (block == 0) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800806 block++;
807 goto retry;
808 } else {
809 return -EINVAL;
810 }
811 }
812
813 return 0;
814}
815
816static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
817{
818 struct f2fs_sb_info *sbi;
819 struct f2fs_super_block *raw_super;
820 struct buffer_head *raw_super_buf;
821 struct inode *root;
822 long err = -EINVAL;
Changman Leeb1a94e82013-11-15 10:42:51 +0900823 int i;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800824
825 /* allocate memory for f2fs-specific super block info */
826 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
827 if (!sbi)
828 return -ENOMEM;
829
830 /* set a block size */
Changman Leeb1a94e82013-11-15 10:42:51 +0900831 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800832 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
833 goto free_sbi;
834 }
835
836 err = read_raw_super_block(sb, &raw_super, &raw_super_buf);
837 if (err)
838 goto free_sbi;
839
840 sb->s_fs_info = sbi;
841 /* init some FS parameters */
842 sbi->active_logs = NR_CURSEG_TYPE;
843
844 set_opt(sbi, BG_GC);
845
846#ifdef CONFIG_F2FS_FS_XATTR
847 set_opt(sbi, XATTR_USER);
848#endif
849#ifdef CONFIG_F2FS_FS_POSIX_ACL
850 set_opt(sbi, POSIX_ACL);
851#endif
852 /* parse mount options */
853 err = parse_options(sb, (char *)data);
854 if (err)
855 goto free_sb_buf;
856
857 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
858 sb->s_max_links = F2FS_LINK_MAX;
859 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
860
861 sb->s_op = &f2fs_sops;
862 sb->s_xattr = f2fs_xattr_handlers;
863 sb->s_export_op = &f2fs_export_ops;
864 sb->s_magic = F2FS_SUPER_MAGIC;
865 sb->s_time_gran = 1;
866 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
867 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
868 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
869
870 /* init f2fs-specific super block info */
871 sbi->sb = sb;
872 sbi->raw_super = raw_super;
873 sbi->raw_super_buf = raw_super_buf;
874 mutex_init(&sbi->gc_mutex);
875 mutex_init(&sbi->writepages);
876 mutex_init(&sbi->cp_mutex);
877 mutex_init(&sbi->node_write);
878 sbi->por_doing = false;
879 spin_lock_init(&sbi->stat_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900880
881 mutex_init(&sbi->read_io.io_mutex);
882 sbi->read_io.sbi = sbi;
883 sbi->read_io.bio = NULL;
884 for (i = 0; i < NR_PAGE_TYPE; i++) {
885 mutex_init(&sbi->write_io[i].io_mutex);
886 sbi->write_io[i].sbi = sbi;
887 sbi->write_io[i].bio = NULL;
888 }
889
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800890 init_rwsem(&sbi->cp_rwsem);
891 init_waitqueue_head(&sbi->cp_wait);
892 init_sb_info(sbi);
893
894 /* get an inode for meta space */
895 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
896 if (IS_ERR(sbi->meta_inode)) {
897 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
898 err = PTR_ERR(sbi->meta_inode);
899 goto free_sb_buf;
900 }
901
902 err = get_valid_checkpoint(sbi);
903 if (err) {
904 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
905 goto free_meta_inode;
906 }
907
908 /* sanity checking of checkpoint */
909 err = -EINVAL;
910 if (sanity_check_ckpt(sbi)) {
911 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
912 goto free_cp;
913 }
914
915 sbi->total_valid_node_count =
916 le32_to_cpu(sbi->ckpt->valid_node_count);
917 sbi->total_valid_inode_count =
918 le32_to_cpu(sbi->ckpt->valid_inode_count);
919 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
920 sbi->total_valid_block_count =
921 le64_to_cpu(sbi->ckpt->valid_block_count);
922 sbi->last_valid_block_count = sbi->total_valid_block_count;
923 sbi->alloc_valid_block_count = 0;
924 INIT_LIST_HEAD(&sbi->dir_inode_list);
925 spin_lock_init(&sbi->dir_inode_lock);
926
927 init_orphan_info(sbi);
928
929 /* setup f2fs internal modules */
930 err = build_segment_manager(sbi);
931 if (err) {
932 f2fs_msg(sb, KERN_ERR,
933 "Failed to initialize F2FS segment manager");
934 goto free_sm;
935 }
936 err = build_node_manager(sbi);
937 if (err) {
938 f2fs_msg(sb, KERN_ERR,
939 "Failed to initialize F2FS node manager");
940 goto free_nm;
941 }
942
943 build_gc_manager(sbi);
944
945 /* get an inode for node space */
946 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
947 if (IS_ERR(sbi->node_inode)) {
948 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
949 err = PTR_ERR(sbi->node_inode);
950 goto free_nm;
951 }
952
953 /* if there are nt orphan nodes free them */
Changman Leeb1a94e82013-11-15 10:42:51 +0900954 recover_orphan_inodes(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800955
956 /* read root inode and dentry */
957 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
958 if (IS_ERR(root)) {
959 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
960 err = PTR_ERR(root);
961 goto free_node_inode;
962 }
Changman Leeb1a94e82013-11-15 10:42:51 +0900963 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
964 err = -EINVAL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800965 goto free_root_inode;
Changman Leeb1a94e82013-11-15 10:42:51 +0900966 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800967
968 sb->s_root = d_make_root(root); /* allocate root dentry */
969 if (!sb->s_root) {
970 err = -ENOMEM;
971 goto free_root_inode;
972 }
973
974 /* recover fsynced data */
975 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
976 err = recover_fsync_data(sbi);
977 if (err)
978 f2fs_msg(sb, KERN_ERR,
979 "Cannot recover all fsync data errno=%ld", err);
980 }
981
982 /*
983 * If filesystem is not mounted as read-only then
984 * do start the gc_thread.
985 */
986 if (!(sb->s_flags & MS_RDONLY)) {
987 /* After POR, we can run background GC thread.*/
988 err = start_gc_thread(sbi);
989 if (err)
990 goto free_gc;
991 }
992
993 err = f2fs_build_stats(sbi);
994 if (err)
995 goto free_gc;
996
997 if (f2fs_proc_root)
998 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
999
1000 if (sbi->s_proc)
1001 proc_create_data("segment_info", S_IRUGO, sbi->s_proc,
1002 &f2fs_seq_segment_info_fops, sb);
1003
1004 if (test_opt(sbi, DISCARD)) {
1005 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1006 if (!blk_queue_discard(q))
1007 f2fs_msg(sb, KERN_WARNING,
1008 "mounting with \"discard\" option, but "
1009 "the device does not support discard");
1010 }
1011
1012 sbi->s_kobj.kset = f2fs_kset;
1013 init_completion(&sbi->s_kobj_unregister);
1014 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_ktype, NULL,
1015 "%s", sb->s_id);
1016 if (err)
1017 goto fail;
1018
1019 return 0;
1020fail:
1021 if (sbi->s_proc) {
1022 remove_proc_entry("segment_info", sbi->s_proc);
1023 remove_proc_entry(sb->s_id, f2fs_proc_root);
1024 }
1025 f2fs_destroy_stats(sbi);
1026free_gc:
1027 stop_gc_thread(sbi);
1028free_root_inode:
1029 dput(sb->s_root);
1030 sb->s_root = NULL;
1031free_node_inode:
1032 iput(sbi->node_inode);
1033free_nm:
1034 destroy_node_manager(sbi);
1035free_sm:
1036 destroy_segment_manager(sbi);
1037free_cp:
1038 kfree(sbi->ckpt);
1039free_meta_inode:
1040 make_bad_inode(sbi->meta_inode);
1041 iput(sbi->meta_inode);
1042free_sb_buf:
1043 brelse(raw_super_buf);
1044free_sbi:
1045 kfree(sbi);
1046 return err;
1047}
1048
1049static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
1050 const char *dev_name, void *data)
1051{
1052 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
1053}
1054
1055static struct file_system_type f2fs_fs_type = {
1056 .owner = THIS_MODULE,
1057 .name = "f2fs",
1058 .mount = f2fs_mount,
1059 .kill_sb = kill_block_super,
1060 .fs_flags = FS_REQUIRES_DEV,
1061};
1062
1063static int __init init_inodecache(void)
1064{
1065 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
1066 sizeof(struct f2fs_inode_info), NULL);
Changman Leeb1a94e82013-11-15 10:42:51 +09001067 if (!f2fs_inode_cachep)
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001068 return -ENOMEM;
1069 return 0;
1070}
1071
1072static void destroy_inodecache(void)
1073{
1074 /*
1075 * Make sure all delayed rcu free inodes are flushed before we
1076 * destroy cache.
1077 */
1078 rcu_barrier();
1079 kmem_cache_destroy(f2fs_inode_cachep);
1080}
1081
1082static int __init init_f2fs_fs(void)
1083{
1084 int err;
1085
1086 err = init_inodecache();
1087 if (err)
1088 goto fail;
1089 err = create_node_manager_caches();
1090 if (err)
1091 goto free_inodecache;
Changman Leeb1a94e82013-11-15 10:42:51 +09001092 err = create_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001093 if (err)
1094 goto free_node_manager_caches;
Changman Leeb1a94e82013-11-15 10:42:51 +09001095 err = create_gc_caches();
1096 if (err)
1097 goto free_segment_manager_caches;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001098 err = create_checkpoint_caches();
1099 if (err)
1100 goto free_gc_caches;
1101 f2fs_kset = kset_create_and_add("f2fs", NULL, fs_kobj);
1102 if (!f2fs_kset) {
1103 err = -ENOMEM;
1104 goto free_checkpoint_caches;
1105 }
1106 err = register_filesystem(&f2fs_fs_type);
1107 if (err)
1108 goto free_kset;
1109 f2fs_create_root_stats();
1110 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
1111 return 0;
1112
1113free_kset:
1114 kset_unregister(f2fs_kset);
1115free_checkpoint_caches:
1116 destroy_checkpoint_caches();
1117free_gc_caches:
1118 destroy_gc_caches();
Changman Leeb1a94e82013-11-15 10:42:51 +09001119free_segment_manager_caches:
1120 destroy_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001121free_node_manager_caches:
1122 destroy_node_manager_caches();
1123free_inodecache:
1124 destroy_inodecache();
1125fail:
1126 return err;
1127}
1128
1129static void __exit exit_f2fs_fs(void)
1130{
1131 remove_proc_entry("fs/f2fs", NULL);
1132 f2fs_destroy_root_stats();
1133 unregister_filesystem(&f2fs_fs_type);
1134 destroy_checkpoint_caches();
1135 destroy_gc_caches();
Changman Leeb1a94e82013-11-15 10:42:51 +09001136 destroy_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001137 destroy_node_manager_caches();
1138 destroy_inodecache();
1139 kset_unregister(f2fs_kset);
1140}
1141
1142module_init(init_f2fs_fs)
1143module_exit(exit_f2fs_fs)
1144
1145MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1146MODULE_DESCRIPTION("Flash Friendly File System");
1147MODULE_LICENSE("GPL");